/* ============================================================
   NexusSetups — themes/default/assets/css/style.css
   Ana tema stil dosyası
   ============================================================ */

/* ---------- CSS Sıfırlama & Temel Değişkenler ---------- */
:root {
  --bg-base:       #0b0f17;
  --bg-surface:    #0f1422;
  --bg-card:       #131929;
  --bg-card-hover: #1a2236;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(99,102,241,0.35);
  --text-primary:  #e8eaf6;
  --text-muted:    #7b82a0;
  --text-dim:      #4a5175;

  /* Sarı/Turuncu Buton */
  --btn-yellow-from: #fbc853;
  --btn-yellow-to:   #f7b131;
  --btn-yellow-text: #4c3716;
  --btn-yellow-border: #d39522;
  --btn-yellow-shadow: #a26e13;

  /* Mor/İndigo Buton (Giriş/Kayıt) */
  --btn-indigo-from:   #6366f1;
  --btn-indigo-to:     #4f46e5;
  --btn-indigo-border: #3730a3;
  --btn-indigo-shadow: #3730a3;

  /* Discord Butonu */
  --btn-discord-from:   #5865F2;
  --btn-discord-to:     #4752C4;
  --btn-discord-border: #3c45a5;
  --btn-discord-shadow: #3c45a5;

  /* Kırmızı Buton */
  --btn-red-from:   #ef4444;
  --btn-red-to:     #dc2626;
  --btn-red-border: #991b1b;
  --btn-red-shadow: #991b1b;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   BUTON SİSTEMİ — 3D İçe Çöken Animasyonlu Butonlar
   ============================================================ */

/* --- Temel Buton --- */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 18px;
  cursor: pointer;
  outline: none;
  border: 1px solid transparent;
  transition: transform 0.05s ease, box-shadow 0.05s ease, filter 0.2s ease;
  user-select: none;
  white-space: nowrap;
}

.btn-custom .btn-icon {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  transition: transform 0.2s ease;
}

.btn-custom:hover .btn-icon { transform: translateX(4px); }

/* --- Sarı / Turuncu Varyant --- */
.btn-yellow {
  background: linear-gradient(180deg, var(--btn-yellow-from) 0%, var(--btn-yellow-to) 100%);
  color: var(--btn-yellow-text);
  border-color: var(--btn-yellow-border);
  box-shadow: 0 5px 0 0 var(--btn-yellow-shadow), 0 10px 20px rgba(0,0,0,0.4);
}
.btn-yellow:hover { filter: brightness(1.08); }
.btn-yellow:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 0 var(--btn-yellow-shadow), 0 4px 10px rgba(0,0,0,0.4);
}

/* --- Mor / İndigo Varyant (Giriş / Kayıt) --- */
.btn-indigo {
  background: linear-gradient(180deg, var(--btn-indigo-from) 0%, var(--btn-indigo-to) 100%);
  color: #ffffff;
  border-color: var(--btn-indigo-border);
  box-shadow: 0 5px 0 0 var(--btn-indigo-shadow), 0 10px 20px rgba(0,0,0,0.4);
}
.btn-indigo:hover { filter: brightness(1.1); }
.btn-indigo:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 0 var(--btn-indigo-shadow), 0 4px 10px rgba(0,0,0,0.4);
}

/* --- Discord Varyant --- */
.btn-discord {
  background: linear-gradient(180deg, var(--btn-discord-from) 0%, var(--btn-discord-to) 100%);
  color: #ffffff;
  border-color: var(--btn-discord-border);
  box-shadow: 0 5px 0 0 var(--btn-discord-shadow), 0 10px 20px rgba(0,0,0,0.4);
}
.btn-discord:hover { filter: brightness(1.1); }
.btn-discord:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 0 var(--btn-discord-shadow), 0 4px 10px rgba(0,0,0,0.4);
}

/* --- Küçük Buton Modifier --- */
.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
  border-radius: 14px;
  gap: 8px;
}
.btn-sm .btn-icon { font-size: 14px; }

/* --- Kırmızı Varyant --- */
.btn-red {
  background: linear-gradient(180deg, var(--btn-red-from) 0%, var(--btn-red-to) 100%);
  color: #ffffff;
  border-color: var(--btn-red-border);
  box-shadow: 0 5px 0 0 var(--btn-red-shadow), 0 10px 20px rgba(0,0,0,0.4);
}
.btn-red:hover { filter: brightness(1.1); }
.btn-red:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 0 var(--btn-red-shadow), 0 4px 10px rgba(0,0,0,0.4);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,23,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 50%, #fbc853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

/* Orta Navigasyon Linkleri */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.navbar-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.navbar-links a i { font-size: 13px; }

/* Sağ Buton Grubu */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobil menü toggle (hamburger) */
.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  text-align: center;
}

/* Arkaplan ızgara deseni */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Parlak ışık noktası */
.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #fbc853 0%, #f7b131 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* İstatistikler */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================================
   BÖLÜM BAŞLIKLARI (Section Headers)
   ============================================================ */

.section {
  padding: 72px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 520px;
}

/* ============================================================
   DUYURU KARTLARI (News Cards)
   ============================================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.news-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.news-card-img {
  width: 100%;
  height: 180px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, #131929 0%, #1a2236 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--text-dim);
  overflow: hidden;
  contain: layout paint;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 22px 24px 24px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.news-card-meta .tag {
  background: rgba(99,102,241,0.15);
  color: #a5b4fc;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.news-card-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.35;
}

.news-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================
   ÜRÜN KARTLARI (Product Cards)
   ============================================================ */

.products-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  border-color: rgba(251,200,83,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
}

.product-card-thumb {
  width: 100%;
  height: 160px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0f1422 0%, #1a2236 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
  contain: layout paint;
}
.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #fbc853, #f7b131);
  color: #4c3716;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 8px;
}

.product-card-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price-current {
  font-size: 22px;
  font-weight: 900;
  color: #fbc853;
  line-height: 1;
}

.product-price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  margin-top: auto;   /* flex column body'de her zaman en alta yapışır */
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 50%, #fbc853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.1s;
}

.footer-social-btn:hover {
  color: var(--text-primary);
  border-color: rgba(99,102,241,0.5);
  background: rgba(99,102,241,0.1);
  transform: translateY(-2px);
}

.footer-social-btn.discord:hover {
  color: #5865F2;
  border-color: rgba(88,101,242,0.5);
  background: rgba(88,101,242,0.1);
}

.footer-social-btn.youtube:hover {
  color: #ff4444;
  border-color: rgba(255,68,68,0.5);
  background: rgba(255,68,68,0.08);
}

.footer-social-btn.github:hover {
  color: #e0e0e0;
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.footer-social-btn.twitter:hover {
  color: #1d9bf0;
  border-color: rgba(29,155,240,0.5);
  background: rgba(29,155,240,0.08);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-primary); }
.footer-links a i { font-size: 12px; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy span { color: var(--text-muted); }

.footer-made{margin-left:auto;display:flex;align-items:center;gap:6px;}
.footer-made a{color:var(--text-muted);font-weight:600;transition:color .2s;}
.footer-made a:hover{color:var(--accent);}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--text-muted); }

/* ============================================================
   DIVIDER / YARDIMCI
   ============================================================ */

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ============================================================
   RESPONSIVE — Mobil
   ============================================================ */

@media (max-width: 768px) {
  .navbar-links,
  .navbar-actions { display: none; }

  .navbar-links.open,
  .navbar-actions.open { display: flex; }

  .navbar-toggle { display: block; }

  .navbar-inner { flex-wrap: wrap; height: auto; padding: 14px 20px; }

  .navbar-links {
    flex-direction: column;
    width: 100%;
    padding-bottom: 12px;
    gap: 2px;
  }

  .navbar-actions {
    width: 100%;
    padding-bottom: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero { padding: 72px 20px 56px; }

  .hero-stats { gap: 24px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .news-grid, .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AUTH SAYFALAR — Form Kartı & Input Sistemi
   ============================================================ */

/* Tam ekran ortalama sarmalayıcı */
.auth-wrapper {
  flex: 1;                  /* body flex column içinde kalan tüm alanı kapla */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
  /* Footer ile birlikte sayfa yüksekliğinin en az viewport kadar olmasını sağla */
  min-height: calc(100vh - 68px - 260px); /* 68=navbar, 260=footer yaklaşık */
}

/* Arkaplan ızgara deseni (hero'dakiyle aynı) */
.auth-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Parlak ışık lekesi */
.auth-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Form Kartı */
.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
}

/* Kart tepesindeki renkli ince çizgi */
.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #a5b4fc, #fbc853);
  border-radius: 0 0 4px 4px;
}

/* Kart İkon Rozet */
.auth-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.auth-card-icon.indigo {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.auth-card-icon.yellow {
  background: rgba(251, 200, 83, 0.12);
  color: #fbc853;
  border: 1px solid rgba(251, 200, 83, 0.25);
}

/* Kart Başlık Grubu */
.auth-card-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.auth-card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form Grubu */
.form-group {
  margin-bottom: 18px;
  width: 100%;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* İnput Wrapper (ikon destekli) */
.input-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-dim);
  pointer-events: none;
  transition: color 0.2s;
}

.form-input {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px 13px 40px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  display: block;
}

.form-input::placeholder {
  color: var(--text-dim);
}

.form-input:focus {
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* Odaklanınca ikon da parlar */
.input-wrapper:focus-within .input-icon {
  color: #818cf8;
}

/* Tam genişlik buton */
.btn-full {
  width: 100% !important;
  justify-content: center;
  box-sizing: border-box;
}

/* Ayraç ("veya" çizgisi) */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Alt yönlendirme metni */
.auth-redirect {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 22px;
}

.auth-redirect a {
  color: #818cf8;
  font-weight: 700;
  transition: color 0.2s;
}

.auth-redirect a:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

/* Şifremi unuttum linki */
.forgot-link {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  transition: color 0.2s;
}

.forgot-link:hover {
  color: #818cf8;
}

/* Şifre gücü göstergesi (register için) */
.password-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Şartlar notu */
.auth-terms {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
  margin-top: 16px;
}

.auth-terms a {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color 0.2s;
}

.auth-terms a:hover { color: var(--text-primary); }

/* ============================================================
   NAV — Kullanıcı Dropdown
   ============================================================ */

.nav-user-dropdown {
  position: relative;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}
.nav-user-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(99,102,241,0.4);
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(99,102,241,0.4);
  flex-shrink: 0;
  image-rendering: pixelated; /* Minecraft avatar için */
}

.nav-user-chevron {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.nav-user-btn[aria-expanded="true"] .nav-user-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
  animation: dropdown-in 0.15s ease;
}
.nav-dropdown-menu.open { display: block; }

@keyframes dropdown-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}
.nav-dropdown-item i { width: 16px; text-align: center; font-size: 13px; }

.nav-dropdown-item--danger { color: #f87171; }
.nav-dropdown-item--danger:hover { background: rgba(239,68,68,0.08); color: #fca5a5; }

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

/* ============================================================
   SEPET — SADECE CHECKOUT BUTONU VE TOAST
   ============================================================ */
.nav-cart-checkout:active {
  transform: translateY(4px);
  box-shadow: none !important;
}
.nav-cart-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: translateY(4px);
  box-shadow: none !important;
}

/* Toast bildirimi (shop ile ortak) */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transform: translateX(calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
#toast.toast-show { transform: translateX(0) !important; opacity: 1 !important; pointer-events: auto !important; }
#toast.toast-hide { transform: translateX(calc(100% + 32px)) !important; opacity: 0 !important; pointer-events: none !important; }
#toast.toast-success { background: rgba(22,163,74,0.9); border: 1px solid rgba(22,163,74,0.6); color: #bbf7d0; }
#toast.toast-error { background: rgba(220,38,38,0.9); border: 1px solid rgba(220,38,38,0.6); color: #fecaca; }

/* ── Cart Modal (centered popup) ── */
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-modal.open { display: flex; }
.cart-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .2s ease;
}
.cart-modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  animation: modalIn .25s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 16px 60px rgba(0,0,0,.5);
  overflow: hidden;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes nxsSpin { from { transform: rotate(0deg) } to { transform: rotate(360deg) } }
.cart-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-modal-title {
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, background .15s;
}
.cart-modal-close:hover { color: var(--text-primary); background: var(--bg-hover); }
.cart-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}
.cart-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
}
.cart-modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cart-total-price {
  font-size: 18px;
  font-weight: 900;
  color: #fbc853;
}
.cart-checkout-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(180deg, #fbc853 0%, #f7b131 100%);
  color: #4c3716;
  box-shadow: 0 4px 0 #a26e13;
  transition: transform .05s, box-shadow .05s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cart-checkout-btn:active {
  transform: translateY(4px);
  box-shadow: none;
}
.cart-checkout-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: translateY(4px);
  box-shadow: none;
}
.nav-cart-btn:hover {
  color: var(--text-primary);
  border-color: rgba(99,102,241,0.4);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img,
.cart-item-img-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-img-placeholder {
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cart-qty-btn:hover { background: var(--bg-hover); }
.cart-qty-val {
  width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.cart-item-remove {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #ef4444;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(239,68,68,0.1); }
.cart-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
}
.cart-empty i { font-size: 36px; margin-bottom: 10px; display: block; }
.cart-empty p { margin: 0; font-size: 13px; font-weight: 600; }

@media (max-width: 480px) {
  .cart-modal-content { max-width: 94%; max-height: 90vh; }
  .cart-modal-body { padding: 10px 12px; }
  .cart-modal-footer { padding: 12px 14px; }
  .cart-item { gap: 6px; padding: 8px 0; }
  .cart-item-img, .cart-item-img-placeholder { width: 32px; height: 32px; font-size: 13px; }
  .cart-item-name { font-size: 12px; }
  .cart-item-price { font-size: 11px; }
  .cart-qty-btn { width: 26px; height: 26px; font-size: 13px; }
  .cart-qty-val { width: 20px; font-size: 12px; }
  .cart-item-remove { width: 26px; height: 26px; font-size: 12px; }
}



/* ── Auth Alert ── */
.auth-alert-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   KULLANICI PANELİ — Sidebar Layout
   ============================================================ */

.panel-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 68px);
  padding: 32px 24px;
  gap: 24px;
}

.panel-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  height: fit-content;
  position: sticky;
  top: 88px;
}

/* Sidebar kullanıcı kutusu */
.sidebar-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  text-align: center;
}
.sidebar-user-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(99,102,241,0.4);
  image-rendering: pixelated;
}
.sidebar-user-name {
  font-size: 15px;
  font-weight: 800;
}
.sidebar-user-email {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sidebar-user-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #818cf8;
  background: rgba(99,102,241,0.12);
  padding: 3px 10px;
  border-radius: 999px;
}

/* Sidebar Nav */
.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(99,102,241,0.1);
  color: var(--text-primary);
}
.sidebar-nav a.active { color: #a5b4fc; }
.sidebar-nav a i { width: 18px; text-align: center; font-size: 14px; }
.sidebar-nav .danger a { color: #f87171; }
.sidebar-nav .danger a:hover { background: rgba(239,68,68,0.08); }

/* Panel Ana İçerik */
.panel-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.panel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px;
}

.panel-card-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.panel-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Avatar seçici */
.avatar-picker {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.avatar-option {
  position: relative;
  cursor: pointer;
}
.avatar-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
}
.avatar-option img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--border);
  transition: border-color 0.2s, transform 0.1s;
  image-rendering: pixelated;
}
.avatar-option input:checked + img,
.avatar-option img:hover {
  border-color: #6366f1;
  transform: scale(1.05);
}

.avatar-upload-label {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  gap: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.avatar-upload-label:hover { border-color: #6366f1; color: #818cf8; }
.avatar-upload-label i { font-size: 18px; }

@media (max-width: 768px) {
  .panel-layout { grid-template-columns: 1fr; padding: 16px; gap: 16px; }
  .panel-sidebar { position: static; border-radius: 14px; }
  .panel-content { padding: 0; max-width: 100%; }
}

/* ============================================================
   V2 — Editoryal yenileme + açık tema
   (Mevcut sınıflara dokunulmaz; yenileme bu bloktadır)
   ============================================================ */

html[data-theme="light"] {
  --bg-base:       #eef1f7;
  --bg-surface:    #ffffff;
  --bg-card:       #ffffff;
  --bg-card-hover: #f4f6fb;
  --border:        rgba(15,23,42,.1);
  --border-accent: rgba(217,149,34,.4);
  --text-primary:  #101828;
  --text-muted:    #5b6478;
  --text-dim:      #98a2b8;
}

.nx-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15px;
  cursor: pointer;
  transition: color .2s, border-color .2s, transform .2s;
}
.nx-theme-toggle:hover { color: #fbc853; border-color: rgba(251,200,83,.4); transform: translateY(-1px); }
html[data-theme="light"] .nx-theme-toggle { background: rgba(15,23,42,.04); }
.nx-theme-toggle .fa-sun { display: none; }
html[data-theme="light"] .nx-theme-toggle .fa-sun { display: inline; }
html[data-theme="light"] .nx-theme-toggle .fa-moon { display: none; }

html[data-theme="light"] .hero-v2-eyebrow { color: #b57a0a; }
html[data-theme="light"] .hero-v2-eyebrow::before { background: #b57a0a; }
html[data-theme="light"] .hero-v2-title .stroke { color: #b57a0a; -webkit-text-stroke: 0; }
html[data-theme="light"] .hero-v2::before { background: radial-gradient(circle, rgba(181,122,10,.10) 0%, rgba(181,122,10,0) 62%); }
html[data-theme="light"] .hero-v2::after { background: linear-gradient(90deg, rgba(181,122,10,.5), rgba(181,122,10,0)); }
html[data-theme="light"] .hero-v2-meta .dot { background: #b57a0a; }
html[data-theme="light"] .product-card-thumb { background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); }
html[data-theme="light"] .navbar { background: rgba(255,255,255,.86); }
html[data-theme="light"] .navbar-links a:hover,
html[data-theme="light"] .navbar-links a.active { background: rgba(15,23,42,.06); }
html[data-theme="light"] .footer-social-btn.github:hover { color: #24292f; border-color: rgba(36,41,47,.25); background: rgba(36,41,47,.06); }

.hero-v2 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 84px 24px 64px;
  overflow: hidden;
}
.hero-v2::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(251,200,83,.09) 0%, rgba(251,200,83,0) 62%);
  pointer-events: none;
}
.hero-v2::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(251,200,83,.5), rgba(251,200,83,0));
}
.hero-v2-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fbc853;
  margin-bottom: 22px;
}
.hero-v2-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #fbc853;
}
.hero-v2-title {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 16ch;
}
.hero-v2-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px #fbc853;
}
.hero-v2-sub {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.hero-v2-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-v2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 600;
}
.hero-v2-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: #fbc853; }
.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--border);
}
.hero-v2-stat { padding: 20px 22px 4px 0; }
.hero-v2-stat + .hero-v2-stat { border-left: 1px solid var(--border); padding-left: 22px; }
.hero-v2-stat b {
  display: block;
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero-v2-stat span { font-size: 12px; color: var(--text-muted); font-weight: 600; }

.trust-v2-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 32px;
  align-items: start;
}
.trust-v2-side { position: sticky; top: 90px; }
.trust-v2-index {
  font-family: 'Space Grotesk', monospace;
  font-size: 12px;
  letter-spacing: .2em;
  color: #fbc853;
  font-weight: 700;
}
.trust-v2-list { display: flex; flex-direction: column; }
.trust-v2-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 6px;
  border-top: 1px solid var(--border);
  transition: background .2s, padding .2s;
}
.trust-v2-row:last-child { border-bottom: 1px solid var(--border); }
.trust-v2-row:hover { background: rgba(251,200,83,.04); }
.trust-v2-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}
.trust-v2-ic {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(251,200,83,.1);
  color: #fbc853;
  flex-shrink: 0;
}
.trust-v2-row h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.trust-v2-row p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 860px) {
  .trust-v2-grid { grid-template-columns: 1fr; }
  .trust-v2-side { position: static; }
  .hero-v2-stat + .hero-v2-stat { border-left: none; padding-left: 0; }
}

select option { background: #0f1520; color: #e2e8f0; }
html[data-theme="light"] .bg-\[\#0f1520\] { background: #ffffff !important; border-color: #e2e8f0 !important; }
html[data-theme="light"] .border-white\/10 { border-color: #e2e8f0 !important; }
html[data-theme="light"] .border-white\/8 { border-color: #e2e8f0 !important; }
html[data-theme="light"] .bg-white\/5 { background: rgba(15,23,42,.04) !important; }
html[data-theme="light"] .bg-white\/3 { background: rgba(15,23,42,.03) !important; }
html[data-theme="light"] .hover\:bg-white\/5:hover { background: rgba(15,23,42,.06) !important; }
html[data-theme="light"] .bg-\[\#0f1520\] .text-white:not([class*="bg-indigo"]):not([class*="btn-"]) { color: #0f172a !important; }
html[data-theme="light"] .bg-\[\#0f1520\] .text-slate-200 { color: #1e293b !important; }
html[data-theme="light"] .bg-\[\#0f1520\] .text-slate-300 { color: #334155 !important; }
html[data-theme="light"] .bg-\[\#0f1520\] .text-slate-400 { color: #64748b !important; }
html[data-theme="light"] .bg-\[\#0f1520\] .text-slate-500 { color: #64748b !important; }
html[data-theme="light"] .bg-\[\#0f1520\] .hover\:text-white:hover { color: #0f172a !important; }
html[data-theme="light"] select option { background: #ffffff; color: #0f172a; }
html[data-theme="light"] .default-tab-pane { color: var(--text-primary); }



