@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
  --lime: #84cc16;
  --lime-dark: #65a30d;
  --lime-light: #ecfccb;
  --white: #ffffff;
  --bg-soft: #f7fdf0;
  --dark: #1a2e05;
  --text-main: #2d4a0e;
  --text-mid: #5a7c2e;
  --text-light: #8aab5c;
  --border: #d9f0b5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-soft);
  color: var(--text-main);
  line-height: 1.75;
}

.vr-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(132, 204, 22, 0.08);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.vr-logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--lime-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.vr-links { display: flex; gap: 1.8rem; }
.vr-links a { color: var(--text-mid); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.vr-links a:hover { color: var(--lime-dark); }

.vr-ham { display: none; background: none; border: none; cursor: pointer; }
.vr-ham svg { display: block; }

/* HERO - SIDE BY SIDE WITH SHAPE */
.vr-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 60px);
  padding: 2rem 4rem;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.vr-hero-content { flex: 1; }

.vr-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.vr-hero-content h1 em {
  font-style: normal;
  color: var(--lime);
  display: inline;
}

.vr-hero-content p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; font-weight: 300; }

.vr-pill-btn {
  display: inline-block;
  padding: 13px 34px;
  background: var(--lime);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 100px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.vr-pill-btn:hover { background: var(--lime-dark); }

.vr-hero-shape {
  flex: 0.8;
  aspect-ratio: 1;
  max-width: 400px;
  background: var(--lime-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* BADGES */
.vr-badge-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}

.vr-badge {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vr-badge span { color: var(--lime); font-size: 1.1rem; }

/* GAME */
.vr-game-wrap {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.vr-game-wrap h2 { font-size: 1.8rem; font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 0.4rem; }
.vr-game-sub { text-align: center; color: var(--text-light); margin-bottom: 2rem; }

.vr-game-box {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(132, 204, 22, 0.08);
  background: #000;
}

.vr-game-box iframe { width: 100%; height: 640px; border: none; display: block; }

/* CARDS ROW */
.vr-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vr-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.vr-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--lime-dark); margin-bottom: 0.7rem; }
.vr-card p { color: var(--text-mid); font-size: 0.92rem; font-weight: 300; }

/* ABOUT SECTION */
.vr-about {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.vr-about h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.vr-about p { color: var(--text-mid); margin-bottom: 1rem; font-weight: 300; }

/* PAGE */
.vr-page {
  padding: 90px 2rem 50px;
  max-width: 860px;
  margin: 0 auto;
  min-height: 75vh;
}

.vr-page h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; }
.vr-page h2 { font-size: 1.2rem; font-weight: 700; color: var(--lime-dark); margin: 2rem 0 0.7rem; }
.vr-page p { color: var(--text-mid); margin-bottom: 1rem; font-weight: 300; }
.vr-page ul { color: var(--text-mid); margin: 0.5rem 0 1rem 1.5rem; font-weight: 300; }
.vr-page ul li { margin-bottom: 0.3rem; }

/* PLAY */
.vr-play { padding: 80px 2rem 50px; max-width: 1400px; margin: 0 auto; }
.vr-play h1 { font-size: 2rem; font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 0.5rem; }
.vr-play-note { text-align: center; color: var(--text-light); margin-bottom: 2rem; font-weight: 300; }

/* FOOTER */
.vr-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.vr-footer-row { margin-bottom: 1rem; }
.vr-footer a { color: var(--lime); text-decoration: none; margin: 0 0.8rem; font-size: 0.85rem; }
.vr-footer a:hover { text-decoration: underline; }
.vr-footer-copy { font-size: 0.75rem; opacity: 0.4; }

/* AGE */
.vr-age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.vr-age-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.vr-age-card h2 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 0.8rem; }
.vr-age-card p { color: var(--text-mid); margin-bottom: 1.5rem; font-size: 0.9rem; font-weight: 300; }

.vr-age-btns { display: flex; gap: 0.8rem; justify-content: center; }

.vr-age-ok { padding: 10px 28px; background: var(--lime); color: #fff; border: none; border-radius: 100px; font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.vr-age-deny { padding: 10px 28px; background: #f3f4f6; color: var(--text-light); border: none; border-radius: 100px; font-weight: 600; cursor: pointer; font-size: 0.9rem; }

/* MOBILE */
@media (max-width: 768px) {
  .vr-ham { display: block; }
  .vr-links {
    position: fixed; top: 60px; left: 0; width: 100%; background: var(--white);
    flex-direction: column; padding: 1.5rem 2.5rem; gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-120%); transition: transform 0.3s;
  }
  .vr-links.on { transform: translateY(0); }
  .vr-hero { flex-direction: column; padding: 2rem; gap: 2rem; text-align: center; }
  .vr-hero-content h1 { font-size: 2rem; }
  .vr-hero-content p { margin-left: auto; margin-right: auto; }
  .vr-hero-shape { max-width: 250px; }
  .vr-card-row { grid-template-columns: 1fr; }
  .vr-game-box iframe { height: 400px; }
}

@media (max-width: 480px) {
  .vr-hero-content h1 { font-size: 1.6rem; }
  .vr-game-box iframe { height: 300px; }
}
