@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Work+Sans:wght@300;400;600;700&display=swap');

:root {
  --earth-brown: #78350f;
  --warm-brown: #92400e;
  --cream: #fef3c7;
  --ivory: #fffbeb;
  --dark-earth: #451a03;
  --text-dark: #422006;
  --text-warm: #78350f;
  --text-soft: #a16207;
  --accent: #b45309;
  --border-warm: #fcd34d;
}

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

body { font-family: 'Work Sans', sans-serif; background: var(--ivory); color: var(--text-dark); line-height: 1.8; }

.ov-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark-earth); height: 62px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem;
}

.ov-brand {
  font-family: 'Lora', serif; font-weight: 700; font-size: 1.3rem;
  color: var(--cream); text-decoration: none; letter-spacing: 0.5px;
}

.ov-nav { display: flex; gap: 1.8rem; }
.ov-nav a { color: rgba(254, 243, 199, 0.7); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.ov-nav a:hover { color: var(--cream); }

.ov-menu-btn { display: none; background: none; border: 1px solid var(--cream); color: var(--cream); padding: 5px 12px; border-radius: 4px; cursor: pointer; font-size: 0.8rem; font-weight: 600; }

/* HERO - FULL WIDTH EARTHY */
.ov-hero {
  background: linear-gradient(160deg, var(--dark-earth) 0%, var(--earth-brown) 50%, var(--warm-brown) 100%);
  color: var(--cream); text-align: center; padding: 7rem 2rem 6rem;
  position: relative;
}

.ov-hero h1 { font-family: 'Lora', serif; font-size: 3.2rem; font-weight: 700; margin-bottom: 1.2rem; }
.ov-hero p { font-weight: 300; font-size: 1.1rem; max-width: 620px; margin: 0 auto 2.5rem; opacity: 0.85; }

.ov-btn {
  display: inline-block; padding: 14px 38px; background: var(--cream); color: var(--dark-earth);
  text-decoration: none; font-weight: 700; font-size: 0.95rem; border-radius: 6px; border: none;
  cursor: pointer; transition: background 0.2s;
}
.ov-btn:hover { background: #fde68a; }

/* NOTICES */
.ov-notice-strip {
  display: flex; justify-content: center; gap: 3rem; padding: 2rem; background: var(--cream); flex-wrap: wrap;
  border-bottom: 2px solid var(--border-warm);
}

.ov-notice { font-size: 0.9rem; color: var(--text-warm); font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }

/* GAME */
.ov-game-section { padding: 5rem 2rem; max-width: 1400px; margin: 0 auto; }

.ov-section-title {
  font-family: 'Lora', serif; font-size: 2rem; font-weight: 700;
  text-align: center; color: var(--dark-earth); margin-bottom: 0.5rem;
}
.ov-section-sub { text-align: center; color: var(--text-soft); margin-bottom: 2.5rem; }

.ov-game-frame {
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border-warm); box-shadow: 0 8px 32px rgba(120, 53, 15, 0.1); background: #000;
}
.ov-game-frame iframe { width: 100%; height: 650px; border: none; display: block; }

/* COLUMNS */
.ov-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }

.ov-col h3 { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--earth-brown); margin-bottom: 0.8rem; }
.ov-col p { color: var(--text-soft); font-weight: 300; }

/* QUOTE */
.ov-quote {
  background: var(--cream); padding: 3rem 2rem; text-align: center;
  border-top: 2px solid var(--border-warm); border-bottom: 2px solid var(--border-warm);
}

.ov-quote blockquote {
  font-family: 'Lora', serif; font-size: 1.4rem; font-style: italic;
  color: var(--earth-brown); max-width: 700px; margin: 0 auto;
}

/* PAGE */
.ov-page { padding: 100px 2rem 60px; max-width: 850px; margin: 0 auto; min-height: 75vh; }
.ov-page h1 { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--dark-earth); margin-bottom: 1.5rem; }
.ov-page h2 { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--earth-brown); margin: 2rem 0 0.8rem; }
.ov-page p { color: var(--text-soft); margin-bottom: 1rem; }
.ov-page ul { color: var(--text-soft); margin: 0.5rem 0 1rem 1.5rem; }
.ov-page ul li { margin-bottom: 0.4rem; }

/* PLAY */
.ov-play { padding: 90px 2rem 60px; max-width: 1400px; margin: 0 auto; }
.ov-play h1 { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; text-align: center; color: var(--dark-earth); margin-bottom: 0.5rem; }
.ov-play-note { text-align: center; color: var(--text-soft); margin-bottom: 2rem; }

/* FOOTER */
.ov-footer { background: var(--dark-earth); color: rgba(254, 243, 199, 0.6); padding: 3rem 2rem; text-align: center; }
.ov-footer-row { margin-bottom: 1rem; }
.ov-footer a { color: var(--cream); text-decoration: none; margin: 0 0.8rem; font-size: 0.85rem; }
.ov-footer a:hover { text-decoration: underline; }
.ov-footer-copy { font-size: 0.75rem; opacity: 0.4; }

/* AGE */
.ov-age-curtain { position: fixed; inset: 0; background: rgba(69, 26, 3, 0.9); display: flex; align-items: center; justify-content: center; z-index: 9999; }

.ov-age-dialog { background: var(--ivory); border-radius: 14px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.ov-age-dialog h2 { font-family: 'Lora', serif; font-size: 1.4rem; color: var(--dark-earth); margin-bottom: 0.8rem; }
.ov-age-dialog p { color: var(--text-soft); margin-bottom: 1.5rem; font-size: 0.9rem; }
.ov-age-btns { display: flex; gap: 0.8rem; justify-content: center; }
.ov-age-yes { padding: 10px 28px; background: var(--accent); color: #fff; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; }
.ov-age-no { padding: 10px 28px; background: #f5f5f4; color: var(--text-soft); border: none; border-radius: 6px; font-weight: 600; cursor: pointer; }

/* MOBILE */
@media (max-width: 768px) {
  .ov-menu-btn { display: block; }
  .ov-nav { position: fixed; top: 62px; left: 0; width: 100%; background: var(--dark-earth); flex-direction: column; padding: 1.5rem 2.5rem; gap: 1rem; transform: translateY(-150%); transition: transform 0.3s; }
  .ov-nav.shown { transform: translateY(0); }
  .ov-hero h1 { font-size: 2rem; }
  .ov-cols { grid-template-columns: 1fr; }
  .ov-game-frame iframe { height: 400px; }
}
@media (max-width: 480px) { .ov-hero h1 { font-size: 1.6rem; } .ov-game-frame iframe { height: 300px; } }
