/* ============================================================
   Bonus Alem — bonusalem.co
   Sade, beyaz ağırlıklı, minimal ve hızlı tasarım.
   Framework yok; saf CSS3. Mobile-first yaklaşım.
   Kırılımlar: 480px, 768px, 1024px, 1440px
   ============================================================ */

/* ---------- Değişkenler ---------- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fb;
  --color-dark: #0f172a;        /* koyu lacivert: header, footer, logo zemini */
  --color-dark-soft: #1e293b;
  --color-text: #1f2937;
  --color-text-muted: #5b6472;
  --color-accent: #2563eb;      /* birincil vurgu */
  --color-accent-dark: #1d4ed8;
  --color-border: #e5e9f0;
  --color-success: #15803d;
  --color-danger: #b91c1c;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.05);
  --shadow-card-hover: 0 4px 12px rgba(15, 23, 42, 0.1), 0 12px 32px rgba(15, 23, 42, 0.08);
  --max-width: 1160px;
  /* Sistem fontları: harici font isteği yok -> render blocking yok, CLS yok */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset / Taban ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul,
ol {
  padding-left: 1.4rem;
}

/* Klavye ile gezinme için belirgin odak halkası (erişilebilirlik) */
:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Ekran okuyucular için gizli metin */
.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;
}

/* İçeriğe atla bağlantısı (klavye kullanıcıları için) */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 100;
  background: var(--color-accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Tipografi ---------- */
h1,
h2,
h3,
h4 {
  line-height: 1.3;
  color: var(--color-dark);
  font-weight: 700;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3.2vw, 1.9rem); margin-bottom: 0.9rem; }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-dark);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  width: 170px;
  height: 34px; /* 1080x215 oranı korunur -> CLS oluşmaz */
  object-fit: contain;
}

/* Hamburger butonu (mobil) */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  padding: 0.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  color: #e2e8f0;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.nav-list a[aria-current="page"] {
  color: #fff;
  background: rgba(37, 99, 235, 0.35);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--color-dark) 0%, #16233f 55%, #1d3157 100%);
  color: #e2e8f0;
  padding: 2.5rem 0 3rem;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.hero h1 {
  color: #fff;
  max-width: 820px;
  margin: 0 auto 1rem;
}

.hero-lead {
  max-width: 700px;
  margin: 0 auto 1.75rem;
  font-size: 1.08rem;
  color: #cbd5e1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-badges li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* ---------- Hero çarkıfelek ---------- */
.hero-wheel {
  flex: 0 0 auto;
  width: min(100%, 340px);
  position: relative;
  z-index: 2;
}

.wheel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.wheel {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 11% 5% 7%;
}

.js-wheel {
  position: relative;
  z-index: 0;
  width: 100%;
  line-height: 0;
}

.js-wheel.is-animated {
  animation: wheelRotation 2s infinite ease;
}

.wheel__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/wheel/wheel-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  pointer-events: none;
  z-index: 2;
}

.wheel__mini-wrapper {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 17.5%;
  height: 17.5%;
}

.wheel_mini {
  display: block;
  height: 100%;
  width: 100%;
  background: transparent url("../images/wheel/pleambe.png") center / cover no-repeat;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  animation: blink-reverse 1s infinite;
}

.wheel__btn {
  margin-top: 0.5rem;
  text-align: center;
}

.wheel-spin-btn {
  display: block;
  margin: -0.5rem auto 0;
  border: none;
  cursor: pointer;
  background: transparent url("../images/wheel/spin.png") center / contain no-repeat;
  width: min(220px, 70vw);
  height: 86px;
  animation: blink 1s infinite;
  transition: transform 0.2s ease;
}

.wheel-spin-btn:hover:not(:disabled) {
  transform: scale(1.03);
}

.wheel-spin-btn:disabled {
  cursor: default;
  opacity: 0.85;
  animation: none;
}

/* Kazanç modalı */
.wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  background-color: rgba(15, 23, 42, 0.72);
  background-image: url("../images/wheel/bg_modal.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 560px) {
  .wheel-modal {
    background-image: url("../images/wheel/bg_modal_mob.png");
  }
}

.hero-wheel.show-modal .wheel-modal {
  opacity: 1;
  visibility: visible;
}

body.wheel-modal-open {
  overflow: hidden;
}

.wheel-modal__content {
  position: relative;
  text-align: center;
  max-width: 420px;
  width: 100%;
  padding: 2rem 1.5rem 1.75rem;
  color: #fff;
}

.wheel-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.wheel-modal__title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.wheel-modal__subtitle {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #f0b55a;
  text-shadow: 0 0 24px rgba(240, 181, 90, 0.55);
  margin-bottom: 0.75rem;
}

.wheel-modal__desc {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.wheel-modal__btn {
  display: inline-block;
  border-radius: 16px;
  background: #fff;
  color: #c47a12;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.wheel-modal__btn:hover,
.wheel-modal__btn:focus-visible {
  color: #a3640c;
  text-decoration: none;
  transform: translateY(-1px);
}

@keyframes blink {
  50% { transform: scale(1.03); }
}

@keyframes blink-reverse {
  0%, 100% { transform: scale(1.03); }
  50% { transform: scale(1); }
}

@keyframes wheelRotation {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-accent-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- Bölümler ---------- */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section-heading p {
  color: var(--color-text-muted);
}

/* ---------- Marka kartları ---------- */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.brand-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Logo zemini: açık renkli logolar koyu zeminde net görünür */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  padding: 1.5rem 1rem;
  min-height: 110px;
}

/* Betaverse logosu koyu renkli olduğu için açık zemin kullanılır */
.brand-logo-wrap.logo-light {
  background: #eef2f7;
}

.brand-logo-wrap img {
  width: 180px;
  height: 60px; /* 360x120 -> oran korunur, CLS yok */
  object-fit: contain;
}

.brand-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.brand-card-body h3 {
  margin-bottom: 0.5rem;
}

.brand-card-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  flex: 1;
}

.brand-card-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  background: #eaf1fe;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.brand-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.95rem;
}

/* Marka kutusu aksiyonları: affiliate + inceleme butonları yan yana */
.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.site-actions .btn {
  margin-top: 0;
  padding: 0.55rem 1.2rem;
  font-size: 0.95rem;
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent-dark);
  border-color: var(--color-border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--color-accent);
}

/* Marka sayfası hero butonları sola hizalanır */
.page-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

/* ---------- Bonus fırsat kartları ---------- */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.bonus-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bonus-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Banner görselleri kırpılmadan doğal oranında gösterilir;
   width/height attribute'ları alanı önceden ayırdığı için CLS oluşmaz */
.bonus-card-img {
  display: block;
  background: var(--color-dark);
}

.bonus-card-img img {
  width: 100%;
  height: auto;
}

.bonus-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.bonus-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.bonus-brand {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-dark);
  background: #eaf1fe;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.bonus-card-body .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
}

/* ---------- Kategori blokları ---------- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.category-block {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.category-block h3 {
  margin-bottom: 0.4rem;
}

.category-block > p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.category-block .brand-strip {
  justify-content: flex-start;
  gap: 0.5rem;
}

.category-block .brand-strip a {
  padding: 0.45rem 1.1rem;
  font-size: 0.92rem;
}

/* ---------- İçerik / makale ---------- */
.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 2.25rem;
}

.article-body h3 {
  margin-top: 1.5rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.1rem;
}

.article-body li {
  margin-bottom: 0.35rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--color-text-muted);
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.9rem 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.35rem;
  color: var(--color-text-muted);
}

/* Sayfa başlığı bandı (marka sayfaları) */
.page-hero {
  background: linear-gradient(160deg, var(--color-dark) 0%, #16233f 100%);
  color: #cbd5e1;
  padding: 2.25rem 0 2.5rem;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  color: #cbd5e1;
  max-width: 780px;
  margin-bottom: 0;
}

.page-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  margin-bottom: 1.25rem;
}

.page-hero-logo.logo-light {
  background: #eef2f7;
}

.page-hero-logo img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

/* ---------- Tablolar ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 480px;
}

caption {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

th,
td {
  text-align: left;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

thead th {
  background: var(--color-bg-alt);
  color: var(--color-dark);
  font-weight: 600;
  white-space: nowrap;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- Artı / eksi listeleri ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.pros,
.cons {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}

.pros { border-top: 3px solid var(--color-success); }
.cons { border-top: 3px solid var(--color-danger); }

.pros h3,
.cons h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li,
.cons li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cons li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: 700;
}

/* ---------- Bilgi kutusu ---------- */
.info-box {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.info-box p:last-child { margin-bottom: 0; }

/* ---------- SSS (accordion) ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background: var(--color-bg);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  list-style: none;
  position: relative;
  padding-right: 2.75rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  background: var(--color-bg-alt);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--color-text-muted);
}

.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Marka şeridi (alt bölüm) ---------- */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.brand-strip a {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-bg);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.brand-strip a:hover,
.brand-strip a:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: #94a3b8;
  margin-top: auto;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.75rem 0 2rem;
}

.footer-col h2 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #cbd5e1;
}

.footer-col a:hover {
  color: #fff;
}

.footer-about img {
  width: 170px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.footer-legal-note {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-legal-note strong {
  color: #e2e8f0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p { margin: 0; }

/* ---------- 404 ---------- */
.page-404-code {
  font-size: clamp(4rem, 12vw, 7rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ============================================================
   RESPONSIVE KIRILIMLAR
   ============================================================ */

/* 480px ve üzeri */
@media (min-width: 480px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px ve üzeri */
@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
  .header-inner { padding: 0.5rem 1.5rem; }

  .hero-wheel {
    width: min(100%, 380px);
  }

  .pros-cons {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 1024px ve üzeri: masaüstü navigasyon */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
  }

  .nav-list a {
    padding: 0.5rem 0.85rem;
    font-size: 0.95rem;
  }

  .hero {
    text-align: left;
    padding: 3.5rem 0 4rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }

  .hero-copy {
    flex: 1 1 52%;
  }

  .hero h1 {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-wheel {
    flex: 0 0 400px;
    width: 400px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* 1440px ve üzeri */
@media (min-width: 1440px) {
  :root { --max-width: 1240px; }
  body { font-size: 1.0625rem; }

  .hero-wheel {
    flex: 0 0 440px;
    width: 440px;
  }
}

/* Hareket azaltma tercihi (erişilebilirlik) */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Yazdırma */
@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .nav-toggle { display: none; }
}
