/* MythoVoryVoryx - Unique Design 4: Burgundy/copper full-width stacked layout */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --burgundy: #6B1D3A;
  --wine: #8B2E50;
  --copper: #D4956A;
  --copper-light: #E8B98A;
  --cream: #FDF6EE;
  --dark: #2A0F1A;
  --text: #3D1A28;
  --text-soft: #8A6B76;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 6px 28px rgba(107,29,58,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img, svg { max-width: 100%; display: block; }

/* NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(42,15,26,0.94);
  backdrop-filter: blur(12px);
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.navbar .brand { height: 35px; }

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar-links a {
  color: var(--copper-light);
  font-weight: 600;
  font-size: 0.92rem;
}

.navbar-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--copper);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO - Full width stacked */
.hero-stack {
  margin-top: 66px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--burgundy) 50%, var(--wine) 100%);
  text-align: center;
  padding: 5rem 2rem 3rem;
  color: var(--white);
}

.hero-stack h1 {
  font-family: 'Lora', serif;
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-stack h1 em {
  font-style: normal;
  color: var(--copper);
}

.hero-stack > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-game-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.hero-game-wrap iframe {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  color: var(--dark);
  font-weight: 700;
  border-radius: 50px;
  font-size: 1rem;
  transition: transform 0.3s;
}

.hero-cta:hover { transform: translateY(-2px); }

/* NOTICES */
.notices-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.notice-tile {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-bottom: 4px solid var(--copper);
  transition: transform 0.3s;
}

.notice-tile:hover { transform: translateY(-4px); }

.notice-tile .tile-icon { font-size: 2.6rem; margin-bottom: 1rem; }

.notice-tile h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}

.notice-tile p { color: var(--text-soft); font-size: 0.95rem; }

/* DIVIDER BANNER */
.divider-banner {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem;
}

.divider-banner h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: 0.8rem;
}

.divider-banner p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.7);
}

/* CONTENT BLOCKS */
.content-blocks {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-blocks h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--burgundy);
}

.c-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.c-block .c-icon { font-size: 2.2rem; flex-shrink: 0; }

.c-block h3 {
  font-family: 'Lora', serif;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.c-block p { color: var(--text-soft); font-size: 0.95rem; }

/* TEXT PAGES */
.page-body {
  margin-top: 66px;
  padding: 4rem 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - 66px - 170px);
}

.page-body h1 {
  font-family: 'Lora', serif;
  font-size: 2.6rem;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.page-body h2 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--wine);
  margin: 2rem 0 0.7rem;
}

.page-body p { margin-bottom: 1rem; }
.page-body ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.page-body li { color: var(--text-soft); margin-bottom: 0.3rem; }

/* PLAY */
.play-zone {
  margin-top: 66px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: calc(100vh - 66px - 170px);
}

.play-zone h1 {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
}

.play-zone > p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--text-soft);
}

.play-zone iframe {
  width: 100%;
  max-width: 960px;
  height: 580px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* FOOTER */
.page-footer {
  background: var(--dark);
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
  color: rgba(255,255,255,0.5);
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.foot-links a {
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 600;
}

.foot-links a:hover { color: var(--copper-light); }

.page-footer p { font-size: 0.82rem; }

/* AGE GATE */
.age-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(42,15,26,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-screen.hidden { display: none; }

.age-prompt {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}

.age-prompt h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
}

.age-prompt p {
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.age-choices { display: flex; gap: 1rem; justify-content: center; }

.age-choices button {
  padding: 0.75rem 2.4rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.age-choices button:hover { transform: scale(1.05); }

.btn-enter {
  background: linear-gradient(135deg, var(--burgundy), var(--wine));
  color: var(--white);
}

.btn-leave {
  background: #E8D5D5;
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-stack h1 { font-size: 2.4rem; }
  .hero-game-wrap iframe { height: 340px; }
  .notices-row { flex-direction: column; align-items: center; }
  .c-block { flex-direction: column; }
  .play-zone iframe { height: 400px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .navbar-links {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: rgba(42,15,26,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }
  .navbar-links.open { transform: translateY(0); }
}
