@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Cormorant+Garamond:wght@300;400;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --parchment: #f5efe0;
  --bronze: #8b6914;
  --gold: #d4a437;
  --brown: #3e2a0e;
  --dark: #1e1508;
  --text: #4a3a20;
  --muted: #8a7a5e;
  --border: rgba(139,105,20,0.2);
}

html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', serif; background: var(--parchment); color: var(--text); line-height: 1.8; overflow-x: hidden; font-size: 1.05rem; }
h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 600; }
a { color: var(--bronze); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold); }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: linear-gradient(180deg, rgba(62,42,14,0.97), rgba(30,21,8,0.92));
  border-bottom: 2px solid var(--gold);
}
.header-logo { font-family: 'Cinzel', serif; font-weight: 800; font-size: 1.2rem; color: var(--gold); letter-spacing: 3px; }
.header-nav { display: flex; gap: 1.8rem; list-style: none; }
.header-nav a { color: rgba(212,164,55,0.7); font-family: 'Cinzel', serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.header-nav a:hover, .header-nav a.active { color: var(--gold); }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.ham span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:768px) {
  .ham { display: flex; }
  .header-nav {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(30,21,8,0.97);
    flex-direction: column; padding: 1.5rem 2rem;
    transform: translateY(-120%); transition: 0.35s;
  }
  .header-nav.open { transform: translateY(0); }
}

.grand-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 110px 2rem 4rem;
  background:
    radial-gradient(ellipse at center, rgba(212,164,55,0.08) 0%, transparent 65%),
    linear-gradient(180deg, var(--parchment) 0%, #ede4ce 100%);
}
.grand-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); color: var(--brown); margin-bottom: 0.8rem; }
.grand-hero h1 em { font-style: normal; color: var(--gold); }
.grand-hero .lead { max-width: 620px; font-size: 1.2rem; color: var(--muted); margin-bottom: 2.5rem; }
.mythbtn { display: inline-block; padding: 0.85rem 2.4rem; background: var(--bronze); color: var(--parchment); font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: 1px; border-radius: 2px; border: none; cursor: pointer; transition: 0.3s; text-transform: uppercase; font-size: 0.85rem; }
.mythbtn:hover { background: var(--gold); color: var(--dark); }
.mythbtn-outline { background: transparent; border: 2px solid var(--bronze); color: var(--bronze); }
.mythbtn-outline:hover { background: var(--bronze); color: var(--parchment); }

.ornament { text-align: center; padding: 2rem 0; color: var(--gold); font-size: 1.5rem; letter-spacing: 8px; }

.trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 1200px; margin: 0 auto;
}
@media(max-width:768px) { .trio { grid-template-columns: 1fr; } }
.trio-item {
  padding: 3rem 2rem; text-align: center;
  border: 1px solid var(--border);
}
.trio-item .sym { font-size: 2.2rem; margin-bottom: 0.6rem; }
.trio-item h3 { font-size: 1rem; color: var(--bronze); margin-bottom: 0.5rem; }
.trio-item p { font-size: 0.95rem; color: var(--muted); }

.game-showcase {
  padding: 4rem 2rem; text-align: center;
  background: linear-gradient(180deg, var(--parchment), #ede4ce);
}
.game-showcase h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--brown); margin-bottom: 1.5rem; }
.game-box {
  width: 100%; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/10; border-radius: 4px; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 40px rgba(139,105,20,0.15);
}
.game-box iframe { width: 100%; height: 100%; border: none; }

.scroll-text {
  max-width: 800px; margin: 0 auto; padding: 4rem 2rem;
}
.scroll-text h3 { color: var(--bronze); font-size: 1.1rem; margin-bottom: 0.6rem; }
.scroll-text p { color: var(--muted); margin-bottom: 1.5rem; }

.content-area { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.content-area h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; color: var(--brown); }
.content-area p, .content-area li { color: var(--muted); margin-bottom: 1rem; font-size: 1rem; }
.content-area ul { padding-left: 1.5rem; }

.pg-banner {
  padding: 130px 2rem 3rem; text-align: center;
  background: linear-gradient(180deg, var(--parchment), #ede4ce);
}
.pg-banner h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--brown); }

.site-foot {
  margin-top: 4rem; padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  text-align: center; background: var(--dark);
}
.foot-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.8rem; }
.foot-links a { color: rgba(212,164,55,0.6); font-size: 0.85rem; }
.foot-links a:hover { color: var(--gold); }
.site-foot p { color: rgba(212,164,55,0.4); font-size: 0.78rem; }

.age-wall {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(30,21,8,0.92);
  display: flex; align-items: center; justify-content: center;
}
.age-scroll {
  background: var(--parchment); border: 3px solid var(--gold); border-radius: 4px;
  padding: 3rem 2.5rem; text-align: center; max-width: 440px; width: 90%;
}
.age-scroll h2 { font-size: 1.4rem; color: var(--brown); margin-bottom: 0.8rem; }
.age-scroll p { color: var(--muted); margin-bottom: 2rem; }
.age-acts { display: flex; gap: 1rem; justify-content: center; }
.age-acts .mythbtn { min-width: 120px; }
.age-wall.hidden { display: none; }
