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

html {
  scroll-behavior: smooth;
}

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

:root {
  --blue: #006cff;
  --blue2: #0a84ff;
  --muted: rgba(255,255,255,.48);
  --line: rgba(255,255,255,.08);
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 36px));
  height: 72px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 22px;
  background: rgba(8,13,22,.52);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 950;
  transform: rotate(-10deg);
}

.nav-links {
  display: flex;
  gap: 10px;
  padding: 6px;
  background: rgba(255,255,255,.03);
  border-radius: 999px;
}

.nav-links a {
  padding: 14px 24px;
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  font-weight: 800;
  font-size: 14px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-link {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  min-height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #020202 0%, rgba(2,2,2,.84) 38%, rgba(2,2,2,.45) 70%, #020202 100%),
    linear-gradient(180deg, rgba(2,2,2,.15) 0%, #020202 92%),
    url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  opacity: .58;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 80px;
}

.hero-text {
  position: relative;
  z-index: 10;
}

.eyebrow {
  color: rgba(255,255,255,.5);
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

h1 {
  max-width: 620px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 950;
}

.roblox-word {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.tilt-square {
  display: inline-block;
  width: .55em;
  height: .55em;
  border: .15em solid #fff;
  transform: rotate(14deg);
}

.spark {
  filter: drop-shadow(0 0 24px rgba(255,255,255,.34));
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 18px;
  margin-top: 28px;
  font-weight: 650;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.35);
}

.stat-mini {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.stat-mini strong {
  color: var(--blue2);
  font-size: 22px;
  font-weight: 950;
}

.stat-mini span {
  color: rgba(255,255,255,.46);
  font-size: 12px;
  font-weight: 800;
}

.divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

/* HERO SLIDER */
.hero-showcase {
  position: relative;
  width: 560px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  width: 540px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 35px 120px rgba(0,0,0,.65);
  transition: .65s cubic-bezier(.22,1,.36,1);
  opacity: 0;
  transform: scale(.85) translateX(80px);
  pointer-events: none;
}

.slide.active-slide {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 5;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.88));
  z-index: 1;
}

.game-info {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
}

.game-info h3 {
  font-size: 30px;
  font-weight: 950;
}

.game-info p {
  margin-top: 6px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.project-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.project-status.development {
  background: rgba(0,108,255,.12);
  color: #6eb2ff;
}

.project-status.development::before {
  background: #0a84ff;
  box-shadow: 0 0 12px #0a84ff;
}

.project-status.soon {
  background: rgba(255,170,0,.12);
  color: #ffcb66;
}

.project-status.soon::before {
  background: #ffb700;
}

.hero-discord-btn {
  margin-top: 14px;
  display: inline-flex;
  height: 44px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.dots {
  position: absolute;
  right: 40px;
  bottom: 12px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-weight: 900;
  cursor: pointer;
}

.dot.active {
  background: var(--blue);
  color: #fff;
}

/* PARTNERS */
.partners {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 30px 0;
  background: #030303;
}

.partner-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 48px;
  align-items: center;
}

.partner-title {
  color: rgba(255,255,255,.46);
  font-weight: 700;
}

.logos {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  opacity: .48;
}

.logos span {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 950;
}

/* GAMES */
.section {
  padding: 110px 0 38px;
}

.intro {
  max-width: 720px;
}

h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: .95;
  letter-spacing: -.07em;
}

.intro p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.ticker {
  margin: 76px 0 42px;
  display: flex;
  gap: 54px;
  color: rgba(255,255,255,.42);
  font-weight: 950;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.ticker span::after {
  content: "◆";
  color: var(--blue);
  margin-left: 54px;
}

.game-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.showcase-game {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 320px;
  background: #070707;
}

.showcase-game img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.showcase-game::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.88));
  z-index: 1;
}

.showcase-content {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  padding-right: 28px;
}

.showcase-content h3 {
  font-size: 42px;
  font-weight: 950;
  margin-bottom: 12px;
}

.showcase-content p {
  max-width: 420px;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
  margin-bottom: 22px;
}

.game-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.game-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 800;
}

/* FOOTER */
footer {
  margin-top: 70px;
  padding: 90px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-grid p,
footer a {
  color: rgba(255,255,255,.48);
  line-height: 1.55;
}

.footer-title {
  color: rgba(255,255,255,.34);
  font-weight: 950;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 24px;
}

.footer-links {
  display: grid;
  gap: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.copyright {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.25);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 950px) {
  .nav-links,
  .nav-actions .icon-link {
    display: none;
  }

  .hero {
    padding: 160px 0 90px;
  }

  .partner-row,
  .game-showcase-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logos {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  h1 {
    font-size: 48px;
  }

  .hero-stats,
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide {
    width: 100%;
    height: 220px;
  }

  .hero-showcase {
    height: 330px;
  }

  .dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
  }
}