/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: #0b0c12;
  color: #eaeaf2;
}

html {
  scroll-snap-type: y mandatory;
}



/* ===== SCENES ===== */
.panel {
  
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.dark {
  background: #0b0c12;
}

.mid {
  background: #11131b;
}

/* ===== CONTENT ===== */
.content {
  max-width: 1100px;
  margin: 0 auto;
}

.kicker {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  opacity: 0.6;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 10px 0;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

h3.game-title {
  font-size: 1.5rem;
  margin: 10px 0;
}

.lead {
  max-width: 600px;
  opacity: 0.75;
  font-size: 1.2rem;
}

.sub {
  max-width: 650px;
  opacity: 0.7;
}

/* ===== CTA ===== */
.cta {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.cta:hover {
  border-color: white;
  transform: translateY(-2px);
}

/* ===== SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== MEDIA ===== */

img {
  max-width: 100%;
  height: auto;
}

.media .placeholder {
  height: 320px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(120,120,255,0.25), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== TAGS ===== */
.tags {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tags span {
  font-size: 0.8rem;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  opacity: 0.8;
}

/* ===== FUTURE GRID ===== */
.future-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.future-card {
  height: 120px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

/* ===== FOOTER ===== */
.footer {
  min-height: auto;
  padding: 80px 8%;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.7;
}

.links a {
  color: white;
  text-decoration: none;
  margin-right: 64px;
  opacity: 0.7;
}

.links a:hover {
  opacity: 1;
}

/* ===== ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .future-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 80px 6%;
  }
}

/*=====LOGO=====*/
.site-logo {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
}

.site-logo img {
  height: 64px;   /* adjust size */
  width: auto;
  opacity: 0.9;
  transition: 0.3s ease;
}

.site-logo img:hover {
  opacity: 1;
  transform: scale(1.05);
}