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

:root {
  --bg-primary: #06061a;
  --bg-secondary: #0c0c24;
  --bg-card: rgba(18, 18, 50, 0.7);
  --bg-card-hover: rgba(30, 30, 70, 0.8);
  --accent: #f7931a;
  --accent-light: #ffb347;
  --accent-glow: rgba(247, 147, 26, 0.35);
  --green: #00e676;
  --green-glow: rgba(0, 230, 118, 0.25);
  --purple: #7c4dff;
  --purple-glow: rgba(124, 77, 255, 0.25);
  --cyan: #00e5ff;
  --pink: #ff4081;
  --text-primary: #ffffff;
  --text-secondary: #a8adc5;
  --text-muted: #5a5f7a;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(247, 147, 26, 0.25);
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

/* ===== PARTICLE BACKGROUND ===== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-animation .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  animation: float 25s ease-in-out infinite;
}
.bg-animation .orb:nth-child(1) {
  width: 700px; height: 700px;
  background: var(--accent);
  top: -300px; left: -200px;
}
.bg-animation .orb:nth-child(2) {
  width: 600px; height: 600px;
  background: var(--purple);
  bottom: -200px; right: -200px;
  animation-delay: -8s;
}
.bg-animation .orb:nth-child(3) {
  width: 500px; height: 500px;
  background: var(--cyan);
  top: 40%; left: 60%;
  animation-delay: -16s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.08); }
  50% { transform: translate(-40px, 60px) scale(0.92); }
  75% { transform: translate(50px, 30px) scale(1.05); }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6, 6, 26, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), #ff6b00);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 35px rgba(247, 147, 26, 0.5); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #ff6b00) !important;
  color: var(--bg-primary) !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: ctaGlow 2s ease-in-out infinite;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(247, 147, 26, 0.5);
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 6px 30px rgba(247, 147, 26, 0.5); }
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 147, 26, 0.08);
  border: 1px solid var(--border-accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #c8cce0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), #ff6b00, var(--accent-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff6b00);
  color: var(--bg-primary);
  box-shadow: 0 6px 25px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(247, 147, 26, 0.5);
  color: var(--bg-primary);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--text-primary);
}

/* ===== SECTION CTA ===== */
.section-cta {
  text-align: center;
  margin-top: 48px;
}
.section-cta .btn {
  font-size: 1.05rem;
  padding: 16px 44px;
  letter-spacing: 0.02em;
}

.cards-grid .section-cta {
  grid-column: 1 / -1;
  text-align: center;
}

/* ===== PLINKO BOARD ===== */
.plinko-visual {
  margin: 60px auto 0;
  max-width: 600px;
  height: 380px;
  position: relative;
  background: linear-gradient(180deg, rgba(18,18,50,0.9) 0%, rgba(10,10,30,0.95) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(247, 147, 26, 0.15);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(247,147,26,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}

.plinko-visual canvas {
  width: 100%;
  height: 100%;
}

/* ===== GAME GALLERY ===== */
.game-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: all var(--transition);
}

.game-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow);
}

.game-card canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.game-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(6,6,26,0.95) 0%, transparent 100%);
  z-index: 2;
}

.game-card-overlay h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.game-card-overlay span {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

.game-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--accent), #ff6b00);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== STATS COUNTER ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-item:hover::before { opacity: 1; }

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 6px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TABLE ===== */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  border: 1px solid var(--border);
}

.info-table th, .info-table td {
  padding: 18px 28px;
  text-align: left;
}

.info-table thead th {
  background: rgba(247, 147, 26, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}

.info-table tbody td {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.info-table tbody tr:last-child td { border-bottom: none; }
.info-table tbody tr:hover td { background: var(--bg-card-hover); }
.info-table tbody td:first-child { font-weight: 600; color: var(--text-primary); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(247,147,26,0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(247,147,26,0.05);
}
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.card-icon.orange { background: rgba(247, 147, 26, 0.12); box-shadow: 0 0 20px rgba(247,147,26,0.1); }
.card-icon.green { background: rgba(0, 230, 118, 0.12); box-shadow: 0 0 20px rgba(0,230,118,0.1); }
.card-icon.purple { background: rgba(124, 77, 255, 0.12); box-shadow: 0 0 20px rgba(124,77,255,0.1); }

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  margin-bottom: 64px;
}

.content-block h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  position: relative;
}

.content-block h2::before {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.content-block p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-block ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.content-block ul li {
  padding: 12px 0 12px 30px;
  color: var(--text-secondary);
  position: relative;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.content-block ul li:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 28px 0;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.info-box::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 80px; height: 80px;
  background: var(--accent);
  opacity: 0.03;
  border-radius: 50%;
  filter: blur(20px);
}

.info-box p { color: var(--text-secondary); margin: 0; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.faq-item:hover { border-color: var(--border-accent); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  padding: 22px 26px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: inherit;
}

.faq-question:hover { color: var(--accent); }

.faq-question .icon {
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
  text-shadow: 0 0 10px var(--accent-glow);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FLOATING WIN TICKER ===== */
.win-ticker {
  overflow: hidden;
  padding: 14px 0;
  background: rgba(247, 147, 26, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}

.win-ticker-inner {
  display: flex;
  gap: 40px;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.win-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.win-ticker-item .win-amount {
  color: var(--green);
  font-weight: 700;
}

.win-ticker-item .win-mult {
  color: var(--accent);
  font-weight: 600;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 360px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); transform: translateX(3px); display: inline-block; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff3b30;
}

/* ===== DISCLAIMER ===== */
.disclaimer-bar {
  background: rgba(247, 147, 26, 0.06);
  border-bottom: 1px solid rgba(247, 147, 26, 0.1);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for cards */
.cards-grid .card:nth-child(1) { transition-delay: 0s; }
.cards-grid .card:nth-child(2) { transition-delay: 0.12s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar .container { height: 64px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(6, 6, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px; gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
    z-index: 1001;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 14px 18px; width: 100%; font-size: 1.05rem; display: block; text-align: center; }
  .nav-links li { border-bottom: none; }

  .navbar .lang-switch {
    display: none;
  }
  .nav-links .lang-switch-mobile {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 16px 18px;
    font-size: 0.95rem;
    font-weight: 600;
  }
  .nav-links .lang-switch-mobile a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .nav-links .lang-switch-mobile a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .nav-links .lang-switch-mobile a.lang-active {
    color: #f7931a;
    background: rgba(247, 147, 26, 0.15);
  }
  .nav-links .lang-switch-mobile .lang-divider {
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
  }

  .disclaimer-bar {
    top: 64px;
    font-size: 0.7rem;
    padding: 8px 16px;
  }
  .hero { padding: 130px 0 50px; }
  .hero h1 { font-size: 2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .game-gallery { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .plinko-visual { height: 280px; margin-top: 40px; }
  .info-table th, .info-table td { padding: 12px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
  .btn { padding: 13px 24px; font-size: 0.9rem; }
  .card { padding: 24px; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 1.5rem; }
}

/* ===== PROMO GALLERY ===== */
.promo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.promo-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: var(--bg-card);
}

.promo-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-item-large {
  grid-column: 1 / -1;
}

.promo-item-large img {
  aspect-ratio: 3/1.2;
  object-fit: cover;
}

.promo-item:not(.promo-item-large) img {
  aspect-ratio: 3/2;
}

.promo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(6,6,26,0.95) 0%, rgba(6,6,26,0.6) 60%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.promo-item:hover .promo-overlay {
  transform: translateY(0);
  opacity: 1;
}

.promo-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ff6b00);
  color: var(--bg-primary);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.promo-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.promo-overlay p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.promo-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(247,147,26,0.08);
}

.promo-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .promo-gallery { grid-template-columns: 1fr; }
  .promo-item-large img { aspect-ratio: 4/3; }
  .promo-item:not(.promo-item-large) img { aspect-ratio: 4/3; }
  .promo-overlay { transform: translateY(0); opacity: 1; }
}

/* ===== BIG WIN BANNER ===== */
.win-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, #1a0a3e 0%, #0a0618 60%, #060412 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(255,215,0,0.05);
  margin: 40px 0;
}

.win-banner .rays {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,215,0,0.02) 10deg, transparent 20deg, rgba(255,215,0,0.04) 40deg, transparent 50deg, rgba(255,215,0,0.02) 60deg, transparent 80deg, rgba(255,215,0,0.03) 100deg, transparent 120deg, rgba(255,215,0,0.02) 140deg, transparent 160deg, rgba(255,215,0,0.04) 180deg, transparent 200deg, rgba(255,215,0,0.02) 220deg, transparent 240deg, rgba(255,215,0,0.03) 260deg, transparent 280deg, rgba(255,215,0,0.04) 300deg, transparent 320deg, rgba(255,215,0,0.02) 340deg, transparent 360deg);
  border-radius: 50%;
  animation: spinRays 30s linear infinite;
  pointer-events: none;
}

@keyframes spinRays {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

.win-banner .win-mult {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: #00e676;
  text-shadow: 0 0 40px rgba(0,230,118,0.5), 0 0 80px rgba(0,230,118,0.2);
  line-height: 1;
  position: relative;
  z-index: 2;
}

.win-banner .win-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700, #ff9500, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.win-banner .win-amount {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.win-banner .sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffd700, 0 0 16px #ffd700;
  animation: sparkAnim 2s ease-in-out infinite;
}

@keyframes sparkAnim {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ===== GAME INTERFACE MOCKUP ===== */
.game-mockup {
  background: linear-gradient(180deg, #0d1020 0%, #0a0a1a 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.game-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.game-mockup-header .gm-logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}

.game-mockup-header .gm-balance {
  color: var(--green);
  font-weight: 700;
}

.game-mockup-body {
  display: flex;
  min-height: 300px;
}

.game-mockup-sidebar {
  width: 200px;
  border-right: 1px solid var(--border);
  padding: 20px;
  background: rgba(255,255,255,0.01);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gm-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.gm-value {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 4px;
}

.gm-btn {
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.gm-btn-play {
  background: linear-gradient(135deg, var(--accent), #ff6b00);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.gm-btn-auto {
  background: rgba(124,77,255,0.1);
  color: var(--purple);
  border: 1px solid rgba(124,77,255,0.2);
}

.game-mockup-canvas {
  flex: 1;
  position: relative;
  min-height: 300px;
}

.gm-risk-row {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.gm-risk {
  flex: 1;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--glass);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.gm-risk.active {
  border-color: #ff3b30;
  color: #ff3b30;
  background: rgba(255,59,48,0.08);
}

@media (max-width: 768px) {
  .game-mockup-body { flex-direction: column; }
  .game-mockup-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .win-banner { padding: 50px 20px; }
}

/* ===== HERO IMAGE (Casino & App pages) ===== */
.hero-image {
  margin: 60px auto 0;
  max-width: 700px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(247,147,26,0.06);
  transition: transform var(--transition);
}

.hero-image img:hover {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .hero-image { margin-top: 40px; max-width: 500px; }
}

@media (max-width: 480px) {
  .hero-image { margin-top: 30px; }
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.lang-switch a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lang-switch a.lang-active {
  color: #f7931a;
  background: rgba(247, 147, 26, 0.1);
}

.lang-switch-mobile {
  display: none;
  list-style: none;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(247,147,26,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
