@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Fira+Sans:wght@300;400;600;700&display=swap');

:root {
  --slate: #1e293b;
  --slate-dark: #0f172a;
  --amber: #d97706;
  --amber-light: #fbbf24;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --bg: #0c1220;
  --card: #162032;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Fira Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
}

a { color: var(--amber); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--amber-light); }

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: var(--slate-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--amber);
}

.ms-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ms-brand svg { width: 34px; height: 34px; }

.ms-brand span {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--amber);
}

.ms-nav {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.ms-nav a {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ms-nav a:hover { color: var(--amber); }

.ms-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.ms-burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--amber);
  margin: 5px 0;
  transition: 0.3s;
}

.ms-burger.on span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.ms-burger.on span:nth-child(2) { opacity: 0; }
.ms-burger.on span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

.editorial-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.editorial-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  border-bottom: 3px solid var(--amber);
  padding-bottom: 1rem;
}

.editorial-hero .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
  font-style: italic;
}

.editorial-hero .read-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--amber);
  color: var(--bg);
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.editorial-hero .read-btn:hover {
  background: var(--amber-light);
  color: var(--bg);
}

.notice-bar {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--slate);
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
}

.nb-chip {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nb-chip .nc-ico { font-size: 1.1rem; }

.game-editorial {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.game-editorial h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--amber);
  padding-left: 1rem;
}

.ge-frame {
  border: 2px solid var(--slate);
  background: #000;
  max-width: 960px;
}

.ge-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.eg-main p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.eg-sidebar {
  background: var(--card);
  padding: 2rem;
  border-left: 3px solid var(--amber);
}

.eg-sidebar h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.eg-sidebar ul {
  list-style: none;
  padding: 0;
}

.eg-sidebar li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.eg-sidebar li:last-child { border-bottom: none; }

.doc-editorial {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.doc-editorial h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  color: var(--amber);
  margin-bottom: 2.5rem;
  border-bottom: 3px solid var(--amber);
  padding-bottom: 0.8rem;
}

.doc-editorial h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  color: var(--amber);
  margin: 2rem 0 0.7rem;
  border-left: 4px solid var(--amber);
  padding-left: 0.8rem;
}

.doc-editorial p, .doc-editorial li {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.doc-editorial ul { padding-left: 1.5rem; margin-bottom: 1.2rem; }

.play-editorial {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.play-editorial h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.play-editorial > p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.ed-footer {
  background: var(--slate-dark);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 2px solid var(--amber);
  margin-top: 4rem;
}

.ef-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.ef-nav a { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.ef-nav a:hover { color: var(--amber); }

.ef-rg {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(217, 119, 6, 0.1);
}

.ef-rg p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.ef-rg a { margin: 0 0.5rem; font-size: 0.78rem; }

.ef-copy { margin-top: 1rem; font-size: 0.7rem; color: var(--text-muted); opacity: 0.5; }

.age-curtain {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-prompt {
  background: var(--card);
  border: 2px solid var(--amber);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}

.age-prompt h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.age-prompt p { color: var(--text-muted); margin-bottom: 1.5rem; }

.age-choices {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-choices button {
  padding: 0.7rem 2rem;
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid var(--amber);
  transition: 0.3s;
}

.ac-yes { background: var(--amber); color: var(--bg); }
.ac-yes:hover { background: var(--amber-light); }
.ac-no { background: transparent; color: var(--amber); }
.ac-no:hover { background: rgba(217, 119, 6, 0.1); }

@media (max-width: 768px) {
  .ms-burger { display: block; }

  .ms-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--slate-dark);
    flex-direction: column;
    padding: 1.2rem 2rem;
    gap: 0.8rem;
    border-bottom: 2px solid var(--amber);
  }

  .ms-nav.open { display: flex; }

  .editorial-hero h1 { font-size: 2rem; }

  .editorial-grid { grid-template-columns: 1fr; }

  .ge-frame iframe { height: 380px; }

  .ef-nav { flex-direction: column; gap: 0.5rem; }
}
