/* ========================================
   Dragon Money Casino — Mirror Site Styles
   ======================================== */

:root {
  --gold: #f0b429;
  --gold-light: #ffd700;
  --gold-dark: #c9870a;
  --red: #e63946;
  --red-glow: rgba(230, 57, 70, 0.4);
  --bg-deep: #07070e;
  --bg-dark: #0d0d1a;
  --bg-card: #12121f;
  --bg-card2: #1a1a2e;
  --border: rgba(240, 180, 41, 0.15);
  --border-bright: rgba(240, 180, 41, 0.4);
  --text: #e8e8f0;
  --text-muted: #8888a8;
  --text-light: #c0c0d8;
  --green: #22c55e;
  --purple: #8b5cf6;
  --font-main: 'Exo 2', sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-gold: 0 0 30px rgba(240, 180, 41, 0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: #fff;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f0b429 0%, #ff8c00 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(240, 180, 41, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffd700 0%, #f0a000 100%);
  box-shadow: 0 6px 30px rgba(240, 180, 41, 0.6);
  transform: translateY(-2px);
  color: #0a0a0a;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(240, 180, 41, 0.1);
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

.btn-xl {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.fire-btn {
  position: relative;
  overflow: hidden;
}
.fire-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,100,0,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.fire-btn:hover::before { opacity: 1; }

.pulse-btn {
  animation: pulseBtnAnim 2.5s ease-in-out infinite;
}
@keyframes pulseBtnAnim {
  0%, 100% { box-shadow: 0 4px 20px rgba(240, 180, 41, 0.35); }
  50% { box-shadow: 0 4px 35px rgba(240, 180, 41, 0.7), 0 0 20px rgba(255, 200, 0, 0.4); }
}

.w-full { width: 100%; }

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 14, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-bg-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px rgba(240, 180, 41, 0.6));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-dragon {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-money {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header-nav {
  flex: 1;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.header-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.header-nav a:hover {
  color: var(--gold);
  background: rgba(240, 180, 41, 0.08);
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--gold); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.8; transform: translateY(-20px) scale(1); }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(0); }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: saturate(1.2) brightness(0.35);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 7, 14, 0.92) 0%,
    rgba(13, 13, 26, 0.75) 50%,
    rgba(7, 7, 14, 0.88) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(240,180,41,0.15) 0%, rgba(255,100,0,0.1) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  animation: fadeInDown 0.9s ease;
  line-height: 1.05;
}

.hero-subtitle-text {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text-light);
  font-weight: 400;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-bonus-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(240, 180, 41, 0.07);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 36px;
  max-width: 580px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.3s both;
}

.bonus-item {
  flex: 1;
  text-align: center;
}

.bonus-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounceDown 2s ease-in-out infinite;
  margin-top: 6px;
  color: var(--gold);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-item {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 2px;
}

.stat-suf {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============ BONUSES ============ */
.bonuses-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.bonus-card--main {
  border-color: rgba(240, 180, 41, 0.4);
  background: linear-gradient(135deg, #12121f 0%, #1a1210 100%);
}

.bonus-card-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(240,180,41,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.bonus-card-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.25);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.bonus-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.bonus-card-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: var(--font-heading);
  margin-bottom: 14px;
  line-height: 1.2;
}

.bonus-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.bonus-card-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-card-list li {
  font-size: 0.85rem;
  color: var(--text-light);
}

.bonus-card .btn { width: 100%; }

/* ============ GAMES ============ */
.games-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}

.games-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(240, 180, 41, 0.12);
  border-color: var(--border-bright);
  color: var(--gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), var(--shadow-gold);
}

.game-card.hidden { display: none; }

.game-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0a0a15;
}

.game-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card-img-wrap img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 14, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-hot-badge,
.game-live-badge,
.game-new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.game-hot-badge {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  color: #fff;
}

.game-live-badge {
  background: linear-gradient(135deg, #e63946, #ff0040);
  color: #fff;
}

.game-new-badge {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff;
}

.game-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  font-size: 0.78rem;
}

.game-provider {
  color: var(--text-muted);
  font-weight: 500;
}

.game-rtp {
  color: var(--green);
  font-weight: 700;
}
.game-rtp::before {
  content: "RTP ";
  font-size: 0.8em;
  opacity: 0.7;
  font-weight: 400;
}

.games-load-more {
  text-align: center;
}

/* ============ ABOUT ============ */
.about-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-tag { text-align: left; }
.about-text .section-title { text-align: left; margin-bottom: 20px; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--border-bright);
  background: var(--bg-card2);
}

.af-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-cards-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.about-stat-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.asc-icon { font-size: 2rem; margin-bottom: 10px; }

.asc-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.asc-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ HOW TO START ============ */
.howto-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(240, 180, 41, 0.1);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.step-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.step-link:hover {
  color: var(--gold-light);
}

/* ============ PAYMENT ============ */
.payment-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.pay-badge {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  transition: var(--transition);
}

.pay-badge:hover {
  border-color: var(--border-bright);
  color: var(--gold);
  background: rgba(240, 180, 41, 0.05);
}

.payment-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pay-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.pay-info-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.pic-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pay-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.pay-info-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ SEO TEXT ============ */
.seo-section {
  padding: 80px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.seo-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #fff;
}

.seo-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.seo-content strong { color: var(--text-light); }

.seo-cta {
  margin-top: 36px;
  padding: 28px;
  background: rgba(240, 180, 41, 0.07);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  text-align: center;
}

.seo-cta p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 100px 0;
  background: var(--bg-deep);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: var(--border-bright); }

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  user-select: none;
}

.faq-item summary::after {
  content: '↓';
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(180deg); }

.faq-body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}

.faq-body p {
  padding-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0a00 0%, #12080a 50%, #0a0a14 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff6b6b;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-desc {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(136, 136, 168, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-btn:hover {
  color: var(--gold);
  border-color: var(--border-bright);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.fl-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fl-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.fl-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.fl-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.trust-badge {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(136, 136, 168, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 900px;
}

.footer-disclaimer a {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(136, 136, 168, 0.4);
}

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  padding: 6px 6px 6px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), var(--shadow-gold);
  animation: slideUpIn 0.5s ease 2s both;
  transition: opacity 0.3s;
}

.floating-cta.hidden { display: none; }

.floating-cta .btn {
  border-radius: 44px;
  font-size: 0.88rem;
  padding: 10px 20px;
}

.floating-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 50%;
  transition: var(--transition);
  flex-shrink: 0;
}

.floating-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .payment-info-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 768px) {
  .header-btns { display: none; }
  .burger { display: flex; }

  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-bonus-card { flex-direction: column; gap: 16px; padding: 20px; }
  .bonus-divider { width: 80%; height: 1px; }
  .hero-actions { flex-direction: column; }

  .bonuses-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .payment-info-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }

  section { padding: 60px 0 !important; }

  .about-cards-stack { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-trust { gap: 12px; font-size: 0.75rem; }
  .about-cards-stack { grid-template-columns: 1fr 1fr; }
}
