﻿/* =====================================================================
   BonusX - Ana stil dosyasi
   Renk paleti, tipografi, layout ve tum bilesen stilleri burada.
   Tum sayfalar bu tek dosyayi kullanir. Inline stil yoktur.
   ===================================================================== */

/* CSS degiskenleri - kolay tema yonetimi icin */
:root {
  --primary: #E6B63B;
  --primary-hover: #D9A52B;
  --primary-light: #F4D36A;
  --cream: #F8E7A8;
  --dark: #4A2432;
  --dark-soft: #5d2f3f;
  --accent: #6D5A7B;
  --accent-soft: #8a78a0;
  --bg: #E7E3DE;
  --card-bg: #FFF8E8;
  --white: #ffffff;
  --gray-100: #f6f5f2;
  --gray-300: #d6d2cc;
  --gray-600: #6b6660;
  --success: #2e7d32;
  --shadow-sm: 0 2px 8px rgba(74, 36, 50, 0.08);
  --shadow-md: 0 6px 20px rgba(74, 36, 50, 0.12);
  --shadow-lg: 0 14px 38px rgba(74, 36, 50, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: 0.25s ease;
  --container: 1200px;
  --gradient-gold: linear-gradient(135deg, #F4D36A 0%, #E6B63B 60%, #D99B1E 100%);
}

/* Sifirlama ve temel ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

a:hover,
a:focus {
  color: var(--accent);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul, ol {
  list-style: none;
}

/* Yardimci konteyner */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip link - erisilebilirlik */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--primary-light);
  padding: 10px 16px;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* ====== HEADER ====== */
.site-header {
  background: linear-gradient(180deg, #4A2432 0%, #3a1c28 100%);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 0 rgba(230, 182, 59, 0.35), 0 6px 18px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(230, 182, 59, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 104px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  padding: 8px 18px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(230, 182, 59, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(230, 182, 59, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand img {
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(74, 36, 50, 0.18));
}

/* Eski yazi alanini kullanmiyoruz */
.brand-name {
  display: none;
}

/* Ana navigasyon */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-list a {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 2px;
  position: relative;
}

.nav-list a:hover,
.nav-list a:focus,
.nav-list a.active {
  color: var(--primary);
}

.nav-list a.active::after,
.nav-list a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Mobil menu butonu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: rgba(255, 255, 255, 0.08);
}

/* ====== HERO ====== */
.hero {
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(109, 90, 123, 0.25) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: var(--dark-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  max-width: 720px;
  margin: 0 auto;
}

.hero-bonus-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--white);
  border: 2px solid var(--dark);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  text-align: left;
  box-shadow:
    0 0 0 3px rgba(230, 182, 59, 0.45),
    0 10px 32px rgba(74, 36, 50, 0.2);
  position: relative;
  animation: hero-card-glow 2.8s ease-in-out infinite;
}

@keyframes hero-card-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(230, 182, 59, 0.45),
      0 10px 32px rgba(74, 36, 50, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(230, 182, 59, 0.7),
      0 14px 36px rgba(74, 36, 50, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bonus-card {
    animation: none;
  }
}

.hero-bonus-card__badge {
  position: absolute;
  top: -11px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-bonus-card__title {
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.25;
}

.hero-bonus-card__text {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.55;
}

.hero-bonus-card__btn {
  width: 100%;
  font-size: 1rem;
  padding: 13px 20px;
}

.hero-cta {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  min-width: 200px;
  max-width: 260px;
}

.btn-hero-bonuses {
  background: var(--white);
  color: var(--dark);
  border: 3px solid var(--dark);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 24px;
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
  box-shadow:
    0 4px 0 var(--dark),
    0 0 0 1px var(--dark);
}

.btn-hero-bonuses:hover,
.btn-hero-bonuses:focus {
  background: var(--cream);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 var(--dark),
    0 10px 24px rgba(74, 36, 50, 0.18),
    0 0 0 1px var(--dark);
}

.btn-hero-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark-soft);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
  background: rgba(74, 36, 50, 0.08);
  border-color: var(--dark);
  color: var(--dark);
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-bonus-card,
  .hero-cta {
    width: 100%;
    max-width: 100%;
  }
}

/* ====== BUTONLAR ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition);
  border: 2px solid transparent;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(217, 165, 43, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-hover);
  color: var(--dark);
  transform: translateY(-2px);
}

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

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

.btn-dark {
  background: var(--dark);
  color: var(--primary-light);
}
.btn-dark:hover,
.btn-dark:focus {
  background: var(--dark-soft);
  color: var(--white);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ====== BOLUM (SECTION) BAŞLIKLARI ====== */
.section {
  padding: 64px 0;
}

.section-tight {
  padding: 40px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-head p {
  color: var(--gray-600);
  max-width: 720px;
  margin: 0 auto;
}

/* ====== KART IZGARASI - MARKA KARTLARI ====== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* 5 marka karti - yan yana (markalar bolumu) */
.brand-grid--markalar,
#markalar .brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

#markalar .brand-card {
  padding: 20px 14px;
}

#markalar .brand-card h3 {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  line-height: 1.35;
}

#markalar .brand-card p {
  font-size: 0.88rem;
  line-height: 1.45;
}

#markalar .brand-actions .btn {
  font-size: 0.82rem;
  padding: 10px 10px;
}

@media (max-width: 1200px) {
  .brand-grid--markalar,
  #markalar .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .brand-grid--markalar,
  #markalar .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .brand-grid--markalar,
  #markalar .brand-grid {
    grid-template-columns: 1fr;
  }
}

.brand-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74, 36, 50, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.brand-card .brand-badge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #E6B63B;
  border: 2px solid rgba(74, 36, 50, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--dark);
  letter-spacing: 0.5px;
  overflow: hidden;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.brand-card .brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.brand-card .brand-tag {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  flex-grow: 1;
}

.brand-card .brand-actions {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

/* ====== BONUS KARTLARI (kucuk) ====== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.bonus-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(74, 36, 50, 0.06);
}

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

.bonus-card .bonus-image {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--card-bg) 60%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card .bonus-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-image img {
  transform: scale(1.05);
}

.bonus-card .bonus-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.bonus-card .bonus-brand {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--dark);
}

.bonus-card .bonus-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.bonus-card .bonus-amount {
  color: var(--dark);
  font-weight: 700;
}

.bonus-card a.card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.bonus-card a.card-link:hover h3 {
  color: var(--accent);
}

.bonus-card .bonus-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.bonus-card .bonus-notes li {
  position: relative;
  padding: 3px 0 3px 14px;
}

.bonus-card .bonus-notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.bonus-grid--hosgeldin,
.bonus-grid--casino {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ====== OZELLIK / AVANTAJ KUTULARI ====== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.feature-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  font-weight: 800;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ====== ICERIK SAYFA STILLERI ====== */
.page-hero {
  background: var(--dark);
  color: var(--cream);
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--primary-light);
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(248, 231, 168, 0.85);
}

.breadcrumbs {
  background: var(--gray-100);
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--gray-300);
}

.breadcrumbs a {
  color: var(--accent);
}

.content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  margin: 30px 0;
}

.content h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin: 30px 0 14px;
  line-height: 1.3;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  font-size: 1.22rem;
  color: var(--dark);
  margin: 24px 0 10px;
}

.content p,
.content li {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.content ul,
.content ol {
  margin: 0 0 16px 22px;
}

.content ul li,
.content ol li {
  list-style: disc;
  margin-bottom: 8px;
}

.content ol li {
  list-style: decimal;
}

.content strong {
  color: var(--dark);
}

.content a {
  color: var(--accent);
  text-decoration: underline;
}

.content a:hover {
  color: var(--dark);
}

/* Iki sutunlu yerlesim */
.layout-2col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 92px;
  background: var(--card-bg);
  padding: 24px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--dark);
}

.sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar a {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  font-size: 0.92rem;
}

.sidebar a:hover {
  background: var(--primary);
  color: var(--dark);
}

/* ====== TABLO ====== */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.94rem;
}

.styled-table thead {
  background: var(--dark);
  color: var(--primary-light);
}

.styled-table th,
.styled-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
}

.styled-table tr:nth-child(even) {
  background: var(--gray-100);
}

.styled-table tr:last-child td {
  border-bottom: 0;
}

/* ====== BUYUK MARKA BANNERI (sayfa hero) ====== */
.brand-hero {
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 60px 0 50px;
  text-align: center;
}

.brand-hero .brand-emblem {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: #E6B63B;
  border: 3px solid rgba(74, 36, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 14px;
}

.brand-hero .brand-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.brand-hero p {
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  color: var(--dark-soft);
}

/* Hizli ozet kutusu */
.summary-box {
  background: var(--card-bg);
  border-left: 5px solid var(--primary);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

.summary-box h3 {
  margin-bottom: 6px;
  color: var(--dark);
}

/* ====== FAQ (SSS) ====== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74, 36, 50, 0.06);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding-right: 48px;
  font-size: 1rem;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.faq details[open] summary::after {
  content: "\2013";
}

.faq .faq-answer {
  padding: 0 20px 18px;
  color: var(--gray-600);
  font-size: 0.96rem;
}

.faq .faq-answer--guide p {
  margin-bottom: 0.75rem;
  color: var(--gray-600);
  line-height: 1.65;
}

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

/* ====== UYARI BANTI ====== */
.warning-strip {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.warning-strip a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ====== FOOTER ====== */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 60px 0 24px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}

.footer-grid h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.footer-grid p,
.footer-grid li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(248, 231, 168, 0.78);
  margin-bottom: 8px;
}

.footer-grid a {
  color: rgba(248, 231, 168, 0.78);
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: var(--primary);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  line-height: 0;
  padding: 10px 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(230, 182, 59, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.footer-brand img {
  width: auto;
  height: 72px;
  max-height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(74, 36, 50, 0.2));
}

/* Footer'da yazi gostermiyoruz - logo yeterli */
.footer-brand span {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 231, 168, 0.15);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(248, 231, 168, 0.6);
}

/* 18+ rozeti */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.75rem;
}

/* ====== 404 SAYFASI ====== */
.notfound {
  text-align: center;
  padding: 80px 0;
}

.notfound .big {
  font-size: clamp(5rem, 14vw, 9rem);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 900;
}

.notfound p {
  margin-bottom: 24px;
  color: var(--gray-600);
}

/* ====== YARDIMCI SINIFLAR (inline stil yerine) ====== */
.bg-soft { background: var(--gray-100); }
.bg-cream { background: var(--card-bg); }
.bg-dark { background: var(--dark); color: var(--cream); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-12 { gap: 12px; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.lead { font-size: 1.08rem; color: var(--gray-600); }

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .layout-2col {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
  }
  .nav-list a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }
  .nav-list a.active::after,
  .nav-list a:hover::after {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .content {
    padding: 24px 18px;
  }
  .section {
    padding: 44px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 0 40px;
  }
  .brand-card .brand-badge {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .header-inner {
    min-height: 84px;
  }
  .brand {
    padding: 6px 12px;
    border-radius: 12px;
  }
  .brand img {
    height: 48px;
    max-height: 48px;
  }
  .footer-brand {
    padding: 8px 16px;
  }
  .footer-brand img {
    height: 56px;
    max-height: 56px;
  }
}

/* ====== 404 SAYFASI ====== */
.error-hero {
  background: linear-gradient(135deg, #F4D36A 0%, #E6B63B 60%, #D99B1E 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--dark);
}
.error-content {
  max-width: 720px;
  margin: 0 auto;
}
.error-code {
  display: inline-block;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  line-height: 1;
  color: var(--dark);
  text-shadow: 0 4px 0 rgba(74, 36, 50, 0.08);
  margin-bottom: 12px;
}
.error-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 12px;
  color: var(--dark);
}
.error-hero p {
  font-size: 1.05rem;
  color: var(--dark);
  margin: 0 0 24px;
  opacity: 0.85;
}

/* ====== HIZLI BAGLANTI KARTLARI ====== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.quick-card {
  display: block;
  padding: 20px 22px;
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid rgba(74, 36, 50, 0.08);
  color: var(--dark);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(74, 36, 50, 0.12);
  border-color: var(--primary);
}
.quick-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--dark);
}
.quick-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* =========================================================
   BONUS TALEP MODAL (popup) - site renklerine uyumlu
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 36, 50, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open {
  display: flex;
  opacity: 1;
}
.modal-overlay[aria-hidden="false"] {
  display: flex;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--card-bg, #FFF8E8);
  border: 1px solid rgba(74, 36, 50, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(74, 36, 50, 0.35),
              0 0 0 1px rgba(230, 182, 59, 0.2) inset;
  padding: 32px 28px;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(74, 36, 50, 0.15);
  background: rgba(255, 255, 255, 0.7);
  color: var(--dark);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.modal-close:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 22px;
}
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 182, 59, 0.18);
  border: 1px solid rgba(230, 182, 59, 0.45);
  color: #8a6814;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.modal-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.modal-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  color: var(--dark);
  margin: 0 0 6px;
  line-height: 1.2;
}
.modal-header h2 .accent-text {
  background: linear-gradient(135deg, #C9971F, var(--primary) 60%, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.modal-header p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600, #6b6660);
}
.modal-intro {
  margin-bottom: 10px;
}
.modal-hint {
  margin-top: 12px;
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
  background: rgba(230, 182, 59, 0.12);
  border: 1px solid rgba(230, 182, 59, 0.35);
  border-radius: var(--radius-md);
  color: var(--dark-soft);
}
.modal-hint-link {
  font-weight: 700;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-hint-link:hover,
.modal-hint-link:focus {
  color: #8a6814;
}
#markalar {
  scroll-margin-top: 88px;
}
#markalar.is-scroll-target {
  outline: 3px solid rgba(230, 182, 59, 0.55);
  outline-offset: 4px;
  transition: outline-color 0.4s ease;
}

/* Form group */
.bf-group { margin-bottom: 16px; }
.bf-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
  opacity: 0.85;
}
.bf-label .req { color: #c0392b; margin-left: 2px; }

.bf-select-wrap { position: relative; }
.bf-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--dark);
  pointer-events: none;
  opacity: 0.5;
}

.bf-control {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(74, 36, 50, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--dark);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.bf-control:focus {
  border-color: var(--primary);
  background: #fffdf6;
  box-shadow: 0 0 0 4px rgba(230, 182, 59, 0.18);
}
.bf-control.is-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}
.bf-control.is-valid {
  border-color: #27ae60;
}
select.bf-control { padding-right: 36px; cursor: pointer; }

.bf-input-wrap { position: relative; }
.bf-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.55;
  pointer-events: none;
}
.bf-input-wrap .bf-control { padding-left: 38px; }

.bf-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.bf-toggle-btn {
  flex: 1;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(74, 36, 50, 0.18);
  background: transparent;
  color: var(--dark);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  opacity: 0.7;
}
.bf-toggle-btn.is-active {
  background: rgba(230, 182, 59, 0.18);
  border-color: var(--primary);
  color: var(--dark);
  opacity: 1;
}
.bf-toggle-btn:hover:not(.is-active) {
  border-color: rgba(74, 36, 50, 0.35);
  opacity: 1;
}

.bf-error {
  display: none;
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  padding-left: 4px;
}
.bf-error.is-show {
  display: block;
  animation: shake-x 0.3s ease;
}
@keyframes shake-x {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.bf-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.bf-divider {
  height: 1px;
  background: rgba(74, 36, 50, 0.1);
  margin: 18px 0;
}

.bf-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #C9971F, var(--primary) 60%, var(--primary-light));
  background-size: 200% 200%;
  color: var(--dark);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  position: relative;
  overflow: hidden;
}
.bf-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.bf-submit:hover:not(:disabled)::before { transform: translateX(100%); }
.bf-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(230, 182, 59, 0.4);
}
.bf-submit:active:not(:disabled) { transform: translateY(0); }
.bf-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.bf-submit .bf-text { display: inline; }
.bf-submit .bf-loading { display: none; }
.bf-submit.is-loading .bf-text { display: none; }
.bf-submit.is-loading .bf-loading { display: inline; }

.bf-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(74, 36, 50, 0.25);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: bf-spin 0.7s linear infinite;
  vertical-align: -2px;
  margin-right: 6px;
}
@keyframes bf-spin { to { transform: rotate(360deg); } }

.bf-rate {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray-600, #6b6660);
  margin-top: 10px;
}
.bf-rate strong { color: var(--dark); }

.bf-success {
  display: none;
  text-align: center;
  padding: 18px 6px 6px;
}
.bf-success.is-show { display: block; }
.bf-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(39, 174, 96, 0.12);
  border: 2px solid rgba(39, 174, 96, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
  animation: bf-scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bf-scale-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.bf-success-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e8449;
  margin-bottom: 6px;
}
.bf-success-msg {
  font-size: 0.92rem;
  color: var(--gray-600, #6b6660);
  line-height: 1.5;
}

.bf-global-error {
  display: none;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #c0392b;
  margin-bottom: 14px;
}
.bf-global-error.is-show { display: block; }

.bf-footer-note {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  color: var(--gray-600, #6b6660);
  opacity: 0.85;
}

/* Hero üzerindeki "Bonus Talep" butonu için ek vurgu */
.btn-accent {
  background: var(--dark);
  color: #fff;
  border: 1px solid var(--dark);
}
.btn-accent:hover {
  background: #2f1620;
  color: var(--primary-light);
}

@media (max-width: 480px) {
  .modal-dialog { padding: 24px 18px; border-radius: 16px; }
  .modal-header h2 { font-size: 1.25rem; }
}

/* Sayfa scroll lock - modal acikken */
body.modal-open {
  overflow: hidden;
}

/* Print friendly */
@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .hero-actions,
  .hero-cta,
  .brand-actions {
    display: none !important;
  }
}
