:root {
  --ink: #f8f7ff;
  --void: #050015;
  --panel: #120443;
  --hot-pink: #ff2bd6;
  --radioactive: #75ff33;
  --cyber-blue: #25ddff;
  --warning: #ffef13;
  --orange: #ff6b00;
  --purple: #8d45ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #02000e url("/assets/stars.gif") repeat fixed;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  cursor: crosshair;
}

a {
  color: var(--cyber-blue);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

a:visited {
  color: #d98cff;
}

a:hover {
  color: var(--warning);
  background: #6c005a;
  text-decoration-style: solid;
}

a:focus-visible {
  outline: 3px dashed var(--warning);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: -100px;
  padding: 10px;
  color: #000;
  background: var(--warning);
  font-weight: bold;
}

.skip-link:focus {
  top: 12px;
}

.top-warning {
  position: relative;
  z-index: 5;
  border-bottom: 3px ridge #ff9500;
  color: #050015;
  background: var(--warning);
  font-family: "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-shell {
  width: min(1120px, calc(100% - 24px));
  margin: 18px auto 40px;
  border: 5px ridge #9b63ff;
  background: rgba(3, 0, 20, 0.92);
  box-shadow: 0 0 0 4px #140050, 0 0 35px #6600e9, 12px 14px 0 rgba(0, 0, 0, 0.7);
}

.masthead {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px 20px 16px;
  text-align: center;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, transparent 2px 8px),
    radial-gradient(circle at 50% 25%, #6000ae, #160050 44%, #040012 100%);
  border-bottom: 4px ridge var(--cyber-blue);
}

.meteor-field {
  position: absolute;
  inset: 10px;
  pointer-events: none;
}

.meteor-field img {
  position: absolute;
  width: 100px;
  image-rendering: pixelated;
}

.meteor-field img:first-child {
  left: 3%;
  top: 12%;
}

.meteor-field img:last-child {
  right: 3%;
  top: 45%;
  transform: scaleX(-1);
}

.eyebrow,
.kicker {
  margin: 0 0 8px;
  color: var(--warning);
  font: 900 12px/1.2 "Courier New", monospace;
  letter-spacing: 2px;
}

.logo-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  background: none !important;
}

.logo,
.dot-html {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  line-height: .87;
  letter-spacing: 3px;
  -webkit-text-stroke: 2px #fff;
  text-shadow:
    4px 4px 0 #ff006e,
    8px 8px 0 #5b00d6,
    12px 12px 14px #000;
}

.logo {
  font-size: clamp(48px, 8.5vw, 100px);
  color: #29fbff;
  transform: skew(-6deg);
  animation: logo-shock 4s steps(2, end) infinite;
}

.dot-html {
  margin-top: 13px;
  color: var(--radioactive);
  font-size: clamp(26px, 4.5vw, 53px);
  letter-spacing: 12px;
  -webkit-text-stroke-width: 1px;
  text-shadow: 3px 3px 0 #008a4e, 6px 6px 0 #000;
}

.tagline {
  margin: 20px auto 10px;
  color: #fff;
  font: italic 700 clamp(14px, 2vw, 19px)/1.4 "Comic Sans MS", "Comic Sans", cursive;
  text-shadow: 2px 2px #ff008c;
}

.period-correctness {
  position: relative;
  z-index: 2;
  margin: -5px 0 9px;
  text-shadow: 2px 2px #005500;
}

.divider {
  height: 10px;
  margin: 16px auto 13px;
  overflow: hidden;
  max-width: 680px;
}

.divider img {
  display: block;
  width: 100%;
  height: 10px;
  image-rendering: pixelated;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 3px outset #d6d6d6;
  color: #000;
  background: #d6d6d6;
  font: 900 13px/1.2 "Arial Black", Arial, sans-serif;
  text-decoration: none;
  box-shadow: 3px 3px #000;
}

.main-nav-icon {
  width: 20px;
  height: 20px;
  image-rendering: pixelated;
}

.main-nav a:nth-child(1) { background: #5eff37; }
.main-nav a:nth-child(2) { background: #ff55d5; }
.main-nav a:nth-child(3) { background: #52dcff; }
.main-nav a:nth-child(4) { background: #ffed3d; }
.main-nav a:hover { border-style: inset; transform: translate(2px, 2px); box-shadow: 1px 1px #000; }

.three-column-table {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 180px;
  align-items: start;
  background: rgba(8, 0, 41, .94);
}

.construction-zone {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 7px;
  color: #050505;
  background: repeating-linear-gradient(-45deg, #ffdf00 0 16px, #111 16px 32px);
  border-bottom: 4px ridge #ff8700;
  text-align: center;
  font: 900 14px/1.2 "Arial Black", sans-serif;
  text-shadow: 1px 1px #fff;
}

.construction-zone img {
  width: 100%;
  min-width: 180px;
  height: 31px;
  image-rendering: pixelated;
}

.construction-zone span {
  padding: 5px 10px;
  white-space: nowrap;
  background: var(--warning);
  border: 3px outset #fff;
}

.left-rail,
.right-rail {
  padding: 10px;
}

.left-rail {
  border-right: 3px ridge #6538a8;
}

.right-rail {
  border-left: 3px ridge #6538a8;
}

.rail-box {
  margin-bottom: 12px;
  padding: 8px;
  color: #f8f7ff;
  text-align: center;
  background: #160648;
  border: 3px ridge #8950e8;
  box-shadow: 3px 3px #000;
}

.rail-box h2 {
  margin: -8px -8px 9px;
  padding: 4px 3px;
  color: #060011;
  background: linear-gradient(90deg, #28d9ff, #ef61ff, #fff51d);
  border-bottom: 2px solid #fff;
  font: 900 12px/1.3 "Courier New", monospace;
  letter-spacing: 1px;
}

.info-terminal {
  margin: 0 0 12px;
  padding: 8px;
  color: #d7e4ff;
  background: #000b59;
  border: 5px inset #aaa;
  box-shadow: 3px 3px #000;
  font: 700 10px/1.35 "Courier New", Courier, monospace;
  text-align: left;
  text-transform: uppercase;
}

.info-mast {
  padding: 2px 4px;
  color: #000b59;
  background: #d7e4ff;
  font: 900 28px/.9 Arial, Helvetica, sans-serif;
  letter-spacing: -3px;
  text-align: center;
}

.info-title {
  margin: 7px 0;
  color: #fff;
  text-align: center;
}

.info-connect,
.info-id {
  color: #78ffff;
  font-size: 8px;
}

.info-rule {
  overflow: hidden;
  color: #fffb5b;
  white-space: nowrap;
}

.info-menu {
  margin: 7px 0 8px;
  padding-left: 27px;
  color: #fffb5b;
}

.info-menu li {
  margin-bottom: 4px;
}

.info-menu a,
.info-menu a:visited {
  color: #d7e4ff;
  text-decoration: none;
}

.info-menu a:hover {
  color: #000b59;
  background: #d7e4ff;
}

.info-prompt {
  margin: 9px 0 4px;
  color: #fff;
}

.terminal-cursor {
  color: #fffb5b;
  animation: blink 650ms steps(2, start) infinite;
}

.pixel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pixel-list li + li {
  border-top: 1px dotted #7149ae;
}

.pixel-list a {
  display: block;
  padding: 7px 2px;
  font: 700 11px/1.35 Verdana, sans-serif;
}

.category-nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: -4px;
  image-rendering: pixelated;
}

.online-light {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--radioactive);
  box-shadow: 0 0 8px var(--radioactive);
  animation: pulse 1s steps(2, end) infinite;
}

.computer-gif {
  width: 78px;
  image-rendering: pixelated;
}

.counter {
  padding: 4px 2px;
  color: #ff3b1f;
  background: #000;
  border: 3px inset #777;
  font: 700 20px/1 "Courier New", monospace;
  letter-spacing: 3px;
  text-shadow: 0 0 5px red;
}

.counter.is-broken {
  position: relative;
  overflow: hidden;
  color: #ff341c;
  transform: rotate(-2deg);
  box-shadow: inset 0 0 10px #7b0000, 3px 3px #000;
}

.counter.is-broken::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.15) 3px 4px);
  pointer-events: none;
}

.counter.counter-glitch {
  color: var(--warning);
  transform: rotate(2deg) translateX(2px);
  text-shadow: -3px 0 #00eaff, 3px 0 #ff00c8;
}

.counter-warning {
  margin: 7px 0 3px;
  color: var(--warning);
  font: 900 9px/1.2 "Courier New", monospace;
}

.weather-icon {
  margin: 4px 0 -8px;
  color: var(--warning);
  font-size: 45px;
  filter: drop-shadow(0 0 5px #fff);
  animation: weather-jitter 1.4s steps(2, end) infinite;
}

.mail-box img,
.guestbook-box img,
.about-banner img {
  width: 64px;
  image-rendering: pixelated;
}

.sonic-box {
  overflow: hidden;
  background: linear-gradient(#0558cc 0 48%, #58d534 48% 59%, #8a531f 59%);
}

.sonic-gif {
  display: block;
  width: 112px;
  margin: 2px auto;
  image-rendering: pixelated;
  filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, .65));
}

.sonic-box .tiny {
  margin: 3px -5px -3px;
  padding: 3px;
  color: #fff;
  background: #07106c;
  font-weight: 900;
  text-shadow: 1px 1px #000;
}

.content-well {
  min-width: 0;
  padding: 14px;
}

.hero-box,
.page-banner,
.content-panel {
  position: relative;
  margin-bottom: 16px;
  border: 4px ridge #824bf0;
  box-shadow: 5px 5px 0 #000;
}

.hero-box {
  min-height: 335px;
  padding: 30px 180px 28px 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 66%, rgba(255, 0, 196, .65), transparent 24%),
    linear-gradient(135deg, #18007a 0 47%, #4e006b 47% 53%, #090026 53%);
}

.hero-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: 5%;
  top: 42px;
  border: 18px double rgba(117, 255, 51, .5);
  border-radius: 50%;
  transform: rotate(22deg);
}

.hero-box h1,
.page-banner h1,
.error-page h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: #fff;
  font: 900 clamp(38px, 6vw, 68px)/.93 Impact, "Arial Black", sans-serif;
  letter-spacing: 2px;
  text-shadow: 4px 4px #ff007b, 7px 7px #100026;
}

.hero-box h1 span {
  color: var(--warning);
  -webkit-text-stroke: 1px #ff7500;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
  font: 700 17px/1.55 "Comic Sans MS", "Comic Sans", cursive;
}

.enter-prompt {
  position: relative;
  z-index: 1;
  color: var(--radioactive);
  font: 900 17px/1.4 "Courier New", monospace;
}

.enter-prompt a { color: var(--warning); }

.hero-computer {
  position: absolute;
  z-index: 2;
  width: 150px;
  right: 36px;
  bottom: 35px;
  image-rendering: pixelated;
  filter: drop-shadow(8px 8px 0 rgba(0,0,0,.75));
}

.new-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 13px;
  padding: 0;
  background: transparent;
  border: 0;
  transform: rotate(8deg);
}

.new-badge img {
  width: 72px;
  image-rendering: pixelated;
}

.hot-news-table {
  margin: 0 0 16px;
  color: #fff;
  border-color: #ffeb00;
  box-shadow: 5px 5px #000;
  font-family: "Times New Roman", serif;
}

.hot-news-table img {
  width: 72px;
  image-rendering: pixelated;
}

.content-panel {
  padding: 18px;
  background: linear-gradient(180deg, rgba(30, 8, 80, .97), rgba(9, 3, 35, .97));
}

.content-panel > h2,
.specs-table > h2 {
  margin: -18px -18px 18px;
  padding: 7px 10px;
  color: #080019;
  background: linear-gradient(90deg, #ffdf20, #ff53c8 53%, #28deff);
  border-bottom: 3px ridge #fff;
  font: 900 16px/1.3 "Courier New", monospace;
  letter-spacing: 1px;
}

.post-preview {
  position: relative;
  margin-bottom: 14px;
  padding: 14px;
  color: #f9f6ff;
  background: #0d032b;
  border: 2px dashed #673ee6;
}

.post-preview:last-child {
  margin-bottom: 0;
}

.post-preview h2,
.post-preview h3 {
  margin: 3px 0 5px;
  font-family: "Arial Black", Arial, sans-serif;
  line-height: 1.2;
}

.post-preview h3 { font-size: 21px; }
.post-preview h2 { font-size: 24px; }
.post-preview h2 a,
.post-preview h3 a { color: var(--radioactive); }

.post-date {
  color: var(--warning);
  font: 700 11px/1.3 "Courier New", monospace;
  text-transform: uppercase;
}

.post-meta {
  margin-bottom: 0;
  color: #beafe9;
  font: 700 10px/1.5 "Courier New", monospace;
}

.teaser-locked {
  padding: 7px;
  color: #ffff00;
  background: #000;
  border: 2px inset #777;
  font: 900 10px/1.4 "Courier New", monospace;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  gap: 0 9px;
  min-height: 102px;
  padding: 13px;
  color: #05000f !important;
  background: #42ecff;
  border: 4px outset #fff;
  text-decoration: none;
  box-shadow: 4px 4px #000;
}

.category-card:hover {
  color: #000;
  background: #fff91f;
  transform: rotate(-1deg) translateY(-2px);
}

.category-card:nth-child(2) { background: #ff5ecf; }
.category-card:nth-child(3) { background: #bcff3d; }
.category-card:nth-child(4) { background: #ff893b; }

.category-card .category-icon {
  grid-row: 1 / 3;
  align-self: center;
  width: 42px;
  height: 42px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(2px 2px #fff);
}

.category-card strong {
  align-self: end;
  font: 900 15px/1.2 "Arial Black", Arial, sans-serif;
  text-transform: uppercase;
}

.category-card small {
  font: 700 10px/1.35 Verdana, sans-serif;
}

.notice-board ul {
  padding-left: 25px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.construction-chaos {
  overflow: hidden;
  color: #111;
  background:
    repeating-linear-gradient(-45deg, rgba(0,0,0,.13) 0 12px, transparent 12px 24px),
    #ffd91c;
  border-color: #ff8a00;
  text-align: center;
}

.construction-chaos > h2 {
  color: #fff;
  background: repeating-linear-gradient(45deg, #111 0 17px, #ff9100 17px 34px);
  text-shadow: 2px 2px #000;
}

.construction-chaos p {
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.traffic-cone {
  position: absolute;
  top: 45px;
  right: 15px;
  font-size: 48px;
  transform: rotate(12deg);
}

.construction-gifs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.construction-gifs img {
  image-rendering: pixelated;
}

.construction-gifs img:nth-child(1),
.construction-gifs img:nth-child(3) {
  width: min(34%, 190px);
  height: 28px;
}

.construction-gifs img:nth-child(2) {
  width: 70px;
}

.construction-table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  background: #111;
  font: 900 11px/1.3 "Courier New", monospace;
  text-align: left;
}

.construction-table td {
  padding: 7px;
  border: 2px inset #aaa;
}

.page-banner {
  min-height: 190px;
  padding: 30px 24px 25px;
  overflow: hidden;
  background:
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255,255,255,.05) 12px 14px),
    linear-gradient(135deg, #49008f, #12003a 64%);
}

.page-banner::after {
  content: "WWW";
  position: absolute;
  right: -4px;
  bottom: -41px;
  color: rgba(255,255,255,.07);
  font: 900 145px/1 Impact, sans-serif;
  letter-spacing: -10px;
}

.page-banner p {
  position: relative;
  z-index: 1;
}

.giant-icon {
  position: absolute;
  z-index: 1;
  right: 26px;
  top: 18px;
  width: 88px;
  height: 88px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(7px 7px #000);
  transform: rotate(8deg);
}

.category-banner {
  padding-right: 145px;
}

.single-post {
  padding: 24px;
}

.post-header {
  text-align: center;
}

.post-header h1 {
  margin: 4px auto 8px;
  max-width: 720px;
  color: var(--radioactive);
  font: 900 clamp(32px, 5.5vw, 59px)/1 "Arial Black", Arial, sans-serif;
  text-shadow: 3px 3px #006134, 6px 6px #000;
}

.byline {
  color: #c8baf0;
  font: 700 11px/1.55 "Courier New", monospace;
}

.rainbow-rule {
  height: 9px;
  margin: 20px 0;
  background: url("/assets/rainbow-bar.gif") repeat-x;
  image-rendering: pixelated;
}

.post-body,
.prose {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.72;
}

.post-body h2,
.post-body h3,
.prose h2,
.prose h3 {
  color: var(--warning);
  font-family: "Arial Black", Arial, sans-serif;
  line-height: 1.2;
}

.post-body blockquote,
.prose blockquote {
  margin: 20px 10px;
  padding: 12px 16px;
  color: var(--warning);
  background: #250052;
  border: 3px dashed var(--hot-pink);
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.post-body code,
.prose code {
  color: var(--radioactive);
  background: #000;
  font-family: "Courier New", monospace;
}

.post-footer {
  text-align: center;
  font-family: "Courier New", monospace;
}

.about-banner img {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 100px;
  filter: drop-shadow(6px 6px #000);
}

.about-banner { padding-right: 155px; }

.specs-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Courier New", monospace;
}

.specs-table th,
.specs-table td {
  padding: 8px;
  border: 2px ridge #8a60db;
  text-align: left;
}

.specs-table th {
  width: 35%;
  color: #000;
  background: var(--cyber-blue);
}

.empty-state,
.error-page {
  text-align: center;
  color: var(--warning);
  font: 900 15px/1.5 "Courier New", monospace;
}

.dumb-list-box {
  margin-bottom: 18px;
  padding: 7px;
  color: #000;
  background: #d6d6d6;
  border: 5px outset #efefef;
  box-shadow: 5px 5px #000;
}

.dumb-list-box h2 {
  margin: -3px -3px 8px;
  padding: 4px 8px;
  color: #fff;
  background: #000080;
  font: 700 16px/1.2 "Courier New", monospace;
}

.dumb-list {
  margin: 0;
  padding: 8px 8px 8px 36px;
  background: #fff;
  border: 3px inset #aaa;
  font: 700 18px/1.65 "Times New Roman", serif;
  list-style-type: square;
}

.dumb-list li::marker {
  color: #ff00a8;
}

.empty-state img { image-rendering: pixelated; }
.error-page { padding: 45px 20px; }
.error-page > img { width: 110px; image-rendering: pixelated; }
.error-page h1 { color: #ff3b26; font-size: clamp(80px, 16vw, 150px); }
.back-link { margin: 22px 0 0; font: 700 11px "Courier New", monospace; }

.site-footer {
  padding: 20px;
  text-align: center;
  background: linear-gradient(#12002d, #020008);
  border-top: 4px ridge var(--hot-pink);
  font: 700 11px/1.5 "Courier New", monospace;
}

.info-address {
  margin: 9px auto;
  max-width: 600px;
  padding: 4px;
  color: #d7e4ff;
  background: #000b59;
  border: 2px inset #aaa;
  font: 700 10px/1.3 "Courier New", monospace;
}

.homepage-award {
  margin: 18px 0 4px;
  padding: 16px;
  background: #000;
  border: 5px double #ffed00;
  box-shadow: inset 0 0 22px #5e00a8, 5px 5px #000;
}

.award-cup {
  display: inline-block;
  font-size: 62px;
  filter: drop-shadow(5px 5px #ff00ae);
  animation: weather-jitter 1.4s steps(2, end) infinite;
}

.browser-requirements {
  margin: 14px auto;
  color: #fff;
  background: #000080;
  border-color: #c0c0c0;
}

.browser-requirements img {
  display: block;
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
}

.construction {
  width: 320px;
  image-rendering: pixelated;
}

.button-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 15px 0;
}

.button-wall img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
}

.site-footer > img:last-of-type,
.site-footer > img:nth-last-of-type(2) {
  width: 32px;
  vertical-align: middle;
  image-rendering: pixelated;
}

.signoff {
  margin: 0 10px;
  color: #ff8426;
  font: 900 16px "Arial Black", sans-serif;
}

.tiny {
  font-size: 9px;
  line-height: 1.4;
}

.blink {
  animation: blink 850ms steps(2, start) infinite;
}

.cursor-star {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  color: var(--warning);
  font-size: 18px;
  text-shadow: 0 0 6px #fff, 0 0 10px var(--hot-pink);
  animation: star-fade 600ms linear forwards;
}

.noscript {
  position: fixed;
  left: 10px;
  bottom: 10px;
  padding: 8px;
  color: #000;
  background: var(--warning);
  border: 3px outset #fff;
  font: 900 11px "Courier New", monospace;
}

@keyframes blink { 50% { opacity: 0; } }
@keyframes pulse { 50% { background: #075f00; box-shadow: none; } }
@keyframes logo-shock {
  0%, 92%, 100% { transform: skew(-6deg) translate(0); filter: hue-rotate(0); }
  94% { transform: skew(-6deg) translate(-4px, 2px); filter: hue-rotate(110deg); }
  96% { transform: skew(-6deg) translate(5px, -2px); filter: hue-rotate(250deg); }
}
@keyframes weather-jitter {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-8deg); }
  96% { transform: rotate(8deg); }
}
@keyframes star-fade {
  to { opacity: 0; transform: translateY(20px) rotate(120deg) scale(.2); }
}

@media (max-width: 900px) {
  .three-column-table {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "content content"
      "left right";
  }
  .content-well { grid-area: content; }
  .left-rail { grid-area: left; border: 0; border-top: 3px ridge #6538a8; }
  .right-rail { grid-area: right; border: 0; border-top: 3px ridge #6538a8; }
}

@media (max-width: 620px) {
  body { font-size: 13px; }
  .page-shell { width: calc(100% - 10px); margin-top: 6px; border-width: 3px; }
  .masthead { min-height: 230px; padding-inline: 8px; }
  .logo { font-size: clamp(42px, 15vw, 68px); -webkit-text-stroke-width: 1px; letter-spacing: 0; }
  .dot-html { font-size: 28px; letter-spacing: 5px; }
  .meteor-field img { opacity: .55; width: 70px; }
  .main-nav { gap: 5px; }
  .main-nav a { padding: 6px 8px; font-size: 11px; }
  .construction-zone { grid-template-columns: 1fr; }
  .construction-zone img { display: none; }
  .construction-zone span { white-space: normal; }
  .three-column-table { display: flex; flex-direction: column; }
  .content-well { order: 1; width: 100%; padding: 8px; }
  .left-rail { order: 2; width: 100%; }
  .right-rail { order: 3; width: 100%; }
  .hero-box { padding: 24px 17px 145px; min-height: 470px; }
  .hot-news-table { table-layout: fixed; }
  .hot-news-table td { display: block; width: 100%; }
  .browser-requirements td:nth-child(2) { display: none; }
  .hero-computer { width: 125px; right: 50%; transform: translateX(50%); bottom: 20px; }
  .hero-box::before { right: 50%; transform: translateX(50%) rotate(22deg); bottom: 5px; top: auto; }
  .category-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 25px 18px; }
  .category-banner, .about-banner { padding-right: 18px; padding-bottom: 115px; }
  .giant-icon, .about-banner img { right: 50%; transform: translateX(50%); top: auto; bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
  marquee { display: none; }
  .cursor-star { display: none; }
}
