*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#050510;
  color:white;
  font-family:Arial, sans-serif;
  overflow-x:hidden;
}

header{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;

  background:
    radial-gradient(circle at center,
    #151540 0%,
    #050510 70%);
}

header h1{
  font-size:70px;
  color:#ffe600;
  text-shadow:
    0 0 10px #ffe600,
    0 0 20px #ffe600,
    0 0 40px #ff9900;

  margin-bottom:20px;
}

header p{
  font-size:22px;
  color:#cccccc;
  margin-bottom:30px;
}

.play-btn{
  text-decoration:none;
  color:black;
  background:#ffe600;
  padding:16px 36px;
  border-radius:12px;
  font-size:22px;
  font-weight:bold;
  transition:0.3s;
}

.play-btn:hover{
  transform:scale(1.05);
}

.games-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  padding:50px 20px;
  max-width:1200px;
  margin:auto;
}

.game-card{
  background:#101020;
  border:2px solid #2a2aff;
  border-radius:20px;
  padding:30px;
  text-align:center;

  box-shadow:
    0 0 15px rgba(0,0,255,0.3);

  transition:0.3s;
}

.game-card:hover{
  transform:translateY(-5px);
}

.game-card h2{
  color:#ffe600;
  margin-bottom:15px;
}

.game-card p{
  color:#cccccc;
  margin-bottom:20px;
}

.game-card a{
  display:inline-block;
  text-decoration:none;
  background:#00ffcc;
  color:black;
  padding:12px 22px;
  border-radius:10px;
  font-weight:bold;
}

.coming-soon{
  opacity:0.6;
}

footer{
  text-align:center;
  padding:30px;
  color:#999;
}

@media(max-width:700px){

  header h1{
    font-size:42px;
  }

  header p{
    font-size:18px;
  }

  .play-btn{
    font-size:18px;
  }
}