/* ==========================================================================
   Bonusmatik — orijinal koyu tema (siyah / yeşil)
   Beyaz tema kullanılmaz. Kart ızgarası ve bonus kartı yapısı korunur.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #0f1712;
  --bg-soft: #141f18;
  --card: #17241c;
  --card-hi: #1d2e23;
  --line: #24352a;
  --green-deep: #2e7d32;
  --green: #6dbe45;
  --green-bright: #9ee36b;
  --green-pale: #c9f2a8;
  --gold: #ffc94d;
  --text: #eef5ea;
  --text-dim: #a9bcae;
  --text-faint: #6f8577;
  --radius: 18px;
  --max: 1180px;
  --header-h: 72px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Baloo 2", system-ui, sans-serif;
  --accent: var(--green);
  --accent-dark: var(--green-deep);
  --ink: var(--text);
  --ink-2: var(--text-dim);
  --ink-3: var(--text-faint);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(109, 190, 69, 0.16), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(109, 190, 69, 0.08), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--green-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--green-pale); }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.7em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-dim); }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; color: var(--text-dim); }
li { margin: 0.28em 0; }

table { width: 100%; border-collapse: collapse; font-size: 0.94rem; margin: 0 0 1.4em; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--bg-soft); font-weight: 700; color: var(--text); }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--green);
  color: #0c1509;
  padding: 8px 14px;
  z-index: 100;
  font-weight: 800;
}
.skip:focus { left: 8px; }

:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Header — orijinal sticky cam */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 18, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.logo-well {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.logo-well img { height: 34px; width: auto; }

.nav { display: none; align-items: center; gap: 8px; }
.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 8px 10px;
  border-radius: 8px;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--green-bright); }

.nav-cta {
  display: none;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: #0d1710 !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(109, 190, 69, 0.55);
}
.nav-cta:hover { color: #0d1710 !important; filter: brightness(1.05); }

.menu-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 10px 16px 18px;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 12px 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-panel a:last-child { border-bottom: 0; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-btn { display: none; }
  .mobile-panel { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #0c1509;
  box-shadow: 0 10px 24px -8px rgba(109, 190, 69, 0.6);
}
.btn-primary:hover { color: #0c1509; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--green); background: rgba(109, 190, 69, 0.08); color: var(--text); }
.btn-dark { background: var(--green); color: #0c1509; }
.btn-full { width: 100%; }

/* Hero */
.hero {
  padding: 64px 0 40px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: 0;
}
.hero-grid {
  display: grid;
  gap: 40px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-bright);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(109, 190, 69, 0.1);
  border: 1px solid rgba(109, 190, 69, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--green-bright); }
.hero p.lead {
  color: var(--text-dim);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 8px; }
.hero-note { font-size: 0.85rem; color: var(--text-faint); margin: 0; }

.mascot-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.hero-panel {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.hero-panel h2 { font-size: 1.05rem; margin-bottom: 14px; }

.mascot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mascot-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 190, 69, 0.35), transparent 70%);
  filter: blur(6px);
}
.mascot-card img { width: 100%; }
.mascot-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--gold);
  color: #221900;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 0 8px 18px -6px rgba(255, 201, 77, 0.6);
}
.mascot-caption { text-align: center; margin-top: 16px; color: var(--text-faint); font-size: 0.85rem; }

.hero-stats { display: flex; gap: 30px; margin-top: 38px; }
.hero-stats b {
  display: block;
  font-size: 1.5rem;
  font-family: var(--display);
  color: var(--green-bright);
}
.hero-stats span { color: var(--text-faint); font-size: 0.82rem; }

.mini-brands { display: grid; gap: 10px; }
.mini-brand {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.mini-brand:hover { border-color: var(--green); background: var(--card-hi); }
.mini-brand b { color: var(--text); font-size: 0.92rem; display: block; }
.mini-brand span { color: var(--text-faint); font-size: 0.78rem; }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}

/* Filter bar — orijinal */
.filter-section { padding: 12px 0 8px; }
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.chip:hover,
.chip.active {
  color: #0c1509;
  background: var(--green);
  border-color: var(--green);
}
.result-count { color: var(--text-faint); font-size: 0.85rem; margin: 14px 0 0; }

/* Sections */
.section { padding: 52px 0; }
.section-alt {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head p { margin: 0; }

.prose { max-width: 760px; }
.prose h2, .prose h3, .prose h4 { margin-top: 1.4em; }
.prose a { font-weight: 600; }

.breadcrumbs { font-size: 0.86rem; color: var(--text-faint); padding: 16px 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--line); }
.breadcrumbs a { color: var(--text-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-bright); }
.breadcrumbs [aria-current="page"] { color: var(--text-dim); }
.page-hero { padding: 12px 0 8px; }
.page-hero p { max-width: 68ch; }

/* Orijinal bonus kartı */
.cards,
.card-grid {
  display: grid;
  gap: 16px;
}
.card-grid { grid-template-columns: 1fr; }

.bonus-card,
.brand-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.bonus-card::before,
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  opacity: 0;
}
.bonus-card.is-offer { cursor: pointer; }
.bonus-card:hover,
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  background: var(--card-hi);
}
.bonus-card:hover::before,
.brand-card:hover::before { opacity: 1; }

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.provider { display: flex; align-items: center; gap: 10px; min-width: 0; }
.provider-logo,
.logo-box {
  background: #0b0d0c;
  border-radius: 12px;
  width: 92px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  flex-shrink: 0;
  margin: 0;
}
.logo-box {
  width: 100%;
  height: 72px;
  margin-bottom: 12px;
}
.provider-logo img,
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.provider-name { font-weight: 800; font-size: 0.95rem; color: var(--text); }
.provider-tag { color: var(--text-faint); font-size: 0.75rem; font-weight: 600; }
.badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(109, 190, 69, 0.15);
  color: var(--green-bright);
}
.badge.hot { background: rgba(255, 201, 77, 0.18); color: var(--gold); }
.badge.new { background: rgba(109, 190, 69, 0.18); color: var(--green-bright); }

.bonus-value,
.brand-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}
.bonus-desc,
.brand-card p { color: var(--text-dim); font-size: 0.86rem; line-height: 1.5; flex: 1; }
.brand-meta { color: var(--text-faint); font-size: 0.78rem; font-weight: 600; margin: 0 0 8px; }

.bonus-chip {
  display: inline-flex;
  background: rgba(255, 201, 77, 0.14);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.86rem;
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
}
.bonus-chip:hover { color: #ffe08a; }

.card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.meta-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
}
.card-bottom,
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.card-actions { display: grid; grid-template-columns: 1fr 1fr; }
.rating { color: var(--gold); font-weight: 800; font-size: 0.9rem; }
.claim-btn {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #0c1509;
  font-weight: 800;
  border: 0;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.88rem;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.claim-btn:hover { color: #0c1509; filter: brightness(1.05); }
.claim-btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.empty-state {
  display: none;
  text-align: center;
  padding: 40px 16px;
  color: var(--text-dim);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.empty-state.show { display: block; }

@media (min-width: 768px) {
  .cards,
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cards,
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .cards.five { grid-template-columns: repeat(5, 1fr); }
}

.match-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.match-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.match-card:hover { border-color: var(--green); background: var(--card-hi); }
.match-league {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.match-teams {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}
.match-teams span { color: var(--text-faint); font-weight: 700; font-size: 0.9rem; }
.match-pick { font-size: 0.88rem; color: var(--text-dim); }
.match-odds {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.odd-old {
  color: var(--text-faint);
  text-decoration: line-through;
  font-weight: 700;
}
.odd-new {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.15rem;
}
.odd-drop {
  background: rgba(255, 201, 77, 0.16);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}
.match-card .claim-btn { align-self: flex-start; margin-top: 4px; }
@media (min-width: 768px) {
  .match-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .match-grid { grid-template-columns: repeat(3, 1fr); }
}

/* How-to */
.steps { display: grid; gap: 12px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 16px 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(109, 190, 69, 0.14);
  color: var(--green-bright);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--display);
  font-size: 1.1rem;
}
.step h3 { margin: 0 0 4px; font-size: 1rem; }
.step p { margin: 0; font-size: 0.92rem; }
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* FAQ */
.faq { display: grid; gap: 8px; max-width: 820px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item button::after { content: "+"; color: var(--text-faint); font-size: 1.2rem; }
.faq-item[open] button::after { content: "–"; }
.faq-item .faq-body { display: none; padding: 0 16px 14px; color: var(--text-dim); }
.faq-item[open] .faq-body { display: block; }

.notice {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 0 0 1.3em;
}
.callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.split { display: grid; gap: 16px; }
@media (min-width: 768px) {
  .split.two { grid-template-columns: 1fr 1fr; }
}
.list-clean { list-style: none; padding: 0; }
.list-clean li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.list-clean a { text-decoration: none; font-weight: 700; color: var(--text); }
.list-clean a:hover { color: var(--green-bright); }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1.4em;
}
.table-wrap table { margin: 0; min-width: 560px; }
.tag {
  display: inline-block;
  background: rgba(109, 190, 69, 0.14);
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Logo duvarı — tüm markalar */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.logo-wall a,
.logo-wall .logo-tile {
  background: #0b0d0c;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  text-decoration: none;
}
.logo-wall img { max-height: 36px; width: auto; max-width: 100%; object-fit: contain; }
@media (min-width: 768px) {
  .logo-wall { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 1024px) {
  .logo-wall { grid-template-columns: repeat(8, 1fr); }
}

/* Footer */
.footer {
  background: #0b100d;
  color: var(--text-dim);
  padding: 42px 0 20px;
}
.footer a { color: var(--text); text-decoration: none; }
.footer a:hover { color: var(--green-bright); text-decoration: underline; }
.footer h3 {
  color: var(--text);
  font-size: 0.92rem;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-grid { display: grid; gap: 24px; }
.footer-brands { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-brands a {
  background: #0b0d0c;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  display: inline-flex;
}
.footer-brands img { width: 110px; height: 36px; object-fit: contain; }
.footer-links { display: grid; gap: 8px; font-size: 0.9rem; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-faint);
  display: grid;
  gap: 8px;
}
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--green-bright);
  border-radius: 8px;
  color: var(--green-bright);
  font-weight: 800;
  font-size: 0.82rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr auto; align-items: start; }
}

.layout { display: grid; gap: 28px; padding-bottom: 48px; }
.toc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  height: max-content;
}
.toc h2 { font-size: 0.95rem; margin: 0 0 10px; }
.toc ol { margin: 0; padding-left: 18px; font-size: 0.9rem; }
.toc a { text-decoration: none; color: var(--text-dim); }
.toc a:hover { color: var(--green-bright); }
@media (min-width: 1024px) {
  .layout { grid-template-columns: 1fr 260px; align-items: start; }
  .toc { position: sticky; top: 88px; }
}

.brand-hero { display: grid; gap: 18px; padding: 18px 0 8px; }
.brand-hero .logo-box { max-width: 360px; height: 110px; margin: 0; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: var(--card);
}
.kpi b { display: block; font-size: 1.05rem; color: var(--text); }
.kpi span { font-size: 0.78rem; color: var(--text-faint); }
@media (min-width: 768px) {
  .brand-hero { grid-template-columns: 1fr 1fr; align-items: center; }
}

.form { display: grid; gap: 12px; max-width: 520px; }
.form label { font-weight: 700; font-size: 0.9rem; }
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  background: var(--card);
  color: var(--text);
}
.form textarea { min-height: 120px; resize: vertical; }

@media (max-width: 479px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .card-actions { grid-template-columns: 1fr; }
  .mini-brand { grid-template-columns: 80px 1fr; }
  .mini-brand .tag { display: none; }
  .hero { padding: 36px 0 28px; }
}

@media (min-width: 1440px) {
  :root { --max: 1240px; }
}

/* Yönlendirme kapısı */
.redirect-main {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 32px 16px 64px;
}
.redirect-box {
  width: min(440px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.redirect-box .provider-logo {
  width: 140px;
  height: 56px;
  margin: 0 auto 18px;
}
.redirect-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.redirect-box h1 {
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.redirect-box p { margin: 0 0 18px; }
.redirect-bar {
  height: 6px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden;
  margin: 8px 0 20px;
}
.redirect-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  animation: redirectFill 2.4s linear forwards;
}
.redirect-box.is-error .redirect-bar,
.redirect-box.is-error .redirect-warn { display: none; }
.redirect-warn {
  margin: 0 0 18px;
  font-size: 0.86rem;
  color: var(--gold);
}
.redirect-skip {
  display: inline-flex;
  font-weight: 800;
  text-decoration: none;
  color: #0c1509;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  border-radius: 12px;
  padding: 10px 16px;
  min-height: 42px;
  align-items: center;
}
.redirect-skip:hover { color: #0c1509; }
.redirect-age {
  margin: 16px 0 0;
  font-size: 0.78rem;
  color: var(--text-faint);
}
@keyframes redirectFill {
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .redirect-bar span { animation: none; width: 100%; }
}
