* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3,
.navbar,
.navbar a {
  font-family: 'Kode Mono', monospace;
}

body {
  background: #000;
  color: #fff;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;

  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  backdrop-filter: blur(8px);

  z-index: 10;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  opacity: 0.75;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: 0.2s;
}

.navbar nav a:hover {
  opacity: 1;
}

.socials a {
  margin-left: 12px;
  color: #fff;
  opacity: 0.6;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(30%) contrast(1.1) brightness(0.7);
}

/* OVERLAY (cinematic neutro) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.95) 100%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06), transparent 70%);

  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 4px;
  font-weight: 600;
}

.hero p {
  margin-top: 18px;
  font-size: 1.2rem;
  opacity: 0.75;
}

/* SCROLL */
.scroll-indicator {
  display: block;
  margin-top: 60px;
  font-size: 2rem;
  opacity: 0.4;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* SECTIONS */
.section {
  padding: 120px 20px;
  text-align: center;

  background: linear-gradient(to bottom, #000, #0a0a0a);
}

.section h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  letter-spacing: 2px;
}

/* GAME CARD */
.game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.game-card img {
  width: 320px;
  border-radius: 8px;

  transition: 0.4s;
}

.game-card img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* TEXT */
.game-info p {
  max-width: 500px;
  opacity: 0.7;
  line-height: 1.6;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 26px;

  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: none;

  letter-spacing: 1px;
  transition: 0.25s;
}

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

/* CONTACT */
.contact-links a {
  margin: 10px;
  display: inline-block;
  color: #fff;
  opacity: 0.6;
}

.contact-links a:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .game-card {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }

  .game-card img {
    width: 420px;
  }
}