/* ===== Casibom 2026 - Koyu Burgundy Tema ===== */

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0307; }
::-webkit-scrollbar-thumb { background: #6B1A32; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9B2A45; }

/* ===== CSS VARIABLES ===== */
:root {
  --bg-body: #0D0307;
  --bg-dark: #0D0307;
  --bg-card: #1A0B12;
  --bg-card-hover: #231320;
  --bg-input: #150810;
  --bg-section: #120910;

  --burgundy: #8B1A2E;
  --burgundy-light: #B02040;
  --burgundy-deep: #5A0E1E;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --crimson: #C41E3A;
  --crimson-hover: #E02A4A;

  --border-color: #3D1525;
  --border-gold: rgba(212, 175, 55, 0.2);

  --text-primary: #F5E6E8;
  --text-secondary: #C4A0A8;
  --text-muted: #9B7A82;

  --navbar-height: 70px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(212,175,55,0.15);
}

/* ===== BODY ===== */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: rgba(13, 3, 7, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}
.site-navbar.scrolled {
  background: rgba(13, 3, 7, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.3));
}
.navbar-logo-text {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  letter-spacing: -0.5px;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-menu li a {
  display: block;
  padding: 8px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}

.btn-navbar-cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 4px 15px rgba(196,30,58,0.3);
  transition: all 0.3s !important;
}
.btn-navbar-cta:hover {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--burgundy-light) 100%) !important;
  box-shadow: 0 6px 20px rgba(196,30,58,0.5) !important;
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* Mobile menu */
.navbar-mobile {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: #150810;
  border-bottom: 1px solid var(--border-color);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  display: block;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.navbar-mobile a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.navbar-mobile .btn-mobile-cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
  color: #fff !important;
  text-align: center;
  font-weight: 700;
  margin-top: 4px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--navbar-height) + 40px) 0 60px;
}

.hero-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 26, 46, 0.2) 0%, rgba(90, 14, 30, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: glowPulse 8s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 26, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 26, 46, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-left { animation: fadeInUp 0.7s ease-out both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-title-brand {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, #F8D77E 40%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-title-sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 6px 25px rgba(196,30,58,0.35);
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary-cta:hover {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--burgundy-light) 100%);
  box-shadow: 0 8px 30px rgba(196,30,58,0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-secondary-cta:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-right {
  animation: fadeInUp 0.7s ease-out 0.2s both;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: linear-gradient(145deg, #1E0B14 0%, #2A1020 100%);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 32px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
  animation: float 6s ease-in-out infinite;
}
.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-title i { color: var(--gold); }
.hero-bonus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}
.hero-bonus-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-bonus-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
}
.hero-bonus-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.hero-bonus-amount {
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 500;
}

/* ===== SECTION GENEL ===== */
.section {
  padding: 80px 0;
}
.section-dark {
  background: var(--bg-section);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BONUSLAR ===== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.5s ease-out both;
}
.bonus-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-gold);
}

.bonus-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--bg-dark);
}
.bonus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bonus-card:hover .bonus-img-wrap img {
  transform: scale(1.05);
}
.bonus-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--bg-card) 100%);
  font-size: 3rem;
  color: var(--gold);
}

.bonus-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bonus-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.bonus-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bonus-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.btn-bonus-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-bonus-detail:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}
.btn-bonus-get {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--crimson) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-bonus-get:hover {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--burgundy-light) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(196,30,58,0.4);
}

/* Bonus detay sayfası */
.bonus-detail-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.bonus-detail-header {
  margin-bottom: 32px;
}
.bonus-detail-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}
.bonus-detail-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.bonus-detail-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 14px;
}
.bonus-detail-content p { margin-bottom: 12px; }

/* ===== NEDEN CASİBOM ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  animation: fadeInUp 0.5s ease-out both;
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(139,26,46,0.4);
}
.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== HAKKINDA SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.about-text h2 span { color: var(--gold); }
.about-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}
.about-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.about-stat-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.about-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, #0D0307 50%, var(--burgundy-deep) 100%);
  opacity: 0.5;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-title span { color: var(--gold); }
.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats-bar-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-bar-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-col {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 36px;
  filter: drop-shadow(0 0 4px rgba(212,175,55,0.3));
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-warning {
  background: rgba(139,26,46,0.15);
  border: 1px solid rgba(139,26,46,0.3);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(139,26,46,0.2);
  border: 1px solid rgba(139,26,46,0.3);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #E57373;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: calc(var(--navbar-height) + 48px) 0 48px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}
.page-header-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-header-title span { color: var(--gold); }
.page-header-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== HAKKıNDA PAGE ===== */
.about-page-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-page-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.about-page-content h2:first-child { margin-top: 0; }
.about-page-content h2 span { color: var(--gold); }
.about-page-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-page-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.about-page-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.about-page-content ul li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 4px;
}
.info-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(139,26,46,0.05) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 28px;
  margin: 32px 0;
}
.info-box-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-box p { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-title { font-size: 2.8rem; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: span 2; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }

  .navbar-menu { display: none; }
  .navbar-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-title-sub { font-size: 1.5rem; }
  .section-title { font-size: 2rem; }
  .cta-title { font-size: 2rem; }
  .section { padding: 60px 0; }

  .bonuses-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }
  .footer-desc { max-width: 100%; }
}

@media (max-width: 576px) {
  :root { --navbar-height: 60px; }
  .hero-title { font-size: 1.8rem; }
  .hero-title-sub { font-size: 1.2rem; }
  .hero-desc { font-size: 0.95rem; }
  .section-title { font-size: 1.7rem; }
  .cta-title { font-size: 1.7rem; }
  .hero-badge { font-size: 11px; }
  .stats-bar-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .stats-bar-num { font-size: 1.2rem; }
  .stats-bar-label { font-size: 11px; }
  .about-stat-num { font-size: 1.5rem; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .btn-primary-cta, .btn-secondary-cta { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-header-title { font-size: 1.8rem; }
  .bonus-detail-title { font-size: 1.5rem; }
  .container { padding: 0 16px; }
}

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.bg-card { background: var(--bg-card) !important; }

/* Breadcrumb */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb-custom a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: var(--text-secondary); }

/* Giriş butonu animasyonu */
.pulse-btn {
  position: relative;
}
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--burgundy), var(--crimson));
  opacity: 0;
  z-index: -1;
  animation: glowPulse 2.5s ease-in-out infinite;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== MOBILE BOTTOM NAVIGATION ===== */
.mob-bottom-nav { display: none; }

@media (max-width: 768px) {
  .navbar-toggle { display: none !important; }
  .navbar-mobile { display: none !important; }
  body { padding-bottom: 68px; }

  .mob-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #130810;
    border-top: 1px solid rgba(141,26,46,0.5);
    z-index: 9100;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  }

  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #5C3A45;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 2px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
  }

  .mbn-item i { font-size: 22px; line-height: 1; }

  .mbn-item.mbn-active { color: #D4AF37; }
  .mbn-item.mbn-active i { text-shadow: 0 0 14px rgba(212,175,55,0.45); }
  .mbn-item:active { opacity: 0.7; }

  /* Overlay */
  .mbn-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9050;
  }
  .mbn-overlay.mbn-open { display: block; }

  /* Bottom Sheet */
  .mbn-sheet {
    position: fixed;
    bottom: 64px;
    left: 0;
    right: 0;
    background: #1A0B12;
    border-top: 2px solid #8B1A2E;
    border-radius: 20px 20px 0 0;
    z-index: 9060;
    padding: 8px 20px 32px;
    transform: translateY(110%);
    transition: transform 0.32s cubic-bezier(0.32,0,0,1);
    max-height: 75vh;
    overflow-y: auto;
  }
  .mbn-sheet.mbn-open { transform: translateY(0); }

  .mbn-handle {
    width: 36px;
    height: 4px;
    background: #3D1525;
    border-radius: 2px;
    margin: 12px auto 20px;
  }

  .mbn-sheet-title {
    font-size: 13px;
    font-weight: 700;
    color: #9B7A82;
    text-align: center;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .mbn-search-form {
    display: flex;
    gap: 10px;
  }

  .mbn-search-input {
    flex: 1;
    padding: 14px 16px;
    background: #0D0307;
    border: 1px solid #3D1525;
    border-radius: 12px;
    color: #F5E6E8;
    font-size: 15px;
    outline: none;
    font-family: inherit;
  }
  .mbn-search-input:focus { border-color: #8B1A2E; }
  .mbn-search-input::placeholder { color: #5C3A45; }

  .mbn-search-btn {
    padding: 14px 18px;
    background: linear-gradient(135deg, #8B1A2E, #C41E3A);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
