/* ═══════════════════════════════════════════════════════════
   ELITE ESCORT AGENCY — Ana Site Stilleri
   Koyu tema + altın/mor gradient vurgular
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Değişkenleri ──────────────────────────────────── */
:root {
  --bg-dark: #07070a;
  --bg-surface: #111118;
  --bg-surface-2: #181822;
  --bg-surface-3: #20202d;
  --gold: #c9a84c;
  --gold-light: #f3d87f;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --gradient: linear-gradient(135deg, #c9a84c, #8b5cf6);
  --gradient-hover: linear-gradient(135deg, #f3d87f, #a78bfa);
  --text-primary: #f1f1f5;
  --text-secondary: #a0a0b2;
  --text-muted: #6b6b80;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.8);

/* ── Fosforlu Neon Reklam Banner Animasyonu ───────────────── */
@keyframes neonGlowPulse {
  0% {
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.4), 0 0 24px rgba(168, 85, 247, 0.3);
    border-color: #facc15;
  }
  50% {
    box-shadow: 0 0 22px rgba(250, 204, 21, 0.8), 0 0 40px rgba(244, 63, 94, 0.7);
    border-color: #f43f5e;
  }
  100% {
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.4), 0 0 24px rgba(168, 85, 247, 0.3);
    border-color: #facc15;
  }
}
  --glass-bg: rgba(17, 17, 24, 0.75);
  --glass-border: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Google Translate Banner Fix (Üst Menüyü Kapatmasını Engelleme) ── */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-banner {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
}

body {
  top: 0px !important;
  position: static !important;
}

.goog-te-spinner-pos,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── Yaş Doğrulama Overlay ─────────────────────────────── */
.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.age-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-box {
  text-align: center;
  padding: 3rem 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  max-width: 420px;
  width: 90%;
  animation: scaleIn 0.5s ease;
}

.age-box .age-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.75));
}

.age-box h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-box p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.age-box .btn-enter {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  background: var(--gradient);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.age-box .btn-enter:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.age-box .btn-leave {
  display: inline-block;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  background: none;
}

.age-box .btn-leave:hover {
  color: var(--error);
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 2rem;
  background: rgba(10, 10, 15, 0.95);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-login:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-1px);
}

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  background: var(--gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--text-muted);
  font-size: 1.5rem;
}

/* ── Section Base ──────────────────────────────────────── */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ── Profile Cards Grid ───────────────────────────────── */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .profiles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

 /* ── Ultra Compact Mobile Layout (Mobilde Anında Profil Gösterme) ──── */
  .hero {
    display: none !important;
  }

  .navbar {
    padding: 0.4rem 0.8rem !important;
    min-height: auto !important;
  }

  .navbar-brand {
    font-size: 1.1rem !important;
  }

  .section {
    padding: 0.4rem 0 !important;
    margin-top: 0.4rem !important;
    margin-bottom: 1rem !important;
  }

  .section-header {
    margin-bottom: 0.4rem !important;
  }

  .section-header h2 {
    font-size: 1.15rem !important;
  }

  .section-header p {
    display: none !important;
  }

  .profiles-grid {
    gap: 0.5rem !important;
    padding: 0 0.2rem !important;
  }

  .mobile-hide-bar {
    display: none !important;
  }
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* Profil Kartı Mobil Uyum & Yazıların Çerçeveden Taşmasını Önleme */
  .profile-card {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .profile-card-overlay {
    padding: 1.5rem 0.5rem 0.5rem 0.5rem !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%) !important;
  }

  .profile-card-name {
    font-size: 0.9rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.2rem !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    text-shadow: 0 2px 6px #000, 0 0 4px #000 !important;
  }

  .profile-card-location {
    font-size: 0.72rem !important;
    color: var(--gold) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-shadow: 0 1px 4px #000 !important;
  }

  .profile-card-stats {
    padding: 0.3rem 0.4rem !important;
    font-size: 0.7rem !important;
    flex-wrap: wrap !important;
    gap: 0.2rem !important;
    background: rgba(15, 15, 20, 0.95) !important;
  }

  .profile-card-stat {
    font-size: 0.7rem !important;
  }

  .card-contact-buttons {
    padding: 0.3rem 0.4rem !important;
    gap: 0.25rem !important;
  }

  .card-contact-btn {
    font-size: 0.7rem !important;
    padding: 0.35rem 0.2rem !important;
    white-space: nowrap !important;
  }
  .profile-card-badge {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.4rem !important;
  }
  .profile-card-badges-left, .profile-card-badges-right {
    top: 0.4rem !important;
  }
  .profile-card-badges-left {
    left: 0.4rem !important;
  }
  .profile-card-badges-right {
    right: 0.4rem !important;
  }
}

.profile-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(19, 19, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

/* Gold İlan Altın Çerçeve */
.gold-card {
  border: 2px solid #c9a84c !important;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35) !important;
}

/* Silver İlan Gümüş Çerçeve */
.silver-card {
  border: 2px solid #94a3b8 !important;
  box-shadow: 0 8px 25px rgba(148, 163, 184, 0.3) !important;
}

.profile-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 168, 76, 0.15);
}

.profile-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

@keyframes gifMotion {
  0% {
    transform: scale(1) translate(0, 0);
    filter: brightness(100%) contrast(100%);
  }
  25% {
    transform: scale(1.04) translate(-2px, 2px);
    filter: brightness(106%) contrast(102%);
  }
  50% {
    transform: scale(1.07) translate(2px, -2px);
    filter: brightness(103%) contrast(104%);
  }
  75% {
    transform: scale(1.04) translate(1px, 2px);
    filter: brightness(108%) contrast(102%);
  }
  100% {
    transform: scale(1) translate(0, 0);
    filter: brightness(100%) contrast(100%);
  }
}

.profile-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gifMotion 6s infinite ease-in-out;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.5s ease;
}

.profile-card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.5s ease;
}

.profile-card:hover .profile-card-img img,
.profile-card:hover .profile-card-img video {
  transform: scale(1.12);
  filter: brightness(115%);
}

.profile-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.96) 0%, rgba(10, 10, 15, 0.6) 50%, transparent 100%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.profile-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.2px;
}

.profile-card-location {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ── Sol Üst Çapraz Şerit Rozet (Yanıp Sönen) ──────────────── */
.profile-ribbon-diagonal {
  position: absolute;
  top: 18px;
  left: -35px;
  width: 135px;
  padding: 4px 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: ribbon-pulse-blink 1.2s infinite ease-in-out;
}

@keyframes ribbon-pulse-blink {
  0%, 100% {
    opacity: 1;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    transform: rotate(-45deg) scale(1);
  }
  50% {
    opacity: 0.75;
    filter: brightness(0.9);
    transform: rotate(-45deg) scale(0.96);
  }
}

.profile-card-badges-left {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  z-index: 10;
}

.profile-card-badges-right {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
  z-index: 10;
}

.profile-card-badge {
  padding: 0.3rem 0.8rem;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-card-stats {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
}

.profile-card-stat {
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.profile-card-stat span {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Profile Detail Page ──────────────────────────────── */
.profile-detail {
  padding-top: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.profile-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.profile-detail-gallery {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.profile-detail-gallery .main-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.profile-detail-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.profile-detail-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
}

.profile-detail-thumbs img:hover,
.profile-detail-thumbs img.active {
  opacity: 1;
  border-color: var(--gold);
}

.profile-detail-info {
  padding-top: 1rem;
}

.profile-detail-info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-detail-info .location {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-card .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.stat-card .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-detail-bio {
  margin-bottom: 2rem;
}

.profile-detail-bio h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.profile-detail-bio p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.profile-detail-services {
  margin-bottom: 2rem;
}

.profile-detail-services h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  padding: 0.4rem 1rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.service-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── WhatsApp Floating Button ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Filter Bar ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.filter-bar select,
.filter-bar input {
  padding: 0.6rem 1rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.filter-bar select:focus,
.filter-bar input:focus {
  outline: none;
  border-color: var(--gold);
}

.filter-bar .btn-filter {
  padding: 0.6rem 1.5rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-bar .btn-filter:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* ── Auth Pages (Login / Register) ─────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.auth-card h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn-primary {
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  padding: 0.7rem 1.5rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
}

.btn-danger {
  padding: 0.5rem 1rem;
  background: var(--error);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-danger:hover {
  background: #dc2626;
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--gold);
  font-weight: 500;
}

/* ── Flash Messages ───────────────────────────────────── */
.flash {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flash-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
}

.flash-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--error);
}

.flash-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--warning);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer a {
  color: var(--text-secondary);
}

/* ── Pagination ───────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

.pagination a {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination .active {
  background: var(--gradient);
  color: #fff;
  border: none;
}

/* ── Empty State ──────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-links { display: none; }

  .hero h1 { font-size: 2.2rem; }

  .profile-detail-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .profiles-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.8rem;
  }

  .section { padding: 3rem 1rem; }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ── Hamburger Menu ───────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }

  .navbar-links.open {
    display: flex;
    right: 0;
  }
}

/* ── Table Styles ─────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  background: var(--bg-surface-2);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.data-table tr:hover {
  background: var(--bg-surface-2);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-error {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-info {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* ── Gold / VIP Styles ────────────────────────────────── */
.gold-card {
  border: 1px solid rgba(201, 168, 76, 0.45) !important;
  background: linear-gradient(135deg, rgba(19, 19, 26, 0.75), rgba(201, 168, 76, 0.08)) !important;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.05) !important;
}

.gold-card:hover {
  border-color: var(--gold-light) !important;
  box-shadow: 
    0 20px 45px rgba(201, 168, 76, 0.3), 
    0 0 15px rgba(201, 168, 76, 0.2), 
    inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
}

.gold-badge {
  background: linear-gradient(135deg, #f6d365, #c9a84c, #b8860b) !important;
  color: #1a1a24 !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.4);
}

.gold-crown {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* ── Mobile Bottom Nav ────────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.3rem 0.5rem;
  transition: var(--transition);
}

.mobile-bottom-nav a .nav-emoji {
  font-size: 1.3rem;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
  color: var(--gold);
}

@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 4rem; }
  .whatsapp-float { bottom: 5rem; }
  .navbar-auth .btn-login:not(:last-child) { display: none; }
}

/* ── Rozet & Şablon Marketi Premium CSS Kuralları ── */

.badge-pulse {
  animation: badge-pulse-animation 1.2s infinite alternate;
}
@keyframes badge-pulse-animation {
  0% { transform: scale(1); opacity: 1; filter: brightness(1); }
  100% { transform: scale(1.04); opacity: 0.7; filter: brightness(1.2); }
}

/* Altın Çerçeve */
.template-gold-border {
  border: 2px solid var(--gold) !important;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.3) !important;
}

/* Işıltılı Neon Çerçeve */
.template-neon-pulse {
  border: 3px solid #06b6d4 !important;
  animation: neon-pulse-animation 2.5s infinite alternate !important;
}
@keyframes neon-pulse-animation {
  0% {
    box-shadow: 0 0 5px #06b6d4, 0 0 10px #06b6d4;
    border-color: #06b6d4;
  }
  50% {
    box-shadow: 0 0 12px #d946ef, 0 0 24px #d946ef;
    border-color: #d946ef;
  }
  100% {
    box-shadow: 0 0 20px #f43f5e, 0 0 35px #f43f5e;
    border-color: #f43f5e;
  }
}

/* Doğrudan İletişim Butonları */
.card-contact-buttons {
  display: flex;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem 0.4rem;
  z-index: 10;
}
.card-contact-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}
.card-contact-btn.wp {
  background: #25d366;
  color: #fff;
}
.card-contact-btn.wp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}
.card-contact-btn.tg {
  background: #0088cc;
  color: #fff;
}
.card-contact-btn.tg:hover {
  background: #0077b5;
  transform: translateY(-2px);
}

/* Kilitli Fotoğraf Blurlama */
.locked-photo-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #000;
  aspect-ratio: 3/4;
}
.locked-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px) brightness(0.6);
  pointer-events: none;
}
.locked-photo-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  z-index: 5;
}
.locked-photo-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  animation: lock-bounce 2s infinite alternate;
}
@keyframes lock-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
.locked-photo-cost {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.locked-photo-btn {
  background: var(--gradient);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}
.locked-photo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
}


