/* ============================================================================
   AttentionHub v2.33.0 — "AZURE FLAT" Tasarım Sistemi
   v2.33.0 DERS: kullanıcı tercihi — GRADYAN YOK, DÜZ RENK. Hafif mavi tonlu,
   modern ve sade yüzeyler; tek düz mavi vurgu (#1570EF) beyaz metinle.
   Gece paleti [data-theme="dark"] kapsamında aynen yaşar (0 regresyon).
   Space Grotesk (başlık) + Inter (gövde). Mobil öncelikli, tam responsive.
   Tüm v1 sınıf adları VE token adları geriye dönük uyumlu.
   ============================================================================ */

:root, [data-theme="light"] {
  --bg: #F3F7FC;
  --bg-2: #EAF1F9;
  --surface: #FFFFFF;
  --surface-2: #F4F8FC;
  --surface-3: #E9F0F9;
  --border: #DFE8F3;
  --border-2: #C6D5EA;
  --text: #14263D;
  --muted: #5A6B85;
  --brand: #1570EF;
  --brand-2: #0E9F6E;
  --gold: #D97706;
  --up: #0E9F6E;
  --down: #E0446E;
  /* v2.34.0 — mor/lime tokenları da mavi ailesine bağlandı (açık temada tek palet) */
  --violet: #1570EF;
  --lime: #0B7A55;
  --danger: #E0446E;
  --mono: "SFMono-Regular", ui-monospace, "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  /* v2.33.0 — DÜZ RENK DEVRİMİ: --grad* artık TEK DÜZ RENK; var(--grad)
     kullanan her bileşen (düğme, sekme, sayfalama, rozet, duyuru) otomatik
     düzleşir — bileşen kuralı yazmaya gerek yok. */
  --grad: #1570EF;
  --grad-gold: #D97706;
  --grad-violet: #1570EF;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 9px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(21, 93, 171, .08);
  --shadow-sm: 0 3px 12px rgba(21, 93, 171, .07);
  --shadow-glow: 0 8px 24px rgba(21, 112, 239, .20);
  --shadow-glow-2: 0 8px 24px rgba(14, 159, 110, .16);
  --glass: #FFFFFF;
  --glass-2: #FFFFFF;
  --header-h: 68px;
  --ring: 0 0 0 3px rgba(21, 112, 239, .18);
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* v2.33.0 — aurora ışıkları kapatıldı: zemin TEK DÜZ renk (kullanıcı tercihi) */
  --aurora-1: transparent;
  --aurora-2: transparent;
  --aurora-3: transparent;
}
[data-theme="dark"] {
  --bg: #060A14;
  --bg-2: #080D1A;
  --surface: #0D1526;
  --surface-2: #121C33;
  --surface-3: #1A2647;
  --border: #1D2A4D;
  --border-2: #2C3D6E;
  --text: #EDF2FD;
  --muted: #8B96BC;
  --brand: #00E5FF;
  --brand-2: #00FF66;
  --gold: #FFC542;
  --up: #00FF66;
  --down: #FF5C7A;
  --violet: #6C5CE7;
  --lime: #B7FF2E;
  --danger: #FF5C7A;
  --grad: linear-gradient(92deg, #00E5FF 0%, #00FF66 100%);
  --grad-gold: linear-gradient(92deg, #FFC542 0%, #FF9D2E 100%);
  --grad-violet: linear-gradient(92deg, #6C5CE7 0%, #00E5FF 100%);
  --shadow: 0 14px 44px rgba(1, 5, 16, .55);
  --shadow-sm: 0 4px 16px rgba(1, 5, 16, .35);
  --shadow-glow: 0 10px 34px rgba(0, 229, 255, .22);
  --shadow-glow-2: 0 10px 34px rgba(0, 255, 102, .18);
  --glass: rgba(13, 21, 38, .78);
  --glass-2: rgba(18, 28, 51, .55);
  --ring: 0 0 0 3px rgba(0, 229, 255, .22);
  --aurora-1: rgba(108, 92, 231, .16);
  --aurora-2: rgba(0, 229, 255, .10);
  --aurora-3: rgba(0, 255, 102, .07);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .955rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-wrap: anywhere;
}
/* Aurora arka plan ışığı — sabit, hafif */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(52rem 30rem at 88% -8%, var(--aurora-1), transparent 62%),
    radial-gradient(46rem 26rem at -12% 4%, var(--aurora-2), transparent 60%),
    radial-gradient(40rem 24rem at 50% 112%, var(--aurora-3), transparent 62%);
}
[data-theme="light"] body::before { opacity: .9; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
  overflow-wrap: anywhere;
}
p, li { overflow-wrap: anywhere; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-2); }
code, pre, kbd { font-family: var(--mono); font-size: .86em; }
::selection { background: rgba(0, 229, 255, .28); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--border-2) transparent; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3B5188; }
::-webkit-scrollbar-track { background: transparent; }
img, svg, video { max-width: 100%; }
hr.divider { border: 0; border-top: 1px solid var(--border); opacity: 1; margin: 1rem 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* ---------- Tipografi yardımcıları ---------- */
.text-muted-ah { color: var(--muted) !important; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.grad-gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.page-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.45rem, 2.6vw, 1.9rem); line-height: 1.2; letter-spacing: -.02em; }
.page-sub { color: var(--muted); font-size: .95rem; }
.ah-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.4vw, 2.9rem); line-height: 1.14; letter-spacing: -.025em; }
/* v2.1.0 — ana başlıkta yavaş akan gradient ışıltı (prefers-reduced-motion'da durur) */
@media (prefers-reduced-motion: no-preference) {
  .ah-title .grad {
    background: linear-gradient(90deg, var(--brand), var(--up), var(--gold), var(--brand));
    background-size: 260% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: gradFlow 9s ease-in-out infinite;
  }
  .ah-title .grad-gold-text,
  span.grad-gold-text {
    background: linear-gradient(90deg, var(--gold), #FFE28A, var(--gold));
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: gradFlow 7s ease-in-out infinite;
  }
}
@keyframes gradFlow { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ---------- Sayfa başlığı bandı ---------- */
.page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin: 1.35rem 0 1.15rem;
}
.page-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.section-gap { margin-block: 1.6rem; }
.section-gap-sm { margin-block: .9rem; }

/* ---------- Butonlar ---------- */
.btn-primary, .btn-ghost, .btn-soft, .btn-gold, .btn-danger-ah {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--font-body); font-weight: 650; font-size: .895rem; line-height: 1;
  padding: .72rem 1.15rem; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; user-select: none; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(92deg, #00C6D8 0%, #00B85A 100%);
  color: #04121C; font-weight: 750; letter-spacing: .01em;
  box-shadow: 0 6px 22px rgba(0, 210, 180, .30), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn-primary:hover, .btn-primary:focus-visible {
  color: #04121C; transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 210, 180, .42), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .55; transform: none; cursor: not-allowed; }
.btn-ghost {
  background: var(--glass-2); color: var(--text);
  border-color: var(--border-2); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.btn-soft {
  background: rgba(0, 229, 255, .10); color: var(--brand);
  border-color: rgba(0, 229, 255, .22);
}
.btn-soft:hover { background: rgba(0, 229, 255, .16); color: var(--brand); transform: translateY(-1px); }
[data-theme="light"] .btn-soft { background: rgba(21, 112, 239, .08); color: #0F5ED7; border-color: rgba(21, 112, 239, .22); }
[data-theme="light"] .btn-soft:hover { background: rgba(21, 112, 239, .14); color: #0F5ED7; }
.btn-gold {
  background: var(--grad-gold); color: #241500; font-weight: 750;
  box-shadow: 0 6px 22px rgba(255, 170, 40, .28), inset 0 1px 0 rgba(255, 255, 255, .30);
}
.btn-gold:hover { color: #241500; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255, 170, 40, .40); }
.btn-danger-ah {
  background: rgba(255, 92, 122, .12); color: var(--down); border-color: rgba(255, 92, 122, .32);
}
.btn-danger-ah:hover { background: rgba(255, 92, 122, .2); color: var(--down); transform: translateY(-1px); }
.btn-sm { padding: .5rem .8rem; font-size: .815rem; border-radius: 10px; }
.btn-lg { padding: .95rem 1.7rem; font-size: 1rem; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; font-size: 1.05rem;
  background: var(--glass-2); border: 1px solid var(--border); color: var(--text);
  transition: all .16s ease; position: relative;
}
.icon-btn:hover { border-color: var(--brand); box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.nbadge {
  position: absolute; top: -5px; right: -5px; min-width: 17px; height: 17px;
  background: var(--down); color: #fff; font-size: .6rem; font-weight: 800;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--bg);
}
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; font-size: 1rem;
  background: var(--glass-2); border: 1px solid var(--border); cursor: pointer; color: var(--text);
  transition: all .16s ease;
}
.theme-toggle:hover { border-color: var(--gold); transform: translateY(-1px); }

/* ---------- Etiket / rozet ailesi ---------- */
.tag {
  display: inline-flex; align-items: center; gap: .3em;
  font-size: .68rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase;
  padding: .28em .7em; border-radius: 999px; white-space: nowrap;
  background: var(--surface-2); color: var(--muted); border: 1px solid var(--border-2);
}
.tag-live { background: rgba(0, 255, 102, .10); color: var(--up); border-color: rgba(0, 255, 102, .35); }
.tag-pending { background: rgba(255, 197, 66, .10); color: var(--gold); border-color: rgba(255, 197, 66, .35); }
.tag-rejected, .tag-locked { background: rgba(255, 92, 122, .10); color: var(--down); border-color: rgba(255, 92, 122, .35); }
.tag-sponsored { background: rgba(108, 92, 231, .14); color: #A99CFF; border-color: rgba(108, 92, 231, .4); }
[data-theme="light"] .tag-sponsored { background: rgba(21, 112, 239, .09); color: #0F5ED7; border-color: rgba(21, 112, 239, .32); }
.tag-featured { background: var(--grad-gold); color: #241500; border-color: transparent; box-shadow: 0 3px 12px rgba(255, 170, 40, .3); }
.tag-campaign { background: rgba(183, 255, 46, .10); color: var(--lime); border-color: rgba(183, 255, 46, .32); }
[data-theme="light"] .tag-campaign { background: rgba(224, 68, 110, .09); color: #C81E4B; border-color: rgba(224, 68, 110, .3); }
.badge-soft {
  display: inline-flex; align-items: center; gap: .35em;
  background: var(--surface-2); border: 1px solid var(--border-2);
  color: var(--text); font-size: .78rem; font-weight: 650;
  padding: .35em .8em; border-radius: 999px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); font-size: .82rem; font-weight: 600;
  padding: .48rem .85rem; border-radius: 999px;
  transition: all .16s ease; text-decoration: none;
}
.chip:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow-glow); }

/* ---------- Kartlar ---------- */
.card-ah {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  position: relative;
}
.card-ah::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, .35), transparent);
  opacity: .6; pointer-events: none;
}
.card-head {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap;
  padding: 1rem 1.2rem .85rem; border-bottom: 1px solid var(--border);
}
/* v2.0.1 — dar ekranda başlık harf harf dikey kırılıyordu (flex-shrink + display:flex) */
.card-head h3 { font-size: 1.02rem; font-weight: 750; margin: 0; display: block; flex: 1 1 auto; min-width: 0; }
.card-head h3 .rank-badge { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; margin-right: .5rem; }
.card-head form { flex-wrap: wrap; min-width: 0; max-width: 100%; }
.card-head .form-select, .card-head .form-control { max-width: 100%; }
@media (max-width: 767.98px) {
  .card-head h3 { flex: 1 1 100%; }
  .card-head form { flex: 1 1 100%; }
  .card-head form .form-select { flex: 1 1 140px; width: auto; min-width: 0; }
  .card-head form .btn { flex: 0 0 auto; }
}
.panel-pad { padding: 1.2rem; }
@media (max-width: 575.98px) { .panel-pad { padding: 1rem .85rem; } .card-head { padding: .9rem .85rem .75rem; } }

.stat-cell { padding: .8rem .6rem; text-align: center; }
.stat-cell .v { font-family: var(--font-display); font-size: 1.18rem; font-weight: 800; color: var(--text); }
.stat-cell .k { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .15rem; }

/* KPI kartları (admin + panel) */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
@media (max-width: 991.98px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi {
  position: relative; overflow: hidden;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.05rem; display: block; text-decoration: none; color: var(--text);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.kpi::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); opacity: 0; transition: opacity .18s ease;
}
.kpi:hover { transform: translateY(-3px); border-color: var(--border-2); box-shadow: var(--shadow); }
.kpi:hover::after { opacity: 1; }
.kpi-icon {
  width: 40px; height: 40px; border-radius: 12px; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: .6rem;
  background: rgba(0, 229, 255, .10); border: 1px solid rgba(0, 229, 255, .18);
}
.kpi-v { font-family: var(--font-display); font-size: 1.42rem; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.kpi-k { font-size: .78rem; font-weight: 650; color: var(--muted); margin-top: .2rem; }
.kpi-sub { font-size: .74rem; color: var(--muted); margin-top: .35rem; }
.kpi-sub b { color: var(--up); }
.kpi--up .kpi-icon { background: rgba(0, 255, 102, .10); border-color: rgba(0, 255, 102, .2); }
.kpi--down .kpi-icon { background: rgba(255, 92, 122, .10); border-color: rgba(255, 92, 122, .2); }
.kpi--gold .kpi-icon { background: rgba(255, 197, 66, .12); border-color: rgba(255, 197, 66, .25); }
.kpi--gold .kpi-v { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Kuyruk kartları (admin iş bekleyenler) */
.queue-card {
  display: flex; align-items: center; gap: .95rem;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.1rem; text-decoration: none; color: var(--text); position: relative; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.queue-card:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-glow); }
.qc-num {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; min-width: 3.2rem;
  text-align: center; line-height: 1;
}
.qc-num.zero { color: var(--muted); }
.qc-num.warn { color: var(--gold); }
.qc-num.urgent { color: var(--down); }
.qc-t { font-weight: 750; font-size: .92rem; }
.qc-d { font-size: .78rem; color: var(--muted); }
.qc-arrow { margin-left: auto; color: var(--muted); font-size: 1.1rem; transition: transform .18s ease, color .18s ease; }
.queue-card:hover .qc-arrow { transform: translateX(4px); color: var(--brand); }
.queue-card.qc-warn { border-color: rgba(255, 197, 66, .4); }
.queue-card.qc-urgent { border-color: rgba(255, 92, 122, .45); box-shadow: 0 0 0 1px rgba(255, 92, 122, .18), var(--shadow-sm); }

/* ---------- Uyarılar ---------- */
.alert-ah {
  display: flex; align-items: flex-start; gap: .6rem;
  border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: .9rem;
  font-size: .89rem; font-weight: 550; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text);
}
.alert-ah--success { background: rgba(0, 255, 102, .08); border-color: rgba(0, 255, 102, .3); color: var(--up); }
.alert-ah--error { background: rgba(255, 92, 122, .08); border-color: rgba(255, 92, 122, .32); color: var(--down); }
.alert-ah--info { background: rgba(0, 229, 255, .07); border-color: rgba(0, 229, 255, .28); color: var(--brand); }
.alert-ah--warning, .alert-warning { background: rgba(255, 197, 66, .08); border-color: rgba(255, 197, 66, .32); color: var(--gold); }
[data-theme="light"] .alert-ah--success { color: #0B7A55; }
[data-theme="light"] .alert-ah--error { color: #C81E4B; }
[data-theme="light"] .alert-ah--info { color: #0F5ED7; }
[data-theme="light"] .alert-ah--warning { color: #B45309; }
.toast-ah {
  position: fixed; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%);
  background: var(--surface-3); color: var(--text); border: 1px solid var(--border-2);
  padding: .7rem 1.15rem; border-radius: 12px; font-size: .86rem; font-weight: 600;
  box-shadow: var(--shadow); z-index: 3000; max-width: min(92vw, 480px); text-align: center;
  animation: toastIn .28s cubic-bezier(.2, .9, .3, 1.2);
}
.toast-ah.toast--success { border-color: rgba(0, 255, 102, .4); color: var(--up); }
.toast-ah.toast--error { border-color: rgba(255, 92, 122, .4); color: var(--down); }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (min-width: 768px) { .toast-ah { bottom: 24px; } }

/* ---------- Formlar ---------- */
.form-label { font-size: .8rem; font-weight: 700; color: var(--text); margin-bottom: .38rem; letter-spacing: .01em; }
.form-control, .form-select {
  background: var(--surface); border: 1px solid var(--border-2); color: var(--text);
  border-radius: var(--radius-xs); padding: .68rem .85rem; font-size: .92rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 44px; width: 100%;
}
.form-control::placeholder { color: color-mix(in srgb, var(--muted) 72%, transparent); }
.form-control:focus, .form-select:focus {
  background: var(--surface-2); border-color: var(--brand); color: var(--text);
  box-shadow: var(--ring); outline: 0;
}
.form-control:disabled, .form-select:disabled { background: var(--surface); opacity: .6; }
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B96BC' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.3rem;
}
.form-control-sm, .form-select-sm { min-height: 36px; padding: .4rem .65rem; font-size: .84rem; border-radius: 9px; }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-check-input { width: 2.6rem; height: 1.45rem; cursor: pointer; background-color: var(--surface-3); border-color: var(--border-2); box-shadow: none; }
.form-check-input:checked { background-color: #00C6D8; border-color: #00C6D8; }
.form-check-input:focus { box-shadow: var(--ring); border-color: var(--brand); }
.input-group-text { background: var(--surface-2); border-color: var(--border-2); color: var(--muted); }
.input-bid { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.01em; }
.js-otp { font-family: var(--mono); letter-spacing: .5em; text-align: center; font-size: 1.25rem; }
label.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  border: 2px dashed var(--border-2); border-radius: var(--radius-sm);
  padding: 1.6rem 1rem; cursor: pointer; text-align: center; color: var(--muted);
  font-size: .85rem; background: var(--surface); transition: all .18s ease; width: 100%;
}
label.dropzone:hover, label.dropzone.js-dropzone.dragover { border-color: var(--brand); background: rgba(0, 229, 255, .05); color: var(--brand); }
label.dropzone .dz-file { font-weight: 750; color: var(--brand-2); margin-top: .3rem; font-size: .78rem; }
/* Radyo/ödül kartı seçici (ödeme yöntemleri, planlar) */
label.gw-wrap, .gw-card { border-radius: var(--radius-sm); }
.gw-card { transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.gw-card:hover { transform: translateY(-1px); }
input[type="radio"]:checked + .gw-card { border-color: var(--brand) !important; box-shadow: var(--shadow-glow); }

/* ---------- Boş durum & iskelet ---------- */
.empty-state {
  text-align: center; color: var(--muted); font-size: .9rem;
  padding: 3rem 1rem; border: 1px dashed var(--border-2); border-radius: var(--radius);
  background: var(--glass-2);
}
.empty-state .big { font-size: 2.3rem; line-height: 1; margin-bottom: .7rem; filter: saturate(.85); }
.empty-state a { color: var(--brand); font-weight: 700; text-decoration: none; } /* v2.1.0 */
.empty-state a:hover { text-decoration: underline; }
.skeleton {
  background: linear-gradient(100deg, var(--surface-2) 40%, var(--surface-3) 50%, var(--surface-2) 60%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 10px; min-height: 14px;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .3, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1040;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(0, 0, 0, .35); }
[data-theme="light"] .site-header { background: color-mix(in srgb, #FFFFFF 86%, transparent); }
.brand { text-decoration: none; flex: 0 0 auto; }
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem;
  letter-spacing: -.02em; color: var(--text);
  background: linear-gradient(92deg, var(--text) 55%, var(--brand) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap; /* v2.8.0 — görseldeki "Bi\Ad" dikey kırılma düzeltmesi */
  /* v2.14.0 — uzun site adı header'ı genişletemez: tek satır, taşarsa … */
  display: inline-block; max-width: 190px; vertical-align: middle;
  overflow: hidden; text-overflow: ellipsis;
}
.mainnav { gap: .15rem; min-width: 0; flex-wrap: nowrap; overflow: hidden; /* v2.14.0 — uzun menüler header'ı zorlamaz */ }
.mainnav a {
  color: var(--muted); font-size: .87rem; font-weight: 620;
  padding: .5rem .68rem; border-radius: 9px; text-decoration: none;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap; /* v2.8.0 — nav etiketleri asla alt satıra kırılmaz */
}
.mainnav a:hover { color: var(--text); background: var(--glass-2); }
.mainnav a.on { /* v2.8.0 — aktif sayfa vurgusu */
  color: var(--brand); background: rgba(0, 229, 255, .10);
}
.mainnav .nv-e { margin-right: .3rem; }
@media (max-width: 1439.98px) { .mainnav .nv-e { display: none; } }
@media (max-width: 1199.98px) {
  .mainnav a { padding: .5rem .44rem; font-size: .8rem; font-weight: 640; }
  .wallet-chip { padding: .42rem .62rem; font-size: .78rem; }
}
.wallet-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0, 255, 102, .08); border: 1px solid rgba(0, 255, 102, .26);
  color: var(--up); font-weight: 750; font-size: .83rem;
  padding: .5rem .8rem; border-radius: 999px; text-decoration: none;
  transition: all .16s ease;
  /* v2.14.0 — canlıda görülen kırılma: uzun/özel para adı çipi alta sarıyordu.
     Çip asla iki satıra kırılmaz, daralıp daire olmaz; uzun değer … ile kısaltılır. */
  white-space: nowrap; flex: 0 0 auto; max-width: 200px;
  overflow: hidden; text-overflow: ellipsis;
}
.wallet-chip b { font-weight: 800; font-variant-numeric: tabular-nums; }
.wallet-chip:hover { box-shadow: var(--shadow-glow-2); transform: translateY(-1px); color: var(--up); }
.avatar-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 12px; flex: 0 0 auto;
  background: var(--grad-violet); color: #fff; font-weight: 800; font-size: .95rem;
  text-decoration: none; box-shadow: 0 4px 16px rgba(108, 92, 231, .35);
  transition: transform .16s ease;
}
.avatar-btn:hover { transform: translateY(-2px) scale(1.04); }
.avatar-btn--nav { /* v2.8.0 — dropdown tetikleyicisi: button reset + caret */
  gap: .12rem; padding: 0 .5rem 0 0; width: auto; cursor: pointer; border: 0;
}
.avatar-btn--nav > span:first-child {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
}
.avatar-btn--nav .ud-caret { font-size: .6rem; opacity: .8; }
.avatar-btn--nav.dropdown-toggle::after { display: none; }
/* v2.8.0 — kullanıcı dropdown menüsü (data-theme uyumlu, Bootstrap değişkenlerinden bağımsız) */
.user-drop { position: relative; }
.um-menu {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow); padding: .45rem; min-width: 240px;
}
[data-theme="light"] .um-menu { background: #FFFFFF; }
.um-head { display: flex; align-items: center; gap: .65rem; padding: .55rem .65rem .5rem; min-width: 0; }
.um-av {
  width: 38px; height: 38px; border-radius: 12px; flex: 0 0 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-violet); color: #fff; font-weight: 800; font-size: .95rem;
}
.um-head > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.um-name { font-weight: 750; font-size: .9rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.um-bal { font-size: .76rem; color: var(--up); font-weight: 700; white-space: nowrap; }
.um-sep { height: 1px; background: var(--border); margin: .35rem .4rem; }
.um-menu a.um-link, .um-menu button.um-link {
  display: flex; align-items: center; gap: .55rem; width: 100%;
  padding: .55rem .7rem; border: 0; border-radius: 10px; text-align: left;
  background: none; color: var(--text); font-size: .875rem; font-weight: 620;
  text-decoration: none; cursor: pointer; transition: background .13s ease;
}
.um-menu a.um-link:hover, .um-menu button.um-link:hover { background: var(--surface-2); color: var(--text); }
.um-menu .um-out { color: var(--down); }
.um-menu .um-out:hover { background: rgba(255, 77, 109, .10); color: var(--down); }
.um-menu .dl-badge { margin-left: auto; }
/* Mobil menü çekmecesi */
.nav-burger {
  display: none; width: 40px; height: 40px; border-radius: 11px; font-size: 1.15rem;
  background: var(--glass-2); border: 1px solid var(--border); color: var(--text); cursor: pointer;
  align-items: center; justify-content: center;
}
@media (max-width: 991.98px) {
  .nav-burger { display: inline-flex; }
  .mainnav { display: none; }
}
.nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(84vw, 320px); z-index: 1080;
  background: var(--bg-2); border-right: 1px solid var(--border);
  transform: translateX(-102%); transition: transform .28s cubic-bezier(.2, .8, .25, 1);
  display: flex; flex-direction: column; padding: 1rem; overflow-y: auto;
}
.nav-drawer.open { transform: none; box-shadow: var(--shadow); }
.nav-drawer a.nd-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .78rem .9rem; border-radius: 11px; color: var(--text);
  font-weight: 640; font-size: .95rem; text-decoration: none;
}
.nav-drawer a.nd-link:hover { background: var(--surface-2); }
.nav-drawer a.nd-link.on { background: rgba(0, 229, 255, .10); color: var(--brand); }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 1070;
  background: rgba(2, 6, 16, .6); backdrop-filter: blur(3px);
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Mobil alt navigasyon ---------- */
.mob-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  display: flex; justify-content: space-around;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-top: 1px solid var(--border);
  padding: .4rem .3rem calc(.4rem + env(safe-area-inset-bottom, 0px));
}
.mob-nav a {
  display: flex; flex-direction: column; align-items: center; gap: .12rem;
  font-size: .6rem; font-weight: 700; color: var(--muted); text-decoration: none;
  padding: .32rem .55rem; border-radius: 10px; min-width: 56px; letter-spacing: .02em;
}
.mob-nav a .mi { font-size: 1.22rem; line-height: 1; filter: grayscale(.25); transition: transform .18s ease; }
.mob-nav a.on { color: var(--brand); }
.mob-nav a.on .mi { transform: translateY(-2px) scale(1.12); filter: none; }
@media (min-width: 768px) { .mob-nav { display: none; } }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border); margin-top: 3rem;
  background: linear-gradient(180deg, transparent, rgba(108, 92, 231, .05));
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) { .site-footer { padding-bottom: 0; } }
.site-footer a { display: block; color: var(--muted); font-size: .86rem; padding: .22rem 0; text-decoration: none; }
.site-footer a:hover { color: var(--brand); transform: translateX(2px); }
.footer-h {
  font-family: var(--font-display); font-size: .78rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: .7rem;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--border);
  padding: .35em .75em; border-radius: 999px; margin: 0 .35rem .45rem 0;
}
.footer-sep { border-color: var(--border); opacity: 1; margin: 1.6rem 0 1rem; }
.lang-switch a {
  display: inline-flex; align-items: center; font-size: .78rem; font-weight: 700;
  color: var(--muted); border: 1px solid var(--border); border-radius: 999px;
  padding: .3em .8em; margin-right: .4em; text-decoration: none;
}
.lang-switch a.on { color: var(--brand); border-color: var(--brand); background: rgba(0, 229, 255, .08); }

/* ---------- Auth (giriş/kayıt) ---------- */
.auth-wrap {
  min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr;
  position: relative; overflow: hidden;
}
.auth-hero {
  padding: clamp(2rem, 5vw, 4.5rem); display: flex; flex-direction: column; gap: 2.2rem;
  justify-content: center; position: relative;
  background:
    radial-gradient(40rem 24rem at 110% 10%, var(--aurora-1), transparent 60%),
    radial-gradient(34rem 20rem at -10% 90%, var(--aurora-2), transparent 60%),
    var(--bg-2);
  border-right: 1px solid var(--border);
}
.ah-points { display: flex; flex-direction: column; gap: 1rem; max-width: 430px; }
.ah-point {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .95rem 1.05rem; backdrop-filter: blur(10px);
}
.ah-point .pic {
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 229, 255, .10); border: 1px solid rgba(0, 229, 255, .2);
}
.ah-point .pt { font-weight: 750; font-size: .92rem; }
.ah-point .pd { font-size: .8rem; color: var(--muted); }
.auth-form-col { display: flex; align-items: center; justify-content: center; padding: clamp(1.2rem, 4vw, 3rem); position: relative; }
.auth-orb {
  position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(108, 92, 231, .25), transparent 60%),
              radial-gradient(circle at 70% 75%, rgba(0, 229, 255, .16), transparent 55%);
  filter: blur(30px); pointer-events: none;
}
.auth-box {
  width: 100%; max-width: 440px; position: relative;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.5rem, 3.4vw, 2.4rem);
  backdrop-filter: blur(18px);
}
@media (max-width: 991.98px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-hero { display: none; }
}

/* ---------- Admin shell — v2.10.0'dan itibaren public/assets/css/admin.css'te (sıfırdan tasarım sistemi; yalnız admin layout yükler) ---------- */

/* ---------- Müşteri paneli navigasyonu ---------- */
.dash-nav { padding: .5rem; }
.dash-user {
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem .85rem; border-bottom: 1px solid var(--border); margin-bottom: .5rem;
}
.du-avatar {
  width: 44px; height: 44px; border-radius: 13px; flex: 0 0 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-violet); color: #fff; font-weight: 800; font-size: 1.1rem;
}
.du-name { font-weight: 800; font-size: .95rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.du-mail { font-size: .76rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .62rem .75rem; border-radius: 10px; margin: .08rem 0;
  color: var(--muted); font-size: .885rem; font-weight: 620; text-decoration: none;
  transition: all .15s ease; position: relative;
}
.dash-link:hover { color: var(--text); background: var(--glass-2); }
.dash-link.on { color: var(--brand); background: rgba(0, 229, 255, .08); box-shadow: inset 2px 0 0 var(--brand); }
.dl-ic { width: 24px; text-align: center; font-size: .98rem; flex: 0 0 24px; }
.dl-badge { margin-left: auto; background: var(--down); color: #fff; font-size: .62rem; font-weight: 800; padding: .1em .5em; border-radius: 999px; }

/* ---------- Tablolar ---------- */
.table { --bs-table-bg: transparent; --bs-table-color: var(--text); color: var(--text); margin-bottom: 0; }
.table > :not(caption) > * > * {
  background-color: transparent; color: var(--text);
  border-bottom-color: var(--border); padding: .78rem .85rem; vertical-align: middle;
}
.table thead th {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--border-2) !important; white-space: nowrap;
}
.table tbody tr { transition: background .14s ease; }
.table tbody tr:hover { background: rgba(0, 229, 255, .035); }
[data-theme="light"] .table tbody tr:hover { background: rgba(0, 130, 190, .05); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.table-wrap .table { min-width: 640px; }
/* v2.9.0 — dar yan panel tabloları: 640px min-width yerine içeriğe sığar */
.table-wrap .table.table-fit { min-width: 0; }

/* ---------- Sıralama satırı (lb-row) ---------- */
.lb-row {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem .95rem; border-radius: var(--radius-sm);
  color: var(--text); text-decoration: none; border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.lb-row + .lb-row { margin-top: .3rem; }
.lb-row:hover { background: var(--glass-2); border-color: var(--border); transform: translateX(3px); }
.lb-logo {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 44px; object-fit: cover;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-3); color: var(--brand); font-weight: 800; font-size: 1.05rem;
  border: 1px solid var(--border); overflow: hidden;
}
/* v2.1.1 — podyum/lb kartlarında uzun isimler kart dışına taşmasın:
   flex kolon (align-items:center) içinde text-truncate'in çalışması için
   genişlik kısıtı şart (max-width:100% + min-width:0). */
.lb-name { font-weight: 750; font-size: .95rem; color: var(--text); max-width: 100%; min-width: 0; }
.lb-meta { font-size: .76rem; color: var(--muted); line-height: 1.45; }
.lb-bid {
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; white-space: nowrap;
}
.lb-attention { font-weight: 750; font-size: .88rem; color: var(--gold); white-space: nowrap; }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  min-width: 34px; height: 34px; padding: 0 .35em; border-radius: 11px;
  font-family: var(--font-display); font-weight: 800; font-size: .86rem;
  background: var(--surface-3); color: var(--muted); border: 1px solid var(--border);
}
.rank-badge.r1 { background: var(--grad-gold); color: #241500; border: none; box-shadow: 0 4px 18px rgba(255, 170, 40, .4); }
.rank-badge.r2 { background: linear-gradient(135deg, #DCE3F2, #9FAEC9); color: #1A2233; border: none; }
.rank-badge.r3 { background: linear-gradient(135deg, #E8A06B, #B4633A); color: #FFF3E8; border: none; }
.rank-badge.top10 { color: var(--brand); border-color: rgba(0, 229, 255, .3); background: rgba(0, 229, 255, .07); }
.rank-badge.crown::after { content: "👑"; font-size: .62em; margin-left: .25em; }
.attn-meter { height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.xp-bar { height: 8px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.xp-bar i, .attn-meter i {
  display: block; height: 100%; border-radius: 999px;
  background: var(--grad); box-shadow: 0 0 12px rgba(0, 229, 255, .5);
  transition: width .8s cubic-bezier(.2, .7, .3, 1);
}
/* Podyum bandı + hero kartlar (leaderboard top-3) */
.podium-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
@media (max-width: 767.98px) { .podium-band { grid-template-columns: 1fr; } }
/* v2.3.0 — .board-hero kaldırıldı: board'lar ob-list vitrinine geçti */

/* ---------- Sekmeler ---------- */
.tabs-ah {
  display: flex; gap: .45rem; flex-wrap: wrap;
  background: var(--glass); border: 1px solid var(--border); border-radius: 999px;
  padding: .4rem; backdrop-filter: blur(10px);
}
.tabs-ah a {
  font-size: .82rem; font-weight: 680; color: var(--muted);
  padding: .52rem 1rem; border-radius: 999px; text-decoration: none; white-space: nowrap;
  transition: all .16s ease;
}
.tabs-ah a:hover { color: var(--text); background: var(--glass-2); }
.tabs-ah a.on { background: var(--grad); color: #04121C; font-weight: 750; box-shadow: var(--shadow-glow); }
@media (max-width: 767.98px) {
  .tabs-ah { border-radius: 16px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tabs-ah::-webkit-scrollbar { display: none; }
  .tabs-ah a { flex: 0 0 auto; }
}

/* ---------- v2.3.0 — eski scard vitrin kartı ob-list'e devredildi; yalnız king-card logosu (scard-logo) canlı kaldı ---------- */
/* kral kartındaki küçük logo dağıtımı (home king card kullanır) */
.scard-logo {
  width: 58px; height: 58px; border-radius: 16px; object-fit: cover;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--surface-3); border: 1px solid var(--border-2);
  color: var(--brand); font-weight: 800; font-size: 1.5rem; margin-bottom: .7rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
}
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1rem; }

/* ---------- v2.1.0 Admin: Müşteri Paneli Özellikleri switches ---------- */
.feat-switch {
  height: 100%; display: flex; flex-direction: column; justify-content: space-between;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px;
  padding: .85rem .9rem; transition: border-color .2s ease, background .2s ease;
}
.feat-switch.on { border-color: rgba(0, 255, 102, .35); background: linear-gradient(160deg, rgba(0, 255, 102, .06), var(--surface-2) 55%); }
.feat-switch:not(.on) { opacity: .82; }
.feat-switch .fs-ic { font-size: 1.3rem; line-height: 1.2; }
.feat-switch .feat-state {
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); padding: .2em .6em; border-radius: 999px; border: 1px solid var(--border);
}
.feat-switch.on .feat-state { color: var(--up); border-color: rgba(0, 255, 102, .4); background: rgba(0, 255, 102, .08); }

/* ---------- Grid kart (gcard — keşfet/ilan vitrin kartı) ---------- */
.gcard {
  display: flex; flex-direction: column; overflow: hidden; height: 100%;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); text-decoration: none; position: relative;
  transition: transform .22s cubic-bezier(.2, .7, .3, 1), border-color .22s ease, box-shadow .22s ease;
}
.gcard:hover { transform: translateY(-5px); border-color: rgba(0, 229, 255, .4); box-shadow: var(--shadow), var(--shadow-glow); color: var(--text); }
.gcard-cover {
  position: relative; height: 128px; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(18rem 8rem at 80% -20%, var(--aurora-1), transparent 62%),
    linear-gradient(160deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--border);
}
.gcard-logo {
  width: 76px; height: 76px; border-radius: 20px; object-fit: cover;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--surface-3); border: 1px solid var(--border-2);
  color: var(--brand); font-weight: 800; font-size: 2rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35); transition: transform .25s ease;
}
.gcard:hover .gcard-logo { transform: scale(1.06); }
.gcard-logo--txt { background: var(--grad-violet); color: #fff; border: none; }
.gcard-rank { position: absolute; top: 10px; left: 10px; }
.gcard-body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; flex: 1; }
.gcard-body h4 { font-size: .98rem; font-weight: 780; margin: 0 0 .2rem; }
.gcard-cta {
  margin-top: .7rem; text-align: center; font-size: .8rem; font-weight: 800; color: var(--brand);
  border: 1px solid rgba(0, 229, 255, .28); border-radius: 10px; padding: .5rem;
  background: rgba(0, 229, 255, .06); transition: all .18s ease;
}
.gcard:hover .gcard-cta { background: var(--grad); color: #04121C; border-color: transparent; box-shadow: var(--shadow-glow); }

/* ---------- v2.5.0 — outbid.lol listeleme kartı (kullanıcı referans görseli) ----------
   Her öğe tam kart: üst satır #N (renkli) + ikon + isim + sağda fiyat,
   altında slogan (2 satır), meta (kategori · zaman · domain · tıklama) ve "detayları gör".
   İlk 3 kart şeftali/gold tintli podyum; kalanlar nötr yüzey kartı.
   Renkler color-mix token bazlı: dark ve light temada otomatik uyumlu */
.ob-list { display: flex; flex-direction: column; gap: .6rem; }
.ob-card {
  display: block; position: relative; padding: .85rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface-2);
  color: var(--text);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ob-card:hover {
  transform: translateY(-3px); color: var(--text);
  border-color: color-mix(in srgb, var(--brand) 55%, transparent);
  box-shadow: var(--shadow);
}
.ob-card--pod {
  border-color: color-mix(in srgb, var(--gold) 38%, transparent);
  background:
    radial-gradient(120% 170% at 0% 0%, color-mix(in srgb, var(--gold) 13%, transparent), transparent 56%),
    radial-gradient(120% 170% at 100% 0%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 56%),
    var(--surface-2);
}
.ob-card--pod:hover {
  border-color: color-mix(in srgb, var(--gold) 72%, transparent);
  box-shadow: var(--shadow), var(--shadow-glow);
}
.ob-card--1 { border-color: color-mix(in srgb, var(--gold) 66%, transparent); box-shadow: var(--shadow-glow-2); }
.ob-card--2, .ob-card--3 { border-color: color-mix(in srgb, var(--brand) 32%, transparent); }
.ob-card--2:hover, .ob-card--3:hover { border-color: color-mix(in srgb, var(--brand) 60%, transparent); }
.ob-head { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.ob-rank { flex: none; font-weight: 800; font-size: .92rem; color: var(--gold); font-variant-numeric: tabular-nums; }
.ob-card--pod .ob-rank { font-size: 1.04rem; font-family: var(--font-display); }
.ob-crown { font-style: normal; font-size: .9em; margin-right: .18rem; filter: drop-shadow(0 0 6px color-mix(in srgb, var(--gold) 55%, transparent)); }
.ob-head .ob-name { flex: 0 1 auto; min-width: 0; }
.ob-head .tag { flex: none; }
.ob-price-wrap { flex: none; margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: .05rem; min-width: 0; }
.ob-bids { font-size: .7rem; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.ob-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .6rem .85rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; color: var(--text);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.ob-row:hover { background: var(--surface-2); border-color: var(--border-2); color: var(--text); transform: translateX(3px); }
.ob-num { flex: none; width: 2.1rem; text-align: center; font-weight: 800; font-size: .86rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.ob-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px; object-fit: cover;
  background: var(--surface-3); border: 1px solid var(--border);
}
.ob-ico--lg { width: 64px; height: 64px; border-radius: 16px; }
.ob-ico--txt {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem; color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, var(--surface-3));
}
.ob-ico--lg.ob-ico--txt { font-size: 1.5rem; }
.ob-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .12rem; }
.ob-topline { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; min-width: 0; }
.ob-name { font-weight: 760; font-size: .95rem; color: var(--text); min-width: 0; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-card--pod .ob-name { font-size: 1.08rem; font-weight: 800; font-family: var(--font-display); }
.ob-tag {
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
  color: var(--muted); font-size: .85rem; line-height: 1.35; margin-top: .22rem;
}
.ob-card--pod .ob-tag { -webkit-line-clamp: 2; font-size: .9rem; }
.ob-meta { color: var(--muted); font-size: .76rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-card .ob-meta { display: block; margin-top: .2rem; }
.ob-side { flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: .12rem; }
.ob-price { flex: none; font-weight: 800; font-size: .95rem; color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }
.ob-card--pod .ob-price { font-size: 1.18rem; font-family: var(--font-display); }
/* v2.7.0 — kart AKSİYON MENÜSÜ: [detayları gör →] + [siteye git ↗]
   ghost butonun ::after'ı TÜM kartı kapsar (stretched-link): kartın herhangi bir yerine
   tıklamak detay sayfasına götürür; solid buton overlay'in üstünde kalır (z-index:2)
   ve /go/{uuid} tıklama takip rotasına gider. */
.ob-actions { display: flex; align-items: stretch; gap: .45rem; margin-top: .45rem; }
.ob-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .3rem;
  padding: .42rem .85rem; border-radius: 999px;
  font-size: .76rem; font-weight: 750; line-height: 1.2; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ob-btn--ghost {
  flex: 1 1 auto; min-width: 0;
  color: var(--muted); border-color: var(--border-2); background: transparent;
}
.ob-card:hover .ob-btn--ghost {
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 48%, transparent);
}
.ob-btn--ghost::after { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: var(--radius); }
.ob-btn--solid {
  flex: none; position: relative; z-index: 2;
  background: linear-gradient(92deg, #00C6D8 0%, #00B85A 100%);
  color: #04121C;
  box-shadow: 0 4px 16px rgba(0, 210, 180, .26), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.ob-btn--solid:hover { transform: translateY(-1px); color: #04121C; box-shadow: 0 8px 24px rgba(0, 210, 180, .38), inset 0 1px 0 rgba(255, 255, 255, .25); }
.ob-btn--solid:active { transform: translateY(0); }
.ob-ext { font-style: normal; font-size: .85em; transition: transform .18s ease; }
.ob-btn--solid:hover .ob-ext { transform: translate(2px, -2px); }
.ob-foot-arr { display: inline-block; font-style: normal; transition: transform .18s ease; }
.ob-card:hover .ob-foot-arr { transform: translateX(3px); }

/* ---------- v2.6.0 — vitrin kartı zenginlik katmanı ----------
   kategori chip (renkli) · fiyat altı teklif sayısı · YENİ rozeti · 👑 zirve ·
   ikon hover zoom · vitrin içi reklamın kart uyumu · kademeli giriş animasyonu */
.ob-cat {
  display: inline-block; max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  vertical-align: bottom; padding: .1rem .5rem; border-radius: 999px;
  font-size: .72rem; font-weight: 750; line-height: 1.5;
  color: var(--ob-cat, var(--brand));
  background: color-mix(in srgb, var(--ob-cat, var(--brand)) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--ob-cat, var(--brand)) 28%, transparent);
}
.tag-new {
  color: var(--up); background: color-mix(in srgb, var(--up) 12%, transparent);
  border-color: color-mix(in srgb, var(--up) 38%, transparent);
}
.ob-card .ob-ico { transition: transform .22s ease; }
.ob-card:hover .ob-ico { transform: scale(1.05); }
/* vitrin içi reklam (ob-ad) — kart ailesiyle aynı dil: aynı radius/yüzey, zarif min-yükseklik */
.ob-list .ob-ad .ad-slot {
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px dashed var(--border-2);
  min-height: 84px;
}
.ob-list .ob-ad .ad-slot:not(.ad-slot--demo) { border-style: solid; background: var(--surface-2); }
.ob-list .ob-ad .ad-slot .ad-label { background: var(--surface-3); }
/* metin fallback'i sağ üstteki Sponsorlu etiketinin altına girmesin */
.ob-list .ob-ad .ad-fallback-title { padding: 1.1rem 4.6rem 1.1rem 1.4rem; text-align: left; justify-content: flex-start; }
/* kademeli giriş — liste görünüre kayınca kartlar sırayla yükselir;
   fill: backwards ile animasyon sonrası hover transform'u serbest kalır */
.ob-list.reveal.in .ob-card { animation: ob-card-in .5s cubic-bezier(.2, .7, .3, 1) backwards; }
.ob-list.reveal.in .ob-card:nth-child(1) { animation-delay: .02s; }
.ob-list.reveal.in .ob-card:nth-child(2) { animation-delay: .08s; }
.ob-list.reveal.in .ob-card:nth-child(3) { animation-delay: .14s; }
.ob-list.reveal.in .ob-card:nth-child(4) { animation-delay: .2s; }
.ob-list.reveal.in .ob-card:nth-child(5) { animation-delay: .26s; }
.ob-list.reveal.in .ob-card:nth-child(6) { animation-delay: .32s; }
.ob-list.reveal.in .ob-card:nth-child(7) { animation-delay: .38s; }
.ob-list.reveal.in .ob-card:nth-child(8) { animation-delay: .44s; }
@keyframes ob-card-in { from { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) {
  .ob-list.reveal.in .ob-card { animation: none; }
  .ob-card .ob-ico, .ob-foot-arr, .ob-btn, .ob-ext { transition: none; }
}
.ob-dom { font-size: .74rem; color: var(--muted); max-width: 170px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-dom-m { font-size: .74rem; color: var(--muted); white-space: nowrap; }
.ob-ad { margin-top: .3rem; }
@media (max-width: 767.98px) {
  /* v2.5.0 mobil kart — outbid görselindeki düzen: head tek satır (#N+ikon+isim+fiyat),
     slogan/meta/bağlantı tam genişlikte alt satırlarda (kart blok akış, grid hilesi gereksiz). */
  .ob-card { padding: .75rem .8rem; }
  .ob-head { gap: .5rem; }
  .ob-rank { font-size: .84rem; }
  .ob-card--pod .ob-rank { font-size: .92rem; }
  .ob-ico--lg { width: 52px; height: 52px; border-radius: 13px; }
  .ob-ico--lg.ob-ico--txt { font-size: 1.25rem; }
  .ob-ico { width: 40px; height: 40px; border-radius: 10px; }
  .ob-card--pod .ob-name { font-size: .98rem; }
  .ob-card--pod .ob-price { font-size: 1.02rem; }
  .ob-cat { max-width: 120px; font-size: .68rem; }
  .ob-bids { font-size: .66rem; }
  .ob-card .ob-tag { -webkit-line-clamp: 2; font-size: .82rem; }
  .ob-card .ob-meta { white-space: normal; font-size: .72rem; }
  .ob-actions { gap: .4rem; margin-top: .4rem; }
  .ob-btn { padding: .38rem .7rem; font-size: .72rem; }
  .ob-num { width: 1.6rem; font-size: .78rem; }
  .ob-row { gap: .6rem; padding: .55rem .55rem; }
  /* mobil ferahlatma: kart metrikleri/rozetleri ikincil — isim alanı büyüsün */
  .ob-list:not(.ob-list--panel) .ob-meta .ob-stat { display: none; }
  .ob-head .tag { display: none; }
  .ob-row .ob-topline .tag { display: none; }
}

/* ---------- v2.3.0 — outbid vitrin genişletmeleri (Task 42: tüm bölümler) ----------
   ob-stat  : meta sonunda vurgulu metrik (ROI, trend, tıklama, sıra atlama)
   --panel  : dar yan panel varyantı (1/3 kolonlar, profil, benzer ilanlar)
   ob-mini  : "Bugünün Sıralaması" yatay mini kart şeridi (outbid ana sayfa deseni) */
.ob-stat { white-space: nowrap; }
.ob-stat b { color: var(--gold); font-weight: 800; }
.ob-stat b.up { color: var(--up); }
.ob-stat b.cy { color: var(--brand); }

.ob-list--panel { gap: 0; }
.ob-list--panel .ob-row {
  padding: .55rem .45rem; gap: .6rem; border-radius: 0;
  border-bottom: 1px solid var(--border);
}
.ob-list--panel .ob-row:last-child { border-bottom-color: transparent; }
.ob-list--panel .ob-row:hover { transform: none; background: transparent; border-color: var(--border); }
.ob-list--panel .ob-row:hover .ob-name { color: var(--brand); }
.ob-list--panel .ob-ico { width: 36px; height: 36px; border-radius: 9px; }
.ob-list--panel .ob-ico.ob-ico--txt { font-size: .9rem; }
.ob-list--panel .ob-num { width: 1.5rem; font-size: .76rem; }
.ob-list--panel .ob-name { font-size: .86rem; }
.ob-list--panel .ob-meta { font-size: .7rem; }
.ob-list--panel .ob-price { font-size: .86rem; }
.ob-list--panel .ob-dom { display: none; }
.ob-list--panel .ob-side .ob-stat { font-size: .68rem; }

.ob-mini-wrap { margin: .35rem 0; }
.ob-mini-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .55rem; }
.ob-mini-title {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 800; font-size: .86rem; color: var(--text);
}
.ob-mini-title .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px color-mix(in srgb, var(--gold) 70%, transparent);
}
.ob-mini-all { margin-left: auto; font-size: .78rem; font-weight: 700; color: var(--brand); text-decoration: none; }
.ob-mini-all:hover { color: var(--text); }
.ob-mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.ob-mini {
  display: flex; align-items: center; gap: .55rem; min-width: 0;
  padding: .55rem .65rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--gold) 5%, var(--surface-2));
  color: var(--text);
  transition: border-color .15s ease, transform .15s ease;
}
.ob-mini:hover {
  color: var(--text); transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--gold) 48%, transparent);
}
.ob-mini-rank { flex: none; font-weight: 800; font-size: .78rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.ob-mini-ico { width: 34px; height: 34px; border-radius: 9px; }
.ob-mini-ico.ob-ico--txt { font-size: .85rem; }
.ob-mini-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: .08rem; }
.ob-mini-top { display: flex; align-items: baseline; gap: .45rem; min-width: 0; }
.ob-mini-name { flex: 1 1 auto; min-width: 0; font-weight: 760; font-size: .84rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-mini-price { flex: none; font-weight: 800; font-size: .8rem; color: var(--gold); font-variant-numeric: tabular-nums; }
.ob-mini-price.up { color: var(--up); }
.ob-mini-sub { color: var(--muted); font-size: .72rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 991.98px) { .ob-mini-grid { grid-template-columns: 1fr; } }

/* ---------- v2.4.0 — dönem switcher (Günlük / Haftalık / Aylık) + trend ipucu ----------
   ob-seg : outbid podyum dilinde 3'lü segment — aktif dönem tintli zemin + altın çerçeve
   trend-hint : skor formülü açıklama satırı (trending sayfası) */
.ob-seg { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; }
.ob-seg a {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .75rem .9rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted); text-decoration: none;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}
.ob-seg a:hover { color: var(--text); border-color: color-mix(in srgb, var(--brand) 45%, transparent); transform: translateY(-2px); }
.ob-seg a.on {
  color: var(--text);
  border-color: color-mix(in srgb, var(--gold) 62%, transparent);
  background:
    radial-gradient(120% 170% at 0% 0%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 58%),
    radial-gradient(120% 170% at 100% 0%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 58%),
    var(--surface-2);
  box-shadow: var(--shadow-glow-2);
}
.ob-seg-ico { flex: none; font-size: 1.25rem; line-height: 1; }
.ob-seg-body { display: flex; flex-direction: column; gap: .06rem; min-width: 0; }
.ob-seg-t { font-weight: 800; font-size: .95rem; font-family: var(--font-display); }
.ob-seg-s { font-size: .72rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ob-seg a.on .ob-seg-s { color: color-mix(in srgb, var(--gold) 72%, var(--muted)); }
.trend-hint {
  display: flex; align-items: center; gap: .45rem;
  margin: .15rem 1.05rem .45rem; font-size: .74rem; color: var(--muted);
}
@media (max-width: 767.98px) {
  .ob-seg { gap: .4rem; }
  .ob-seg a { padding: .6rem .5rem; gap: .45rem; }
  .ob-seg-ico { font-size: 1.05rem; }
  .ob-seg-t { font-size: .82rem; }
  .ob-seg-s { font-size: .62rem; }
  .trend-hint { margin: .1rem .75rem .4rem; }
}

/* ---------- Ana sayfa hero ---------- */
.hero { position: relative; }
/* v2.1.2 — KAYMA KÖKTEN DÜZELTİLDİ: .hero-v3 eskiden doğrudan iki kolon çocukla
   çalışan bir grid'di; view artık container-xl + Bootstrap row/col (col-lg-7/5)
   kullandığı için bu grid, container'ı 882px'lik tek track'e sıkıştırıp sola
   yaslıyordu (hero + istatistik çubuğu kayık, sağ taraf boş kalıyordu).
   Artık blok akışı: kolonları içerideki Bootstrap row kararlaştırır. */
.hero-v3 { display: block; padding: clamp(1.8rem, 5vw, 4rem) 0 1.6rem; }
.hero-v3 p.sub { color: var(--muted); font-size: 1rem; max-width: 540px; }
.hero-search { display: flex; gap: .5rem; max-width: 560px; }
.hero-search input {
  flex: 1; min-height: 50px; border-radius: 14px;
  background: var(--glass); border: 1px solid var(--border-2); color: var(--text);
  padding: .7rem 1.1rem; font-size: .95rem; outline: none; transition: all .18s ease;
}
.hero-search input:focus { border-color: var(--brand); box-shadow: var(--ring); }
/* Not: tam arama kapsülü stili dosyanın sonundaki "v2.0 tamamlayıcı" bloğunda */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem; backdrop-filter: blur(12px);
}
@media (max-width: 767.98px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } .stats-bar > :last-child { grid-column: span 2; } }
.stat-block { text-align: center; }
.stat-block .sv { font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; }
.stat-block .sk { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* Krallık kartı (ana sayfa canlı outbid) */
.king-card {
  position: relative; border-radius: var(--radius-lg); padding: 1.4rem;
  background: linear-gradient(155deg, rgba(255, 197, 66, .10), var(--glass) 45%);
  border: 1px solid rgba(255, 197, 66, .35); box-shadow: var(--shadow);
  overflow: hidden; backdrop-filter: blur(14px);
}
.king-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 197, 66, .55), rgba(0, 229, 255, .25) 45%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.king-card .kc-crown { font-size: 1.9rem; filter: drop-shadow(0 6px 16px rgba(255, 170, 40, .55)); }
.king-card .kc-bid { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; }
.king-card .kc-name { font-weight: 780; font-size: 1.08rem; }
.king-bid-form .input-bid { min-height: 50px; }
.king-empty { text-align: center; color: var(--muted); padding: 1.4rem .6rem; font-size: .9rem; }

/* Düello kartları (Battle Arena) */
.duel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.duel-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--border); padding: 1.1rem;
  text-decoration: none; color: var(--text);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.duel-card:hover { transform: translateY(-4px); border-color: rgba(255, 92, 122, .4); box-shadow: var(--shadow); }
.duel-vs {
  font-family: var(--font-display); font-weight: 800; font-size: .9rem; letter-spacing: .06em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.duel-logo {
  width: 52px; height: 52px; border-radius: 14px; object-fit: cover; flex: 0 0 52px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: var(--surface-3); border: 1px solid var(--border-2); color: var(--brand); font-weight: 800; font-size: 1.3rem;
}
/* v2.3.0 — .mini-grid/.mini-card kaldırıldı: climbers şeridi ob-mini-grid'e geçti */

/* Kategori şeridi */
.cat-strip {
  display: flex; gap: .7rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem; scrollbar-width: none; scroll-snap-type: x proximity;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-chip-card {
  flex: 0 0 auto; scroll-snap-align: start; min-width: 132px;
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--glass); border: 1px solid var(--border); border-left: 3px solid var(--brand);
  border-radius: 14px; padding: .8rem .95rem; text-decoration: none; color: var(--text);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cat-chip-card:hover { transform: translateY(-3px); border-color: var(--brand); box-shadow: var(--shadow-glow); }
.cat-chip-card .cc-ic { font-size: 1.3rem; line-height: 1; }
.cat-chip-card .cc-name { font-weight: 750; font-size: .85rem; }
.cat-chip-card .cc-n { font-size: .7rem; color: var(--muted); }

/* Canlı akış şeridi (ticker) */
.ticker-wrap {
  overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--glass); backdrop-filter: blur(10px);
}
.ticker-inner { display: flex; align-items: center; gap: .5rem; padding: .55rem .9rem; }
.ticker-item {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  font-size: .8rem; color: var(--muted); padding-right: 1.6rem;
}
.ticker-item a { color: var(--text); font-weight: 700; }
.moved-up { color: var(--up); font-weight: 750; font-size: .74rem; }

/* ---------- VIP marquee ---------- */
.vip-marquee { margin-block: 1.4rem; }
.vip-marquee-head { display: flex; align-items: center; gap: .9rem; margin-bottom: .7rem; flex-wrap: wrap; }
.vip-marquee-head h3 { font-size: 1.08rem; margin: 0; }
.vip-live-dot { display: inline-flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 800; letter-spacing: .1em; color: var(--up); }
.vip-live-dot .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 10px var(--up); animation: pulse 1.6s infinite; }
.vip-head-link { margin-left: auto; }
.vip-marquee-viewport { overflow: hidden; position: relative; -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.vip-track { display: flex; width: max-content; animation: vipScroll 42s linear infinite; }
.vip-marquee-viewport:hover .vip-track, .vip-marquee-viewport:active .vip-track { animation-play-state: paused; }
@keyframes vipScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.vip-group { display: flex; gap: .8rem; padding-right: .8rem; }
.vip-item {
  position: relative; display: flex; flex-direction: column; gap: .3rem; width: 208px; flex: 0 0 208px;
  background: linear-gradient(165deg, rgba(255, 197, 66, .08), var(--glass) 50%);
  border: 1px solid rgba(255, 197, 66, .26); border-radius: var(--radius-sm);
  padding: .95rem; text-decoration: none; color: var(--text); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.vip-item:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 12px 30px rgba(255, 170, 40, .22); }
.vip-crown { position: absolute; top: -9px; right: 10px; font-size: 1.05rem; filter: drop-shadow(0 3px 8px rgba(255, 170, 40, .6)); }
.vip-logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--surface-3); border: 1px solid rgba(255, 197, 66, .3); color: var(--gold); font-weight: 800; font-size: 1.15rem; }
.vip-name { font-weight: 780; font-size: .88rem; }
.vip-meta { font-size: .7rem; color: var(--muted); }
.vip-bid { font-family: var(--font-display); font-weight: 800; font-size: .98rem; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vip-cta { font-size: .72rem; font-weight: 800; color: var(--gold); }
@media (max-width: 767.98px) { .vip-item { width: 172px; flex-basis: 172px; } }

/* ---------- Breadcrumb & sayfalama ---------- */
.bc-wrap { margin-top: .9rem; }
.bc-ah { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; list-style: none; margin: 0; padding: 0; font-size: .78rem; }
.bc-ah a { color: var(--muted); font-weight: 650; }
.bc-ah a:hover { color: var(--brand); }
.bc-sep { color: var(--border-2); margin: 0 .1rem; }
.bc-cur { color: var(--text); font-weight: 700; }
.pagination-ah { display: flex; justify-content: center; gap: .35rem; flex-wrap: wrap; margin: 1.6rem 0; }
.pagination-ah a, .pagination-ah span {
  min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; font-size: .85rem; font-weight: 720; text-decoration: none;
  background: var(--glass); border: 1px solid var(--border); color: var(--muted);
  transition: all .15s ease; padding: 0 .5rem;
}
.pagination-ah a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.pagination-ah span.on { background: var(--grad); color: #04121C; border-color: transparent; font-weight: 800; }

/* ---------- Reklam alanları ---------- */
.ad-duo { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
/* v2.1.2 — duo sütunları eşit yükseklikte: sarmalayıcı flex kolona döner,
   slot yüksekliği satır boyunca esner (yan yana kutular hizalanır). */
.ad-duo > div { display: flex; flex-direction: column; }
.ad-duo > div .ad-slot { flex: 1 1 auto; }
@media (max-width: 767.98px) { .ad-duo { grid-template-columns: 1fr; } }
/* v2.0.1 — ad_slot() çıktısının gerçek sınıf ailesi (ad-slot--demo / ad-demo-in / ad-demo-tx / ad-label) */
.ad-slot { position: relative; display: block; width: 100%; border-radius: var(--radius-sm); }
.ad-slot > a { display: block; border-radius: inherit; }
.ad-slot > a img { width: 100%; height: auto; display: block; border-radius: inherit; }
/* v2.1.2 — GERÇEK banner'lar (demo olmayan slotlar) artık kutu görünümlü:
   metin fallback'i bile havada sade metin değil, çerçeveli banner kartı gibi
   durur; görsel banner'lar kartın içine oturur. */
.ad-slot:not(.ad-slot--demo) {
  display: flex; align-items: stretch; justify-content: center;
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(0, 229, 255, .06), transparent 55%),
    radial-gradient(120% 160% at 100% 100%, rgba(108, 92, 231, .07), transparent 55%),
    rgba(13, 21, 38, .45);
  overflow: hidden;
}
.ad-slot:not(.ad-slot--demo) > a {
  flex: 1 1 auto; display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.ad-slot:not(.ad-slot--demo) > a:hover { background: rgba(0, 229, 255, .05); }
.ad-slot--demo {
  min-height: 92px;
  display: flex; align-items: stretch; justify-content: center;
  border: 1.5px dashed rgba(0, 229, 255, .32);
  background:
    radial-gradient(110% 150% at 0% 0%, rgba(0, 229, 255, .09), transparent 55%),
    radial-gradient(110% 150% at 100% 100%, rgba(108, 92, 231, .09), transparent 55%),
    rgba(13, 21, 38, .5);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.ad-demo-in {
  display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap;
  padding: 1rem 2.6rem 1rem 1.1rem; width: 100%; text-align: left;
}
.ad-demo-ic { font-size: 1.35rem; line-height: 1; }
.ad-demo-tx { display: flex; flex-direction: column; gap: .12rem; line-height: 1.25; min-width: 0; }
.ad-demo-tx b { font-size: .74rem; font-weight: 800; letter-spacing: .12em; color: var(--brand); }
.ad-demo-tx small { font-size: .8rem; color: var(--muted); }
.ad-demo-cta { white-space: nowrap; }
.ad-label {
  position: absolute; top: 7px; right: 8px; z-index: 1;
  font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .16rem .5rem; border-radius: 999px;
  color: var(--muted); border: 1px solid var(--border);
  background: rgba(8, 13, 26, .72); pointer-events: none;
}
.ad-fallback-title {
  /* v2.1.2 — metin fallback slotu tam yüksekliği doldurur (duo'da kutu eşitliği) */
  display: flex; align-items: center; justify-content: center;
  flex: 1 1 auto; align-self: stretch; width: 100%;
  min-height: 72px; padding: 1rem 1.2rem; text-align: center;
  font-weight: 750; font-size: .95rem; color: var(--text);
}
/* zon standart boyut hissi — boş zon bile düzeni bozmasın */
.ad-slot--header, .ad-slot--in_content, .ad-slot--footer, .ad-slot--category_top, .ad-slot--leaderboard_top { min-height: 96px; }
.ad-slot--home_hero { min-height: 118px; }
.ad-slot--home_bottom { min-height: 138px; }
.ad-slot--sidebar_left, .ad-slot--sidebar_right { min-height: 190px; }
@media (max-width: 575.98px) {
  .ad-demo-in { padding: .9rem 2.3rem .9rem 1rem; gap: .6rem; }
  .ad-demo-tx { align-items: flex-start; }
  .ad-slot--header, .ad-slot--in_content, .ad-slot--footer, .ad-slot--category_top, .ad-slot--leaderboard_top { min-height: 84px; }
  .ad-slot--home_hero { min-height: 104px; }
  .ad-slot--home_bottom { min-height: 120px; }
  .ad-slot--sidebar_left, .ad-slot--sidebar_right { min-height: 150px; }
}

/* ---------- Lightbox ---------- */
.ah-lightbox {
  position: fixed; inset: 0; z-index: 3000; display: none;
  align-items: center; justify-content: center;
  background: rgba(3, 7, 18, .92); backdrop-filter: blur(8px);
}
.ah-lightbox.open { display: flex; }
.ah-lightbox img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 14px; box-shadow: var(--shadow); }
.ah-lb-btn {
  position: absolute; width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .16s ease;
}
.ah-lb-btn:hover { background: rgba(255, 255, 255, .18); }
.ah-lb-close { top: 18px; right: 18px; }
.ah-lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.ah-lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.ah-lb-cap { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #cbd5f0; font-size: .84rem; max-width: 86vw; text-align: center; }

/* ---------- Yardımcı animasyonlar ---------- */
@keyframes floaty { 50% { transform: translateY(-7px); } }
.floaty { animation: floaty 4.5s ease-in-out infinite; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fade-in-up { animation: fadeInUp .5s cubic-bezier(.2, .7, .3, 1) both; }
.lock-check { color: var(--up); }
.flat, .done, .now, .off, .sm { /* wheel state sınıfları — tema uyumu view içinde */ }

/* ---------- Geri dön topu ---------- */
.back-top {
  position: fixed; right: 16px; bottom: calc(88px + env(safe-area-inset-bottom, 0px)); z-index: 1045;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem; cursor: pointer;
  background: var(--glass); border: 1px solid var(--border-2); color: var(--text);
  backdrop-filter: blur(10px); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .25s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }
.back-top:hover { border-color: var(--brand); box-shadow: var(--shadow-glow); }
@media (min-width: 768px) { .back-top { bottom: 22px; right: 22px; } }

/* ---------- v2.0 tamamlayıcı bileşenler (view envanter taramasından) ---------- */
.stats-bar { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 991.98px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } .stats-bar > :last-child { grid-column: span 2; } }
@media (min-width: 992px) and (max-width: 1199.98px) { .stats-bar { grid-template-columns: repeat(3, 1fr); } }

/* Arama kapsülü (hero) — ikon + input + buton tek gövde */
.hero-search {
  display: flex; align-items: stretch; gap: 0; max-width: 560px;
  background: var(--glass); border: 1px solid var(--border-2); border-radius: 16px;
  padding: .3rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.hero-search:focus-within { border-color: var(--brand); box-shadow: var(--ring); }
.hero-search-ico { display: flex; align-items: center; padding: 0 .35rem 0 .7rem; font-size: 1rem; }
.hero-search input {
  flex: 1; min-width: 0; min-height: 46px;
  background: transparent; border: none; color: var(--text);
  padding: .55rem .5rem; font-size: .95rem; outline: none;
}
.hero-search input::placeholder { color: color-mix(in srgb, var(--muted) 75%, transparent); }
.hero-search input:focus { box-shadow: none; border: none; background: transparent; }
.hero-search .btn-primary { border-radius: 12px; flex: 0 0 auto; }
@media (max-width: 767.98px) {
  .hero-search { flex-wrap: wrap; padding: .35rem; }
  .hero-search-ico { display: none; }
  .hero-search input { flex: 1 1 auto; padding: .6rem .5rem; }
  .hero-search .btn-primary { flex: 1 1 100%; margin-top: .35rem; }
}

/* Canlı geri sayım çipi (battles + home) */
.countdown-live {
  display: inline-flex; align-items: center; gap: .3em;
  font-family: var(--mono); font-size: .82rem; font-weight: 700;
  color: var(--gold); background: rgba(255, 197, 66, .08);
  border: 1px solid rgba(255, 197, 66, .26); border-radius: 999px;
  padding: .2em .7em; white-space: nowrap;
}

/* Düello kartı iç yapısı (home + battles) */
.duel-side { display: flex; align-items: center; gap: .55rem; min-width: 0; flex: 1 1 0; }
.duel-name { font-weight: 750; font-size: .88rem; color: var(--text); }
.duel-mid { display: flex; flex-direction: column; align-items: center; gap: .3rem; flex: 0 0 auto; padding-inline: .5rem; }

/* Dropzone ikonu */
.dz-icon { display: block; line-height: 1; }

/* Canlı önizleme kolonu (ilan ekle) */
.preview-sticky { position: sticky; top: calc(var(--header-h) + 14px); }
@media (max-width: 991.98px) { .preview-sticky { position: static; } }

/* Admin enjeksiyon zengin içerik tipografisi (about/faq/rules/legal) */
.custom-page { line-height: 1.75; font-size: .94rem; }
.custom-page h2, .custom-page h3, .custom-page h4 { margin: 1.4rem 0 .6rem; }
.custom-page h2 { font-size: 1.25rem; } .custom-page h3 { font-size: 1.08rem; }
.custom-page p { margin-bottom: .85rem; }
.custom-page ul, .custom-page ol { padding-left: 1.3rem; margin-bottom: .85rem; }
.custom-page li { margin-bottom: .35rem; }
.custom-page a { font-weight: 650; }
.custom-page img { border-radius: 12px; margin: .6rem 0; }
.custom-page code { background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: .1em .4em; }
.custom-page blockquote { border-left: 3px solid var(--brand); margin: 1rem 0; padding: .3rem 1rem; color: var(--muted); }
.custom-page table { width: 100%; margin-bottom: 1rem; }

/* İlan detay üst bannerı */
.listing-hero { width: 100%; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

/* Çark sahnesi hafif ışık */
.wheel-stage { filter: drop-shadow(0 16px 40px rgba(0, 229, 255, .14)); }

/* Panel nav grup sarmalayıcı */
.sp-group { display: flex; flex-direction: column; }

/* ---------- Responsive son dokunuşlar ---------- */
@media (max-width: 991.98px) {
  .page-head { align-items: flex-start; flex-direction: column; }
  .page-actions { width: 100%; }
}
@media (max-width: 767.98px) {
  body { font-size: .92rem; }
  .page-title { font-size: 1.32rem; }
  .hero-search { flex-direction: column; }
  .hero-search .btn-primary { width: 100%; border-radius: 12px; }
  .lb-row { padding: .7rem .6rem; gap: .6rem; }
  .lb-logo { width: 40px; height: 40px; flex-basis: 40px; }
}
@media (max-width: 575.98px) {
  .container-xl { padding-inline: .8rem; }
  /* v2.1.0 — mobilde 2 kolonlu zengin ürün kartı; CTA dokunma hedefi olarak GİZLENMEZ */
  .showcase-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .7rem; }
  .scard-logo { width: 48px; height: 48px; font-size: 1.25rem; border-radius: 13px; }
  .duel-grid { grid-template-columns: 1fr; }
  .mainnav a { padding: .45rem .5rem; font-size: .83rem; }
  .tabs-ah a { padding: .46rem .8rem; font-size: .78rem; }
}
/* iOS safari 100vh düzeltmesi */
@supports (-webkit-touch-callout: none) {
  .auth-wrap { min-height: -webkit-fill-available; }
}

/* v2.0.1 — reveal güvencesi: yazdırma / JS devre dışıyken içerik görünür kalsın */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- v2.7.0 — YUKARI TAŞI PANELİ (oy · destek · savaş) ----------
   climb-panel: ürün sayfasındaki yükseltme kartı; btn-vote: üyeliksiz oy butonu;
   support-row: destekçi/savaş satırları. Renkler token bazlı (dark/light uyumlu) */
.climb-panel { border-color: color-mix(in srgb, var(--up) 26%, transparent); }
.climb-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.climb-info { flex: 1 1 260px; min-width: 0; }

/* oy butonu — büyük dokunma hedefi, oy verince yeşile döner */
.btn-vote {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem; border-radius: 999px; cursor: pointer;
  font-weight: 800; font-size: .92rem; font-family: var(--font-display);
  color: var(--text); background: var(--surface-2);
  border: 1px solid color-mix(in srgb, var(--up) 45%, transparent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--up) 14%, transparent);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-vote:hover { transform: translateY(-1px); box-shadow: 0 8px 24px color-mix(in srgb, var(--up) 26%, transparent); }
.btn-vote:active { transform: translateY(0); }
.btn-vote .vb-ico { font-size: 1.05em; font-style: normal; }
.btn-vote .vb-count {
  font-variant-numeric: tabular-nums; padding: .1rem .55rem; border-radius: 999px;
  background: color-mix(in srgb, var(--up) 14%, transparent); color: var(--up);
}
.btn-vote.voted {
  color: var(--up); background: color-mix(in srgb, var(--up) 12%, var(--surface-2));
  border-color: color-mix(in srgb, var(--up) 65%, transparent); cursor: default;
}
.btn-vote.busy { opacity: .7; pointer-events: none; }
@keyframes vote-pop { 0% { transform: scale(1); } 40% { transform: scale(1.07); } 100% { transform: scale(1); } }
.btn-vote.pop { animation: vote-pop .5s ease; }

/* destek formu çerçevesi */
.support-bank {
  border: 1px dashed var(--border-2); border-radius: var(--radius-sm);
  padding: .7rem .9rem; background: var(--glass-2);
}
.support-bank summary { cursor: pointer; font-weight: 750; color: var(--brand); }
.support-row {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  padding: .5rem .65rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface-2); margin-top: .4rem;
}
@media (max-width: 575.98px) {
  .btn-vote { width: 100%; justify-content: center; }
  .climb-row { gap: .6rem; }
}

/* ============================================================================
   18) v2.17.0 — VİTRİN & MODÜL GELİŞTİRMELERİ
   Hızlı teklif çipleri (qb-chips) · sticky mobil teklif çubuğu (sticky-bidbar)
   podyum anında outbid formu (ob-bid-form) · battle mini barı (duel-mini)
   ============================================================================ */
.qb-chips { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; }
.qb-k { font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-right: .15rem; }
.qb-chip {
  border: 1px solid var(--border-2); background: var(--surface-2); color: var(--text);
  border-radius: 999px; padding: .32rem .68rem; font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.qb-chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255, 170, 40, .18); }
input.flash, .form-control.flash { box-shadow: 0 0 0 3px rgba(0, 229, 255, .28) !important; border-color: var(--brand) !important; }

/* podyum kartı ANINDA OUTBID formu */
.ob-bid-form { margin-top: .55rem; display: flex; flex-direction: column; gap: .4rem; }
.ob-bid-form .js-bid-feedback { width: 100%; }
.ob-bid-form .js-bid-feedback:empty { display: none; }
.ob-bid-btn {
  width: 100%; border: 1px solid rgba(255, 197, 66, .45); background: rgba(255, 197, 66, .10);
  color: var(--gold); border-radius: 12px; padding: .5rem .7rem; font-weight: 800; font-size: .82rem;
  cursor: pointer; transition: all .16s ease; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ob-bid-btn:hover { background: var(--grad-gold); color: #241500; border-color: transparent; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255, 170, 40, .35); }
.ob-bid-btn:disabled { opacity: .55; transform: none; cursor: not-allowed; }

/* sticky mobil teklif çubuğu — masaüstünde yok, <992px'de görünür */
.sticky-bidbar { display: none; }
@media (max-width: 991.98px) {
  .sticky-bidbar {
    display: flex; position: fixed; left: 12px; right: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px)); /* mob-nav üstünde */
    z-index: 1030; align-items: center; gap: .6rem;
    padding: .55rem .7rem; border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  }
  .sticky-bidbar.sb-float { bottom: calc(10px + env(safe-area-inset-bottom, 0px)); }
}
.sb-rank { font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 1.05rem; flex: 0 0 auto; }
.sb-info { display: flex; align-items: center; gap: .5rem; min-width: 0; flex: 1 1 auto; }
.sb-name { font-weight: 650; font-size: .86rem; min-width: 0; }
.sb-bid { font-family: var(--font-display); font-weight: 800; color: var(--up); font-size: .95rem; white-space: nowrap; flex: 0 0 auto; }
.sb-cta { flex: 0 0 auto; }

/* battle modülü — satır içi oylama barı + öne çıkan taraf */
.duel-mini { height: 6px; border-radius: 999px; overflow: hidden; display: flex; background: var(--surface-3); max-width: 340px; }
.duel-mini i { display: block; height: 100%; }
.duel-mini i.a { background: var(--brand); }
.duel-mini i.b { background: var(--down); }
.duel-lead { border-color: rgba(0, 255, 102, .5) !important; box-shadow: 0 0 0 1px rgba(0, 255, 102, .22), var(--shadow-glow); }
@keyframes duelPulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.duel-live-tag { animation: duelPulse 1.6s ease-in-out infinite; }

/* ================= 19) v2.19.0 — PAKET ALIMI (müşteri paneli) + VİTRİN GELİŞTİRME ================= */
.pkg-mine { position: relative; }
.pkg-mine::after { content: '✓'; position: absolute; top: -9px; right: 12px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: #10131a; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
/* podyum madalya + attention çubuğu (ob-list) */
.ob-medal { font-size: 1rem; margin-left: 4px; }
.ob-attn { height: 5px; border-radius: 99px; background: color-mix(in srgb, var(--text) 10%, transparent); overflow: hidden; display: block; margin-top: 8px; }
.ob-attn i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--brand), var(--gold)); }
.ob-card--pod { transition: transform .18s ease, box-shadow .18s ease; }
.ob-card--pod:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-2, var(--shadow)); }
/* satıcı kartı (vitrin detay) */
.seller-card .sc-top { display: flex; align-items: center; gap: 12px; }
.seller-card .sc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; text-align: center; }
.seller-card .sc-stats > div { border: 1px solid var(--border); border-radius: var(--radius-sm, 10px); padding: 8px 4px; }
.seller-card .sc-stats .v { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; }
.seller-card .sc-stats .k { font-size: .68rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ================= 20) v2.20.0 — VİTRİN A-Z (kapak şeridi + boş durum + panel ok) ================= */
.ob-cover { display: block; height: 64px; margin: -.85rem -1rem .7rem; border-radius: var(--radius) var(--radius) 0 0;
  background-size: cover; background-position: center; border-bottom: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  opacity: .92; }
.ob-empty { text-align: center; padding: 2.2rem 1rem; border: 1px dashed var(--border-2); border-radius: var(--radius);
  color: var(--muted); background: color-mix(in srgb, var(--surface-2) 60%, transparent); }
.ob-empty .big { font-size: 2rem; margin-bottom: .4rem; }
.ob-row .ob-go { flex: none; color: var(--muted); font-weight: 700; transition: transform .18s ease, color .18s ease; }
.ob-row:hover .ob-go { transform: translateX(3px); color: var(--gold); }

/* ================= 21) v2.21.0 — FIRSAT BANDI (kampanyalı vitrin kartları) + geri sayım ================= */
.ob-camp { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin: .45rem -1rem -.35rem; padding: .5rem .9rem;
  border-top: 1px dashed color-mix(in srgb, var(--gold) 42%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--gold) 16%, transparent), color-mix(in srgb, var(--up) 7%, transparent) 68%, transparent);
  border-radius: 0 0 var(--radius) var(--radius); font-size: .78rem; }
.ob-camp-t { font-weight: 900; letter-spacing: .06em; color: var(--gold);
  text-transform: uppercase; font-size: .7rem;
  padding: .14rem .5rem; border-radius: 999px;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 46%, transparent); }
.ob-camp-x { color: var(--text); font-weight: 700; min-width: 0; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; flex: 1 1 auto; }
.ob-camp-c { font-family: var(--font-display, monospace); font-weight: 800; font-variant-numeric: tabular-nums;
  color: var(--up); font-size: .82rem; letter-spacing: .03em; margin-left: auto; white-space: nowrap; }
.ob-camp-c.is-done { color: var(--muted); text-decoration: line-through; font-weight: 700; }
.ob-camp--slim { margin: .3rem 0 -.15rem; padding: .28rem .5rem; gap: .4rem; font-size: .72rem;
  border-top: none; border-radius: 8px;
  background: color-mix(in srgb, var(--gold) 10%, transparent);
  border: 1px dashed color-mix(in srgb, var(--gold) 40%, transparent); }
.ob-camp--slim .ob-camp-t { font-size: .62rem; padding: .06rem .4rem; }
.ob-camp--slim .ob-camp-x { white-space: nowrap; max-width: 34vw; }
.ob-camp--slim .ob-camp-c { font-size: .74rem; }
.ob-card:hover .ob-camp { border-top-style: solid; }
/* ürün sayfası kampanya bandındaki canlı geri sayım çipi */
.camp-cdown { display: inline-block; font-family: var(--font-display, monospace); font-weight: 800;
  font-variant-numeric: tabular-nums; font-size: .86rem; color: var(--gold);
  padding: .18rem .6rem; border-radius: 999px; white-space: nowrap;
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 46%, transparent); }
.camp-cdown.is-done { color: var(--muted); text-decoration: line-through; }
/* teklif hatasındaki "Bakiye Yükle" CTA'sı */
.bid-deposit-cta { flex: none; }

/* ---------- v2.29.0 — Duyuru çubuğu (Görünüm Stüdyosu) ---------- */
.announce-bar { font-size: .88rem; font-weight: 550; }
.announce-in { display: flex; align-items: center; gap: .75rem; min-height: 40px; padding-top: .3rem; padding-bottom: .3rem; }
.announce-txt { color: var(--text); }
a.announce-txt--link { text-decoration: none; }
a.announce-txt--link:hover { text-decoration: underline; }
.announce--brand {
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
  box-shadow: inset 0 -12px 26px -18px color-mix(in srgb, var(--brand) 55%, transparent); }
.announce--brand .announce-txt--link { color: var(--brand); }
.announce--gold {
  background: color-mix(in srgb, var(--gold) 13%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  box-shadow: inset 0 -12px 26px -18px color-mix(in srgb, var(--gold) 55%, transparent); }
.announce--gold .announce-txt--link { color: var(--gold); }
.announce--danger {
  background: color-mix(in srgb, var(--down) 14%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--down) 44%, transparent);
  box-shadow: inset 0 -12px 26px -18px color-mix(in srgb, var(--down) 55%, transparent); }
.announce--danger .announce-txt--link { color: var(--down); }
.announce-x { margin-left: auto; background: transparent; border: 0; color: var(--muted); cursor: pointer; font-size: .82rem; line-height: 1; padding: .3rem .45rem; border-radius: var(--radius-xs); }
.announce-x:hover { color: var(--text); background: color-mix(in srgb, var(--text) 10%, transparent); }
/* ---------- v2.29.0 — Footer sosyal çipleri ---------- */
.soc-chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 28px; padding: 0 .55rem;
  border-radius: var(--radius-xs); font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--muted); background: var(--surface-2); border: 1px solid var(--border);
  text-decoration: none; transition: color .15s, border-color .15s, transform .15s; }
.soc-chip:hover { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 55%, transparent); transform: translateY(-2px); }

/* ============================================================================
   v2.33.0 — AZURE FLAT CİLA KATMANI (data-theme="light" kapsamlı)
   v2.33.0 kullanıcı tercihi: GRADYAN YOK — tüm açık-tema yüzeyler DÜZ renk;
   sabit koyu rgba'ların (reklam slotları vb.) açık zeminde okunabilirliği
   düzeltilir. Tümü [data-theme="light"] seçicisine bağlı — koyu temada
   etkinliği sıfır (0 regresyon ilkesi).
   ============================================================================ */
[data-theme="light"] ::selection { background: rgba(21, 112, 239, .18); color: #14263D; }
[data-theme="light"] .btn-primary {
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(21, 112, 239, .25);
}
[data-theme="light"] .btn-primary:hover, [data-theme="light"] .btn-primary:focus-visible {
  background: #0F5ED7;
  color: #FFFFFF;
  box-shadow: 0 8px 22px rgba(21, 112, 239, .32);
}
[data-theme="light"] .card-ah::before {
  background: rgba(21, 112, 239, .10);
}
[data-theme="light"] .kpi-icon { color: #0F5ED7; background: rgba(21, 112, 239, .09); border: 1px solid rgba(21, 112, 239, .16); }
[data-theme="light"] .kpi--up .kpi-icon { color: #0B7A55; background: rgba(14, 159, 110, .10); border-color: rgba(14, 159, 110, .2); }
[data-theme="light"] .kpi--gold .kpi-icon { color: #B45309; background: rgba(217, 119, 6, .12); border-color: rgba(217, 119, 6, .25); }
[data-theme="light"] .ob-btn--solid {
  background: var(--brand);
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(21, 112, 239, .22);
}
[data-theme="light"] .ob-btn--solid:hover { background: #0F5ED7; color: #FFFFFF; box-shadow: 0 6px 18px rgba(21, 112, 239, .30); }
[data-theme="light"] .gcard-cta { border-color: rgba(21, 112, 239, .3); background: rgba(21, 112, 239, .06); }
[data-theme="light"] .gcard:hover .gcard-cta { background: var(--brand); color: #FFFFFF; border-color: transparent; }
[data-theme="light"] .rank-badge.r1 { background: #F59E0B; color: #451A03; }
[data-theme="light"] .rank-badge.r2 { background: #E3EBF6; color: #14263D; }
[data-theme="light"] .rank-badge.r3 { background: #B4633A; color: #FFF3E8; }
[data-theme="light"] .rank-badge.top10 { color: #0F5ED7; border-color: rgba(21, 112, 239, .32); background: rgba(21, 112, 239, .08); }
[data-theme="light"] .tag-featured { background: #B45309; color: #FFFFFF; border-color: transparent; box-shadow: 0 3px 10px rgba(180, 83, 9, .25); }
[data-theme="light"] .tag-live { background: rgba(14, 159, 110, .10); border-color: rgba(14, 159, 110, .34); }
[data-theme="light"] .tag-pending { background: rgba(217, 119, 6, .12); border-color: rgba(217, 119, 6, .34); }
[data-theme="light"] .tag-rejected, [data-theme="light"] .tag-locked { background: rgba(224, 68, 110, .09); border-color: rgba(224, 68, 110, .3); }
[data-theme="light"] .alert-ah--success { background: rgba(14, 159, 110, .08); border-color: rgba(14, 159, 110, .3); }
[data-theme="light"] .alert-ah--info { background: rgba(21, 112, 239, .07); border-color: rgba(21, 112, 239, .28); }
[data-theme="light"] .alert-ah--warning, [data-theme="light"] .alert-warning { background: rgba(217, 119, 6, .09); border-color: rgba(217, 119, 6, .32); }
[data-theme="light"] .alert-ah--error { background: rgba(224, 68, 110, .08); border-color: rgba(224, 68, 110, .3); }
[data-theme="light"] .table tbody tr:hover { background: rgba(21, 112, 239, .04); }
[data-theme="light"] .dash-link.on { color: #0F5ED7; background: rgba(21, 112, 239, .08); box-shadow: inset 2px 0 0 #0F5ED7; }
[data-theme="light"] .nav-drawer a.nd-link.on { color: #0F5ED7; background: rgba(21, 112, 239, .08); }
[data-theme="light"] .lang-switch a.on { color: #0F5ED7; background: rgba(21, 112, 239, .08); }
[data-theme="light"] .tabs-ah a.on { background: var(--brand); color: #FFFFFF; }
[data-theme="light"] .pagination-ah span.on { background: var(--brand); color: #FFFFFF; }
[data-theme="light"] .feat-switch.on { border-color: rgba(14, 159, 110, .38); background: rgba(14, 159, 110, .08); }
[data-theme="light"] .feat-switch.on .feat-state { color: #0B7A55; border-color: rgba(14, 159, 110, .38); background: rgba(14, 159, 110, .08); }
[data-theme="light"] .toast-ah.toast--success { color: #0B7A55; }
[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: #A6B7D6; }
[data-theme="light"] .form-check-input:checked { background-color: #1570EF; border-color: #1570EF; }
[data-theme="light"] .form-check-input { border-color: var(--border-2); }
/* v2.31.0 — tema değişiminde yumuşak geçiş (koyu↔açık süpürmesi) */
body { transition: background-color .25s ease, color .25s ease; }

/* ============================================================================
   v2.33.0 — AZURE FLAT EK KURALLAR: sabit koyu rgba'lar + gradientli süsler
   ============================================================================ */
/* Reklam slotları: koyu levha DEĞİL — düz açık yüzey, okunur metin */
[data-theme="light"] .ad-slot:not(.ad-slot--demo) {
  background: var(--surface-2);
  border: 1px solid var(--border);
}
[data-theme="light"] .ad-slot:not(.ad-slot--demo) > a:hover { background: rgba(21, 112, 239, .05); }
[data-theme="light"] .ad-slot--demo {
  background: var(--surface-2);
  border: 1.5px dashed rgba(21, 112, 239, .35);
}
[data-theme="light"] .ad-label {
  background: var(--surface-3);
  color: var(--muted);
  border-color: var(--border);
}
/* Metin gradientleri → düz vurgu rengi */
[data-theme="light"] .brand-name { background: none; -webkit-text-fill-color: currentColor; color: var(--text); }
[data-theme="light"] .ah-title .grad,
[data-theme="light"] span.grad { background: none; -webkit-text-fill-color: currentColor; color: var(--brand); }
[data-theme="light"] .ah-title .grad-gold-text,
[data-theme="light"] span.grad-gold-text { background: none; -webkit-text-fill-color: currentColor; color: #B45309; }
/* Krallık kartı: krem-gold gradient yerine beyaz yüzey + ince altın çerçeve */
[data-theme="light"] .king-card {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--gold) 30%, var(--border));
  box-shadow: var(--shadow);
  backdrop-filter: none;
}
[data-theme="light"] .king-card::before { content: none; }
/* VIP / podyum / vitrin yüzeyleri: düz */
[data-theme="light"] .vip-item { background: var(--surface); }
[data-theme="light"] .ob-card--pod { background: var(--surface-2); }
[data-theme="light"] .ob-seg a.on { background: var(--surface-2); }
[data-theme="light"] .gcard-cover { background: var(--surface-2); }
[data-theme="light"] .site-footer { background: var(--bg); }
[data-theme="light"] .auth-hero { background: var(--bg-2); }
[data-theme="light"] .auth-orb { display: none; }
[data-theme="light"] .ob-attn i { background: var(--brand); }
[data-theme="light"] .ob-camp { background: rgba(217, 119, 6, .08); }
/* v2.33.0 — header kaydırma gölgesi: koyu-siyah yerine yumuşak mavi-gri */
[data-theme="light"] .site-header.scrolled { box-shadow: 0 8px 24px rgba(21, 93, 171, .10); }

/* ============================================================================
   v2.34.0 — RENK UYUMU (A→Z TEK PALET) + VİTRİN / DETAY / PANEL GELİŞTİRME
   ----------------------------------------------------------------------------
   Kullanıcı tercihi: "renkler karmaşık olmuş, A'dan Z'ye düzenle".
   Açık temada KANONİK SKOR (tek nesil, istisnasız):
     mavi    : #1570EF (ana) · #0F5ED7 (koyu metin/hover) · rgba(21,112,239,α)
     yeşil   : #0E9F6E (ana) · #0B7A55 (koyu metin)       · rgba(14,159,110,α)
     altın   : #D97706 (ana) · #B45309 (koyu metin/dolgu) · rgba(217,119,6,α)
     kırmızı : #E0446E (ana) · #C81E4B (koyu metin)       · rgba(224,68,110,α)
   Mor / lime / turkuaz / eski-nesil altınlar AÇIK TEMADA SIFIRlandı.
   (Gece paleti aynen yaşar — 0 koyu-regresyon.)
   ============================================================================ */

/* --- Uyum tamamlama: kalan bileşenler kanonik skora bağlandı --- */
[data-theme="light"] .toast-ah.toast--error { color: #C81E4B; border-color: rgba(224, 68, 110, .38); }
[data-theme="light"] .toast-ah.toast--success { border-color: rgba(14, 159, 110, .38); }
[data-theme="light"] .btn-gold { background: #B45309; color: #FFFFFF; box-shadow: 0 4px 14px rgba(180, 83, 9, .24); }
[data-theme="light"] .btn-gold:hover { background: #92400E; color: #FFFFFF; box-shadow: 0 8px 22px rgba(180, 83, 9, .30); }
[data-theme="light"] .ob-bid-btn { border-color: rgba(217, 119, 6, .35); background: rgba(217, 119, 6, .08); color: #B45309; }
[data-theme="light"] .ob-bid-btn:hover { background: #B45309; color: #FFFFFF; border-color: transparent; box-shadow: 0 6px 18px rgba(180, 83, 9, .28); }
[data-theme="light"] input.flash, [data-theme="light"] .form-control.flash { box-shadow: 0 0 0 3px rgba(21, 112, 239, .20) !important; }
[data-theme="light"] .avatar-btn { box-shadow: 0 4px 14px rgba(21, 112, 239, .28); }
[data-theme="light"] .pkg-mine::after { background: var(--gold); color: #FFFFFF; }
[data-theme="light"] .wallet-chip:hover { color: #0B7A55; }

/* --- VİTRİN: kart dili — mavi hover hattı, yumuşak gölge, sakin logo --- */
[data-theme="light"] .gcard:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 112, 239, .38);
  box-shadow: var(--shadow), 0 12px 30px rgba(21, 93, 171, .10);
}
[data-theme="light"] .gcard:hover h4 { color: var(--brand); }
[data-theme="light"] .gcard-logo { box-shadow: 0 8px 20px rgba(21, 45, 90, .14); }
[data-theme="light"] .gcard-logo--txt { color: #FFFFFF; }
[data-theme="light"] .stats-bar { background: #FFFFFF; }
[data-theme="light"] .stat-cell .v { font-variant-numeric: tabular-nums; }
[data-theme="light"] .empty-state .big { filter: none; }

/* --- ÜRÜN DETAY: tek yüzey dili + okunur fiyat hiyerarşisi --- */
[data-theme="light"] .card-ah { background: #FFFFFF; }
[data-theme="light"] .card-head h3 { letter-spacing: -.01em; }
[data-theme="light"] .lb-bid { background: none; -webkit-text-fill-color: currentColor; color: var(--brand); }
[data-theme="light"] .lb-attention { color: #B45309; }
[data-theme="light"] .divider { background: var(--border); }
[data-theme="light"] .qb-chip:hover { border-color: var(--gold); color: #B45309; box-shadow: 0 6px 18px rgba(217, 119, 6, .16); }

/* --- MÜŞTERİ PANELİ: KPI/hızlı-eylem aynı dil --- */
[data-theme="light"] .kpi { background: #FFFFFF; }
[data-theme="light"] .kpi-v { font-variant-numeric: tabular-nums; }
[data-theme="light"] .dash-link:hover { color: #0F5ED7; background: rgba(21, 112, 239, .06); }
