* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #0a0b1e;
  color: #e8e9f3;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
header {
  background: rgba(13, 14, 36, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 255, 200, 0.15);
}
.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-size: 26px;
  font-weight: 800;
  color: #00ffc8;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(0, 255, 200, 0.4);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
nav ul li a {
  color: #d0d2e6;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
nav ul li a:hover, nav ul li a.active {
  color: #00ffc8;
  border-bottom-color: #00ffc8;
}
.nav-actions {
  display: flex;
  gap: 10px;
}
.btn {
  padding: 9px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
  border: none;
}
.btn-login {
  background: transparent;
  color: #00ffc8;
  border: 1.5px solid #00ffc8;
}
.btn-login:hover { background: rgba(0, 255, 200, 0.1); }
.btn-register {
  background: linear-gradient(135deg, #00ffc8 0%, #00a085 100%);
  color: #0a0b1e;
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 255, 200, 0.35); }

/* Hero */
.hero {
  padding: 70px 20px 60px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 200, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(127, 0, 255, 0.15), transparent 50%),
    #0a0b1e;
  position: relative;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #00ffc8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #b8bad0;
  font-size: 16px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  background: linear-gradient(135deg, #00ffc8 0%, #00a085 100%);
  color: #0a0b1e;
  padding: 13px 30px;
  border-radius: 28px;
  font-weight: 700;
}
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 28px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.hero-image {
  max-width: 540px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 200, 0.25);
  box-shadow: 0 20px 60px rgba(0, 255, 200, 0.15);
}

/* Section base */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.section-sub {
  text-align: center;
  color: #9c9eb5;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
}

/* Partners strip */
.partners {
  background: linear-gradient(90deg, rgba(0,255,200,0.05), rgba(127,0,255,0.05));
  padding: 26px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.partners-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 18px;
  align-items: center;
  justify-items: center;
}
.partners-grid img {
  max-height: 80px;
  width: auto;
  opacity: 0.75;
  transition: 0.3s;
}
.partners-grid img:hover { opacity: 1; }

/* How It Works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.how-card {
  background: linear-gradient(160deg, #16183a 0%, #0f112a 100%);
  border: 1px solid rgba(0, 255, 200, 0.15);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.3s;
}
.how-card:hover {
  border-color: rgba(0, 255, 200, 0.5);
  transform: translateY(-4px);
}
.how-num {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffc8, #7f00ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a0b1e;
  font-size: 18px;
}
.how-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #fff;
}
.how-card p { color: #a8aac0; font-size: 14px; }

/* Features */
.features-section { background: #0d0f24; }
.features-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.feature-card {
  background: linear-gradient(160deg, #1a1c40 0%, #11132e 100%);
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(127, 0, 255, 0.2);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
}
.feature-icon img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #00ffc8;
}
.feature-card p { color: #b0b2c8; font-size: 14px; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.stat {
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.08), rgba(127, 0, 255, 0.08));
  padding: 26px 18px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(0,255,200,0.15);
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #00ffc8;
  margin-bottom: 6px;
}
.stat-label { color: #c8caf0; font-size: 13px; }

/* Game showcase */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
}
.game-card {
  background: #14163a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,255,200,0.4);
  box-shadow: 0 10px 30px rgba(0,255,200,0.15);
}
.game-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.game-info {
  padding: 12px 14px;
}
.game-info h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.game-info p {
  font-size: 12px;
  color: #8a8da8;
}

/* Regions */
.regions {
  background: linear-gradient(180deg, #0d0f24 0%, #0a0b1e 100%);
  padding: 60px 20px;
}
.regions-inner { max-width: 800px; margin: 0 auto; }
.region-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 12px;
}
.region-row span { font-weight: 600; color: #fff; }
.region-row .btn-region {
  background: rgba(0, 255, 200, 0.1);
  color: #00ffc8;
  padding: 7px 16px;
  border-radius: 18px;
  font-size: 13px;
  border: 1px solid rgba(0,255,200,0.3);
}

/* Testimonial */
.testimonial {
  background: linear-gradient(160deg, #14163a 0%, #0d0f24 100%);
  padding: 50px 30px;
  border-radius: 18px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid rgba(0,255,200,0.2);
}
.testimonial-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #00ffc8;
}
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial p {
  max-width: 600px;
  margin: 0 auto 14px;
  font-style: italic;
  color: #d0d2e6;
}
.testimonial .name {
  font-weight: 700;
  color: #00ffc8;
  font-style: normal;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #14163a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item h4 {
  color: #00ffc8;
  font-size: 16px;
  margin-bottom: 8px;
}
.faq-item p { color: #b8bad0; font-size: 14px; }
.faq-item ul {
  margin-top: 8px;
  padding-left: 20px;
  color: #b8bad0;
  font-size: 14px;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, rgba(0,255,200,0.1), rgba(127,0,255,0.1));
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(0,255,200,0.2);
  border-bottom: 1px solid rgba(0,255,200,0.2);
}
.cta-section h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
.cta-section p {
  color: #b8bad0;
  max-width: 600px;
  margin: 0 auto 24px;
}

/* Footer */
footer {
  background: #07081a;
  padding: 50px 20px 24px;
  border-top: 1px solid rgba(0,255,200,0.1);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h4 {
  color: #00ffc8;
  font-size: 16px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 8px;
  color: #9c9eb5;
  font-size: 14px;
}
.footer-col ul li a:hover { color: #00ffc8; }
.footer-col p { color: #9c9eb5; font-size: 14px; margin-bottom: 8px; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #7a7c95;
  font-size: 13px;
}
.footer-bottom strong { color: #ff6b6b; }

@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 24px; }
  nav ul { gap: 14px; font-size: 14px; }
  .nav-wrap { padding: 12px 16px; }
  .logo { font-size: 22px; }
  .btn { padding: 7px 14px; font-size: 13px; }
  section { padding: 45px 16px; }
}
.how-num img{width:100%;height:100%;object-fit:cover;object-position:center}