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

:root {
  --gold: #ffd700;
  --gold-light: #ffe566;
  --gold-dark: #cc9900;
  --green: #00c851;
  --green-dark: #009c3c;
  --red: #e63c28;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #16161f;
  --border: rgba(255,215,0,0.15);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --dragon-green: #1a7a1a;
  --dragon-green-dark: #0d4d0d;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-dragon {
  font-size: 64px;
  animation: bounce 0.7s infinite alternate;
}
.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,215,0,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: load 1.2s ease forwards;
}
@keyframes load {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes bounce {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-12px) scale(1.1); }
}

/* ===== PARTICLES ===== */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: float-up var(--dur, 6s) var(--delay, 0s) infinite;
}
@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* ===== HEADER / NAVBAR ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span:first-child {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}
.logo-text span:last-child {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
}
.btn-nav {
  background: linear-gradient(135deg, var(--dragon-green), #2a9a2a);
  color: #fff !important;
  font-weight: 700;
  border-radius: 10px !important;
  box-shadow: 0 4px 16px rgba(0,200,80,0.3);
  transition: all 0.2s !important;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,200,80,0.5) !important;
  background: linear-gradient(135deg, #2a9a2a, #40c040) !important;
  color: #fff !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,122,26,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 30% 30%, rgba(255,215,0,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0f 0%, #0d1a0d 50%, #0a0a0f 100%);
}
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  right: 30%;
  top: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,200,80,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge::before { content: '🔥'; }
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
  max-width: 600px;
}
.hero-title .line1 {
  color: var(--text);
}
.hero-title .line2 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #1a7a1a 0%, #2db52d 50%, #22aa22 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0,180,60,0.4), 0 0 0 0 rgba(0,180,60,0.4);
  transition: all 0.25s;
  animation: pulse-btn 2.5s infinite;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(0,180,60,0.6);
  animation: none;
}
@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 28px rgba(0,180,60,0.4), 0 0 0 0 rgba(0,180,60,0.3); }
  50% { box-shadow: 0 6px 28px rgba(0,180,60,0.4), 0 0 0 14px rgba(0,180,60,0); }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255,215,0,0.08);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid rgba(255,215,0,0.3);
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(255,215,0,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}
/* ===== HERO BONUS BADGE ===== */
.hero-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,140,0,0.08));
  border: 1px solid rgba(255,215,0,0.4);
  border-radius: 14px;
  padding: 14px 22px;
  margin-bottom: 28px;
  max-width: 440px;
}
.hbb-fire { font-size: 28px; }
.hbb-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hbb-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hbb-amount {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hbb-arrow {
  font-size: 20px;
  color: var(--gold);
  margin-left: auto;
}

/* ===== HERO AUTH BUTTONS ===== */
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a7a1a 0%, #2db52d 60%, #22aa22 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 6px 28px rgba(0,180,60,0.45);
  transition: all 0.25s;
  letter-spacing: 0.3px;
  animation: pulse-btn 2.5s infinite;
}
.btn-register:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(0,180,60,0.65);
  animation: none;
}
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-login:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-3px);
}

/* ===== BIG BONUS BUTTON ===== */
.btn-bonus-big {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 40px;
  background: linear-gradient(135deg, #7a1a00 0%, #cc3300 40%, #ff6600 70%, #ffd700 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  max-width: 540px;
  box-shadow: 0 8px 36px rgba(255,80,0,0.45), 0 0 0 0 rgba(255,80,0,0.3);
  transition: all 0.25s;
  animation: pulse-orange 2.2s infinite;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}
.btn-bonus-big::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { left: -60%; }
  60%, 100% { left: 120%; }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 8px 36px rgba(255,80,0,0.45), 0 0 0 0 rgba(255,80,0,0.3); }
  50% { box-shadow: 0 8px 36px rgba(255,80,0,0.45), 0 0 0 14px rgba(255,80,0,0); }
}
.btn-bonus-big:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 50px rgba(255,80,0,0.65);
  animation: none;
}
.bbb-icon { font-size: 40px; flex-shrink: 0; }
.bbb-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.bbb-top {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bbb-bottom {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.bbb-arrow {
  font-size: 28px;
  margin-left: auto;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, rgba(26,122,26,0.15), rgba(255,215,0,0.08), rgba(26,122,26,0.15));
  border-top: 1px solid rgba(255,215,0,0.1);
  border-bottom: 1px solid rgba(255,215,0,0.1);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.ticker-item strong { color: var(--gold); }
.ticker-item .win-amount { color: var(--green); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section {
  position: relative;
  z-index: 1;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BONUS CARDS ===== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,215,0,0.2);
}
.bonus-card.featured {
  border-color: rgba(255,215,0,0.35);
  background: linear-gradient(135deg, #16160d, #111118);
}
.bonus-card .bonus-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.bonus-amount {
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.bonus-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.bonus-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.bonus-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--red), #ff6b4a);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== GAMES GRID ===== */
.games-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: block;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.25);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.game-card:hover .game-card-img {
  transform: scale(1.08);
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}
.game-card:hover .game-card-overlay {
  opacity: 1;
}
.game-play-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--dragon-green), #2db52d);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-align: center;
}
.game-card-info {
  padding: 12px 14px;
}
.game-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-provider {
  font-size: 12px;
  color: var(--text-muted);
}
.game-card-rtp {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,200,80,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ===== FEATURES / WHY US ===== */
.features-bg {
  background: linear-gradient(180deg, transparent 0%, rgba(26,122,26,0.04) 50%, transparent 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dragon-green), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,0.2);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg-card2);
  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: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  margin-top: 40px;
}
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  margin-top: 30px;
}
.seo-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.seo-content strong { color: var(--text); }
.seo-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.seo-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 8px;
}
.seo-content li::marker { color: var(--gold); }
.seo-cta-box {
  background: linear-gradient(135deg, rgba(26,122,26,0.12), rgba(255,215,0,0.06));
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}
.seo-cta-box h3 {
  color: var(--gold) !important;
  font-size: 22px !important;
  margin: 0 0 12px 0 !important;
}
.seo-cta-box p {
  max-width: 500px;
  margin: 0 auto 24px;
}

/* ===== PAYMENT METHODS ===== */
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.2s;
}
.payment-card:hover {
  border-color: rgba(255,215,0,0.3);
  background: rgba(255,215,0,0.04);
}
.payment-icon { font-size: 28px; margin-bottom: 8px; }
.payment-name { font-size: 12px; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, #0d1a0d 0%, #0a1408 100%);
  border-top: 1px solid rgba(26,122,26,0.3);
  border-bottom: 1px solid rgba(26,122,26,0.3);
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: #070709;
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--gold);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.age-badge {
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.3);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
}
.footer-logos {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-logo-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-pulse {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dragon-green), #2db52d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(0,180,60,0.5);
  cursor: pointer;
  animation: pulse-btn 2s infinite;
  text-decoration: none;
  transition: transform 0.2s;
}
.float-pulse:hover {
  transform: scale(1.1);
  animation: none;
}
.float-label {
  background: rgba(0,0,0,0.8);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

/* ===== FAQ ===== */
.faq-list {
  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.25s;
}
.faq-item.open {
  border-color: rgba(255,215,0,0.3);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-image-wrap { width: 45%; opacity: 0.5; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { min-height: 80vh; }
  .hero-image-wrap { width: 100%; opacity: 0.25; }
  .hero-stats { gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
