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

:root {
  --forest: #1a3c28;
  --forest-deep: #0f261a;
  --amber: #d4920a;
  --amber-light: #f0c850;
  --sage: #e8efe5;
  --leaf: #c5d8bc;
  --wood: #4a3c2e;
  --earth: #6b5d4a;
  --stone: #9e9285;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Cabin', sans-serif; background: var(--sage); color: var(--wood); line-height: 1.8; }

.o-head { background: var(--forest-deep); position: sticky; top: 0; z-index: 1000; }
.o-head-in { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; }
.o-logo { font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 700; text-decoration: none; color: var(--amber); }
.o-logo .alt { color: var(--leaf); }
.o-nav { list-style: none; display: flex; gap: 1.8rem; }
.o-nav a { color: var(--leaf); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.o-nav a:hover { color: var(--amber); }
.o-burg { display: none; background: none; border: 1px solid var(--amber); color: var(--amber); padding: 4px 10px; cursor: pointer; border-radius: 4px; font-size: 1.1rem; }

.o-hero { background: linear-gradient(170deg, var(--forest), var(--forest-deep)); padding: 5rem 2rem; position: relative; overflow: hidden; }
.o-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(212,146,10,0.06); }
.o-hero-in { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.o-hero h1 { font-family: 'Lora', serif; font-size: 3rem; font-weight: 700; color: var(--sage); margin-bottom: 1.2rem; max-width: 700px; }
.o-hero h1 .gold { color: var(--amber); }
.o-hero p { color: var(--leaf); font-size: 1.1rem; max-width: 600px; margin-bottom: 2rem; }
.o-btn { display: inline-block; background: var(--amber); color: var(--forest-deep); padding: 0.85rem 2.2rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.o-btn:hover { background: var(--amber-light); }
.o-badges { display: flex; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.o-badge { background: rgba(212,146,10,0.15); border: 1px solid rgba(212,146,10,0.3); color: var(--amber-light); padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

.o-sec { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; }
.o-sec h2 { font-family: 'Lora', serif; font-size: 2rem; color: var(--forest); text-align: center; margin-bottom: 0.5rem; }
.o-sec .sub { text-align: center; color: var(--stone); margin-bottom: 3rem; }

.o-game { max-width: 850px; margin: 0 auto 3rem; border: 3px solid var(--forest); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(26,60,40,0.15); }
.o-game iframe { width: 100%; height: 500px; border: none; display: block; }

.o-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.o-card { background: #fff; border: 1px solid var(--leaf); border-radius: 12px; padding: 2rem; text-align: center; transition: box-shadow 0.3s; }
.o-card:hover { box-shadow: 0 6px 20px rgba(26,60,40,0.1); }
.o-card-ico { font-size: 2.2rem; margin-bottom: 0.7rem; }
.o-card h3 { font-family: 'Lora', serif; color: var(--forest); font-size: 1.05rem; margin-bottom: 0.5rem; }
.o-card p { font-size: 0.9rem; color: var(--stone); }

.o-bar { background: var(--forest); padding: 1.3rem 2rem; text-align: center; }
.o-bar p { color: var(--amber-light); font-weight: 600; font-size: 0.93rem; }

.o-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.o-box { background: #fff; border-left: 4px solid var(--amber); padding: 2rem; border-radius: 0 12px 12px 0; }
.o-box h3 { font-family: 'Lora', serif; color: var(--forest); margin-bottom: 0.6rem; }
.o-box p { font-size: 0.93rem; color: var(--earth); }

.o-text { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.o-text h1 { font-family: 'Lora', serif; font-size: 2.4rem; color: var(--forest); margin-bottom: 2rem; }
.o-text h2 { font-family: 'Lora', serif; font-size: 1.4rem; color: var(--amber); margin: 2rem 0 0.8rem; }
.o-text p { margin-bottom: 1rem; }
.o-text ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.o-text ul li { margin-bottom: 0.4rem; }

.o-play-h { text-align: center; padding: 3rem 2rem 1rem; }
.o-play-h h1 { font-family: 'Lora', serif; font-size: 2.3rem; color: var(--forest); }
.o-play-note { text-align: center; color: var(--stone); max-width: 600px; margin: 0.8rem auto 2rem; }

.o-foot { background: var(--forest-deep); padding: 2.5rem 2rem; text-align: center; }
.o-flinks { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.o-flinks a { color: var(--leaf); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.o-flinks a:hover { color: var(--amber); }
.o-fcopy { color: var(--stone); font-size: 0.78rem; margin-top: 1rem; }

.o-age { position: fixed; inset: 0; background: rgba(15,38,26,0.97); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.o-age-box { background: var(--sage); border: 3px solid var(--forest); border-radius: 16px; padding: 2.5rem; text-align: center; max-width: 430px; width: 90%; }
.o-age-box h2 { font-family: 'Lora', serif; color: var(--forest); font-size: 1.6rem; margin-bottom: 0.8rem; }
.o-age-box p { color: var(--earth); margin-bottom: 1.5rem; }
.o-age-btns { display: flex; gap: 1rem; justify-content: center; }
.o-y { background: var(--forest); color: var(--sage); border: none; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 700; cursor: pointer; font-family: 'Cabin', sans-serif; }
.o-n { background: transparent; border: 2px solid var(--stone); color: var(--stone); padding: 0.75rem 2rem; border-radius: 50px; font-weight: 500; cursor: pointer; font-family: 'Cabin', sans-serif; }
.o-deny { display: none; color: #c0392b; font-weight: 700; margin-top: 1rem; }

@media (max-width: 900px) { .o-grid { grid-template-columns: 1fr 1fr; } .o-duo { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .o-burg { display: block; }
  .o-nav { display: none; position: absolute; top: 64px; left: 0; width: 100%; background: var(--forest-deep); flex-direction: column; padding: 1rem 2rem; }
  .o-nav.on { display: flex; }
  .o-nav a { padding: 0.6rem 0; display: block; }
  .o-hero h1 { font-size: 2.2rem; }
  .o-grid { grid-template-columns: 1fr; }
  .o-game iframe { height: 380px; }
}
@media (max-width: 480px) { .o-hero h1 { font-size: 1.8rem; } .o-game iframe { height: 280px; } }
