*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol, li { list-style: none; }
body, main, section, article, div, header, footer, nav, p, h1, h2, h3, a, span { max-width: 100vw; overflow-wrap: break-word; word-break: break-word; }
:root {
  --bg: #070707;
  --bg-deep: #020202;
  --text: #e9e2da;
  --text-soft: #c8bfb5;
  --muted: #847a70;
  --dim: rgba(255,255,255,0.045);
  --line: rgba(255,255,255,0.055);
  --line-strong: rgba(255,255,255,0.105);
  --gold: #b8995a;
  --gold-soft: #d4b46b;
  --red: #b64232;
  --red-soft: #c65542;
  --violet: #7770d6;
  --shadow: 0 34px 90px rgba(0,0,0,0.58);
}
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  min-height: 100vh;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 50% -8%, rgba(184,153,90,0.055), transparent 38rem),
    radial-gradient(circle at 12% 18%, rgba(126,112,214,0.035), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(182,66,50,0.035), transparent 30rem),
    linear-gradient(180deg, #080808 0%, #050505 48%, #020202 100%);
  color: var(--text);
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.92;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(60rem 18rem at 50% 12%, rgba(255,255,255,0.018), transparent 74%),
    radial-gradient(46rem 16rem at 20% 62%, rgba(184,153,90,0.018), transparent 74%),
    radial-gradient(50rem 16rem at 80% 78%, rgba(126,112,214,0.018), transparent 76%);
  filter: blur(14px);
  opacity: .82;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.05) 45%, transparent 84%);
  opacity: .17;
}
body.page-earth { background-image: radial-gradient(circle at 50% -8%, rgba(116,150,100,0.052), transparent 38rem), radial-gradient(circle at 12% 18%, rgba(184,153,90,0.028), transparent 28rem), linear-gradient(180deg, #070807 0%, #050505 50%, #020202 100%); }
body.page-birth { background-image: radial-gradient(circle at 50% -8%, rgba(184,153,90,0.055), transparent 38rem), radial-gradient(circle at 12% 18%, rgba(126,112,214,0.032), transparent 28rem), linear-gradient(180deg, #080706 0%, #050505 50%, #020202 100%); }
body.page-death { background-image: radial-gradient(circle at 50% -8%, rgba(70,80,135,0.06), transparent 38rem), radial-gradient(circle at 88% 22%, rgba(184,153,90,0.034), transparent 30rem), linear-gradient(180deg, #050507 0%, #040404 54%, #010101 100%); }
body.page-author { background-image: radial-gradient(circle at 50% -8%, rgba(184,153,90,0.045), transparent 38rem), radial-gradient(circle at 16% 20%, rgba(112,142,100,0.035), transparent 28rem), linear-gradient(180deg, #070706 0%, #050505 50%, #020202 100%); }
body.page-help { background-image: radial-gradient(circle at 50% -8%, rgba(184,153,90,0.06), transparent 38rem), radial-gradient(circle at 88% 22%, rgba(182,66,50,0.032), transparent 30rem), linear-gradient(180deg, #070707 0%, #050505 50%, #020202 100%); }
body.page-forum { background-image: radial-gradient(circle at 50% -8%, rgba(184,153,90,0.048), transparent 38rem), radial-gradient(circle at 12% 20%, rgba(126,112,214,0.03), transparent 30rem), linear-gradient(180deg, #070707 0%, #050505 50%, #020202 100%); }
body.page-media { background-image: radial-gradient(circle at 50% -8%, rgba(126,112,214,0.042), transparent 38rem), radial-gradient(circle at 88% 22%, rgba(184,153,90,0.034), transparent 30rem), linear-gradient(180deg, #070707 0%, #050505 50%, #020202 100%); }
::selection { background: rgba(184,153,90,0.55); color: #fff; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
a, button, input { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(184,153,90,0.24); border-radius: 999px; }
.skip-link { position:absolute; left:16px; top:-70px; z-index:10001; background:#111; color:#fff; padding:10px 14px; border-radius:999px; border:1px solid var(--line-strong); transition:top .2s ease; }
.skip-link:focus { top: 16px; }
.reading-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--red), var(--gold)); z-index: 10000; transition: width 60ms linear; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(5,5,5,0.92); backdrop-filter: blur(8px); color: var(--muted); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s, color .3s, border-color .3s; z-index: 120; }
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-2px); color: #fff; border-color: rgba(184,153,90,0.42); }
.topbar { padding: 30px 24px 0; position: relative; z-index: 100; }
.topbar-inner { max-width: 1240px; margin: 0 auto; min-height: 46px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.brand { font-family: "Bebas Neue", sans-serif; font-size: 1.34rem; letter-spacing: 5px; line-height: 1; color: rgba(255,255,255,0.92); white-space: nowrap; background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.64) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand .star-word, .footer-brand .star-word { color: var(--gold-soft); -webkit-text-fill-color: var(--gold-soft); }
.platform-nav { display: flex; align-items: center; justify-content: center; gap: 2px 8px; flex-wrap: wrap; margin-left: auto; }
.platform-nav a { position: relative; padding: 7px 9px 9px; font-size: .72rem; line-height: 1.2; letter-spacing: 1.45px; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.platform-nav a::after { content: ""; position: absolute; left: 9px; right: 9px; bottom: 1px; height: 1px; background: transparent; transition: background .25s; }
.platform-nav a:hover { color: var(--text); }
.platform-nav a:hover::after { background: rgba(184,153,90,.30); }
.platform-nav a.is-active { color: #fff; }
.platform-nav a.is-active::after { background: rgba(184,153,90,.9); }
.nav-subline { position: relative; z-index: 90; width: fit-content; max-width: calc(100% - 32px); margin: 18px auto 0; padding: 8px 0 0; display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(232,226,218,0.62); font-size: .74rem; line-height: 1.4; letter-spacing: .055em; text-align: center; border-top: 1px solid rgba(184,153,90,0.18); }
.nav-subline a { color: rgba(212,180,107,.96); font-weight: 600; letter-spacing: .11em; text-transform: uppercase; border-bottom: 1px solid rgba(212,180,107,.28); padding-bottom: 1px; }
.reading-section { position: relative; padding: 28px 24px 64px; overflow: hidden; }
.reading-shell { max-width: 1160px; margin: 0 auto; }
.hero-core { text-align: center; padding-top: clamp(70px, 8vw, 124px); }
.eyebrow { display: block; margin: 0 auto 22px; color: var(--gold-soft); font-size: .78rem; line-height: 1.6; letter-spacing: 4.7px; text-transform: uppercase; font-weight: 500; }
h1 { max-width: 1080px; margin: 0 auto 28px; font-family: "Bebas Neue", sans-serif; font-size: clamp(4rem, 10vw, 8.7rem); line-height: .88; letter-spacing: 4px; color: #fff; text-align: center; text-shadow: 0 18px 55px rgba(0,0,0,.62); }
.hero-lede { max-width: 820px; margin: 0 auto 58px; color: var(--text-soft); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.18rem, 2vw, 1.68rem); line-height: 1.56; }
.opening-visual { position: relative; max-width: 1030px; margin: 0 auto 74px; padding: clamp(24px, 5vw, 46px) clamp(16px, 4vw, 34px); border-top: 1px solid rgba(184,153,90,0.18); border-bottom: 1px solid rgba(255,255,255,0.07); background: radial-gradient(42rem 12rem at 50% 0%, rgba(184,153,90,.045), transparent 76%), radial-gradient(40rem 12rem at 18% 20%, rgba(126,112,214,.035), transparent 76%); box-shadow: none; overflow: hidden; isolation: isolate; }
.opening-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, transparent, rgba(255,255,255,.018), transparent); opacity: .8; }
.opening-visual-grid { display: grid; grid-template-columns: 1fr minmax(170px,.7fr) 1fr; gap: clamp(18px, 3vw, 32px); align-items: center; }
.opening-visual-side { min-height: 210px; padding: 16px 4px; border: 0; border-radius: 0; background: transparent !important; display: flex; flex-direction: column; justify-content: center; }
.opening-visual-name { color: rgba(255,255,255,.9); font-weight: 500; font-size: .76rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.opening-visual-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 11px; }
.opening-visual-list span { padding: 0; border: 0; border-radius: 0; color: rgba(200,191,181,.74); background: transparent; font-size: .9rem; line-height: 1.5; }
.opening-visual-list span::after { content: " ·"; color: rgba(184,153,90,.45); }
.opening-visual-list span:last-child::after { content: ""; }
.opening-visual-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,.70); }
.opening-visual-center-line { width: 1px; min-height: 68px; background: linear-gradient(180deg, transparent, rgba(184,153,90,.48), transparent); }
.opening-visual-center-word { max-width: 22ch; font-family: "Bebas Neue", sans-serif; font-size: clamp(1.34rem, 3vw, 2.08rem); line-height: .98; letter-spacing: 2.1px; color: #fff; text-align: center; text-shadow: 0 14px 45px rgba(0,0,0,.55); }
.opening-visual-result { max-width: 760px; margin: 34px auto 0; padding-top: 28px; border-top: 1px solid rgba(184,153,90,.18); color: rgba(232,226,218,.80); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.05rem, 1.7vw, 1.34rem); line-height: 1.62; text-align: center; }
.article-text { max-width: 860px; margin: 0 auto; text-align: center; }
.article-label { display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 38px; padding: 0 0 8px; border: 0; border-bottom: 1px solid rgba(184,153,90,.28); border-radius: 0; color: var(--gold-soft); font-size: .72rem; letter-spacing: 3.4px; text-transform: uppercase; }
.article-text p { margin: 0 auto 21px; color: var(--text-soft); font-size: clamp(1.03rem, 1.16vw, 1.17rem); line-height: 1.9; letter-spacing: .01em; }
.article-text p.short-line { color: rgba(255,255,255,.93); font-size: clamp(1.08rem, 1.25vw, 1.24rem); }
.article-text p.quote-line { color: var(--gold-soft); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.12rem, 1.55vw, 1.34rem); line-height: 1.55; }
.article-text p:last-child { margin-bottom: 0; }
.article-text p:nth-child(12n+4) { color: rgba(232,226,218,.92); }
.section-divider { padding: 30px 24px 22px; display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 620px; margin: 0 auto; }
.section-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,153,90,.25), transparent); }
.section-divider-brand { font-family: "Bebas Neue", sans-serif; font-size: 1.12rem; letter-spacing: 5px; color: rgba(255,255,255,.14); white-space: nowrap; }
.page-links-cta-message { max-width: 720px; margin: 8px auto 12px; padding: 0 24px; text-align: center; color: rgba(232,226,218,.62); font-family: "DM Serif Display", Georgia, serif; font-size: clamp(1.04rem, 1.6vw, 1.32rem); line-height: 1.56; }
.page-links { padding: 38px 24px 76px; }
.page-links-inner { max-width: 980px; margin: 0 auto; }
.page-links-kicker { color: var(--gold-soft); font-size: .72rem; letter-spacing: 3.6px; text-transform: uppercase; text-align: center; margin-bottom: 26px; }
.page-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; max-width: 760px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.065); border-bottom: 1px solid rgba(255,255,255,.065); }
.page-link-card { min-height: 162px; padding: 26px 24px 28px; border: 0; border-right: 1px solid rgba(255,255,255,.055); border-radius: 0; background: transparent; box-shadow: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; transition: background .25s, color .25s; }
.page-link-card:last-child { border-right: 0; }
.page-link-card:hover { transform: none; border-color: rgba(255,255,255,.055); background: rgba(255,255,255,.025); box-shadow: none; }
.page-link-label { color: var(--gold-soft); font-size: .68rem; letter-spacing: 2.8px; text-transform: uppercase; }
.page-link-title { font-family: "Bebas Neue", sans-serif; font-size: 1.72rem; line-height: 1; letter-spacing: 1.4px; color: #fff; }
.page-link-copy-small { max-width: 30ch; color: var(--muted); font-size: .92rem; line-height: 1.62; }
.support-request-box { max-width: 760px; margin: 58px auto 0; padding: 34px 8px 12px; border: 0; border-top: 1px solid rgba(184,153,90,.22); border-radius: 0; background: transparent; box-shadow: none; text-align: center; }
.support-request-kicker { color: var(--gold-soft); font-family: 'Bebas Neue', sans-serif; letter-spacing: .18em; text-transform: uppercase; font-size: 1.06rem; margin-bottom: 14px; }
.support-request-box p { color: rgba(232,226,218,.76); font-size: 1rem; line-height: 1.76; max-width: 620px; margin: 0 auto 22px; }
.support-request-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 22px; border-radius: 0; border: 1px solid rgba(184,153,90,.34); border-left: 0; border-right: 0; background: transparent; color: #fff; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .74rem; box-shadow: none; transition: border-color .25s, color .25s, background .25s; }
.support-request-button:hover { transform: none; border-color: rgba(212,180,107,.75); background: rgba(184,153,90,.055); color: var(--gold-soft); }
.privacy-section { padding: 40px 24px 48px; border-top: 1px solid rgba(255,255,255,.055); background: rgba(0,0,0,.28); }
.privacy-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.privacy-section h2 { margin-bottom: 22px; font-family: "Bebas Neue", sans-serif; font-size: clamp(1.9rem,3vw,2.5rem); line-height: 1; letter-spacing: 3px; color: #fff; }
.privacy-section p { margin: 0 auto 15px; color: var(--muted); font-size: .94rem; line-height: 1.76; }
footer { padding: 60px 24px 72px; border-top: 1px solid rgba(184,153,90,.12); background: rgba(0,0,0,.56); }
.footer-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.footer-brand { font-family: "Bebas Neue", sans-serif; font-size: 1.62rem; line-height: 1; letter-spacing: 6px; color: rgba(255,255,255,.88); margin-bottom: 18px; }
.footer-tagline { max-width: 680px; margin: 0 auto 26px; color: var(--text-soft); font-family: "DM Serif Display", Georgia, serif; font-size: 1.08rem; line-height: 1.62; }
.footer-contact { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: .86rem; margin-bottom: 24px; flex-wrap: wrap; }
.footer-contact-sep { width: 34px; height: 1px; background: rgba(184,153,90,.28); }
.footer-bottom { color: rgba(255,255,255,.24); font-size: .72rem; letter-spacing: 3.4px; text-transform: uppercase; }
@media (max-width: 980px) {
  .topbar-inner { flex-direction: column; gap: 18px; }
  .platform-nav { margin-left: 0; }
}
@media (max-width: 900px) {
  .opening-visual-grid { grid-template-columns: 1fr; gap: 8px; }
  .opening-visual-side { min-height: auto; padding: 16px 6px; }
  .opening-visual-center-line { min-height: 34px; }
  .page-link-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.055); }
  .page-link-card:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  body { line-height: 1.82; }
  .topbar { padding: 24px 16px 0; }
  .brand { font-size: 1.14rem; letter-spacing: 3.6px; text-align: center; white-space: normal; }
  .platform-nav { gap: 0 5px; }
  .platform-nav a { padding: 7px 6px 9px; font-size: .66rem; letter-spacing: 1.12px; }
  .nav-subline { flex-direction: column; gap: 5px; font-size: .70rem; max-width: calc(100% - 28px); }
  .nav-subline span[aria-hidden="true"] { display: none; }
  .reading-section { padding: 22px 16px 54px; }
  .hero-core { padding-top: 58px; }
  .eyebrow { letter-spacing: 3.2px; font-size: .68rem; margin-bottom: 18px; }
  h1 { font-size: clamp(3.1rem, 18vw, 4.5rem); letter-spacing: 2.2px; margin-bottom: 24px; }
  .hero-lede { margin-bottom: 46px; font-size: 1.14rem; line-height: 1.56; }
  .opening-visual { margin-bottom: 58px; padding: 28px 8px; }
  .opening-visual-name { font-size: .68rem; letter-spacing: 2.2px; }
  .opening-visual-list span { font-size: .84rem; }
  .opening-visual-result { margin-top: 24px; padding-top: 22px; }
  .article-label { margin-bottom: 30px; font-size: .66rem; letter-spacing: 2.7px; }
  .article-text p { font-size: 1rem; line-height: 1.82; margin-bottom: 19px; }
  .article-text p.short-line { font-size: 1.04rem; }
  .section-divider { padding-left: 16px; padding-right: 16px; }
  .section-divider-brand { font-size: .96rem; letter-spacing: 3.2px; }
  .page-links { padding-left: 16px; padding-right: 16px; }
  .page-links-grid { grid-template-columns: 1fr; }
  .privacy-section { padding-left: 16px; padding-right: 16px; }
  footer { padding-left: 16px; padding-right: 16px; }
  .footer-brand { font-size: 1.34rem; letter-spacing: 4px; }
}
