@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700;900&family=Rubik:wght@300;400;500;600&display=swap');

:root {
  --charcoal: #1a1a2e;
  --surface: #222240;
  --lime: #84cc16;
  --lime-light: #a3e635;
  --slate: #94a3b8;
  --chalk: #f1f5f9;
  --deep-lime: #4d7c0f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Rubik', sans-serif;
  background: var(--charcoal);
  color: var(--chalk);
  line-height: 1.75;
}

.v-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  background: rgba(26, 26, 46, 0.97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  border-bottom: 2px solid var(--deep-lime);
}

.v-logo {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--lime);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.v-logo svg { width: 30px; height: 30px; }

.v-nav { display: flex; list-style: none; gap: 1.5rem; }

.v-nav a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.v-nav a:hover { color: var(--lime-light); }

.v-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.v-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--lime);
  transition: all 0.3s;
}

.v-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.v-toggle.active span:nth-child(2) { opacity: 0; }
.v-toggle.active span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* Grid Hero */
.grid-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  padding: 130px 3rem 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.grid-hero-text h1 {
  font-family: 'Archivo', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--lime-light);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.grid-hero-text p {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.btn-lime {
  display: inline-block;
  padding: 14px 36px;
  background: var(--lime);
  color: var(--charcoal);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.btn-lime:hover { background: var(--lime-light); transform: translateY(-2px); }

.grid-hero-visual {
  background: var(--surface);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(132, 204, 22, 0.1);
}

.grid-hero-visual svg { width: 160px; height: 160px; opacity: 0.25; }

/* Info Strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border-top: 3px solid var(--lime);
}

.info-strip-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(132, 204, 22, 0.08);
}

.info-strip-item:last-child { border-right: none; }

.info-strip-item .isi-icon { font-size: 2rem; margin-bottom: 0.7rem; }

.info-strip-item h3 {
  font-family: 'Archivo', sans-serif;
  color: var(--lime);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.info-strip-item p { color: var(--slate); font-size: 0.88rem; }

/* Game Block */
.game-block {
  padding: 5rem 2rem;
  text-align: center;
}

.game-block h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 2rem;
  color: var(--lime-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.game-viewport {
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid rgba(132, 204, 22, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.game-viewport iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 3rem;
  background: var(--surface);
}

.card-g {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 2rem;
  border-left: 3px solid var(--lime);
}

.card-g h3 {
  font-family: 'Archivo', sans-serif;
  color: var(--lime-light);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-g p { color: var(--slate); font-size: 0.92rem; }

/* Text */
.v-text {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.v-text h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.8rem;
  color: var(--lime-light);
  margin-bottom: 1.2rem;
}

.v-text p { color: var(--slate); margin-bottom: 1rem; font-size: 1.05rem; }

/* Footer */
.v-footer {
  background: var(--surface);
  border-top: 2px solid var(--deep-lime);
  padding: 2.5rem 2rem;
  text-align: center;
}

.vf-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.vf-links a { color: var(--lime); text-decoration: none; font-size: 0.88rem; }
.vf-links a:hover { color: var(--lime-light); }
.v-footer p { color: var(--slate); font-size: 0.8rem; }

/* Age */
.age-shield {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-shield-box {
  background: var(--surface);
  border: 2px solid var(--lime);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.age-shield-box h2 {
  font-family: 'Archivo', sans-serif;
  color: var(--lime);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.age-shield-box p { color: var(--slate); margin-bottom: 2rem; }

.as-btns { display: flex; gap: 1rem; justify-content: center; }

.as-btns button {
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
}

.as-btns .as-yes { background: var(--lime); color: var(--charcoal); }
.as-btns .as-no { background: transparent; border: 1px solid var(--slate); color: var(--slate); }
.as-btns button:hover { opacity: 0.9; }

/* Page */
.v-page {
  padding: 110px 3rem 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.v-page h1 {
  font-family: 'Archivo', sans-serif;
  font-size: 2.5rem;
  color: var(--lime-light);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.v-page h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  color: var(--lime);
  margin: 2rem 0 0.8rem;
}

.v-page p, .v-page li { color: var(--slate); margin-bottom: 0.8rem; font-size: 1.02rem; }
.v-page ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .v-toggle { display: flex; }

  .v-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 80px 2rem;
    transition: left 0.35s;
    border-right: 2px solid var(--deep-lime);
  }

  .v-nav.open { left: 0; }

  .grid-hero { grid-template-columns: 1fr; padding: 100px 1.5rem 60px; }
  .grid-hero-visual { display: none; }
  .grid-hero-text h1 { font-size: 2.2rem; }
  .info-strip { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .game-viewport iframe { height: 400px; }
  .v-page { padding: 90px 1.5rem 60px; }
}
