
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#0b1026;
  color:#fff;
  line-height:1.5;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px 24px;
  background:rgba(8,12,34,0.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.brand{
  font-weight:800;
  font-size:24px;
}
.nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.nav a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}
.hero{
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-position:center;
  background-size:cover;
  padding:60px 20px;
}
.hero-content{
  max-width:900px;
  background:rgba(11,16,38,0.36);
  border:1px solid rgba(255,255,255,0.10);
  padding:34px;
  border-radius:28px;
  backdrop-filter:blur(6px);
}
.hero h1{
  margin:16px 0 12px;
  font-size:56px;
  line-height:1.08;
}
.hero p{
  font-size:20px;
  color:#e8edff;
}
.pill{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:linear-gradient(90deg,#3ea0ff,#7a54ff);
  font-weight:700;
  font-size:14px;
  letter-spacing:.4px;
}
.hero-actions,.button-row{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:24px;
}
.btn{
  display:inline-block;
  text-decoration:none;
  color:#fff;
  padding:14px 22px;
  border-radius:14px;
  font-weight:700;
  border:1px solid rgba(255,255,255,0.14);
}
.btn.primary{background:linear-gradient(90deg,#00b8ff,#7b56ff)}
.btn.secondary{background:rgba(255,255,255,0.08)}
.btn.small{padding:10px 16px;background:rgba(70,105,255,0.18)}
.btn.small.alt{background:rgba(0,185,125,0.16)}
.section{
  padding:70px 20px;
}
.dark-section{
  background:#0d1433;
}
.section-header{
  max-width:900px;
  margin:0 auto 28px;
  text-align:center;
}
.section-header h2{
  margin:14px 0 10px;
  font-size:42px;
}
.section-header p{
  font-size:18px;
  color:#dae3ff;
}
.feature-image{
  display:block;
  width:100%;
  max-width:1300px;
  margin:0 auto 26px;
  border-radius:24px;
  box-shadow:0 10px 34px rgba(0,0,0,0.28);
}
.games-grid{
  max-width:1200px;
  margin:24px auto 0;
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:14px;
}
.game-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:16px 14px;
  text-align:center;
  font-weight:700;
}
.two-column{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.content-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:28px;
}
.content-card h3{
  margin-top:0;
  font-size:30px;
}
.benefits{
  margin:0;
  padding-left:22px;
}
.benefits li{
  margin-bottom:10px;
  color:#e5ebff;
}
.stats-grid{
  max-width:1100px;
  margin:22px auto 0;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.stat-card{
  background:rgba(255,255,255,0.08);
  border-radius:20px;
  padding:22px;
  text-align:center;
  border:1px solid rgba(255,255,255,0.08);
}
.stat-card strong{
  display:block;
  font-size:34px;
  margin-bottom:8px;
}
.stat-card span{
  color:#dfe7ff;
  font-weight:700;
}
.site-footer{
  text-align:center;
  padding:34px 20px;
  background:#070b1d;
  color:#cfd8ff;
}
@media (max-width:1100px){
  .games-grid{grid-template-columns:repeat(3,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .two-column{grid-template-columns:1fr}
}
@media (max-width:700px){
  .site-header{flex-direction:column; align-items:flex-start}
  .hero h1{font-size:38px}
  .hero p{font-size:17px}
  .section-header h2{font-size:32px}
  .games-grid{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:1fr}
}
