/* =========================================================
   BonusKlas — Brand styles (Aktifbonus inspired layout)
   Palette pulled from logo: deep purple → cyan, gold accents
   ========================================================= */

:root {
  --bg:            #07070d;
  --bg-2:          #0d0d18;
  --bg-3:          #14141f;
  --surface:       #161624;
  --surface-2:     #1d1d2e;
  --surface-3:     #232337;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  --text:          #ffffff;
  --text-muted:    #b4b9cc;
  --text-dim:      #7e84a0;

  --purple:        #8B3FE0;
  --purple-deep:   #6B1FCF;
  --purple-light:  #B66BFF;
  --cyan:          #00D9E6;
  --cyan-deep:     #0AA8B8;
  --cyan-light:    #2EE6F0;
  --gold:          #E8C26F;

  --grad-brand:    linear-gradient(135deg, #B66BFF 0%, #8B3FE0 35%, #2EE6F0 100%);
  --grad-brand-2:  linear-gradient(135deg, #2EE6F0 0%, #8B3FE0 100%);
  --grad-button:   linear-gradient(135deg, #8B3FE0 0%, #00D9E6 100%);
  --grad-button-hover: linear-gradient(135deg, #9B4FF0 0%, #20E9F6 100%);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --shadow-sm: 0 4px 14px rgba(0,0,0,0.35);
  --shadow:    0 18px 40px -12px rgba(139,63,224,0.45), 0 8px 24px rgba(0,0,0,0.45);
  --shadow-cyan: 0 18px 40px -12px rgba(0,217,230,0.45), 0 8px 24px rgba(0,0,0,0.45);

  --container: 1240px;

  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(139,63,224,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(0,217,230,0.12), transparent 60%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* gradient text */
.grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
.grad--alt {
  background: linear-gradient(135deg, #2EE6F0 0%, #B66BFF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============== TOPBAR ============== */
.topbar {
  background: linear-gradient(90deg, rgba(139,63,224,0.18), rgba(0,217,230,0.18));
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px; color: var(--text-muted);
}
.topbar__pill { display: inline-flex; align-items: center; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2EE6F0; box-shadow: 0 0 10px #2EE6F0;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .55; transform: scale(.8); }
}
.topbar__meta strong { color: #fff; }

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,7,13,0.7);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background .25s ease, box-shadow .25s ease;
}
.header.is-scrolled { background: rgba(7,7,13,0.92); box-shadow: 0 12px 30px rgba(0,0,0,0.45); }
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 32px; padding: 14px 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 50px; height: 50px;
  border-radius: 12px;
  object-fit: cover;
  background: #0a0a14;
  box-shadow: 0 6px 20px rgba(139,63,224,0.4);
}
.brand__text { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.5px; }
.brand__accent {
  background: var(--grad-brand-2);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav { display: flex; gap: 28px; justify-content: center; }
.nav a {
  font-weight: 500; font-size: 15px; color: var(--text-muted);
  position: relative; padding: 6px 2px; transition: color .2s;
}
.nav a:hover, .nav a.is-active { color: #fff; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.header__actions { display: flex; gap: 10px; align-items: center; }

.navtoggle {
  display: none; width: 42px; height: 42px;
  border-radius: 10px; border: 1px solid var(--border);
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.navtoggle span {
  display: block; width: 18px; height: 2px;
  background: #fff; border-radius: 2px;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 12px;
  font-weight: 600; font-size: 14px; letter-spacing: .2px;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer; white-space: nowrap;
}
.btn--sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn--lg { padding: 15px 26px; font-size: 15px; border-radius: 14px; }
.btn--primary {
  background: var(--grad-button); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(139,63,224,.7), 0 6px 16px -8px rgba(0,217,230,.5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(139,63,224,.85), 0 10px 24px -8px rgba(0,217,230,.65);
  background: var(--grad-button-hover);
}
.btn--ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-strong); color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }

/* ============== HERO ============== */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; width: 520px; height: 520px;
  border-radius: 50%; filter: blur(110px); opacity: .55;
}
.orb--purple { top: -80px; left: -120px; background: #8B3FE0; }
.orb--cyan { bottom: -120px; right: -100px; background: #00D9E6; opacity: .4; }
.grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(139,63,224,.4);
  background: rgba(139,63,224,.1);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: #d9c4ff;
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: #00D9E6; border-radius: 50%;
  box-shadow: 0 0 10px #00D9E6;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.05; letter-spacing: -1.5px;
  margin: 0 0 22px; font-weight: 800;
}
.lead {
  font-size: 18px; color: var(--text-muted);
  max-width: 540px; margin: 0 0 32px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }

.trust {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.trust li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.trust strong {
  font-family: var(--font-display); font-size: 24px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust span { color: var(--text-dim); font-size: 13px; }

.hero__art { position: relative; height: 540px; }
.hero__promos { display: none; } /* masaustunde gizli, mobilde acilir */
.halo {
  position: absolute; width: 460px; height: 460px;
  border-radius: 50%; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(139,63,224,.4), transparent 60%);
  filter: blur(40px); z-index: 0;
}
.card--float {
  position: absolute; width: 280px; padding: 20px;
  background: linear-gradient(180deg, rgba(29,29,46,.95), rgba(22,22,36,.95));
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  box-shadow: var(--shadow); backdrop-filter: blur(8px); z-index: 1;
  animation: float 6s ease-in-out infinite;
  display: block; text-decoration: none; color: inherit; cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.card--float:hover {
  border-color: rgba(139,63,224,.6);
  box-shadow: 0 26px 48px -18px rgba(139,63,224,.5);
}
.card--1 { top: 20px; left: 0; animation-delay: 0s; }
.card--2 { top: 200px; right: 0; animation-delay: -2s; box-shadow: var(--shadow-cyan); }
.card--3 { bottom: 30px; left: 60px; animation-delay: -4s; }
/* Masaustunde yalniz 3 kart havada suzulur; 4-6 mobil/tablet stack icin saklanir */
.card--4, .card--5, .card--6 { display: none; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
/* mobil mini kartlar icin hafif sallanma (kucuk genlik, ust uste binmez) */
@keyframes floatMini {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
.card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.chip {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 10px; border-radius: 100px; text-transform: uppercase;
}
.chip--purple { background: rgba(139,63,224,.18); color: #d9c4ff; border: 1px solid rgba(139,63,224,.4); }
.chip--cyan   { background: rgba(0,217,230,.15);  color: #9cf3fb; border: 1px solid rgba(0,217,230,.4); }
.chip--gold   { background: rgba(232,194,111,.12); color: #f3d99a; border: 1px solid rgba(232,194,111,.4); }

.card__brand { font-size: 13px; color: var(--text-muted); }
.card__amount {
  font-family: var(--font-display); font-size: 42px; font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.card__amount small { font-size: 18px; vertical-align: middle; color: var(--text-muted); -webkit-text-fill-color: var(--text-muted); }
.card__meta {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border-strong);
  font-size: 12px; color: var(--text-dim);
}

/* ============== CATEGORIES ============== */
.categories { padding: 24px 0 56px; }
.categories__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.cat {
  display: flex; align-items: center; gap: 12px; padding: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, background .25s ease;
}
.cat:hover {
  transform: translateY(-3px);
  border-color: rgba(139,63,224,.5);
  background: linear-gradient(180deg, rgba(139,63,224,.08), var(--surface));
}
.cat__icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--grad-brand); color: #fff;
}
.cat__icon svg { width: 22px; height: 22px; }
.cat h4 { margin: 0 0 2px; font-size: 14px; font-weight: 600; }
.cat p { margin: 0; font-size: 12px; color: var(--text-dim); }

/* ============== SECTIONS ============== */
.section { padding: 80px 0; position: relative; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--border); }
.section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -1px;
  margin: 6px 0 8px; line-height: 1.1; font-weight: 800;
}
.section__tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px; color: #2EE6F0;
}
.section__sub { color: var(--text-muted); font-size: 16px; margin: 0; max-width: 560px; }
.section__more { text-align: center; margin-top: 40px; }

/* ============== FILTERS ============== */
.filters, .filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-bar { margin-bottom: 32px; }
.filter {
  padding: 9px 18px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: all .2s; display: inline-flex; align-items: center; gap: 6px;
}
.filter:hover { color: #fff; border-color: var(--border-strong); }
.filter.is-active {
  background: var(--grad-button); color: #fff; border-color: transparent;
  box-shadow: 0 6px 18px -6px rgba(139,63,224,.6);
}

/* ============== BONUS CARDS (AKTİFBONUS STYLE - LIST/GRID HYBRID) ============== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.bcard {
  display: grid;
  grid-template-columns: minmax(140px, 23%) 1fr;
  gap: 0 24px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.bcard::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--grad-button);
  opacity: 0; transition: opacity .25s;
}
.bcard:hover {
  transform: translateY(-4px);
  border-color: rgba(139,63,224,.5);
  box-shadow: 0 28px 50px -20px rgba(139,63,224,.45);
}
.bcard:hover::before { opacity: 1; }

/* SOL KOL: bonus tutari + tanim + rating */
.bcard__rail {
  display: flex; flex-direction: column; gap: 10px;
  padding-right: 22px;
  border-right: 1px dashed var(--border-strong);
}
.bcard__amount {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800; letter-spacing: -1.5px; line-height: .95;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bcard__amount small {
  font-size: 18px; letter-spacing: 0; margin-left: 3px;
  -webkit-text-fill-color: var(--text-muted); color: var(--text-muted);
}
.bcard__desc {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800; line-height: 1.25;
  color: #fff; text-transform: uppercase;
  overflow-wrap: break-word; word-break: normal; hyphens: none;
}
.bcard__rating { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.bcard__rating .stars { color: #E8C26F; font-size: 13px; letter-spacing: 2px; }
.bcard__score { color: var(--text-dim); font-size: 13px; font-weight: 700; }

/* SAG ANA ALAN */
.bcard__body { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.bcard__top { display: flex; align-items: stretch; gap: 14px; }

/* GENIS YATAY LOGO BANNER */
.bcard__logo {
  flex: 1; min-width: 0;
  height: 108px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-button); color: #fff;
  overflow: hidden;
}
.bcard__logo-letter { font-family: var(--font-display); font-weight: 800; font-size: 40px; }

.bcard__cat-pill, .cat-pill {
  align-self: flex-start;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  padding: 6px 13px; border-radius: 100px; text-transform: uppercase;
  white-space: nowrap;
}
.cat-deneme    { background: rgba(139,63,224,.18); color: #d9c4ff; border: 1px solid rgba(139,63,224,.4); }
.cat-freespin  { background: rgba(0,217,230,.15);  color: #9cf3fb; border: 1px solid rgba(0,217,230,.4); }
.cat-hosgeldin { background: rgba(232,194,111,.12); color: #f3d99a; border: 1px solid rgba(232,194,111,.4); }
.cat-cevrimsiz { background: rgba(46,230,240,.15);  color: #9cf3fb; border: 1px solid rgba(46,230,240,.4); }
.cat-yatirim   { background: rgba(139,63,224,.18); color: #d9c4ff; border: 1px solid rgba(139,63,224,.4); }
.cat-kayip     { background: rgba(232,111,111,.15); color: #f5b3b3; border: 1px solid rgba(232,111,111,.4); }

.bcard__short { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.bcard__props {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.bcard__props li {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: 12px;
  border: 1px solid var(--border);
  min-width: 0;
}
.bcard__prop-head { display: flex; align-items: center; gap: 8px; }
.bcard__prop-ic { width: 17px; height: 17px; color: #a78bfa; flex-shrink: 0; }
.bcard__props li span {
  color: var(--text-dim); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.bcard__props li strong {
  font-size: 13.5px; font-weight: 600; color: #e7ecfb; line-height: 1.5;
  overflow-wrap: break-word; word-break: normal; hyphens: none;
}

.bcard__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--border-strong);
  flex-wrap: wrap; gap: 10px;
}
.bcard__posted {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-dim);
}
.bcard__posted svg { color: var(--cyan); }
.bcard__actions { display: flex; gap: 8px; }

/* ============== SITE TABLE ============== */
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ranktable { width: 100%; border-collapse: collapse; font-size: 14px; }
.ranktable thead th {
  text-align: left; padding: 16px 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-dim);
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid var(--border);
}
.ranktable tbody td {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ranktable tbody tr:last-child td { border-bottom: 0; }
.ranktable tbody tr { transition: background .15s; }
.ranktable tbody tr:hover { background: rgba(139,63,224,.06); }

.rank-num {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rank-site { display: flex; align-items: center; gap: 12px; }
.rank-logo {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--border-strong);
  color: #fff; overflow: hidden; flex: 0 0 auto;
}
.rank-name { font-weight: 600; }
.rank-name small { display: block; font-weight: 400; color: var(--text-dim); font-size: 12px; }

.score {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display); font-weight: 700;
}
.score b { font-size: 18px; }
.score span { color: var(--text-dim); font-size: 12px; font-weight: 500; }

.lic {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(0,217,230,.1);
  border: 1px solid rgba(0,217,230,.3);
  border-radius: 100px;
  color: #9cf3fb; font-size: 12px; font-weight: 600;
}

/* ============== STEPS ============== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; position: relative;
}
.steps::before {
  content: ""; position: absolute;
  left: 8%; right: 8%; top: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,63,224,.6), rgba(0,217,230,.6), transparent);
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center;
  transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(139,63,224,.5); }
.step__num {
  width: 60px; height: 60px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  background: var(--grad-button); color: #fff;
  box-shadow: 0 12px 28px -8px rgba(139,63,224,.7);
}
.step h4 { font-family: var(--font-display); margin: 0 0 8px; font-size: 20px; }
.step p { color: var(--text-muted); margin: 0; font-size: 14px; }

/* ============== PAGE HERO (inner pages) ============== */
.page-hero {
  padding: 60px 0 50px;
  position: relative;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(800px 300px at 50% 0%, rgba(139,63,224,.18), transparent 70%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  margin: 14px 0 12px; line-height: 1.1;
  letter-spacing: -1px;
}
.crumbs {
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 8px;
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--cyan); }

.page-hero--brand { border-bottom-color: var(--brand-color, var(--purple)); }
.detail-head {
  display: flex; gap: 24px; align-items: flex-start;
  margin-top: 18px;
}
.detail-logo {
  width: 90px; height: 90px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 36px;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 14px 32px -8px rgba(139,63,224,.6);
}

/* ============== DETAIL PAGE ============== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.detail-amount {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 22px;
}
.detail-amount .bcard__amount { font-size: 56px; }
.detail-amount__meta { color: var(--text-dim); font-size: 13px; margin-top: 8px; }

.detail-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}

.detail-main h2 {
  font-family: var(--font-display);
  font-size: 24px; margin: 36px 0 16px;
}

.terms {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.terms li {
  position: relative;
  padding: 14px 18px 14px 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px; color: var(--text-muted);
}
.terms li::before {
  content: "✓";
  position: absolute; left: 14px; top: 14px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--grad-button);
  color: #fff; font-weight: 700;
  border-radius: 50%; font-size: 13px;
}

.detail-side { display: grid; gap: 20px; position: sticky; top: 90px; }
.side-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
}
.side-card h4 {
  font-family: var(--font-display);
  margin: 0 0 16px; font-size: 16px;
  letter-spacing: 0.3px;
}
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.info-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px dashed var(--border-strong);
  font-size: 14px;
}
.info-list li:last-child { border-bottom: 0; }
.info-list span { color: var(--text-dim); }
.info-list strong { color: #fff; font-weight: 700; }
.info-list .code {
  font-family: ui-monospace, Consolas, monospace;
  background: var(--bg-2); padding: 4px 10px; border-radius: 6px;
  border: 1px dashed var(--cyan); color: var(--cyan-light);
}

.related {
  display: flex; gap: 12px; align-items: center;
  padding: 12px; margin-bottom: 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, transform .2s;
}
.related:hover { border-color: rgba(139,63,224,.5); transform: translateX(2px); }
.related:last-child { margin-bottom: 0; }
.related__logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.related__brand { font-weight: 600; font-size: 13px; }
.related__title { font-size: 12px; color: var(--text-dim); }

/* ============== FAQ ============== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { display: grid; gap: 12px; margin-top: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s, background .2s;
}
.faq details[open] {
  border-color: rgba(139,63,224,.5);
  background: linear-gradient(180deg, rgba(139,63,224,.06), var(--surface));
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 0; font-weight: 600; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 28px; font-weight: 300;
  color: #2EE6F0; transition: transform .25s; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 18px; margin: 0; color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ============== CTA BAND ============== */
.cta-band { padding: 70px 0; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,63,224,.18), rgba(0,217,230,.12));
  border-block: 1px solid var(--border);
}
.cta-band__inner {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h3 { font-family: var(--font-display); font-size: 28px; margin: 0 0 6px; }
.cta-band p { color: var(--text-muted); margin: 0; }
.newsletter {
  display: flex; gap: 10px;
  background: rgba(7,7,13,.8);
  border: 1px solid var(--border-strong);
  border-radius: 14px; padding: 6px;
  min-width: 380px;
}
.newsletter input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: #fff; padding: 0 16px; font-size: 14px; font-family: inherit;
}
.newsletter input::placeholder { color: var(--text-dim); }
.newsletter .btn { padding: 12px 22px; }

/* ============== FOOTER ============== */
.footer {
  background: #06060c; padding-top: 70px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.footer__col h5 {
  font-family: var(--font-display); font-size: 14px;
  letter-spacing: 1px; text-transform: uppercase;
  margin: 0 0 18px; color: #fff;
}
.footer__col a {
  display: block; padding: 6px 0;
  color: var(--text-muted); font-size: 14px;
  transition: color .15s;
}
.footer__col a:hover { color: #2EE6F0; }
.footer__col--brand .brand { margin-bottom: 16px; }
.footer__about {
  color: var(--text-muted); font-size: 14px;
  line-height: 1.7; margin: 0 0 18px; max-width: 380px;
}
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.footer__bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--text-dim);
}
.disclaimer a { color: #2EE6F0; text-decoration: underline; }

/* ============== EMPTY STATE ============== */
.empty {
  text-align: center; padding: 60px 20px;
  background: var(--surface); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}
.empty h3 { margin: 0 0 8px; font-family: var(--font-display); }
.empty p { color: var(--text-muted); }
.empty a { color: var(--cyan); text-decoration: underline; }

/* ============== MOBILE MENU ============== */
.mobilemenu {
  display: none; flex-direction: column;
  padding: 16px 24px 24px; gap: 4px;
  border-top: 1px solid var(--border);
  background: rgba(7,7,13,.98);
}
.mobilemenu.is-open { display: flex; }
.mobilemenu a {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  color: #fff; font-weight: 500;
}
.mobilemenu .btn { margin-top: 12px; justify-content: center; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
}
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 22px; align-content: start; }
  /* Mobilde masaustu floating kartlari gizle, referans 2 kolon vitrini goster */
  .hero__art { display: none; }
  .hero__promos {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr; gap: 12px; width: 100%; margin: 18px 0 0;
  }
  /* mini ic elemanlar */
  .card--float .card__head   { margin-bottom: 6px; }
  .card--float .chip         { font-size: 7px; padding: 2px 6px; letter-spacing: .3px; }
  .card--float .card__brand  { font-size: 9px; }
  .card--float .card__amount { font-size: 17px; }
  .card--float .card__amount small { font-size: 9px; }
  .card--float .card__meta   { margin-top: 6px; padding-top: 6px; font-size: 8px; gap: 6px; }
  .card--float .card__meta span:first-child {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 62%;
  }
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header__inner { grid-template-columns: 1fr auto auto; gap: 10px; padding: 10px 14px; }
  .navtoggle { display: flex; width: 40px; height: 40px; }
  /* Mobilde marka + CTA + hamburger sigsin, yatay kayma olmasin */
  .brand { gap: 8px; min-width: 0; }
  .brand__logo { width: 38px; height: 38px; }
  .brand__text { font-size: 17px; }
  .header__actions .btn { padding: 8px 12px; font-size: 12px; gap: 5px; border-radius: 10px; }
  .header__actions .btn svg { display: none; }
  .section__head { flex-direction: column; align-items: flex-start; }
}
/* Masaustunde mobil liste gizli (media query'den ONCE tanimli ki override edilebilsin) */
.rank-mobile { display: none; }
@media (max-width: 720px) {
  .topbar__meta { display: none; }
  .hero { padding: 56px 0 26px; }
  .hero__art { height: auto; }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .categories__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat { min-width: 0; padding: 14px; }
  .cat h4 { overflow-wrap: break-word; }
  .page-hero h1 { font-size: 28px; overflow-wrap: break-word; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }

  .bcard { grid-template-columns: 1fr; padding: 18px; gap: 14px; }
  .bcard__rail {
    border-right: 0; border-bottom: 1px dashed var(--border-strong);
    padding-right: 0; padding-bottom: 14px;
    flex-direction: row; align-items: center; flex-wrap: wrap; gap: 6px 14px;
  }
  .bcard__desc { flex: 1 1 60%; }
  .bcard__rating { margin-top: 0; margin-left: auto; flex-direction: row; align-items: center; gap: 6px; }
  .bcard__logo { height: 88px; }
  .bcard__props { grid-template-columns: 1fr; }
  .bcard__amount { font-size: 34px; }

  /* Mobilde masaustu tablosu gizlenir, kompakt liste gosterilir */
  .table-wrap { display: none; }
  .rank-mobile { display: block; }
  .newsletter { min-width: 0; width: 100%; flex-direction: column; }
  .newsletter input { padding: 14px 16px; }
  .cta-band__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .detail-head { flex-direction: column; }
  .detail-logo { width: 70px; height: 70px; font-size: 28px; }
  .detail-amount .bcard__amount { font-size: 42px; }
}

/* --- Firma logolari (bonusreis) — dark tile, orantili, ortali --- */
.bcard__logo.has-img,
.detail-logo.has-img,
.rank-logo.has-img,
.related__logo.has-img{
  background:#0e1420 !important;
  border:1px solid rgba(255,255,255,.08);
  padding:6px;
  overflow:hidden;
}
.bcard__logo.has-img img,
.detail-logo.has-img img,
.rank-logo.has-img img,
.related__logo.has-img img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}

/* --- MOBIL kompakt site listesi (EN İYİ 6 + gerisi) --- */
.rank-mgroup + .rank-mgroup { margin-top: 26px; }
.rank-mgroup__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--text-dim); margin: 0 0 12px;
  display: flex; align-items: center; gap: 8px;
}
.rank-mgroup__star { color: #E8C26F; }
.rank-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; margin-bottom: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; text-decoration: none; color: inherit;
}
.rank-item--top {
  border-color: rgba(139,63,224,.35);
  background: linear-gradient(180deg, rgba(139,63,224,.06), rgba(22,22,36,.4));
}
.rank-item__rank {
  flex: 0 0 auto; min-width: 24px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--text-dim);
}
.rank-item--top .rank-item__rank {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rank-item .rank-logo { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 11px; }
.rank-item__body { flex: 1 1 auto; min-width: 0; }
.rank-item__name {
  font-weight: 700; font-size: 15px; color: #fff;
  margin-bottom: 5px; line-height: 1.15;
}
.rank-item__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 3px; }
.rank-item__feats li {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted); line-height: 1.25;
}
.rank-item__feats svg { width: 13px; height: 13px; color: #35d68a; flex: 0 0 auto; }
.rank-item__cta {
  flex: 0 0 auto; align-self: center; white-space: nowrap;
  font-size: 12.5px; font-weight: 800;
  padding: 10px 14px; border-radius: 11px;
  background: #00D9E6; color: #06222a;
}
.rank-item--top .rank-item__cta { background: var(--grad-button); color: #fff; }

/* --- MOBIL referans vitrin kartlari (.hero__promos .promo) --- */
.promo {
  --neon: #8b3fe0;
  position: relative; box-sizing: border-box; min-width: 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 12px 12px 11px;
  background: linear-gradient(180deg, rgba(20,20,34,.96), rgba(11,11,20,.96));
  border: 1px solid var(--neon);
  border-radius: 15px;
  text-decoration: none; color: inherit;
  box-shadow: 0 8px 22px -14px var(--neon);
  overflow: hidden;
}
/* LOGO ustte, tam gorunur (kirpma yok) */
.promo__logo {
  width: 100%; height: 44px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
}
.promo__logo img {
  max-width: 90%; max-height: 40px; width: auto; height: auto;
  object-fit: contain; object-position: center; display: block;
}
.promo__logo b { font-size: 15px; font-weight: 800; color: #fff; }
.promo__badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
  white-space: nowrap; max-width: 100%;
  color: var(--neon); border: 1px solid var(--neon);
  background: color-mix(in srgb, var(--neon) 14%, transparent);
}
.promo__amount {
  font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1;
  letter-spacing: -1px; white-space: nowrap; margin-top: 6px;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.promo__amount small { font-size: 0.72em; margin-left: 6px; font-weight: 800; -webkit-text-fill-color: #fff; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,.55), 0 0 3px rgba(255,255,255,.35); }
.promo__divider { width: 100%; border-top: 1px dashed var(--border-strong); margin: 10px 0 8px; }
.promo__meta { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 6px; align-items: center; margin-top: auto; }
.promo__meta-item { display: flex; align-items: flex-start; gap: 4px; min-width: 0; font-size: 8.5px; color: var(--text-dim); line-height: 1.25; text-align: left; }
.promo__meta-item svg { width: 11px; height: 11px; flex: 0 0 auto; color: var(--neon); margin-top: 1px; }
.promo__meta-item span { overflow-wrap: normal; word-break: normal; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.promo__meta-item--r { border-left: 1px solid var(--border-strong); padding-left: 7px; }
.promo__meta-item--r span { -webkit-line-clamp: 1; white-space: nowrap; }
/* firma basina neon renk (referanstaki renk dizilimi) */
.hero__promos .promo:nth-of-type(1){ --neon: #8b3fe0; }
.hero__promos .promo:nth-of-type(2){ --neon: #00d9e6; }
.hero__promos .promo:nth-of-type(3){ --neon: #e8c26f; }
.hero__promos .promo:nth-of-type(4){ --neon: #ff4d8d; }
.hero__promos .promo:nth-of-type(5){ --neon: #4f8cff; }
.hero__promos .promo:nth-of-type(6){ --neon: #a855f7; }

/* --- hero promo kartlarinda da donen neon gezici cerceve --- */
.promo { border-color: color-mix(in srgb, var(--neon) 34%, transparent); }
.promo::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: conic-gradient(from var(--srank-angle),
    transparent 0deg, transparent 296deg,
    var(--neon) 320deg, #ffffff 340deg, var(--neon) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: drop-shadow(0 0 3px var(--neon));
  pointer-events: none;
  animation: srankTravel 8s linear infinite;
}
.hero__promos .promo:nth-of-type(1)::before { animation-duration: 8s;   animation-delay: 0s; }
.hero__promos .promo:nth-of-type(2)::before { animation-duration: 9s;   animation-delay: -1.5s; }
.hero__promos .promo:nth-of-type(3)::before { animation-duration: 7.5s; animation-delay: -3s; }
.hero__promos .promo:nth-of-type(4)::before { animation-duration: 8.5s; animation-delay: -.8s; }
.hero__promos .promo:nth-of-type(5)::before { animation-duration: 9.5s; animation-delay: -2.2s; }
.hero__promos .promo:nth-of-type(6)::before { animation-duration: 7s;   animation-delay: -4s; }
@media (prefers-reduced-motion: reduce) {
  .promo::before { animation: none; opacity: 0; }
  .promo { border-color: var(--neon); }
}

/* ================= SIRALI SITE KARTLARI (.srank) — En Iyi 6 + Tum Siteler ================= */
.srank-list { display: flex; flex-direction: column; gap: 14px; }
.srank {
  --neon: #8b3fe0;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr) minmax(120px, 170px) auto;
  align-items: center; gap: 22px;
  padding: 15px 20px;
  background: linear-gradient(180deg, rgba(24,24,38,.55), var(--surface));
  border: 1px solid var(--neon); border-radius: 18px;
  text-decoration: none; color: inherit;
  box-shadow: 0 12px 30px -22px var(--neon);
  transition: transform .2s ease, box-shadow .25s ease;
  position: relative; isolation: isolate;
}
.srank:hover { transform: translateY(-2px); box-shadow: 0 26px 50px -22px var(--neon); }
.srank__rank { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.srank__crown { width: 20px; height: 20px; color: var(--neon); }
.srank__rank span { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--text-muted); }
.srank__logo { height: 84px; border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--grad-button); color: #fff; }
.srank__logo.has-img { background: #0e1420; border: 1px solid rgba(255,255,255,.08); padding: 8px; }
.srank__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.srank__logo-txt { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.srank__feats { list-style: none; margin: 0; padding: 0; min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.srank__feats li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); min-width: 0; }
.srank__feats li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srank__feats svg { width: 14px; height: 14px; color: #35d68a; flex: 0 0 auto; }
.srank__offer { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; min-width: 0; max-width: 100%; overflow: hidden; }
.srank__badge { max-width: 100%; font-size: 9.5px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.srank__amount { font-family: var(--font-display); font-weight: 800; font-size: 27px; line-height: 1.05; letter-spacing: -1px; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.srank__amount small { font-size: 0.8em; margin-left: 6px; font-weight: 800; -webkit-text-fill-color: #fff; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,.55), 0 0 3px rgba(255,255,255,.35); }
.srank__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; max-width: 100%; }
.srank__meta-i { display: flex; align-items: center; gap: 5px; min-width: 0; max-width: 100%; font-size: 10.5px; color: var(--text-dim); }
.srank__meta-i > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.srank__meta-i svg { width: 12px; height: 12px; color: var(--neon); flex: 0 0 auto; }
.srank__go { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: 12px; white-space: nowrap; font-weight: 800; font-size: 14px; background: var(--grad-button); color: #fff; }
.srank__go svg { width: 16px; height: 16px; }

/* firma basina neon renk */
.srank-list .srank:nth-of-type(6n+1){ --neon:#8b3fe0; }
.srank-list .srank:nth-of-type(6n+2){ --neon:#00d9e6; }
.srank-list .srank:nth-of-type(6n+3){ --neon:#e8c26f; }
.srank-list .srank:nth-of-type(6n+4){ --neon:#ff4d8d; }
.srank-list .srank:nth-of-type(6n+5){ --neon:#4f8cff; }
.srank-list .srank:nth-of-type(6n+6){ --neon:#a855f7; }

/* --- animasyonlu neon gezici cerceve (traveling light) --- */
@property --srank-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.srank { border-color: color-mix(in srgb, var(--neon) 32%, transparent); }
.srank::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: conic-gradient(from var(--srank-angle),
    transparent 0deg, transparent 296deg,
    var(--neon) 320deg, #ffffff 340deg, var(--neon) 358deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  filter: drop-shadow(0 0 3px var(--neon));
  pointer-events: none;
  animation: srankTravel 8s linear infinite;
}
@keyframes srankTravel { to { --srank-angle: 360deg; } }
.srank:hover::before { filter: drop-shadow(0 0 5px var(--neon)); }
.srank:hover { transform: translateY(-2px); }
/* her kart farkli hiz + baslangic (isiklar ayni anda ayni yerde olmasin) */
.srank-list .srank:nth-of-type(6n+1)::before { animation-duration: 8s;   animation-delay: 0s; }
.srank-list .srank:nth-of-type(6n+2)::before { animation-duration: 9s;   animation-delay: -1.5s; }
.srank-list .srank:nth-of-type(6n+3)::before { animation-duration: 7.5s; animation-delay: -3s; }
.srank-list .srank:nth-of-type(6n+4)::before { animation-duration: 8.5s; animation-delay: -.8s; }
.srank-list .srank:nth-of-type(6n+5)::before { animation-duration: 9.5s; animation-delay: -2.2s; }
.srank-list .srank:nth-of-type(6n+6)::before { animation-duration: 7s;   animation-delay: -4s; }
@media (prefers-reduced-motion: reduce) {
  .srank::before { animation: none; opacity: 0; }
  .srank { border-color: var(--neon); }
}

/* arac cubugu (arama + filtre cipleri) */
.srank-tools { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.srank-search { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.srank-search svg { width: 18px; height: 18px; color: var(--text-dim); flex: 0 0 auto; }
.srank-search input { flex: 1; min-width: 0; background: transparent; border: 0; color: #fff; font-size: 14px; outline: none; }
.srank-count { color: var(--text-dim); font-size: 13px; white-space: nowrap; }
.srank-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.srank-chip { font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); cursor: pointer; transition: color .2s, border-color .2s, background .2s; white-space: nowrap; }
.srank-chip:hover { color: #fff; border-color: rgba(139,63,224,.5); }
.srank-chip.is-active { background: var(--grad-button); color: #fff; border-color: transparent; }
.srank-empty { text-align: center; color: var(--text-dim); padding: 30px 0; }

@media (max-width: 720px) {
  .srank {
    grid-template-columns: 68px minmax(72px, 1fr) 86px 32px;
    gap: 4px 9px; padding: 11px 10px;
  }
  .srank__logo { height: 56px; padding: 5px; }
  .srank__feats { gap: 5px; }
  .srank__feats li { font-size: 10.5px; gap: 5px; }
  .srank__feats svg { width: 11px; height: 11px; }
  .srank__badge { font-size: 7px; padding: 3px 6px; letter-spacing: 0; }
  .srank__amount { font-size: 18px; }
  .srank__amount small { font-size: 0.82em; margin-left: 4px; }
  .srank__meta { gap: 1px; }
  .srank__meta-i { font-size: 8.5px; gap: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .srank__meta-i svg { width: 10px; height: 10px; }
  .srank__go { width: 32px; height: 32px; padding: 0; border-radius: 10px; }
  .srank__go svg { width: 15px; height: 15px; }
  .srank__go-txt { display: none; }
  .srank-search { min-width: 0; flex-basis: 100%; }
  .srank-chip { font-size: 12px; padding: 7px 13px; }
}

/* ================= POPUP (vitrin) ================= */
.popup { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.popup.is-open { display: flex; }
.popup__overlay { position: absolute; inset: 0; background: rgba(4,4,10,.74); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.popup__box { position: relative; z-index: 1; width: 100%; max-width: 320px; animation: popupIn .35s ease; }
@keyframes popupIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
.popup__close {
  position: absolute; top: -16px; right: -8px; z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border-strong); color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.6);
}
.popup__close:hover { border-color: rgba(139,63,224,.6); color: #fff; }
.popup__stage { position: relative; }
.popup__card { width: 100%; transition: opacity .35s ease; }
.popup__card:not(.is-active) { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.popup__card.is-active { position: relative; opacity: 1; }
.popup__dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.popup__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.28); transition: background .25s, width .25s; }
.popup__dot.is-active { background: #fff; width: 20px; border-radius: 5px; }
@media (prefers-reduced-motion: reduce) { .popup__box { animation: none; } .popup__card { transition: none; } }

/* Popup web'de ~2x buyuk (mobil <=720 ayni kalir) */
@media (min-width: 721px) {
  .popup__box { max-width: 560px; }
  .popup__card { padding: 26px 30px; }
  .popup__card .promo__logo { height: 82px; margin-bottom: 12px; }
  .popup__card .promo__logo img { max-width: 80%; max-height: 72px; }
  .popup__card .promo__badge { font-size: 14px; padding: 7px 18px; letter-spacing: .5px; }
  .popup__card .promo__amount { font-size: 52px; margin-top: 10px; }
  .popup__card .promo__amount small { font-size: 28px; margin-left: 8px; }
  .popup__card .promo__divider { margin: 18px 0 14px; }
  .popup__card .promo__meta-item { font-size: 14px; gap: 7px; }
  .popup__card .promo__meta-item svg { width: 16px; height: 16px; }
  .popup__close { width: 42px; height: 42px; font-size: 26px; top: -18px; right: -10px; }
  .popup__dots { margin-top: 20px; }
  .popup__dot { width: 10px; height: 10px; }
  .popup__dot.is-active { width: 26px; }
}
