@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;800&family=Source+Sans+3:wght@300;400;600&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
:root{--forest:#1a3a2a;--forest-light:#2d5a3f;--gold:#d4af37;--gold-light:#f0d878;--cream:#faf6ee;--text-dark:#1a1a1a;--text-medium:#4a4a3a;--text-light:#7a7a6a}

body{font-family:'Source Sans 3',sans-serif;background:var(--cream);color:var(--text-dark);line-height:1.75}

header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:var(--forest);padding:0 3rem;display:flex;align-items:center;justify-content:space-between;height:72px;box-shadow:0 2px 20px rgba(0,0,0,0.15)}

.logo{font-family:'Playfair Display',serif;font-size:1.7rem;font-weight:800;color:var(--gold);text-decoration:none;letter-spacing:1px}

nav{display:flex;gap:2rem;align-items:center}
nav a{color:var(--cream);text-decoration:none;font-size:0.95rem;font-weight:400;transition:color 0.3s;opacity:0.85}
nav a:hover{color:var(--gold);opacity:1}

.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:5px}
.hamburger span{display:block;width:24px;height:2px;background:var(--gold);transition:0.3s}

.hero-split{margin-top:72px;display:grid;grid-template-columns:1fr 1fr;min-height:85vh}
.hero-left{background:var(--forest);display:flex;flex-direction:column;justify-content:center;padding:4rem 3rem}
.hero-left h1{font-family:'Playfair Display',serif;font-size:3.2rem;font-weight:800;color:var(--cream);margin-bottom:1.5rem;line-height:1.2}
.hero-left p{color:rgba(255,255,255,0.7);font-size:1.15rem;margin-bottom:2rem;max-width:500px}
.hero-right{background:linear-gradient(135deg,var(--forest-light),var(--forest));display:flex;align-items:center;justify-content:center;padding:3rem;position:relative;overflow:hidden}
.hero-right::before{content:'';position:absolute;width:400px;height:400px;border:2px solid rgba(212,175,55,0.15);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%)}
.hero-right::after{content:'';position:absolute;width:300px;height:300px;border:1px solid rgba(212,175,55,0.1);border-radius:50%;top:50%;left:50%;transform:translate(-50%,-50%)}

.notice-badges{display:flex;flex-direction:column;gap:1rem}
.badge{display:flex;align-items:center;gap:0.8rem;background:rgba(212,175,55,0.1);border-left:3px solid var(--gold);padding:0.8rem 1.2rem;border-radius:0 8px 8px 0}
.badge strong{color:var(--gold);font-size:0.85rem;text-transform:uppercase;letter-spacing:1px}
.badge span{color:rgba(255,255,255,0.6);font-size:0.9rem}

.game-area{padding:5rem 3rem;background:#fff}
.game-area h2{font-family:'Playfair Display',serif;font-size:2.2rem;text-align:center;margin-bottom:1rem;color:var(--forest)}
.game-area .subtitle{text-align:center;color:var(--text-light);margin-bottom:2.5rem;font-size:1.05rem}
.game-frame{width:100%;max-width:1000px;margin:0 auto;aspect-ratio:4/3;border-radius:8px;overflow:hidden;box-shadow:0 8px 40px rgba(0,0,0,0.1);border:1px solid #e0dcd0}
.game-frame iframe{width:100%;height:100%;border:none}

.about-strip{padding:5rem 3rem;background:var(--forest);color:var(--cream)}
.about-strip .container{max-width:1000px;margin:0 auto}
.about-strip h2{font-family:'Playfair Display',serif;font-size:2rem;margin-bottom:2rem;color:var(--gold)}
.about-strip p{color:rgba(255,255,255,0.7);margin-bottom:1.2rem;font-size:1.05rem}

.pillars{padding:5rem 3rem;background:var(--cream)}
.pillars h2{font-family:'Playfair Display',serif;font-size:2rem;text-align:center;margin-bottom:3rem;color:var(--forest)}
.pillar-row{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.pillar{text-align:center;padding:2rem 1.5rem;border:1px solid #e0dcd0;border-radius:8px;background:#fff;transition:box-shadow 0.3s}
.pillar:hover{box-shadow:0 4px 20px rgba(0,0,0,0.08)}
.pillar .icon{font-size:2.2rem;margin-bottom:1rem}
.pillar h3{font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--forest);margin-bottom:0.8rem}
.pillar p{color:var(--text-light);font-size:0.9rem}

.page-content{margin-top:92px;padding:3rem;max-width:880px;margin-left:auto;margin-right:auto;min-height:70vh}
.page-content h1{font-family:'Playfair Display',serif;font-size:2.8rem;margin-bottom:2rem;color:var(--forest)}
.page-content h2{font-family:'Playfair Display',serif;font-size:1.4rem;margin:2.5rem 0 1rem;color:var(--forest);border-bottom:1px solid #e0dcd0;padding-bottom:0.5rem}
.page-content p,.page-content li{color:var(--text-medium);margin-bottom:1rem;font-size:1rem}
.page-content ul{padding-left:1.5rem;margin-bottom:1.5rem}
.page-content a{color:var(--forest-light)}

.play-note{background:var(--forest);color:var(--cream);border-radius:8px;padding:1.5rem 2rem;margin:2rem auto;max-width:1000px;font-size:0.95rem}
.play-note strong{color:var(--gold)}

footer{background:var(--forest);border-top:3px solid var(--gold);padding:3rem;text-align:center}
footer p{color:rgba(255,255,255,0.55);font-size:0.85rem;margin-bottom:0.5rem}
footer a{color:var(--gold);text-decoration:none;margin:0 0.6rem;font-size:0.9rem}
footer a:hover{color:var(--gold-light)}
.footer-links{margin-bottom:1.2rem}

.age-overlay{position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,0.88);display:flex;align-items:center;justify-content:center}
.age-box{background:var(--forest);border:2px solid var(--gold);border-radius:12px;padding:3rem;text-align:center;max-width:460px;width:90%}
.age-box h2{font-family:'Playfair Display',serif;color:var(--gold);font-size:1.8rem;margin-bottom:1rem}
.age-box p{color:rgba(255,255,255,0.7);margin-bottom:2rem;font-size:1rem}
.age-box .btn-row{display:flex;gap:1rem;justify-content:center}
.age-box button{padding:0.8rem 2.5rem;border:none;border-radius:6px;font-family:'Source Sans 3',sans-serif;font-size:1rem;cursor:pointer;transition:0.3s;font-weight:600}
.age-box .btn-yes{background:var(--gold);color:var(--forest)}
.age-box .btn-yes:hover{background:var(--gold-light)}
.age-box .btn-no{background:transparent;border:1px solid var(--gold);color:var(--gold)}
.age-box .btn-no:hover{background:rgba(212,175,55,0.1)}

@media(max-width:768px){
  header{padding:0 1.5rem}
  nav{position:fixed;top:72px;left:0;width:100%;flex-direction:column;background:var(--forest);padding:1.5rem;gap:1rem;transform:translateY(-120%);transition:transform 0.3s;box-shadow:0 4px 20px rgba(0,0,0,0.2)}
  nav.open{transform:translateY(0)}
  .hamburger{display:flex}
  .hero-split{grid-template-columns:1fr;min-height:auto}
  .hero-left{padding:3rem 1.5rem}
  .hero-left h1{font-size:2rem}
  .hero-right{display:none}
  .pillar-row{grid-template-columns:1fr 1fr}
  .game-frame{aspect-ratio:3/4}
}

@media(max-width:480px){
  .pillar-row{grid-template-columns:1fr}
}
