body{
  margin:0;
  font-family:Inter,sans-serif;
  background:#070A12;
  color:white;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:20px 0;

  position:sticky;
  top:0;
  z-index:100;

  backdrop-filter:blur(14px);

  background:
    rgba(7,10,18,.75);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:10px;
  background:linear-gradient(135deg,#00D9FF,#8B5CFF);
}

.brand-name strong{
  display:block;
  font-size:18px;
}

.brand-name span{
  color:#9CA3B8;
  font-size:13px;
}

.nav-links{
  display:flex;
  gap:12px;
  align-items:center;
}

.nav-links a{
  color:white;
  text-decoration:none;
}

.btn{
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;

  transition:
    transform .15s ease,
    opacity .15s ease,
    box-shadow .2s ease;
}

.btn:hover{
  transform:translateY(-2px);

  box-shadow:
    0 0 20px rgba(0,217,255,.35);
}

.btn-primary{
  background:linear-gradient(135deg,#00D9FF,#8B5CFF);
  color:black;
}

.btn-ghost{
  border:1px solid rgba(255,255,255,.1);
  color:white;
}

.hero{
  padding:80px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.hero h1{
  font-size:52px;
  margin-bottom:20px;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #00D9FF,
      #8B5CFF
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  color:#9CA3B8;
  line-height:1.7;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin-top:25px;
}

.search-panel{
  background:#101525;
  padding:24px;
  border-radius:20px;

  border:1px solid rgba(255,255,255,.06);

  box-shadow:
    0 0 40px rgba(139,92,255,.08);
}

.search{
  display:flex;
  gap:10px;
}

.search input{
  flex:1;
  padding:14px;
  border:none;
  border-radius:10px;
  background:#171B2E;
  color:white;
}

.search input:focus{
  outline:none;

  box-shadow:
    0 0 0 3px rgba(0,217,255,.18);
}

.section{
  padding:40px 0;
}

.section-header{
  margin-bottom:20px;
}

.grid{
  display:grid;
  gap:20px;
}

.cards3{
  grid-template-columns:repeat(3,1fr);
}

.card{
  background:#101525;
  padding:20px;
  border-radius:18px;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border .2s ease;
}

.card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 0 25px rgba(0,217,255,.12),
    0 0 50px rgba(139,92,255,.10);

  border:1px solid rgba(0,217,255,.18);
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.card-title{
  font-size:20px;
}

.badge{
  background:#171B2E;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
}

.badge-dot{
  width:8px;
  height:8px;
  background:#00D9FF;
  border-radius:50%;
  display:inline-block;
  margin-right:6px;
}

.card-meta{
  color:#9CA3B8;
  margin:18px 0;
}

.footer{
  padding:60px 0;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.links{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.links a{
  color:#9CA3B8;
  text-decoration:none;
}

.game-img{
  width:100%;
  height:180px;

  object-fit:cover;

  border-radius:14px;

  margin-bottom:18px;

  transition:
    transform .2s ease;
}

.card:hover .game-img{
  transform:scale(1.03);
}

@media(max-width:900px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .cards3{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .nav{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:42px;
  }

}