:root{
  --bg: #0b0b0b;
  --panel: #0f0f10;
  --panel2: #111214;
  --line: rgba(255,255,255,.16);
  --text: #e9eefc;
  --muted: rgba(233,238,252,.75);
  --blueLink: #b8d0ff;
  --gold: #f6c542;
  --shadow: 0 18px 55px rgba(0,0,0,.55);

  --w: 980px;
  --radius: 10px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: #000;
  color: var(--text);
  font-family: var(--sans);
}

/* Top black status bar */
.statusbar{
  width: 100%;
  background:#000;
  color: #fff;
  font-family: var(--mono);
  padding: 14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  letter-spacing:.5px;
}
.statusbar b{font-weight:900}

/* Center page like screenshot */
.page{
  width: 980px;
  margin: 0 auto;
  background: radial-gradient(800px 500px at 50% 0%, rgba(255,255,255,.06), transparent 55%), #0a0a0a;
  padding-bottom: 14px;
}

/* Header texture + logo */
.heroHeader{
  background:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55)),
    url("/assets/top-texture.png");
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid rgba(255,255,255,.10);
}
.heroHeader__inner{
  padding: 18px 18px 10px;
}
.logo{
  display:block;
  width: min(640px, 92%);
  height:auto;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,.55));
}
.tagline{
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(0,0,0,.7);
}

/* Main grid like screenshot */
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
}

.card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.35)),
    url("/assets/panel-texture.png");
  background-size: cover;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 16px;
}

.card--tight{ padding: 14px; }

.sectionTitle{
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 900;
  color: #e9d07a;
  text-shadow: 0 2px 0 rgba(0,0,0,.6);
}
.sectionTitle--gold{ color: var(--gold); }

.rule{
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.55), rgba(255,255,255,.0));
  margin: 10px 0 12px;
}

.linkList{
  list-style:none;
  margin:0;
  padding:0;
}
.linkRow{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 7px 6px;
  color: var(--blueLink);
  font-size: 22px;
  font-weight: 800;
  text-decoration: underline;
  text-shadow: 0 2px 0 rgba(0,0,0,.65);
}
.linkRow img{
  width: 22px;
  height: 22px;
  image-rendering: pixelated;
}
.linkRow:hover{ filter: brightness(1.12); }

.dividerWide{
  height: 2px;
  background: rgba(255,255,255,.16);
  margin: 14px 0 14px;
}

/* Form box */
.formBox{
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.6);
}
.formBox__title{
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(0,0,0,.7);
  margin-bottom: 10px;
}
.form{
  display:grid;
  gap: 10px;
}
.field{
  display:grid;
  grid-template-columns: 140px 1fr;
  align-items:center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
}
.field span{ color: #fff; }
.field input{
  height: 34px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,.22);
  background: #f3f3f3;
  color:#000;
  padding: 6px 10px;
  font-size: 18px;
}
.submitBtn{
  justify-self: end;
  margin-top: 2px;
  width: 170px;
  height: 44px;
  border-radius: 6px;
  border: 2px solid rgba(0,0,0,.45);
  background: linear-gradient(180deg, #ff3a2f, #b81410);
  color: #fff;
  font-weight: 1000;
  font-size: 22px;
  text-shadow: 0 2px 0 rgba(0,0,0,.6);
  cursor:pointer;
  box-shadow: 0 8px 0 rgba(0,0,0,.35);
}
.submitBtn:active{ transform: translateY(2px); box-shadow: 0 6px 0 rgba(0,0,0,.35); }

.nostalgia{
  margin-top: 12px;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  color: rgba(233,238,252,.85);
}
.copyright{
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 16px;
  color: rgba(233,238,252,.72);
}

/* Right column: mascot + list */
.rightCol{ display:grid; gap: 18px; }

.mascotPanel{
  min-height: 250px;
  position: relative;
  background:
    radial-gradient(600px 300px at 60% 45%, rgba(255,255,255,.10), transparent 55%),
    url("/assets/panel-texture.png");
  border: 2px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow:hidden;
}
.mascotPanel__burst{
  position:absolute;
  inset: 0;
  display:grid;
  place-items:center;
}
.burst{
  position:absolute;
  width: 92%;
  max-width: 440px;
  height:auto;
  opacity: .95;
}
.mascot{
  position:relative;
  width: 320px;
  max-width: 86%;
  height:auto;
  image-rendering: pixelated;
  filter: drop-shadow(0 10px 0 rgba(0,0,0,.45));
}
.speech{
  position:absolute;
  right: 18px;
  top: 22px;
  background: #fff;
  color: #d91414;
  font-weight: 1000;
  font-family: var(--sans);
  padding: 10px 14px;
  border-radius: 999px;
  border: 3px solid rgba(0,0,0,.65);
  transform: rotate(-7deg);
  box-shadow: 0 8px 0 rgba(0,0,0,.35);
}

/* Star list */
.starList{
  list-style:none;
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: 900;
}
.starList li{
  padding: 8px 0;
  display:flex;
  align-items:center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.starList li::before{
  content:"★";
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(0,0,0,.55);
}
.starList a{
  color: var(--blueLink);
  text-decoration: underline;
  text-shadow: 0 2px 0 rgba(0,0,0,.65);
}
.starList a:hover{ filter: brightness(1.12); }

/* Footer nav */
.footerNav{
  margin: 8px 18px 0;
  padding: 12px 0 18px;
  border-top: 2px solid rgba(255,255,255,.10);
  text-align:center;
  font-family: var(--mono);
  font-size: 18px;
  color: rgba(233,238,252,.78);
}
.footerNav__link{ color: rgba(233,238,252,.85); text-decoration:none; }
.footerNav__link:hover{ text-decoration: underline; }
.footerNav__sep{ margin: 0 10px; opacity:.7; }

/* 2013-style mobile: keep layout, just scale it */
@media (max-width: 980px){
  body{ overflow-x: auto; }
  .page{
    transform: scale(0.86);
    transform-origin: top center;
  }
}

@media (max-width: 720px){
  .page{ transform: scale(0.74); }
}

@media (max-width: 520px){
  .page{ transform: scale(0.64); }
}