/* ============================================================
   MPO188 — Landing Page Stylesheet  (v3 — black/dark-gray bg,
   full-page falling lights, logo-only navbar)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  /* black → dark-gray gradient covering the whole page */
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 60%, #111111 100%);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

a { text-decoration: none; }
.text-center { text-align: center; }

/* Green gradient text */
.text-green {
  background: linear-gradient(135deg, #4ade80, #22c55e, #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green-light { color: #86efac; }

/* Containers */
.container    { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 960px;  margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 768px;  margin: 0 auto; padding: 0 24px; }

/* Grids */
.grid   { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px)  { .grid-3 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .grid-3 { grid-template-columns: 1fr; } }

/* ── Falling-lights canvas ── */
#fallingLights {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* All page content sits above the canvas */
body > *:not(#fallingLights) { position: relative; z-index: 1; }

/* ── Navbar — logo only, centred ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
}
.navbar-logo { height: 40px; width: auto; object-fit: contain; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 80px; overflow: hidden;
}

/* Subtle green grid overlay */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image:
    linear-gradient(rgba(34,197,94,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center;
  animation: fadeUp 0.7s ease-out both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 9999px; margin-bottom: 24px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
}
.badge-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #4ade80;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }

/* Hero title */
.hero-title {
  font-family: 'Rajdhani', serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: #fff;
}

/* Hero description */
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem); color: #d1d5db;
  max-width: 640px; margin: 0 auto 40px; line-height: 1.7;
}

/* Hero buttons */
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 64px; }

.btn-play {
  padding: 16px 40px; font-size: 18px; font-weight: 700; border-radius: 12px;
  border: none; color: #fff; cursor: pointer;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 30px rgba(34,197,94,0.5), 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.btn-play:hover { transform: scale(1.05); }

.btn-bonus {
  padding: 16px 40px; font-size: 18px; font-weight: 700; border-radius: 12px;
  cursor: pointer; color: #4ade80;
  background: transparent; border: 2px solid rgba(34,197,94,0.5);
  transition: transform 0.2s;
}
.btn-bonus:hover { transform: scale(1.05); }

/* Stats bar */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  max-width: 720px; margin: 0 auto; padding: 24px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,197,94,0.2);
  backdrop-filter: blur(10px);
}
@media (max-width: 540px) { .stats-bar { grid-template-columns: repeat(2,1fr); } }

.stat-value {
  font-family: 'Rajdhani', serif;
  font-size: clamp(1.4rem, 3vw, 1.875rem); font-weight: 800; color: #4ade80;
}
.stat-label { font-size: 12px; color: #9ca3af; margin-top: 4px; font-weight: 500; }

/* ── Generic section wrapper ── */
.section { padding: 96px 24px; }
.promo-section { padding: 64px 24px; }

/* Section headings */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow { color: #4ade80; font-weight: 700; font-size: 13px; letter-spacing: 0.12em; margin-bottom: 12px; }
.section-title { font-family: 'Rajdhani', serif; font-size: clamp(2rem,5vw,3rem); font-weight: 800; color: #fff; }
.section-desc { margin-top: 16px; color: #9ca3af; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Game cards ── */
.game-card {
  position: relative; padding: 24px; border-radius: 16px; cursor: pointer;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(34,197,94,0.15);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.game-tag { position: absolute; top:16px; right:16px; font-size:11px; font-weight:700; padding:4px 8px; border-radius:9999px; }
.tag-hot     { background:rgba(239,68,68,0.2);  color:#f87171; border:1px solid rgba(239,68,68,0.4); }
.tag-live    { background:rgba(34,197,94,0.2);  color:#4ade80; border:1px solid rgba(34,197,94,0.4); }
.tag-new     { background:rgba(59,130,246,0.2); color:#60a5fa; border:1px solid rgba(59,130,246,0.4); }
.tag-populer { background:rgba(59,130,246,0.2); color:#60a5fa; border:1px solid rgba(59,130,246,0.4); }
.game-icon  { font-size:36px; margin-bottom:16px; }
.game-title { font-family:'Rajdhani',serif; font-size:20px; font-weight:700; color:#fff; margin-bottom:8px; }
.game-desc  { color:#9ca3af; font-size:14px; line-height:1.6; }
.game-link  { display:flex; align-items:center; gap:8px; margin-top:20px; color:#4ade80; font-size:14px; font-weight:600; }
.game-link svg { transition:transform 0.2s; }
.game-card:hover .game-link svg { transform:translateX(4px); }

/* ── Promo banner ── */
.promo-banner {
  position: relative; overflow: hidden; border-radius: 24px;
  padding: 64px 40px; text-align: center;
  background: linear-gradient(135deg, #052e16 0%, #065f46 50%, #052e16 100%);
  border: 1px solid rgba(34,197,94,0.4);
  box-shadow: 0 0 60px rgba(34,197,94,0.15);
}
.promo-glow {
  position:absolute; inset:0; opacity:0.1; pointer-events:none;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(34,197,94,0.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(34,197,94,0.4) 0%, transparent 50%);
}
.promo-content { position:relative; z-index:10; }
.promo-eyebrow { color:#86efac; font-weight:700; font-size:13px; letter-spacing:0.12em; margin-bottom:16px; }
.promo-title { font-family:'Rajdhani',serif; font-size:clamp(2.2rem,6vw,3.75rem); font-weight:800; color:#fff; margin-bottom:16px; }
.promo-desc  { color:#bbf7d0; font-size:18px; max-width:520px; margin:0 auto 32px; }
.promo-desc strong { color:#fff; }
.btn-promo {
  padding:16px 48px; font-size:18px; font-weight:700; border-radius:12px;
  border:none; color:#fff; cursor:pointer;
  background:linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow:0 0 30px rgba(34,197,94,0.6); transition:transform 0.2s;
}
.btn-promo:hover { transform:scale(1.06); }
.promo-note { margin-top:16px; color:rgba(74,222,128,0.6); font-size:12px; }

/* ── Feature cards ── */
.feature-card {
  display:flex; gap:20px; padding:24px; border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
}
.feature-icon {
  flex-shrink:0; width:48px; height:48px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; font-size:24px;
  background:rgba(34,197,94,0.12); border:1px solid rgba(34,197,94,0.25);
}
.feature-title { font-family:'Rajdhani',serif; font-size:18px; font-weight:700; color:#fff; margin-bottom:4px; }
.feature-desc  { color:#9ca3af; font-size:14px; line-height:1.6; }

/* ── Provider cards ── */
.provider-card {
  display:flex; align-items:center; justify-content:center;
  padding:20px 16px; border-radius:12px;
  font-weight:700; font-size:13px; letter-spacing:0.05em; cursor:pointer;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(34,197,94,0.15); color:#9ca3af;
  transition:color 0.2s, border-color 0.2s, transform 0.2s;
}

/* ── Step cards ── */
.step-card {
  position:relative; text-align:center; padding:48px 32px 32px; border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(34,197,94,0.2);
}
.step-number {
  position:absolute; top:-20px; left:50%; transform:translateX(-50%);
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Rajdhani',serif; font-size:14px; font-weight:800; color:#fff;
  background:linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow:0 0 20px rgba(34,197,94,0.5);
}
.step-icon  { font-size:36px; margin-bottom:16px; margin-top:8px; }
.step-title { font-family:'Rajdhani',serif; font-size:20px; font-weight:700; color:#fff; margin-bottom:12px; }
.step-desc  { color:#9ca3af; font-size:14px; line-height:1.6; }
.steps-cta  { text-align:center; margin-top:48px; }

/* ── Testimonial cards ── */
.testi-card {
  padding:24px; border-radius:16px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(34,197,94,0.15);
}
.testi-stars { color:#facc15; font-size:18px; letter-spacing:2px; margin-bottom:12px; }
.testi-text  { color:#d1d5db; font-size:14px; line-height:1.7; margin-bottom:20px; font-style:italic; }
.testi-author{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:40px; height:40px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; color:#fff;
  background:linear-gradient(135deg, #22c55e, #16a34a);
}
.testi-name { color:#fff; font-weight:600; font-size:14px; }
.testi-city { color:#6b7280; font-size:12px; }

/* ── Final CTA ── */
.final-title {
  font-family:'Rajdhani',serif;
  font-size:clamp(2.2rem,6vw,3.75rem); font-weight:800; color:#fff; margin-bottom:24px;
}
.final-desc { color:#9ca3af; font-size:18px; max-width:520px; margin:0 auto 40px; line-height:1.7; }
.btn-final {
  padding:20px 48px; font-size:20px; font-weight:800; border-radius:16px;
  border:none; color:#fff; cursor:pointer; font-family:'Rajdhani',serif;
  background:linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow:0 0 40px rgba(34,197,94,0.5), 0 4px 20px rgba(0,0,0,0.3);
  transition:transform 0.2s;
}
.btn-final:hover { transform:scale(1.05); }

/* ── Footer ── */
.footer {
  padding:48px 24px;
  background:rgba(0,0,0,0.7);
  border-top:1px solid rgba(34,197,94,0.12);
  position:relative; z-index:1;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:40px;
}
@media (max-width:768px) { .footer-grid{grid-template-columns:1fr 1fr;} .footer-brand{grid-column:span 2;} }
@media (max-width:480px) { .footer-grid{grid-template-columns:1fr;} .footer-brand{grid-column:span 1;} }
.footer-logo  { height:48px; width:auto; object-fit:contain; margin-bottom:16px; }
.footer-about { color:#9ca3af; font-size:14px; line-height:1.7; max-width:380px; }
.footer-contacts { display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.btn-contact {
  padding:8px 12px; font-size:12px; border-radius:8px; cursor:pointer;
  background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.25);
  color:#4ade80; transition:opacity 0.2s;
}
.btn-contact:hover { opacity:0.8; }
.footer-col-title { color:#fff; font-family:'Rajdhani',serif; font-weight:700; font-size:14px; letter-spacing:0.08em; margin-bottom:16px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:8px; }
.footer-col a  { color:#9ca3af; font-size:14px; transition:color 0.2s; cursor:pointer; }
.footer-col a:hover { color:#4ade80; }
.footer-bottom {
  padding-top:32px; border-top:1px solid rgba(255,255,255,0.06);
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px;
}
.footer-copy, .footer-age { color:#4b5563; font-size:12px; }