/* ============================================================
   Bonuses777 — Tasarım sistemi
   Palette: #36C299 · #FFC10C · #F74F51 · #36354B
   ============================================================ */

:root {
  --teal: #36C299;
  --gold: #FFC10C;
  --coral: #F74F51;
  --ink: #36354B;

  --bg: #2c2b3d;
  --bg-elevated: #36354B;
  --bg-soft: #403f56;
  --bg-soft-2: #4b4a63;
  --border: rgba(255, 255, 255, .1);
  --border-strong: rgba(54, 194, 153, .35);

  --text: #f5f4f8;
  --text-muted: #b5b3c4;

  --primary: var(--teal);
  --primary-2: var(--gold);
  --accent: var(--coral);
  --danger: var(--coral);

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 28px rgba(0, 0, 0, .28);
  --shadow-hover: 0 14px 36px rgba(54, 194, 153, .22);
  --max-width: 1200px;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-display: "Syne", "Outfit", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(1100px 520px at 85% -8%, rgba(54, 194, 153, .16), transparent 58%),
    radial-gradient(900px 480px at -5% 18%, rgba(247, 79, 81, .12), transparent 52%),
    radial-gradient(700px 400px at 50% 100%, rgba(255, 193, 12, .07), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--primary-2);
}

ul {
  list-style: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 64px;
}

.section--tight {
  padding-block: 40px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.15rem + 1.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(44, 43, 61, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  opacity: .85;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.nav__brand img {
  height: 42px;
  width: auto;
  transition: transform .25s ease;
}

.nav__brand:hover img {
  transform: scale(1.04);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__menu a {
  color: var(--text);
  font-weight: 600;
  font-size: .94rem;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav__menu a:hover,
.nav__menu a[aria-current="page"] {
  color: var(--ink);
  background: var(--teal);
}

.nav__toggle {
  display: none;
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav__toggle-bar {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color .15s ease;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  left: 0;
  transition: transform .25s ease;
}

.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after  { top: 7px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bar {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBannerIn {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroStripe {
  from { transform: translateX(-12%); }
  to   { transform: translateX(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, #ff6b6d 48%, var(--gold) 100%);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(247, 79, 81, .25);
}

.btn--primary:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 193, 12, .28);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(54, 194, 153, .08);
}

.btn--block {
  width: 100%;
}

/* ---------- Hero: marka bandı + komuta paneli ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
}

.hero__banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(200px, 32vh, 320px);
  padding: 36px 0;
  overflow: hidden;
  animation: heroBannerIn .7s ease both;
}

.hero__banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, #1f1e2c 0%, #2c2b3d 40%, #36354B 100%);
}

.hero__banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      transparent 0%,
      transparent 48%,
      rgba(54, 194, 153, .22) 48%,
      rgba(54, 194, 153, .22) 56%,
      rgba(255, 193, 12, .2) 56%,
      rgba(255, 193, 12, .2) 62%,
      rgba(247, 79, 81, .2) 62%,
      rgba(247, 79, 81, .2) 68%,
      transparent 68%);
  animation: heroStripe .9s cubic-bezier(.22, 1, .36, 1) both;
}

.hero__banner-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.hero__banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__logo {
  width: min(640px, 88vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .5));
}

.hero__panel {
  background: #2a2940;
  border-bottom: 1px solid var(--border);
  padding: 28px 0 34px;
  animation: heroRise .65s .1s ease both;
}

.hero__panel-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px 40px;
  align-items: end;
}

.hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  max-width: 16ch;
}

.hero__copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 40ch;
  margin: 0;
}

.hero__search {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.hero__search input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(54, 53, 75, .9);
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.hero__search input::placeholder {
  color: var(--text-muted);
}

.hero__search input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(54, 194, 153, .18);
}

.hero__search .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Adım rehberi (sayfa bazlı) ---------- */
.steps {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.steps--hero {
  margin-top: 0;
  padding: 28px 0 8px;
  border-top: none;
  background: transparent;
}

.steps--hero .steps {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.steps__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 18px;
  text-align: center;
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 20px;
  counter-reset: step;
  list-style: none;
}

.steps__item {
  position: relative;
  padding-top: 8px;
}

.steps__item::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  background: var(--teal);
}

.steps__item:nth-child(2)::before {
  background: var(--gold);
}

.steps__item:nth-child(3)::before {
  background: var(--coral);
  color: #fff;
}

.steps__item:nth-child(4)::before {
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.steps__name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.steps__desc {
  display: block;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.45;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid--brands {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.grid--bonus {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ---------- Brand cards ---------- */
.brand-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}

.brand-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
}

.brand-card__logo img {
  max-height: 56px;
  width: auto;
}

.brand-card h2,
.brand-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.brand-card p {
  color: var(--text-muted);
  font-size: .94rem;
  flex-grow: 1;
}

.brand-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: .74rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(54, 194, 153, .12);
  border: 1px solid rgba(54, 194, 153, .28);
  padding: 3px 9px;
  border-radius: 999px;
}

.brand-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.brand-card__actions .btn {
  flex: 1;
  padding-inline: 12px;
}

/* ---------- Bonus cards ---------- */
.bonus-card {
  position: relative;
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.bonus-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}

.bonus-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.bonus-card:hover .bonus-card__media img {
  transform: scale(1.05);
}

.bonus-card__body {
  padding: 14px 16px 18px;
}

.bonus-card__brand {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
  font-weight: 700;
}

.bonus-card__body h3 {
  font-size: 1rem;
  margin: 4px 0 10px;
  color: var(--text);
}

.bonus-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--gold);
}

/* ---------- Mini logo / promo ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 78px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  background: var(--bg-soft);
}

.logo-card img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.promo-card--featured {
  border-color: rgba(255, 193, 12, .45);
  background: linear-gradient(165deg, rgba(255, 193, 12, .12), var(--bg-elevated) 58%);
}

.promo-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card__logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.promo-card__bonus {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.promo-card__cta {
  font-size: .76rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(135deg, var(--coral), var(--gold));
  padding: 7px 16px;
  border-radius: 10px;
  letter-spacing: .01em;
}

.promo-card__name {
  font-weight: 700;
  font-size: .94rem;
  color: var(--text);
}

.promo-card__stars {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: 1px;
}

.promo-card__badge {
  font-size: .68rem;
  font-weight: 700;
  color: var(--teal);
  background: rgba(54, 194, 153, .12);
  border: 1px solid rgba(54, 194, 153, .3);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---------- Rank list ---------- */
.searchbar {
  display: flex;
  max-width: 520px;
  margin: 0;
  gap: 8px;
}

.searchbar input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(54, 53, 75, .75);
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.searchbar input::placeholder {
  color: var(--text-muted);
}

.searchbar input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(54, 194, 153, .18);
}

.search-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
  display: none;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: var(--shadow-hover);
}

.rank-item--top {
  border-color: rgba(54, 194, 153, .45);
  background: linear-gradient(160deg, rgba(54, 194, 153, .14), var(--bg-elevated) 55%);
}

.rank-item__logo {
  width: 96px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rank-item__logo img {
  max-height: 42px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
}

.rank-item__info {
  flex: 1;
  min-width: 0;
}

.rank-item__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.rank-item__bonus {
  color: var(--text-muted);
  font-size: .86rem;
}

.rank-item__stars {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: 1px;
}

.rank-item__cta {
  flex-shrink: 0;
  padding: 10px 22px;
}

/* ---------- Game / features ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform .2s ease, box-shadow .2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}

.feature:hover {
  border-color: rgba(54, 194, 153, .35);
  transform: translateY(-3px);
}

a.feature {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.feature:hover {
  box-shadow: var(--shadow);
}

a.feature h3 {
  color: var(--text);
}

.feature__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(54, 194, 153, .18), rgba(255, 193, 12, .12));
  color: var(--teal);
  font-size: 1.5rem;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: .92rem;
}

/* ---------- Prose ---------- */
.prose {
  max-width: 820px;
  margin-inline: auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 32px 0 14px;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--teal);
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.prose ul.bullets {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.prose ul.bullets li {
  margin-bottom: 6px;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Table ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

table.compare th,
table.compare td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

table.compare th {
  background: var(--bg-elevated);
  color: var(--teal);
}

table.compare tr:last-child td {
  border-bottom: none;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__a-inner {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: .95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(135deg, rgba(54, 194, 153, .16), rgba(247, 79, 81, .1) 50%, rgba(255, 193, 12, .1));
  border: 1px solid rgba(54, 194, 153, .28);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--ink);
  padding-block: 48px 24px;
  margin-top: 48px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer__brand img {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 14px;
  color: var(--text);
}

.footer__col li {
  margin-bottom: 8px;
}

.footer__col a {
  color: var(--text-muted);
  font-size: .9rem;
}

.footer__col a:hover {
  color: var(--teal);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: .82rem;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__age span {
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: .8rem;
}

/* ---------- Breadcrumb / notice ---------- */
.breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  padding-block: 16px 0;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span {
  color: var(--gold);
}

.notice {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text-muted);
  font-size: .9rem;
  margin-block: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__panel-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__copy h1 {
    max-width: none;
  }

  .hero__banner {
    min-height: 180px;
    padding: 28px 0;
  }

  .hero__logo {
    width: min(480px, 90vw);
  }

  .steps__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--ink);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 12px 16px;
    display: none;
  }

  .nav__menu.is-open {
    display: flex;
    animation: navDrop .22s ease;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__menu a {
    display: block;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav__menu a:hover,
  .nav__menu a[aria-current="page"] {
    background: rgba(54, 194, 153, .15);
    color: var(--teal);
  }

  .section {
    padding-block: 44px;
  }

  .rank-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__banner {
    min-height: 150px;
    padding: 22px 0;
  }

  .hero__logo {
    width: min(360px, 92vw);
  }

  .hero__panel {
    padding: 22px 0 28px;
  }

  .hero__search {
    flex-direction: column;
  }

  .hero__search .btn {
    width: 100%;
  }

  .steps__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps__title {
    text-align: left;
  }

  .cta-band {
    padding: 28px 18px;
  }

  .rank-item {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 14px;
  }

  .rank-item__logo {
    width: 70px;
    height: 38px;
  }

  .rank-item__logo img {
    max-width: 70px;
    max-height: 34px;
  }

  .rank-item__info {
    flex: 1 1 50%;
  }

  .rank-item__cta {
    flex: 1 1 100%;
    text-align: center;
    padding: 11px 18px;
  }
}

.mt-lg {
  margin-top: 40px;
}

/* ---------- Güvenli yönlendirme ---------- */
.redirect {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}

.redirect__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.redirect__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.redirect__logo {
  height: 52px;
  width: auto;
  margin: 0 auto 22px;
}

.redirect__card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.1rem + 1.4vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.redirect__lead {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: .98rem;
}

.redirect__timer {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
  font-size: .95rem;
}

.redirect__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.redirect__note {
  color: var(--text-muted);
  font-size: .8rem;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .redirect__card {
    padding: 32px 18px 24px;
  }

  .redirect__actions .btn {
    width: 100%;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
