/* =========================================================
   BonusReis — 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;
}

/* ============== BANNER ============== */
.banner-strip {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px;
  padding: 16px 24px;
  max-width: var(--container);
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.banner-item {
  display: block; line-height: 0;
  max-width: 100%;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.banner-item:hover {
  transform: translateY(-2px);
  border-color: rgba(139,63,224,.5);
  box-shadow: 0 14px 30px -10px rgba(139,63,224,.4);
}
.banner-item img { display: block; max-width: 100%; height: auto; }
.banner-home_top    { padding-top: 24px; }
.banner-home_mid    { padding: 0; margin: 4px 0 18px; }
.section .banner-home_mid { padding: 0; margin: 4px 0 18px; max-width: none; }
.banner-home_bottom { padding: 24px; }
.banner-bonus_top   { padding-top: 24px; }
.banner-site_top    { padding-top: 24px; }

/* ============== 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; }
.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;
}
.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; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
.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: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 12px;
  padding: 12px 14px;
  background:
    linear-gradient(180deg, rgba(139,63,224,.04) 0%, rgba(0,0,0,0) 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
  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 .3s;
}
.bcard:hover {
  transform: translateY(-6px);
  border-color: rgba(139,63,224,.55);
  box-shadow: 0 36px 60px -22px rgba(139,63,224,.55), 0 14px 30px -12px rgba(0,0,0,.6);
}
.bcard:hover::before { opacity: 1; }
.bcard--featured {
  border-color: rgba(232,194,111,.35);
  background:
    linear-gradient(180deg, rgba(232,194,111,.06) 0%, rgba(0,0,0,0) 50%),
    var(--surface);
}

/* When card has an image, switch to vertical layout with full-width 16:9 hero banner on top.
   Wide cinematic banners (e.g. 1280x720) need the real estate to stay readable. */
.bcard--with-image {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  padding: 0;
  gap: 0;
}

/* IMAGE — premium focal area (default 84x84 thumbnail; .bcard--with-image overrides to wide hero) */
.bcard__image {
  grid-row: 1 / 3;
  align-self: start;
  margin-top: 2px;
  width: 84px; height: 84px;
  position: relative;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139,63,224,.7), rgba(0,217,230,.7));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 8px 18px -8px rgba(139,63,224,.5),
    0 4px 10px -6px rgba(0,217,230,.3);
  transition: box-shadow .35s, transform .35s;
}
.bcard--with-image .bcard__image {
  grid-row: auto;
  align-self: auto;
  margin: 0;
  width: 100%;
  height: 0;
  padding: 0 0 56.25%;
  position: relative;
  border-radius: 12px 12px 0 0;
  background: none;
  box-shadow: none;
}
.bcard--with-image .bcard__image-frame {
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 0 0;
}
.bcard__image-frame {
  position: relative;
  display: block;
  width: 100%; height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0a14;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.bcard__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.bcard--with-image .bcard__image img {
  object-fit: contain;
  background: #0a0a14;
}
.bcard__image-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.bcard--with-image .bcard__image-frame::after {
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, transparent 30%, transparent 60%, rgba(0,0,0,.55) 100%);
}
.bcard:hover .bcard__image {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 20px 42px -14px rgba(139,63,224,.7),
    0 10px 24px -8px rgba(0,217,230,.5);
}
.bcard--with-image:hover .bcard__image { box-shadow: none; }
.bcard:hover .bcard__image img { transform: scale(1.07); }

.bcard__image-badge {
  position: absolute;
  top: 6px; left: 6px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5e7e, #ff9d3a);
  color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .3px;
  box-shadow: 0 4px 12px -3px rgba(255,94,126,.65);
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}
.bcard--with-image .bcard__image-badge {
  top: 12px; left: 12px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: .6px;
}
.bcard__image-cat {
  position: absolute;
  bottom: 6px; left: 6px; right: 6px;
  z-index: 2;
  padding: 4px 6px;
  border-radius: 6px;
  background: rgba(7,7,13,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .6px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
}
.bcard--with-image .bcard__image-cat {
  bottom: 12px; left: 12px; right: auto;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 1px;
  width: max-content; max-width: calc(100% - 24px);
}

.bcard--with-image .bcard__main { min-width: 0; }

/* PERKS — Yatırımsız / Çevrim yok highlight chips */
.bcard__perks {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin: 4px 0 8px;
}
.perk {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .15px;
  border: 1px solid;
}
.perk svg { flex-shrink: 0; }
.perk--gold {
  color: #FFD27A;
  background: rgba(232,194,111,.1);
  border-color: rgba(232,194,111,.35);
}
.perk--cyan {
  color: #4FE3F0;
  background: rgba(0,217,230,.08);
  border-color: rgba(0,217,230,.32);
}

.bcard__brand {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding-right: 14px;
  border-right: 1px dashed var(--border-strong);
  grid-row: 1 / 3;
  min-width: 72px;
}
.bcard--with-image .bcard__brand {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  border-right: 0;
  border-bottom: 1px dashed var(--border);
  padding: 14px 16px;
  margin: 0;
  grid-row: auto;
  min-width: 0;
  text-align: left;
}
/* Text/initial logo: square gradient block */
.bcard--with-image .bcard__logo {
  width: 160px; height: 160px;
  border-radius: 18px;
  font-size: 56px;
  flex-shrink: 0;
  box-shadow: 0 14px 30px -10px rgba(139,63,224,.55);
}
/* Image logo: drop the square frame so logo hugs its own aspect ratio (no top/bottom dead space) */
.bcard--with-image .bcard__logo--img {
  width: 160px; height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.bcard--with-image .bcard__logo--img img {
  width: 100%; height: auto;
  object-fit: contain;
  display: block;
}
.bcard--with-image .bcard__brand-meta { text-align: left; }
.bcard--with-image .bcard__brand-name { font-size: 22px; }
.bcard--with-image .bcard__brand-tag { flex-direction: row; align-items: center; gap: 8px; font-size: 13px; }
.bcard--with-image .bcard__brand-tag .stars { font-size: 14px; }
@media (max-width: 720px) {
  .bcard--with-image .bcard__logo { width: 110px; height: 110px; border-radius: 14px; font-size: 40px; }
  .bcard--with-image .bcard__logo--img { width: 110px; }
  .bcard--with-image .bcard__brand-name { font-size: 18px; }
}
.bcard__logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px;
  background: var(--grad-button); color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(139,63,224,.5);
  overflow: hidden;
}
.bcard__logo--img {
  width: 140px; height: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.bcard__logo--img img { width: 100%; height: auto; object-fit: contain; display: block; }
@media (max-width: 720px) {
  .bcard:not(.bcard--with-image) .bcard__logo--img { width: 110px; }
}
.bcard__brand-meta { text-align: center; }
.bcard__brand-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.bcard__brand-tag {
  font-size: 11px; color: var(--text-dim);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.bcard__brand-tag .stars { color: #E8C26F; font-size: 10px; letter-spacing: 1px; }

.bcard__main {
  display: flex; flex-direction: column;
  grid-column: 2;
  min-width: 0;
}
.bcard--with-image .bcard__main { grid-column: auto; padding: 14px 14px 0; }
.bcard__amount-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.bcard__amount {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, #B66BFF 50%, #2EE6F0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(139,63,224,.2));
}
.bcard__amount small {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted); margin-left: 2px;
  filter: none;
}

.bcard__cat-pill, .cat-pill {
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  padding: 5px 11px; 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__title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  margin: 2px 0 0; color: #fff; line-height: 1.25;
  letter-spacing: -.2px;
}
.bcard__short {
  font-size: 11px; color: var(--text-muted); line-height: 1.45;
  margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcard__props {
  list-style: none; padding: 0; margin: 0 0 10px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px;
}
.bcard__props li {
  display: flex; flex-direction: column; gap: 1px;
  padding: 5px 7px;
  background: var(--bg-2);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.bcard__props li span { color: var(--text-dim); font-size: 8px; text-transform: uppercase; letter-spacing: .3px; }
.bcard__props li strong { font-size: 11px; font-weight: 700; color: #fff; }

/* ============== MINI BONUS CARD (Anasayfa) ============== */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.mcard {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), border-color .25s, box-shadow .25s;
  position: relative;
}
.mcard:hover {
  transform: translateY(-3px);
  border-color: rgba(139,63,224,.5);
  box-shadow: 0 18px 32px -14px rgba(139,63,224,.55);
}
.mcard--featured { border-color: rgba(232,194,111,.35); }

.mcard__image {
  position: relative;
  width: 100%; aspect-ratio: 1 / 1;
  background: #0a0a14;
  overflow: hidden;
}
.mcard__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.mcard:hover .mcard__image img { transform: scale(1.06); }
.mcard__image--fallback { display: grid; place-items: center; }
.mcard__image--fallback img { object-fit: contain; padding: 18%; }
.mcard__image--fallback span {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 900; color: #fff;
  text-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.mcard__badge {
  position: absolute;
  top: 6px; left: 6px;
  z-index: 2;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5e7e, #ff9d3a);
  font-size: 12px;
  box-shadow: 0 4px 10px -3px rgba(255,94,126,.6);
}

.mcard__body {
  padding: 10px 12px 6px;
  display: flex; flex-direction: column; gap: 4px;
}
.mcard__head {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.mcard__brand {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  letter-spacing: .2px; text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mcard__cat {
  font-size: 8px; font-weight: 800; letter-spacing: .8px;
  padding: 2px 6px; border-radius: 999px;
  white-space: nowrap;
}
.mcard__amount {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900;
  letter-spacing: -.8px; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #B66BFF 50%, #2EE6F0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mcard__amount small {
  font-size: 12px; font-weight: 700;
  color: var(--text-muted); -webkit-text-fill-color: var(--text-muted);
  margin-left: 2px;
}
.mcard__title {
  font-size: 12px; font-weight: 600; color: #fff; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.6em;
}

.mcard__cta {
  margin: 4px 12px 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #8B3FE0 0%, #38bdf8 50%, #00D9E6 100%);
  background-size: 180% 180%; background-position: 0% 50%;
  color: #fff; font-size: 12px; font-weight: 700;
  text-align: center;
  transition: background-position .4s, filter .25s;
  box-shadow: 0 6px 14px -4px rgba(139,63,224,.5);
}
.mcard:hover .mcard__cta {
  background-position: 100% 50%;
  filter: brightness(1.1);
}

.bcard__foot {
  grid-column: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px dashed var(--border-strong);
  flex-wrap: wrap; gap: 8px;
}
.bcard--with-image .bcard__foot { grid-column: auto; padding: 10px 14px 14px; margin-top: auto; }
.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; }

/* Premium CTA on bonus card */
.bcard__cta {
  position: relative;
  background: linear-gradient(135deg, #8B3FE0 0%, #38bdf8 50%, #00D9E6 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow:
    0 10px 24px -8px rgba(139,63,224,.65),
    0 6px 14px -6px rgba(0,217,230,.45),
    inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .2s, box-shadow .25s, background-position .4s, filter .25s;
}
.bcard__cta::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.bcard__cta svg { transition: transform .25s; }
.bcard:hover .bcard__cta,
.bcard__cta:hover {
  transform: translateY(-1px) scale(1.04);
  background-position: 100% 50%;
  filter: brightness(1.08);
  box-shadow:
    0 14px 30px -8px rgba(139,63,224,.85),
    0 8px 18px -6px rgba(0,217,230,.6),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.bcard__cta:hover::after { transform: translateX(100%); }
.bcard__cta:hover svg { transform: translateX(3px); }

/* ============== 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: grid; place-items: center;
  font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--border-strong);
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.rank-logo--img { background: transparent; padding: 3px; }
.rank-logo--img img { width: 100%; height: 100%; object-fit: contain; }
.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: 40px; }
  .hero__art { height: 460px; max-width: 480px; margin: 0 auto; width: 100%; }
  .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; }
  .navtoggle { display: flex; }
  .section__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .topbar__meta { display: none; }
  .hero { padding: 60px 0 70px; }
  .hero__art { height: 420px; }
  .card--float { width: 240px; padding: 16px; }
  .card__amount { font-size: 32px; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .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;
  }
  .bcard--with-image { padding: 0; }
  .bcard:not(.bcard--with-image) .bcard__brand {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px dashed var(--border-strong);
    padding: 0 0 14px 0;
    margin-bottom: 14px;
    text-align: left;
    align-items: center;
    grid-row: auto;
  }
  .bcard:not(.bcard--with-image) .bcard__brand-meta { text-align: left; align-items: flex-start; }
  .bcard:not(.bcard--with-image) .bcard__brand-tag { flex-direction: row; align-items: center; }
  .bcard:not(.bcard--with-image) .bcard__main,
  .bcard:not(.bcard--with-image) .bcard__foot { grid-column: auto; }
  .bcard:not(.bcard--with-image) .bcard__image {
    grid-row: auto;
    width: 100%; height: auto; aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto 14px;
  }
  .bcard__amount { font-size: 38px; }
  .bcard__props { grid-template-columns: repeat(2, 1fr); }
  .bcard__amount { font-size: 30px; }
  .bcard__title { font-size: 15px; }

  .ranktable thead { display: none; }
  .ranktable, .ranktable tbody, .ranktable tr, .ranktable td { display: block; width: 100%; }
  .ranktable tr {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 12px; padding: 14px;
  }
  .ranktable tbody tr:hover { background: var(--surface); }
  .ranktable td {
    padding: 8px 0; border-bottom: 1px dashed var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .ranktable td:last-child { border-bottom: 0; }
  .ranktable td::before {
    content: attr(data-label);
    font-size: 12px; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1px;
    margin-right: 12px;
  }
  .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; }
}

/* ============== POPULAR SITES GRID ============== */
.popsites-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.popsites-row {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 16px;
}
/* Hero rows (first two): larger card padding + bigger logo for prominence */
.popsites-row--hero .popsite {
  padding: 30px 22px;
}
.popsites-row--hero .popsite__logo:has(img) {
  height: 92px;
  max-width: 240px;
}
.popsites-row--hero .popsite__logo span { font-size: 32px; }
.popsites-row--hero .popsite__name { font-size: 18px; }
.popsites-row--hero .popsite__tag  { font-size: 13px; }
@media (max-width: 720px) {
  /* Mobile: flatten rows into one continuous 2-col grid so partial rows don't leave gaps */
  .popsites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .popsites-row { display: contents; }
  .popsites-row:first-child .popsite:first-child {
    grid-column: 1 / -1;
    padding: 30px 20px;
  }
  .popsites-row:first-child .popsite:first-child .popsite__logo:has(img) {
    max-width: 220px;
    height: 84px;
  }
  .popsites-row:first-child .popsite:first-child .popsite__logo span { font-size: 32px; }
  .popsites-row:first-child .popsite:first-child .popsite__name { font-size: 18px; }
  .popsites-row:first-child .popsite:first-child .popsite__tag  { font-size: 13px; }
}
.popsite {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  padding: 22px 16px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
  text-align: center;
}
.popsite:hover {
  transform: translateY(-4px);
  border-color: rgba(139,63,224,.45);
  background: rgba(139,63,224,.06);
  box-shadow: 0 14px 32px -12px rgba(139,63,224,.45);
}
.popsite__logo {
  width: 72px; height: 72px;
  border-radius: 18px;
  overflow: hidden;
  display: grid; place-items: center;
}
/* Logo with image: fixed-height frame so all operator logos render at uniform visual size,
   regardless of their natural aspect ratio (wide-thin like Süratbet vs compact like Atlasbet) */
.popsite__logo:has(img) {
  width: 100%;
  max-width: 180px;
  height: 70px;
  border-radius: 0;
  overflow: visible;
  display: block;
}
.popsite__logo:has(img) img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 0;
  display: block;
}
.popsite__logo span {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px; color: #fff;
}
@media (max-width: 720px) {
  .popsite__logo:has(img) { max-width: 140px; height: 56px; }
}
.popsite__name { font-weight: 700; font-size: 16px; margin-top: 4px; }
.popsite__tag { font-size: 12px; color: var(--text-mute); margin-top: -2px; }
.popsite__score {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,215,0,.12);
  color: #FFD700;
  padding: 4px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
}

/* ===== SPOTLIGHT (öne çıkan banner) ===== */
.spotlight {
  position: relative;
  display: block;
  margin: 28px 0 24px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(139,63,224,.35);
  box-shadow:
    0 0 0 1px rgba(0,217,230,.08) inset,
    0 18px 48px -18px rgba(139,63,224,.55),
    0 8px 24px -12px rgba(0,217,230,.35);
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.spotlight:hover {
  transform: translateY(-3px);
  border-color: rgba(0,217,230,.55);
  box-shadow:
    0 0 0 1px rgba(0,217,230,.18) inset,
    0 26px 60px -18px rgba(139,63,224,.7),
    0 14px 36px -14px rgba(0,217,230,.55);
}
.spotlight__glow {
  position: absolute; inset: -2px;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(139,63,224,.35), transparent 60%),
    radial-gradient(60% 80% at 100% 100%, rgba(0,217,230,.28), transparent 60%);
  z-index: 0;
  pointer-events: none;
  opacity: .85;
}
.spotlight__img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.spotlight__chip {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.spotlight__cta {
  position: absolute;
  right: 18px; bottom: 18px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .3px;
  box-shadow: 0 12px 28px -10px rgba(139,63,224,.7);
  transition: transform .25s ease, box-shadow .25s ease;
}
.spotlight:hover .spotlight__cta {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 16px 36px -12px rgba(0,217,230,.6);
}
@media (max-width: 640px) {
  .spotlight { border-radius: 16px; margin: 22px 0 20px; }
  .spotlight__chip { top: 10px; left: 10px; padding: 6px 10px; font-size: 11px; }
  .spotlight__cta { right: 12px; bottom: 12px; padding: 10px 16px; font-size: 13px; }
}
