@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --sunset: #ea580c;
  --amber: #f59e0b;
  --warm-bg: #fffbeb;
  --dark: #431407;
  --surface: #fff;
  --text: #292524;
  --muted: #78716c;
  --glow: 0 4px 24px rgba(234,88,12,0.1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--warm-bg); color: var(--text); line-height: 1.75; overflow-x: hidden; }
h1, h2, h3 { font-weight: 800; }
a { color: var(--sunset); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--dark); }

.v-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--amber);
}
.v-nav .v-brand { font-weight: 800; font-size: 1.3rem; color: var(--sunset); letter-spacing: 1px; }
.v-nav .v-menu { display: flex; gap: 1.6rem; list-style: none; }
.v-nav .v-menu a { color: var(--muted); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; }
.v-nav .v-menu a:hover, .v-nav .v-menu a.active { color: var(--sunset); }

.v-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.v-toggle span { width: 24px; height: 2px; background: var(--sunset); transition: 0.3s; }
.v-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.v-toggle.open span:nth-child(2) { opacity: 0; }
.v-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  .v-toggle { display: flex; }
  .v-nav .v-menu {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column; padding: 1.5rem 2rem;
    transform: translateY(-120%); transition: 0.35s;
    box-shadow: var(--glow);
  }
  .v-nav .v-menu.open { transform: translateY(0); }
}

.v-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 2rem 4rem; text-align: center;
  background: linear-gradient(170deg, #fef3c7 0%, #fed7aa 40%, var(--warm-bg) 100%);
}
.v-hero-inner { max-width: 720px; }
.v-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--dark); margin-bottom: 1rem; }
.v-hero h1 span { color: var(--sunset); }
.v-hero p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.5rem; }

.v-btn {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--sunset), var(--amber));
  color: #fff; font-weight: 700; font-size: 0.85rem;
  border-radius: 8px; text-transform: uppercase; letter-spacing: 1px;
  transition: 0.3s; border: none; cursor: pointer;
}
.v-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234,88,12,0.25); color: #fff; }
.v-btn-ghost { background: transparent; border: 2px solid var(--sunset); color: var(--sunset); }
.v-btn-ghost:hover { background: var(--sunset); color: #fff; }

.wave-sep { width: 100%; overflow: hidden; line-height: 0; }
.wave-sep svg { display: block; width: 100%; height: 60px; }

.v-notices {
  display: flex; gap: 0; max-width: 100%;
  background: var(--surface);
}
@media(max-width:768px) { .v-notices { flex-direction: column; } }
.v-notice {
  flex: 1; padding: 3rem 2rem; text-align: center;
  border-right: 1px solid rgba(234,88,12,0.08);
}
.v-notice:last-child { border-right: none; }
.v-notice .sym { font-size: 2.2rem; margin-bottom: 0.6rem; }
.v-notice h3 { font-size: 0.95rem; color: var(--sunset); margin-bottom: 0.4rem; font-weight: 700; }
.v-notice p { font-size: 0.9rem; color: var(--muted); }

.v-game-sec { padding: 4rem 2rem; text-align: center; max-width: 1100px; margin: 0 auto; }
.v-game-sec h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--dark); margin-bottom: 1.5rem; }
.v-game-wrap {
  width: 100%; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(234,88,12,0.1);
  border: 2px solid var(--amber);
}
.v-game-wrap iframe { width: 100%; height: 100%; border: none; }

.v-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; padding: 4rem 2rem; max-width: 1100px; margin: 0 auto;
}
.v-col {
  background: var(--surface); border-radius: 12px; padding: 2rem;
  box-shadow: var(--glow); border: 1px solid rgba(234,88,12,0.06);
}
.v-col h3 { color: var(--sunset); font-size: 1rem; margin-bottom: 0.6rem; }
.v-col p { color: var(--muted); font-size: 0.93rem; }

.v-text { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.v-text h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; color: var(--dark); }
.v-text p, .v-text li { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.v-text ul { padding-left: 1.5rem; }

.v-pg-top { padding: 120px 2rem 3rem; text-align: center; background: linear-gradient(170deg, #fef3c7, var(--warm-bg)); }
.v-pg-top h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--dark); }

.v-footer {
  margin-top: 4rem; padding: 2.5rem 2rem;
  border-top: 3px solid var(--amber);
  text-align: center; background: var(--surface);
}
.v-footer .fl { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.8rem; }
.v-footer .fl a { color: var(--muted); font-size: 0.85rem; }
.v-footer p { color: var(--muted); font-size: 0.78rem; }

.v-age {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(67,20,7,0.88);
  display: flex; align-items: center; justify-content: center;
}
.v-age-box {
  background: var(--surface); border: 3px solid var(--amber); border-radius: 12px;
  padding: 3rem 2.5rem; text-align: center; max-width: 430px; width: 90%;
}
.v-age-box h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.8rem; }
.v-age-box p { color: var(--muted); margin-bottom: 2rem; }
.v-age-btns { display: flex; gap: 1rem; justify-content: center; }
.v-age-btns .v-btn { min-width: 120px; }
.v-age.hidden { display: none; }
