/* ==========================================================================
   BombomVIP Master Theme — bombum.net tarzı modern dark
   ========================================================================== */

:root {
  /* Arka planlar */
  --bg-deep:       #07080f;
  --bg-base:       #0d0f1a;
  --bg-surface:    #111422;
  --bg-elevated:   #181c2e;
  --bg-card:       rgba(17, 20, 34, 0.80);
  --bg-glass:      rgba(17, 20, 34, 0.65);
  /* Sınırlar */
  --border:        rgba(255, 255, 255, 0.06);
  --border-md:     rgba(255, 255, 255, 0.10);
  --border-hi:     rgba(255, 255, 255, 0.16);
  /* Marka renkleri — ALTIN */
  --indigo:        #f0a500;
  --indigo-light:  #ffc53d;
  --indigo-dark:   #c98600;
  --purple:        #a855f7;
  --purple-light:  #c084fc;
  --pink:          #ec4899;
  /* Gradient (marka — Altın) */
  --grad:          linear-gradient(135deg, #f5a623 0%, #f0a500 50%, #c98600 100%);
  --grad-rev:      linear-gradient(135deg, #c98600 0%, #f0a500 50%, #f5a623 100%);
  --grad-text:     linear-gradient(90deg, #ffc53d, #fff5d0, #ffc53d);
  /* Turuncu (etkinlik/CTA) */
  --orange:        #f59e0b;
  --orange-deep:   #ea580c;
  /* Altın (VIP) */
  --gold:          #f0a500;
  --gold-light:    #ffc53d;
  --gold-deep:     #b87a00;
  /* Metin */
  --text-hi:       #ffffff;
  --text-md:       #9ca3af;
  --text-lo:       #6b7280;
  --text-mute:     #374151;
  /* Durum */
  --green:         #22c55e;
  --red:           #ef4444;
  --blue:          #3b82f6;
  /* Köşe yarıçapı */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-2xl: 28px;
  /* Gölgeler */
  --sh-sm:     0 2px 8px rgba(0,0,0,.35);
  --sh-md:     0 8px 24px rgba(0,0,0,.45);
  --sh-lg:     0 24px 60px rgba(0,0,0,.60);
  --sh-indigo: 0 0 32px rgba(240,165,0,.25);
  --sh-purple: 0 0 32px rgba(168,85,247,.20);
  --sh-orange: 0 4px 20px rgba(245,158,11,.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-deep);
  color: var(--text-hi);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

a { color: var(--indigo-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--purple-light); }
a.btn:hover, a.btn-primary:hover, a.btn-secondary:hover, a.btn-vip:hover, a.btn-ghost:hover, a.btn-outline:hover, a.btn-block:hover { color: #fff; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─────────────────────────────────────────────────────────────────────────
   Arka plan efekti — çoklu orb
───────────────────────────────────────────────────────────────────────── */
.bg-fx {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.bg-fx::before {
  content: ''; position: absolute; border-radius: 50%; filter: blur(140px);
  width: 700px; height: 700px; top: -250px; left: -150px;
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
  animation: orb 10s ease-in-out infinite alternate;
}
.bg-fx::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(150px);
  width: 600px; height: 600px; bottom: -200px; right: -150px;
  background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, transparent 70%);
  animation: orb 13s ease-in-out infinite alternate-reverse;
}
@keyframes orb {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(50px,40px) scale(1.12); }
}

/* ─────────────────────────────────────────────────────────────────────────
   Layout
───────────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.row       { display: flex; flex-wrap: wrap; gap: 16px; }
.col       { flex: 1 1 0; min-width: 0; }

/* ─────────────────────────────────────────────────────────────────────────
   Tipografi
───────────────────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; letter-spacing: -0.01em; color: var(--text-hi); }
h1 { font-size: 42px; line-height: 1.1; }
h2 { font-size: 26px; line-height: 1.2; }
h3 { font-size: 18px; line-height: 1.3; }
h4 { font-size: 15px; line-height: 1.4; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.purple-text {
  background: linear-gradient(135deg, var(--indigo-light), var(--purple-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.muted { color: var(--text-md); }
.dim   { color: var(--text-lo); }

/* ─────────────────────────────────────────────────────────────────────────
   Navbar
───────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(7,8,15,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.nav-brand .nav-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--sh-indigo);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text .b1 {
  font-size: 16px; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-brand-text .b2 { font-size: 9px; letter-spacing: 0.25em; color: var(--text-lo); margin-top: 3px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  padding: 7px 13px; border-radius: var(--r-sm);
  color: var(--text-md); font-size: 13px; font-weight: 500;
  transition: all .15s;
}
.nav-link:hover { color: var(--text-hi); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--indigo-light); background: rgba(240,165,0,0.10); }
.nav-link.nav-event {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(234,88,12,0.15));
  color: var(--orange); border: 1px solid rgba(245,158,11,0.25);
}
.nav-link.nav-event:hover { background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(234,88,12,0.25)); color: #fbbf24; }

.nav-actions { display: flex; gap: 8px; align-items: center; }

/* ─────────────────────────────────────────────────────────────────────────
   Butonlar
───────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px; padding: 0 20px; height: 40px;
  border: 1px solid transparent; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .18s; white-space: nowrap; text-decoration: none;
  background: transparent; color: var(--text-md);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: scale(0.97); }

/* Ana CTA — Altın degradesi */
.btn-primary {
  background: var(--grad);
  color: #1a1000; font-weight: 700;
  box-shadow: var(--sh-indigo);
  border: none;
}
.btn-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 8px 28px rgba(240,165,0,0.45);
}

/* Etkinlik/indirme butonu — turuncu */
.btn-secondary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff; font-weight: 700;
  box-shadow: var(--sh-orange);
  border: none;
}
.btn-secondary:hover { filter: brightness(1.1); box-shadow: 0 8px 24px rgba(245,158,11,0.50); }

/* VIP butonu — altın */
.btn-vip {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1100; font-weight: 700;
  box-shadow: 0 4px 16px rgba(240,165,0,0.30);
  border: none;
}
.btn-vip:hover { filter: brightness(1.1); }

.btn-outline {
  background: transparent; color: var(--indigo-light);
  border: 1px solid rgba(240,165,0,0.35);
}
.btn-outline:hover { background: rgba(240,165,0,0.10); border-color: var(--indigo); color: var(--indigo-light); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-md);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); color: var(--text-hi); border-color: var(--border-md); }

.btn-danger { background: linear-gradient(135deg,#ef4444,#dc2626); color:#fff; border:none; box-shadow:0 4px 14px rgba(239,68,68,.3); }
.btn-danger:hover { filter: brightness(1.1); }

.btn-lg { height: 52px; padding: 0 28px; font-size: 14px; border-radius: var(--r-md); }
.btn-xl { height: 56px; padding: 0 32px; font-size: 15px; border-radius: var(--r-md); font-weight: 700; }
.btn-block { display: flex; width: 100%; }
.btn-sm { height: 34px; padding: 0 14px; font-size: 12px; }
.btn-xs { height: 28px; padding: 0 10px; font-size: 11px; }

/* ─────────────────────────────────────────────────────────────────────────
   Kartlar (glass morphism)
───────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl);
  padding: 22px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: rgba(240,165,0,0.20); box-shadow: var(--sh-md); }

.glass {
  background: rgba(17,20,34,0.60);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
}

/* ─────────────────────────────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 72px 0 90px;
  overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,8,15,0.25) 0%, rgba(7,8,15,0.80) 60%, var(--bg-deep) 100%),
              url('a1.png') center/cover no-repeat;
}
.hero-content { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.25);
  color: var(--indigo-light); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 22px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero h1 { font-size: 52px; line-height: 1.08; margin-bottom: 18px; letter-spacing: -0.025em; }
.hero p.lead { font-size: 16px; color: var(--text-md); margin-bottom: 30px; max-width: 520px; line-height: 1.65; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────
   Form kart
───────────────────────────────────────────────────────────────────────── */
.form-card {
  background: rgba(13,15,26,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-2xl);
  padding: 30px;
  box-shadow: var(--sh-lg), 0 0 60px rgba(240,165,0,0.08);
}
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.form-subtitle { color: var(--text-lo); font-size: 13px; margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-md); margin-bottom: 7px; letter-spacing: 0.06em; text-transform: uppercase; }
.form-input {
  width: 100%; height: 44px; padding: 0 16px;
  background: rgba(7,8,15,0.7); color: var(--text-hi);
  border: 1px solid var(--border-md); border-radius: var(--r-md);
  font-size: 14px; outline: none; transition: border-color .18s, box-shadow .18s;
}
.form-input:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(240,165,0,0.18); }
.form-input::placeholder { color: var(--text-mute); }
.form-error   { padding:10px 14px; border-radius:var(--r-sm); font-size:13px; margin-bottom:14px; background:rgba(239,68,68,.10); border:1px solid rgba(239,68,68,.3); color:#fca5a5; }
.form-success { padding:10px 14px; border-radius:var(--r-sm); font-size:13px; margin-bottom:14px; background:rgba(34,197,94,.10); border:1px solid rgba(34,197,94,.3); color:#86efac; }
.form-meta { display:flex; align-items:center; justify-content:space-between; margin:4px 0 16px; font-size:12px; color:var(--text-lo); }
.form-meta a { color:var(--indigo-light); }
.form-meta a:hover { color:var(--purple-light); }
.form-divider { display:flex; align-items:center; gap:10px; margin:20px 0 16px; color:var(--text-mute); font-size:11px; text-transform:uppercase; letter-spacing:.15em; }
.form-divider::before,.form-divider::after { content:''; flex:1; height:1px; background:var(--border); }

/* ─────────────────────────────────────────────────────────────────────────
   Kullanıcı bar
───────────────────────────────────────────────────────────────────────── */
.user-bar {
  display: flex; align-items: center; gap: 12px;
  background: rgba(17,20,34,0.70); border: 1px solid var(--border-md);
  padding: 7px 7px 7px 16px; border-radius: 999px;
  backdrop-filter: blur(12px);
}
.user-bar .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 13px;
}
.user-bar .who { display:flex; flex-direction:column; line-height:1.15; }
.user-bar .who small { font-size:10px; color:var(--text-lo); text-transform:uppercase; letter-spacing:.08em; }
.user-bar .who strong { font-size:13px; font-weight:700; }

.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.22);
  color: var(--indigo-light); font-size: 11px; font-weight: 700;
}
.chip-vip {
  background: linear-gradient(135deg, rgba(240,165,0,0.18), rgba(255,197,61,0.10));
  color: var(--gold-light); border-color: rgba(240,165,0,0.35);
}

/* ─────────────────────────────────────────────────────────────────────────
   Sunucu kartı
───────────────────────────────────────────────────────────────────────── */
.server-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.server-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-md);
  border-radius: var(--r-xl); padding: 20px; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.server-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.server-card:hover { transform: translateY(-3px); border-color: rgba(240,165,0,0.30); box-shadow: 0 16px 40px rgba(0,0,0,.45), var(--sh-indigo); }
.server-card .name { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.server-card .meta { font-size: 12px; color: var(--text-md); margin-bottom: 14px; }
.server-card .stats { display: flex; gap: 14px; margin-bottom: 14px; }
.server-card .stat { font-size: 11px; color: var(--text-lo); text-transform: uppercase; letter-spacing: .08em; }
.server-card .stat strong { display: block; font-size: 17px; color: var(--text-hi); margin-top: 2px; }
.server-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.server-status.online  { background: rgba(34,197,94,0.12); color: var(--green); }
.server-status.offline { background: rgba(239,68,68,0.12); color: var(--red); }
.server-status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ─────────────────────────────────────────────────────────────────────────
   Bölüm & Başlık
───────────────────────────────────────────────────────────────────────── */
.section { padding: 50px 0; }
.section-title {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px; gap: 12px;
}
.section-title .more { color: var(--indigo-light); font-size: 13px; font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────
   3 Sütun ana alan
───────────────────────────────────────────────────────────────────────── */
.main-grid {
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  gap: 16px;
  align-items: start;
}
@media(max-width:900px) { .main-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .main-grid { grid-template-columns: 1fr; } }

/* Panel (cam kart) */
.panel {
  background: rgba(17,20,34,0.70);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.panel-head h3 { font-size: 14px; font-weight: 700; margin: 0; }
.panel-body { padding: 14px 0; }
.panel-body-pad { padding: 14px 18px; }

/* ─────────────────────────────────────────────────────────────────────────
   Sıralama listesi
───────────────────────────────────────────────────────────────────────── */
.rank-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .12s;
}
.rank-row:last-child { border-bottom: none; }
.rank-row:hover { background: rgba(240,165,0,0.06); }
.rank-num { min-width: 22px; text-align: center; font-size: 12px; font-weight: 700; color: var(--text-lo); }
.rank-name { flex: 1; font-size: 13px; font-weight: 600; color: var(--text-hi); min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-val { font-size: 12px; font-weight: 700; color: var(--indigo-light); }
.rank-sub { font-size: 10px; color: var(--text-lo); margin-top: 1px; }
.rank-badge { display: inline-block; padding: 1px 6px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.rb-lv   { background: rgba(240,165,0,0.15); color: var(--indigo-light); }
.rb-gold { background: rgba(240,165,0,0.15); color: var(--gold-light); }
.rb-guild{ background: rgba(168,85,247,0.15); color: var(--purple-light); }

/* Sekme sistemi */
.tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0 18px; }
.tab-btn {
  padding: 10px 14px; font-size: 12px; font-weight: 600;
  color: var(--text-lo); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--text-md); }
.tab-btn.active { color: var(--text-hi); border-bottom-color: var(--indigo); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ─────────────────────────────────────────────────────────────────────────
   Haber/İçerik listesi
───────────────────────────────────────────────────────────────────────── */
.news-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .12s;
  text-decoration: none;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: rgba(255,255,255,0.03); }
.nb-tag {
  flex-shrink: 0; font-size: 9px; font-weight: 800;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.nb-tag.notice  { background: rgba(245,158,11,0.15);  color: #fbbf24; }
.nb-tag.event   { background: rgba(168,85,247,0.15);  color: var(--purple-light); }
.nb-tag.guide   { background: rgba(59,130,246,0.15);  color: #93c5fd; }
.nb-title { flex: 1; font-size: 13px; font-weight: 500; color: var(--text-md); }
.news-item:hover .nb-title { color: var(--text-hi); }
.nb-date { font-size: 10px; color: var(--text-lo); white-space: nowrap; font-family: monospace; }

/* Rehber kartları (sağ sütun) */
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 18px; }
.guide-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md); padding: 12px; text-align: center;
  transition: all .2s; cursor: pointer;
}
.guide-card:hover { background: rgba(240,165,0,0.10); border-color: rgba(240,165,0,0.25); transform: scale(1.03); }
.guide-card .gc-icon { font-size: 22px; margin-bottom: 5px; }
.guide-card .gc-label { font-size: 11px; font-weight: 600; color: var(--text-md); }

/* ─────────────────────────────────────────────────────────────────────────
   Rozet / Etiket
───────────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
}
.badge-indigo { background: rgba(240,165,0,0.15); color: var(--indigo-light); }
.badge-purple { background: rgba(168,85,247,0.15); color: var(--purple-light); }
.badge-orange { background: rgba(245,158,11,0.15); color: #fbbf24; }
.badge-green  { background: rgba(34,197,94,0.15);  color: #86efac; }
.badge-red    { background: rgba(239,68,68,0.15);  color: #fca5a5; }
.badge-gold   { background: rgba(240,165,0,0.15);  color: var(--gold-light); }

/* ─────────────────────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────────────────────── */
.footer {
  padding: 44px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 48px;
  background: rgba(7,8,15,0.6);
  backdrop-filter: blur(8px);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 28px; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-lo); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-md); font-size: 13px; transition: color .15s; }
.footer-col a:hover { color: var(--indigo-light); }
.footer-brand { color: var(--text-lo); font-size: 13px; max-width: 340px; line-height: 1.6; margin-top: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: var(--text-lo);
}
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-md); transition: all .2s; font-size: 12px;
}
.social-btn:hover { color: var(--indigo-light); border-color: rgba(240,165,0,0.35); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────────────────
   Yüzen destek widgeti
───────────────────────────────────────────────────────────────────────── */
.support-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
}
.support-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad);
  border: none; cursor: pointer; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(240,165,0,0.40);
  transition: transform .25s, box-shadow .25s;
  color: #fff;
}
.support-toggle:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(240,165,0,0.55); }
.support-menu {
  display: none; position: absolute; bottom: 64px; right: 0;
  width: 220px;
  background: rgba(13,15,26,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.support-menu.open { display: block; }
.support-menu-head {
  padding: 14px 16px;
  background: var(--grad);
  font-size: 13px; font-weight: 700; color: #fff;
}
.support-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px; font-weight: 500; color: var(--text-md);
  transition: background .12s;
  text-decoration: none;
}
.support-link:last-child { border-bottom: none; }
.support-link:hover { background: rgba(240,165,0,0.08); color: var(--text-hi); }
.support-link .sl-icon { font-size: 18px; }
.support-link .sl-badge {
  margin-left: auto; font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 999px;
  background: rgba(34,197,94,0.15); color: #86efac;
}

/* ─────────────────────────────────────────────────────────────────────────
   Scrollbar
───────────────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb { background: rgba(240,165,0,0.30); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(240,165,0,0.50); }

/* ─────────────────────────────────────────────────────────────────────────
   Animasyonlar
───────────────────────────────────────────────────────────────────────── */
.fade-up { animation: fadeUp .55s ease-out backwards; }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.delay-1{animation-delay:.1s} .delay-2{animation-delay:.2s} .delay-3{animation-delay:.3s}

/* ─────────────────────────────────────────────────────────────────────────
   Utility
───────────────────────────────────────────────────────────────────────── */
.mt-0{margin-top:0} .mt-2{margin-top:8px} .mt-4{margin-top:16px} .mt-6{margin-top:24px}
.mb-0{margin-bottom:0} .mb-2{margin-bottom:8px} .mb-4{margin-bottom:16px} .mb-6{margin-bottom:24px}
.text-center{text-align:center}
.flex{display:flex} .items-center{align-items:center} .justify-between{justify-content:space-between} .justify-center{justify-content:center}
.gap-2{gap:8px} .gap-3{gap:12px} .gap-4{gap:16px}

/* ─────────────────────────────────────────────────────────────────────────
   Öne çıkan banner (merkez sütun üstü)
───────────────────────────────────────────────────────────────────────── */
.featured-banner {
  position: relative; height: 220px;
  border-radius: var(--r-xl); overflow: hidden;
  margin-bottom: 14px;
  background: url('a1.png') center/cover no-repeat;
  background-color: var(--bg-elevated);
}
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,8,15,0.88) 0%, rgba(7,8,15,0.40) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 24px;
}

/* ─────────────────────────────────────────────────────────────────────────
   Hesap kartı (sol sütun üstü)
───────────────────────────────────────────────────────────────────────── */
.account-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(240,165,0,0.10), rgba(200,135,0,0.05));
}
.account-avatar-lg {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #1a1000; flex-shrink: 0;
  box-shadow: var(--sh-indigo);
}
.account-stat-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.account-stat-row:last-child { border-bottom: none; }
.account-stat-label { color: var(--text-lo); font-size: 12px; }
.account-stat-val { font-weight: 700; }

/* ─────────────────────────────────────────────────────────────────────────
   İstatistik kutuları (Anasayfa)
───────────────────────────────────────────────────────────────────────── */
.stat-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-box {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md); padding: 12px; text-align: center;
}
.stat-box .sb-val { font-size: 22px; font-weight: 800; margin-bottom: 3px; }
.stat-box .sb-label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-lo); }

/* ─────────────────────────────────────────────────────────────────────────
   Sayfa içeriği (hero yerine)
───────────────────────────────────────────────────────────────────────── */
.page-content { padding: 28px 0 60px; }

/* Responsive */
@media(max-width:900px) { .hero-content{grid-template-columns:1fr;gap:36px} .hero h1{font-size:36px} }
@media(max-width:768px) { .footer-grid{grid-template-columns:1fr 1fr} .nav-links{display:none} }
@media(max-width:480px) { .footer-grid{grid-template-columns:1fr} }
