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

body{
  background:#020202;
  color:#fff;
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}

.page-bg{
  position:fixed;
  inset:0;

  background:
  radial-gradient(circle at 70% 10%,rgba(0,108,255,.18),transparent 35%),
  radial-gradient(circle at 20% 70%,rgba(0,108,255,.09),transparent 30%);

  pointer-events:none;
}

a{
  text-decoration:none;
  color:inherit;
}

/* NAV */

.games-nav{
  width:min(1180px,calc(100% - 40px));
  height:74px;

  margin:18px auto 0;

  padding:0 18px;

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

  border-radius:999px;

  background:rgba(8,13,22,.55);

  backdrop-filter:blur(20px);

  display:flex;
  align-items:center;
  justify-content:space-between;

  position:sticky;
  top:18px;

  z-index:100;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}

.brand-mark{
  width:38px;
  height:38px;

  border-radius:12px;

  background:#fff;
  color:#000;

  display:grid;
  place-items:center;

  font-weight:950;

  transform:rotate(-10deg);
}

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

.nav-links a{
  padding:13px 22px;
  border-radius:999px;

  color:rgba(255,255,255,.55);

  font-weight:800;
  font-size:14px;
}

.nav-links a.active,
.nav-links a:hover{
  background:rgba(0,108,255,.22);
  color:#fff;
}

/* PAGE */

.games-page{
  width:min(1320px,calc(100% - 48px));
  margin:0 auto;

  padding:44px 0 100px;
}

.back-link{
  color:rgba(255,255,255,.62);
  font-weight:800;
}

/* TOP BANNER */

.top-banner{
  margin-top:34px;

  height:420px;

  border-radius:34px;

  overflow:hidden;

  position:relative;

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

  background:#080808;
}

.top-banner img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

.banner-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(90deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.45) 55%,transparent 100%),
  linear-gradient(180deg,transparent 0%,rgba(0,0,0,.82) 100%);
}

.banner-content{
  position:absolute;

  left:48px;
  bottom:48px;

  max-width:620px;

  z-index:5;
}

.banner-live{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 18px;

  border-radius:999px;

  background:rgba(47,255,116,.14);

  border:1px solid rgba(47,255,116,.28);

  color:#70ff9f;

  font-size:11px;
  font-weight:950;

  letter-spacing:.14em;

  text-transform:uppercase;

  margin-bottom:20px;
}

.banner-live::before{
  content:"";

  width:8px;
  height:8px;

  border-radius:50%;

  background:#38ff7b;

  box-shadow:0 0 14px #38ff7b;
}

.banner-content h1{
  font-size:88px;
  line-height:.9;

  letter-spacing:-.08em;

  font-weight:950;
}

.banner-content p{
  margin-top:18px;

  color:rgba(255,255,255,.7);

  line-height:1.55;

  font-size:18px;
}

.banner-buttons{
  display:flex;
  gap:14px;

  margin-top:28px;
}

.discord-btn,
.roblox-btn{
  height:54px;

  padding:0 26px;

  border-radius:999px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-weight:900;
  font-size:14px;
}

.discord-btn{
  background:#006cff;
  color:#fff;
}

.roblox-btn{
  background:#fff;
  color:#000;
}

/* HERO */

.games-hero{
  margin-top:70px;
  margin-bottom:42px;

  max-width:760px;
}

.eyebrow{
  color:rgba(255,255,255,.45);

  font-size:12px;
  font-weight:900;

  letter-spacing:.24em;

  margin-bottom:18px;
}

.games-hero h2{
  font-size:clamp(58px,8vw,104px);

  line-height:.9;

  letter-spacing:-.08em;

  font-weight:950;
}

.games-hero p{
  margin-top:20px;

  color:rgba(255,255,255,.58);

  font-size:19px;

  line-height:1.5;

  font-weight:650;
}

/* GRID */

.games-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:24px;
}

.game-card{
  min-height:500px;

  border-radius:28px;

  overflow:hidden;

  position:relative;

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

  background:#080808;

  transition:.35s ease;
}

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

  border-color:rgba(0,108,255,.4);

  box-shadow:0 30px 120px rgba(0,108,255,.12);
}

.game-card img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  transition:.45s ease;
}

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

.overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(180deg,transparent 20%,rgba(0,0,0,.92) 80%),
  linear-gradient(90deg,rgba(0,0,0,.5),transparent);
}

.content{
  position:absolute;

  left:28px;
  right:28px;
  bottom:28px;

  z-index:4;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:10px 16px;

  border-radius:999px;

  font-size:11px;
  font-weight:950;

  letter-spacing:.12em;

  text-transform:uppercase;

  margin-bottom:18px;
}

.status.live{
  background:rgba(47,255,116,.14);
  color:#70ff9f;
}

.status.development{
  background:rgba(0,108,255,.16);
  color:#78b8ff;
}

.status.soon{
  background:rgba(255,170,0,.14);
  color:#ffd27a;
}

.content h2{
  font-size:52px;

  line-height:.92;

  letter-spacing:-.06em;

  font-weight:950;

  margin-bottom:12px;
}

.content p{
  color:rgba(255,255,255,.64);

  line-height:1.5;

  font-weight:650;
}

.stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:12px;

  margin-top:22px;
}

.stats div{
  padding:14px;

  border-radius:16px;

  background:rgba(255,255,255,.08);

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

.stats span{
  display:block;

  color:rgba(255,255,255,.45);

  font-size:12px;
  font-weight:800;

  margin-bottom:6px;
}

.stats strong{
  color:#5cff95;

  font-size:18px;
}

.card-actions{
  display:flex;
  gap:10px;

  margin-top:20px;
}

.card-actions a{
  flex:1;

  height:50px;

  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:13px;
  font-weight:900;
}

.card-actions .discord-btn{
  background:#006cff;
}

.card-actions .roblox-btn{
  background:#fff;
  color:#000;
}

/* MOBILE */

@media(max-width:1100px){

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

}

@media(max-width:700px){

  .games-nav{
    height:auto;

    flex-direction:column;

    gap:14px;

    padding:14px;

    border-radius:26px;
  }

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

  .banner-content h1{
    font-size:58px;
  }

  .games-page{
    width:min(100% - 28px,1320px);
  }

  .banner-buttons,
  .card-actions{
    flex-direction:column;
  }

}