@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Lora:wght@400;600;700&display=swap');

:root {
  --teal: #0a4d3c;
  --teal-light: #1a8a6a;
  --gold: #ffd700;
  --mint: #e0f5ee;
  --white: #fff;
  --dark: #0c1f18;
  --text: #1a2e28;
  --muted: #5a7a70;
  --border: rgba(10,77,60,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--mint);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3 { font-family: 'Lora', serif; }

a { color: var(--teal-light); text-decoration: none; }
a:hover { color: var(--teal); }

.v-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 60px;
  background: var(--teal);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}

.v-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.v-nav { display: flex; gap: 1.5rem; list-style: none; }
.v-nav a { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.v-nav a:hover { color: var(--gold); }

.v-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; }
.v-burger span { width: 24px; height: 2px; background: var(--gold); display: block; }

.v-mobile { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--teal); z-index: 999; flex-direction: column; padding: 0.5rem 2rem 1rem; }
.v-mobile.open { display: flex; }
.v-mobile a { color: #fff; padding: 0.6rem 0; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 768px) { .v-nav { display: none; } .v-burger { display: flex; } }

.v-hero {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--dark), var(--teal));
  color: #fff;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.v-hero-inner { max-width: 700px; }
.v-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: var(--gold); margin-bottom: 1rem; }
.v-hero p { opacity: 0.85; font-size: 1.05rem; margin-bottom: 2rem; }

.btn-field {
  display: inline-block; padding: 0.8rem 2.2rem;
  background: var(--gold); color: var(--dark);
  font-weight: 700; border-radius: 50px; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.btn-field:hover { background: #ffea00; transform: translateY(-2px); color: var(--dark); }

.v-tags {
  display: flex; justify-content: center; gap: 1.5rem; padding: 1.5rem;
  background: var(--white); border-bottom: 1px solid var(--border); flex-wrap: wrap;
}
.v-tag { display: flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.85rem; color: var(--teal); }
.v-tag-dot { width: 8px; height: 8px; border-radius: 50%; }
.vtd-r { background: #e53935; }
.vtd-g { background: #43a047; }
.vtd-a { background: #fb8c00; }

.v-game { padding: 3.5rem 2rem; text-align: center; }
.v-game h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1.5rem; color: var(--text); }
.v-game-wrap {
  max-width: 960px; margin: 0 auto; border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border); box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.v-game-wrap iframe { width: 100%; height: 580px; border: none; display: block; }
@media (max-width: 768px) { .v-game-wrap iframe { height: 370px; } }

.v-features {
  padding: 3.5rem 2rem; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.v-feat { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.8rem; text-align: center; }
.v-feat .vfi { font-size: 2rem; margin-bottom: 0.8rem; }
.v-feat h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--teal); }
.v-feat p { color: var(--muted); font-size: 0.9rem; }

.v-about { padding: 3.5rem 2rem; background: var(--dark); color: #fff; text-align: center; }
.v-about .inner { max-width: 780px; margin: 0 auto; }
.v-about h2 { color: var(--gold); font-size: 1.8rem; margin-bottom: 1.2rem; }
.v-about p { opacity: 0.8; margin-bottom: 1rem; }

.v-page {
  margin-top: 60px; padding: 3rem 2rem; max-width: 860px;
  margin-left: auto; margin-right: auto; min-height: calc(100vh - 60px - 140px);
}
.v-page h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; color: var(--text); }
.v-page h2 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; color: var(--teal); }
.v-page p { color: var(--muted); margin-bottom: 1rem; }
.v-page ul { margin: 0.5rem 0 1rem 1.5rem; color: var(--muted); }
.v-page li { margin-bottom: 0.3rem; }

.v-tip { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin: 2rem auto; max-width: 960px; }
.v-tip h3 { color: var(--teal); margin-bottom: 0.3rem; }
.v-tip p { color: var(--muted); font-size: 0.9rem; }

.v-footer { background: var(--teal); color: rgba(255,255,255,0.5); padding: 2rem; text-align: center; }
.v-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.v-footer-links a { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.v-footer-links a:hover { color: var(--gold); }
.v-footer-resp { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
.v-footer-resp p { font-size: 0.75rem; opacity: 0.45; margin-bottom: 0.4rem; }
.v-footer-resp a { color: var(--gold); margin: 0 0.4rem; font-size: 0.78rem; }

.v-age { position: fixed; inset: 0; background: rgba(12,31,24,0.96); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.v-age-box { background: var(--white); border-radius: 14px; padding: 2.5rem; text-align: center; max-width: 400px; width: 90%; }
.v-age-box h2 { color: var(--teal); font-size: 1.3rem; margin-bottom: 0.7rem; }
.v-age-box p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.v-age-btns { display: flex; gap: 0.8rem; justify-content: center; }
.v-age-btns button { padding: 0.6rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.3s; }
.v-yes { background: var(--teal); color: var(--white); }
.v-yes:hover { background: var(--teal-light); }
.v-no { background: #e2e8f0; color: var(--text); }
.v-no:hover { background: #ccc; }

.v-blocked { position: fixed; inset: 0; background: var(--dark); z-index: 10001; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 2rem; }
.v-blocked h2 { color: #e53935; font-size: 1.8rem; margin-bottom: 0.8rem; }
