* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: #0a0a1f; color: #e6e6f0; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header { background: rgba(10, 10, 31, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #1f1f3d; backdrop-filter: blur(10px); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-size: 1.7rem; font-weight: 800; background: linear-gradient(135deg, #00ffc6, #6c5ce7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav ul li a { font-size: 0.95rem; transition: color 0.3s; padding: 6px 0; }
nav ul li a:hover, nav ul li a.active { color: #00ffc6; }
.nav-btns { display: flex; gap: 10px; }
.btn { padding: 10px 22px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; border: none; }
.btn-login { background: transparent; border: 1.5px solid #00ffc6; color: #00ffc6; }
.btn-register { background: linear-gradient(135deg, #00ffc6, #6c5ce7); color: #0a0a1f; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,255,198,0.3); }
.menu-toggle { display: none; background: none; border: none; color: #00ffc6; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { padding: 70px 20px; text-align: center; background: radial-gradient(ellipse at top, #1a1a4d 0%, #0a0a1f 70%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 10%; left: 5%; width: 4px; height: 4px; background: #fff; border-radius: 50%; box-shadow: 100px 80px #fff, 200px 150px #fff, 350px 60px #fff, 500px 200px #fff, 700px 100px #fff, 850px 180px #fff, 1000px 90px #fff; opacity: 0.6; }
.hero h1 { font-size: 2.6rem; max-width: 800px; margin: 0 auto 18px; background: linear-gradient(135deg, #fff, #00ffc6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.25; }
.hero p { color: #b0b0c8; max-width: 620px; margin: 0 auto 30px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-img { max-width: 720px; margin: 40px auto 0; border-radius: 16px; border: 2px solid #1f1f3d; box-shadow: 0 10px 50px rgba(108,92,231,0.3); }

/* Sections */
section { padding: 70px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 12px; color: #fff; }
.section-sub { text-align: center; color: #9999b3; max-width: 600px; margin: 0 auto 50px; }

/* Providers */
.providers { background: #0d0d28; }
.providers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 18px; }
.provider-card { background: #15153a; padding: 20px; border-radius: 12px; text-align: center; border: 1px solid #1f1f4d; transition: transform 0.3s; }
.provider-card:hover { transform: translateY(-5px); border-color: #00ffc6; }
.provider-card img { margin: 0 auto; max-height: 90px; width: auto; }

/* How it works */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step-card { background: linear-gradient(135deg, #15153a, #1f1f4d); padding: 30px 20px; border-radius: 14px; text-align: center; border: 1px solid #2a2a5a; }
.step-num { width: 50px; height: 50px; line-height: 50px; border-radius: 50%; background: linear-gradient(135deg, #00ffc6, #6c5ce7); color: #0a0a1f; font-weight: 800; margin: 0 auto 16px; font-size: 1.2rem; }
.step-card h3 { color: #00ffc6; margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { color: #a8a8c0; font-size: 0.92rem; }

/* Features */
.features { background: #0d0d28; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.feature-card { background: #15153a; padding: 26px; border-radius: 14px; border: 1px solid #1f1f4d; display: flex; gap: 18px; align-items: flex-start; }
.feature-card img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.feature-card h3 { color: #00ffc6; margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { color: #a8a8c0; font-size: 0.9rem; }

/* Stats */
.stats { background: linear-gradient(135deg, #15153a, #0d0d28); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; }
.stat-card { padding: 26px 16px; }
.stat-num { font-size: 2.4rem; font-weight: 800; background: linear-gradient(135deg, #00ffc6, #6c5ce7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: #a8a8c0; margin-top: 6px; font-size: 0.95rem; }

/* Games gallery */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.game-card { background: #15153a; border-radius: 12px; overflow: hidden; border: 1px solid #1f1f4d; transition: transform 0.3s; }
.game-card:hover { transform: scale(1.04); border-color: #00ffc6; }
.game-card img { width: 100%; height: 170px; object-fit: cover; }
.game-card .name { padding: 12px; text-align: center; font-size: 0.9rem; color: #cfcfe0; }

/* Testimonial */
.testimonial { background: #0d0d28; }
.testi-box { max-width: 700px; margin: 0 auto; background: #15153a; padding: 30px; border-radius: 14px; border-left: 4px solid #00ffc6; }
.testi-box p { color: #cfcfe0; font-style: italic; margin-bottom: 12px; }
.testi-box .author { color: #00ffc6; font-weight: 600; font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #15153a; padding: 20px 24px; border-radius: 10px; margin-bottom: 14px; border: 1px solid #1f1f4d; }
.faq-item h4 { color: #00ffc6; margin-bottom: 8px; font-size: 1.02rem; }
.faq-item p { color: #b0b0c8; font-size: 0.93rem; }

/* CTA */
.cta-box { background: linear-gradient(135deg, #1f1f4d, #15153a); padding: 50px 30px; border-radius: 16px; text-align: center; border: 1px solid #00ffc6; }
.cta-box h2 { font-size: 1.7rem; margin-bottom: 12px; color: #fff; }
.cta-box p { color: #b0b0c8; margin-bottom: 24px; }

/* Footer */
footer { background: #07071a; padding: 50px 20px 20px; border-top: 1px solid #1f1f3d; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-col h4 { color: #00ffc6; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #a8a8c0; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #00ffc6; }
.footer-col p { color: #a8a8c0; font-size: 0.9rem; margin-bottom: 6px; }
.footer-bottom { max-width: 1200px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid #1f1f3d; text-align: center; color: #7a7a99; font-size: 0.85rem; }
.age-badge { display: inline-block; background: #ff4444; color: #fff; padding: 4px 10px; border-radius: 4px; font-weight: 700; margin-right: 6px; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle { display: block; order: 2; }
  nav { width: 100%; order: 4; display: none; margin-top: 12px; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 14px; }
  .nav-btns { order: 3; }
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  section { padding: 50px 16px; }
}
.hero::before img{width:100%;height:100%;object-fit:cover;object-position:center}
.step-num img{width:100%;height:100%;object-fit:cover;object-position:center}