/* ================================================================
   style.css · chronoentity.neocities.org
   
   vibe:  1999 personal homepage · geocities soul · Y2K tech
          late-90s corporate warmth · old internet nostalgia
          hint of JDM · Netscape era · aged paper + CRT green
   
   fonts: Trebuchet MS (the 1999 web font) · VT323 (CRT terminal)
          Share Tech Mono (system readouts) · Tahoma (UI labels)
   
   best viewed: Netscape Navigator 4 · 800×600 · 56k modem
   last updated: 31/DEC/1999 · 23:58:47
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Share+Tech+Mono&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* the desktop */
  --bg:            #B8B4AA;   /* genuine Win98 desktop grey */
  --bg-tile:       #C4C0B8;

  /* panel surfaces */
  --panel:         #FFFFFF;
  --panel-warm:    #FAF8F2;   /* aged paper white */
  --panel-off:     #F0EDE4;   /* cream / manila */
  --panel-stripe:  #EEEAE0;   /* alternate table row */

  /* 3D bevel (lighter touch than before) */
  --hi:            #FFFFFF;
  --hi-mid:        #E8E4DC;
  --lo:            #888078;
  --lo-dark:       #4A4640;

  /* late-90s corporate: IBM/Compaq/Cisco teal-navy */
  --navy:          #003366;
  --navy-mid:      #336699;
  --teal:          #005F5F;
  --teal-mid:      #007A7A;
  --teal-light:    #009999;
  --slate:         #3A4A5A;
  --slate-mid:     #506070;

  /* the one warm accent — JDM red, hover only */
  --red:           #CC0000;
  --red-dim:       #880000;
  --red-glow:      rgba(204,0,0,0.12);

  /* CRT phosphor green */
  --crt:           #00EE00;
  --crt-dim:       #009900;
  --crt-dark:      #002200;

  /* highlight yellow (tooltip, notice board) */
  --hi-yellow:     #FFFFC0;
  --hi-yellow-b:   #DDCC00;

  /* ink */
  --ink:           #111111;
  --ink-mid:       #2A2A2A;
  --ink-soft:      #555555;
  --ink-label:     #223355;

  /* links — authentic 1999 browser defaults */
  --link:          #0000CC;
  --link-v:        #551A8B;
  --link-h:        #CC0000;

  /* gradients for section header bars */
  --g-navy:   linear-gradient(90deg, #003366 0%, #2255AA 100%);
  --g-teal:   linear-gradient(90deg, #004444 0%, #008888 100%);
  --g-slate:  linear-gradient(90deg, #2A3A4A 0%, #4A6070 100%);
  --g-red:    linear-gradient(90deg, #880000 0%, #BB2222 100%);
  --g-dark:   linear-gradient(90deg, #111111 0%, #333333 100%);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; }

/* ── WIN98-STYLE SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar               { width: 16px; height: 16px; }
::-webkit-scrollbar-track         { background: var(--bg); }
::-webkit-scrollbar-thumb         {
  background: var(--bg-tile);
  border: 2px solid;
  border-color: var(--hi) var(--lo) var(--lo) var(--hi);
}
::-webkit-scrollbar-button        {
  background: var(--bg-tile);
  border: 2px solid;
  border-color: var(--hi) var(--lo) var(--lo) var(--hi);
  height: 16px;
}

/* ── BODY ───────────────────────────────────────────────────── */
body {
  /* tiled 90s desktop background texture */
  background-color: var(--bg);
  background-image:
    /* subtle crosshatch texture like Win98/2000 */
    repeating-linear-gradient(
      0deg, transparent, transparent 1px,
      rgba(255,255,255,0.15) 1px, rgba(255,255,255,0.15) 2px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 1px,
      rgba(255,255,255,0.10) 1px, rgba(255,255,255,0.10) 2px
    );
  color: var(--ink);
  font-family: 'Trebuchet MS', Verdana, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  min-height: 100vh;
  padding: 8px;
}

/* ── PAGE WRAPPER ───────────────────────────────────────────── */
.page-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

/* ================================================================
   TICKER — the first thing you see, like geocities
   ================================================================ */

.ticker {
  background: #000000;
  color: var(--crt);
  font-family: 'VT323', 'Courier New', monospace;
  font-size: 16px;
  letter-spacing: 0.08em;
  padding: 4px 0 2px;
  overflow: hidden;
  white-space: nowrap;
  border-top:    1px solid #003300;
  border-bottom: 1px solid #003300;
  margin-bottom: 5px;
  position: relative;
}

/* dim scanlines on the ticker */
.ticker::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,0.18) 2px, rgba(0,0,0,0.18) 4px
  );
  pointer-events: none;
}

.ticker-inner {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 28s linear infinite;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ================================================================
   SITE HEADER
   ================================================================ */

.site-header {
  background: var(--navy);
  background-image:
    /* corporate diagonal texture */
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 3px,
      rgba(255,255,255,0.025) 3px, rgba(255,255,255,0.025) 4px
    ),
    linear-gradient(180deg, #004A88 0%, #002255 55%, #001133 100%);
  border: 1px solid;
  border-color: var(--hi) var(--lo-dark) var(--lo-dark) var(--hi);
  padding: 14px 18px 12px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

/* JDM red corner triangle */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 28px 28px;
  border-color: transparent transparent var(--red) transparent;
}

.site-header h1 {
  font-family: 'Trebuchet MS', Impact, sans-serif;
  font-size: 26px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.6), 2px 2px 4px rgba(0,0,80,0.4);
  letter-spacing: 0.03em;
  margin: 0 0 3px 0;
  border: none;
  padding: 0;
  background: none;
}

.site-header .tagline {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 10px;
  color: #88BBDD;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-header .header-meta {
  position: absolute;
  top: 10px; right: 14px;
  font-family: 'VT323', 'Courier New', monospace;
  font-size: 15px;
  color: var(--crt);
  text-align: right;
  line-height: 1.35;
  text-shadow: 0 0 8px rgba(0,238,0,0.6);
}

/* ================================================================
   NOTICE BOARD — pinned announcement (very 90s)
   ================================================================ */

.noticeboard {
  background: var(--hi-yellow);
  border: 2px solid;
  border-color: #FFEE44 #BBAA00 #BBAA00 #FFEE44;
  padding: 0;
  margin-bottom: 5px;
}

.nb-header {
  background: linear-gradient(90deg, #CCAA00 0%, #EECC22 100%);
  color: #1A1000;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nb-body {
  padding: 6px 10px 7px;
}

.nb-body p {
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.55;
}

.nb-body p:last-child { margin-bottom: 0; }
.nb-body a { color: #0000AA; }
.nb-body a:hover { color: var(--red); }

/* ================================================================
   UNDER CONSTRUCTION BANNER
   ================================================================ */

.construction {
  background: repeating-linear-gradient(
    45deg,
    #FFCC00, #FFCC00 8px,
    #111111 8px, #111111 16px
  );
  padding: 3px;
  margin-bottom: 5px;
}

.construction-inner {
  background: var(--panel-warm);
  text-align: center;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  color: var(--ink);
  font-family: 'Trebuchet MS', sans-serif;
}

/* ================================================================
   PAGE LAYOUT
   ================================================================ */

.page-layout {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.col-left { width: 162px; flex-shrink: 0; }
.col-main { flex: 1; min-width: 0; }

/* ================================================================
   THE BOX — core building block (lighter bevel than before)
   ================================================================ */

.box {
  background: var(--panel);
  border: 1px solid;
  border-color: var(--hi-mid) var(--lo) var(--lo) var(--hi-mid);
  margin-bottom: 5px;
  overflow: hidden;
}

/* coloured title bar inside each box */
.box-header {
  background: var(--g-navy);
  color: #FFFFFF;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px 3px 6px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  user-select: none;
  line-height: 1.3;
}

.box-header.teal  { background: var(--g-teal); }
.box-header.slate { background: var(--g-slate); }
.box-header.red   { background: var(--g-red); }
.box-header.dark  { background: var(--g-dark); }

.bh-icon { margin-right: 2px; font-size: 11px; }

/* tiny window chrome buttons — subtle */
.wbtns { display: flex; gap: 2px; flex-shrink: 0; }
.wbtn {
  width: 13px; height: 11px;
  background: #C0BDBA;
  border: 1px solid;
  border-color: #FFFFFF #555 #555 #FFFFFF;
  font-size: 8px; line-height: 9px;
  text-align: center; color: #111;
  cursor: default; display: inline-block;
  font-family: sans-serif;
}

.box-body { padding: 8px 10px; }
.box-body.tight { padding: 5px 8px; }

.box.warm .box-body { background: var(--panel-warm); }
.box.off  .box-body { background: var(--panel-off); }

/* sunken panel inside a box */
.inset {
  background: var(--panel);
  border: 1px solid;
  border-color: var(--lo) var(--hi-mid) var(--hi-mid) var(--lo);
  padding: 5px 7px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1 {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 19px;
  font-weight: bold;
  color: var(--navy);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 4px;
  margin: 0 0 8px 0;
}

h2 {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: var(--navy);
  background: var(--panel-off);
  border-left: 3px solid var(--teal);
  padding: 3px 8px;
  margin: 10px 0 5px 0;
  letter-spacing: 0.02em;
}

h2.red-bar { border-left-color: var(--red); color: var(--red-dim); }
h2.slate-bar { border-left-color: var(--slate); color: var(--slate); }

h3 {
  font-size: 12px;
  font-weight: bold;
  color: var(--ink-label);
  margin: 8px 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

p {
  font-size: 13px;
  color: var(--ink-mid);
  margin-bottom: 7px;
  line-height: 1.62;
}

small { font-size: 11px; color: var(--ink-soft); }

/* ── LINKS — the original 1999 browser palette ──────────────── */
a               { color: var(--link); text-decoration: underline; }
a:visited       { color: var(--link-v); }
a:hover         { color: var(--link-h); }
a:active        { color: var(--red); }

/* ── RULES ──────────────────────────────────────────────────── */
hr {
  border: none;
  border-top: 1px solid var(--lo);
  border-bottom: 1px solid var(--hi);
  margin: 8px 0;
}

hr.rainbow {
  height: 3px; border: none;
  background: linear-gradient(
    90deg, #CC0000, #FF6600, #CCAA00,
    #009900, #006699, #220099, #880099
  );
  margin: 10px 0;
}

hr.dashed {
  border: none;
  border-top: 1px dashed var(--lo);
  margin: 6px 0;
}

/* ================================================================
   SIDEBAR NAVIGATION
   ================================================================ */

.nav-box {
  background: var(--panel-warm);
  border: 1px solid;
  border-color: var(--hi-mid) var(--lo) var(--lo) var(--hi-mid);
  margin-bottom: 5px;
  overflow: hidden;
}

.nav-box .nav-header {
  background: var(--g-navy);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Trebuchet MS', sans-serif;
}

.nav-box .nav-header.teal { background: var(--g-teal); }

.nav-box a {
  display: block;
  padding: 4px 8px 4px 12px;
  font-size: 12px;
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid var(--panel-off);
  position: relative;
  transition: none;
}

.nav-box a::before {
  content: '»';
  position: absolute;
  left: 4px;
  color: var(--teal-light);
  font-weight: bold;
}

.nav-box a:visited { color: var(--link-v); }

.nav-box a:hover {
  background: var(--navy);
  color: #FFFFFF;
  text-decoration: none;
}

.nav-box a:hover::before { color: #AACCEE; }
.nav-box a:last-child { border-bottom: none; }
.nav-box a.current { background: var(--panel-off); color: var(--ink-label); font-weight: bold; }
.nav-box a.current::before { color: var(--red); }

/* ================================================================
   ABOUT WIDGET (sidebar compact)
   ================================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px;
  align-items: start;
  margin-bottom: 7px;
}

.about-avatar {
  width: 52px; height: 52px;
  background: var(--panel-off);
  border: 1px solid;
  border-color: var(--lo) var(--hi) var(--hi) var(--lo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.about-info {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--ink-mid);
  line-height: 1.75;
}

.about-info .handle {
  font-size: 15px;
  color: var(--navy);
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: bold;
  margin-bottom: 1px;
  line-height: 1.2;
}

.about-info .field { color: var(--teal-mid); }

/* ================================================================
   NOW PLAYING (WinAmp feel)
   ================================================================ */

.winamp {
  background: #000000;
  padding: 8px 8px 6px;
  font-family: 'VT323', 'Courier New', monospace;
  color: var(--crt);
  border: 1px solid;
  border-color: var(--lo) var(--hi-mid) var(--hi-mid) var(--lo);
  position: relative;
  /* CRT scanline overlay */
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(0,0,0,0.25) 3px, rgba(0,0,0,0.25) 4px
  );
}

.winamp .wa-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: #558855;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.winamp .wa-track {
  font-size: 18px;
  color: var(--crt);
  text-shadow: 0 0 7px rgba(0,238,0,0.65);
  line-height: 1.1;
  margin-bottom: 1px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.winamp .wa-artist {
  font-size: 14px;
  color: #88CC88;
  margin-bottom: 6px;
}

.winamp .wa-bar {
  height: 5px;
  background: var(--crt-dark);
  border: 1px solid #004400;
  overflow: hidden;
}

.winamp .wa-fill {
  height: 100%;
  width: 55%;
  background: repeating-linear-gradient(
    90deg,
    var(--crt) 0px, var(--crt) 2px,
    #003300 2px, #003300 4px
  );
  animation: wa-march 0.6s linear infinite;
}

@keyframes wa-march {
  from { background-position: 0 0; }
  to   { background-position: 4px 0; }
}

/* ================================================================
   VISITOR COUNTER
   ================================================================ */

.counter-wrap {
  text-align: center;
  padding: 8px 6px;
  background: var(--panel-warm);
  border-top: 1px dashed var(--lo);
  font-size: 10px;
  color: var(--ink-soft);
  font-family: 'Trebuchet MS', sans-serif;
}

.counter-digits {
  display: inline-block;
  background: #000;
  color: var(--crt);
  font-family: 'VT323', 'Courier New', monospace;
  font-size: 24px;
  letter-spacing: 0.2em;
  padding: 2px 10px 0;
  border: 1px solid;
  border-color: #004400 var(--crt-dark) var(--crt-dark) #004400;
  text-shadow: 0 0 9px rgba(0,238,0,0.7);
  margin: 3px 0 2px;
}

/* ================================================================
   ONLINE NOW / STATUS WIDGET
   ================================================================ */

.online-widget {
  background: var(--panel-off);
  border: 1px solid;
  border-color: var(--hi-mid) var(--lo) var(--lo) var(--hi-mid);
  padding: 6px 8px;
  margin-bottom: 5px;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--ink-mid);
  line-height: 1.8;
}

.online-widget .ow-title {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--lo);
  padding-bottom: 3px;
  margin-bottom: 5px;
  font-family: 'Trebuchet MS', sans-serif;
}

.online-widget .ow-row {
  display: flex;
  justify-content: space-between;
}

.ow-label { color: var(--teal-mid); }

.online-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--crt);
  box-shadow: 0 0 5px rgba(0,238,0,0.7);
  animation: dot-pulse 2s ease-in-out infinite;
  margin-right: 4px;
  vertical-align: middle;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ================================================================
   MOOD / Y2K COUNTDOWN WIDGET
   ================================================================ */

.y2k-widget {
  background: var(--crt-dark);
  border: 1px solid;
  border-color: var(--lo) var(--hi-mid) var(--hi-mid) var(--lo);
  padding: 7px 8px;
  margin-bottom: 5px;
  font-family: 'VT323', 'Courier New', monospace;
  text-align: center;
  /* CRT scanlines */
  background-image: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(0,0,0,0.3) 3px, rgba(0,0,0,0.3) 4px
  );
}

.y2k-widget .y2k-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: #558855;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.y2k-digits {
  font-size: 28px;
  color: var(--crt);
  text-shadow: 0 0 10px rgba(0,238,0,0.8);
  letter-spacing: 0.1em;
  line-height: 1;
}

.y2k-sub {
  font-size: 12px;
  color: #66BB66;
  margin-top: 2px;
  letter-spacing: 0.15em;
}

.y2k-widget .y2k-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  color: #448844;
  margin-top: 5px;
  letter-spacing: 0.1em;
}

/* ================================================================
   WEBRING WIDGET
   ================================================================ */

.webring-widget {
  text-align: center;
  padding: 7px 8px;
  background: var(--panel-warm);
  border: 1px solid;
  border-color: var(--hi-mid) var(--lo) var(--lo) var(--hi-mid);
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 5px;
}

.wr-title {
  font-size: 10px;
  font-weight: bold;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--panel-off);
  padding-bottom: 3px;
  margin-bottom: 5px;
}

.wr-name {
  font-size: 11px;
  font-weight: bold;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 6px;
}

.wr-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wr-nav a {
  display: inline-block;
  background: var(--panel-off);
  border: 1px solid;
  border-color: var(--hi) var(--lo) var(--lo) var(--hi);
  color: var(--navy);
  text-decoration: none;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: bold;
}

.wr-nav a:hover { background: var(--navy); color: #FFF; }
.wr-nav .wr-mid { font-size: 10px; color: var(--ink-soft); }

/* ================================================================
   88×31 BADGE STRIP
   ================================================================ */

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 6px;
  background: var(--panel-off);
  border-top: 1px dashed var(--lo);
}

.badge-strip img,
.badge-strip .badge {
  width: 88px; height: 31px;
  border: 1px solid var(--lo);
  image-rendering: pixelated;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tahoma', sans-serif;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.badge.navy  { background: linear-gradient(135deg, #002255, #2255AA); }
.badge.teal  { background: linear-gradient(135deg, #003333, #008888); }
.badge.red   { background: linear-gradient(135deg, #660000, #CC2200); }
.badge.black { background: linear-gradient(135deg, #111, #333); }
.badge.slate { background: linear-gradient(135deg, #2A3A4A, #4A6070); }

/* ================================================================
   UPDATE LIST / CHANGELOG
   ================================================================ */

.update-list {
  list-style: none; margin: 0; padding: 0;
}

.update-list li {
  padding: 5px 0;
  border-bottom: 1px dashed var(--panel-off);
  font-size: 12px;
  color: var(--ink-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.update-list li:last-child { border-bottom: none; padding-bottom: 0; }

.update-list .date {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--teal-mid);
  white-space: nowrap;
  padding-top: 1px;
  min-width: 76px;
}

.new-tag {
  background: var(--red);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: bold;
  padding: 0 3px;
  font-family: 'Tahoma', sans-serif;
  vertical-align: middle;
  margin-left: 3px;
  letter-spacing: 0.04em;
}

/* ================================================================
   GUESTBOOK
   ================================================================ */

.gb-entry {
  border: 1px solid;
  border-color: var(--hi-mid) var(--lo) var(--lo) var(--hi-mid);
  margin-bottom: 5px;
  background: var(--panel);
  overflow: hidden;
}

.gb-entry:last-of-type { margin-bottom: 0; }

.gb-header {
  background: var(--g-teal);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-family: 'Trebuchet MS', sans-serif;
}

.gb-date { font-weight: normal; font-size: 10px; opacity: 0.85; }

.gb-body {
  padding: 6px 10px;
  font-size: 12px;
  color: var(--ink-mid);
  line-height: 1.55;
  background: var(--panel-warm);
}

.gb-location {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 10px;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

/* ================================================================
   LINKS / FRIEND SITES
   ================================================================ */

.links-list { list-style: none; margin: 0; padding: 0; }

.links-list li {
  padding: 4px 0;
  border-bottom: 1px dotted var(--panel-off);
  font-size: 12px;
}

.links-list li:last-child { border-bottom: none; }
.links-list a { font-weight: bold; }
.link-desc { color: var(--ink-soft); font-size: 11px; margin-left: 3px; }

/* ================================================================
   SPEC SHEET (JDM car / tech info table)
   ================================================================ */

.spec {
  border: 1px solid;
  border-color: var(--hi-mid) var(--lo) var(--lo) var(--hi-mid);
  border-top: 2px solid var(--teal-mid);
  background: var(--panel);
  margin-bottom: 8px;
  overflow: hidden;
}

.spec-title {
  background: var(--panel-off);
  border-bottom: 1px solid var(--panel-stripe);
  padding: 3px 10px;
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-row {
  display: flex;
  border-bottom: 1px solid var(--panel-stripe);
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 11px;
}

.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--panel-warm); }

.spec-key {
  width: 128px; flex-shrink: 0;
  background: var(--panel-off);
  color: var(--ink-label);
  padding: 3px 8px;
  font-weight: bold;
  font-size: 10px;
  border-right: 1px solid var(--panel-stripe);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-val { padding: 3px 8px; color: var(--ink-mid); flex: 1; }
.spec-val.hi  { color: var(--red); font-weight: bold; }
.spec-val.ok  { color: var(--teal-mid); font-weight: bold; }
.spec-val.dim { color: var(--ink-soft); }

/* ================================================================
   GALLERY THUMBNAIL GRID
   ================================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 2px;
}

.gallery-thumb {
  aspect-ratio: 4/3;
  background: var(--panel-off);
  border: 1px solid;
  border-color: var(--lo) var(--hi) var(--hi) var(--lo);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: default;
  font-family: 'Trebuchet MS', sans-serif;
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumb .thumb-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,50,0.75);
  color: #FFFFFF;
  font-size: 10px;
  padding: 2px 4px;
  font-family: 'Tahoma', sans-serif;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-thumb:hover .thumb-caption { background: var(--navy); }

/* placeholder thumb style */
.gallery-thumb.ph { background: var(--panel-stripe); color: var(--ink-soft); font-size: 24px; }

/* ================================================================
   FORMS
   ================================================================ */

.form-group { margin-bottom: 6px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: var(--ink-label);
  margin-bottom: 2px;
  font-family: 'Trebuchet MS', sans-serif;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea, select {
  font-family: 'Trebuchet MS', 'Tahoma', sans-serif;
  font-size: 12px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid;
  border-color: var(--lo) var(--hi-mid) var(--hi-mid) var(--lo);
  padding: 2px 5px;
  outline: none;
  width: 100%;
}

input:focus, textarea:focus {
  border-color: var(--navy);
  background: #F8FFEE;
}

textarea { resize: vertical; min-height: 72px; }

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-block;
  background: var(--panel-off);
  border: 2px solid;
  border-color: var(--hi) var(--lo-dark) var(--lo-dark) var(--hi);
  font-family: 'Trebuchet MS', 'Tahoma', sans-serif;
  font-size: 12px;
  padding: 3px 14px;
  color: var(--ink);
  text-decoration: none;
  cursor: default;
  min-width: 72px;
  text-align: center;
}

.btn:hover   { color: var(--ink); text-decoration: none; }
.btn:active  {
  border-color: var(--lo-dark) var(--hi) var(--hi) var(--lo-dark);
  padding: 4px 13px 2px 15px;
}

.btn-primary {
  background: linear-gradient(180deg, #2255AA 0%, #002266 100%);
  color: #FFFFFF;
  border-color: #5599DD #001144 #001144 #5599DD;
  font-weight: bold;
}

.btn-primary:hover { color: #FFFFFF; }

/* ================================================================
   STATUS BAR (bottom of boxes)
   ================================================================ */

.statusbar {
  background: var(--panel-off);
  border-top: 1px solid var(--lo);
  padding: 2px 6px;
  font-size: 10px;
  color: var(--ink-soft);
  font-family: 'Tahoma', sans-serif;
  display: flex; gap: 4px;
}

.sp {
  border: 1px solid;
  border-color: var(--lo) var(--hi) var(--hi) var(--lo);
  padding: 0 5px; flex: 1;
}

/* ================================================================
   PROGRESS BAR
   ================================================================ */

.progress {
  border: 1px solid;
  border-color: var(--lo) var(--hi) var(--hi) var(--lo);
  background: var(--panel);
  height: 16px;
  padding: 2px;
  margin: 4px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #002299 0%, #1144BB 50%, #002299 100%);
  background-size: 20px 100%;
  animation: march 0.6s linear infinite;
}

@keyframes march {
  from { background-position: 0 0; }
  to   { background-position: 20px 0; }
}

/* ================================================================
   CODE / TERMINAL
   ================================================================ */

code {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  font-size: 12px;
  background: var(--panel-off);
  border: 1px solid var(--panel-stripe);
  padding: 0 3px;
  color: var(--navy);
}

pre {
  background: #000000;
  color: var(--crt);
  font-family: 'VT323', 'Share Tech Mono', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 12px;
  border: 1px solid;
  border-color: var(--lo) var(--hi-mid) var(--hi-mid) var(--lo);
  overflow-x: auto;
  margin: 6px 0;
}

/* ================================================================
   BLOCKQUOTE
   ================================================================ */

blockquote {
  border-left: 3px solid var(--teal-mid);
  background: var(--panel-warm);
  border-top:    1px solid var(--panel-stripe);
  border-bottom: 1px solid var(--panel-stripe);
  border-right:  1px solid var(--panel-stripe);
  padding: 6px 10px;
  margin: 8px 0;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-mid);
}

blockquote cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  color: var(--ink-soft);
  font-family: 'Share Tech Mono', 'Courier New', monospace;
}

/* ================================================================
   DATA TABLE
   ================================================================ */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  border: 1px solid var(--lo);
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 8px;
}

.data-table th {
  background: var(--g-navy);
  color: #FFFFFF;
  padding: 4px 8px;
  text-align: left;
  font-size: 11px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.data-table td {
  padding: 3px 8px;
  border-bottom: 1px solid var(--panel-stripe);
  border-right:  1px solid var(--panel-stripe);
  color: var(--ink-mid);
  vertical-align: top;
}

.data-table td:last-child, .data-table th:last-child { border-right: none; }
.data-table tr:nth-child(even) td { background: var(--panel-warm); }
.data-table tr:hover td { background: #DDE8FF; }
.data-table .hi { color: var(--red); font-weight: bold; }
.data-table .tl { color: var(--teal-mid); font-weight: bold; }

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--panel-warm);
  border-top: 1px solid var(--lo-dark);
  padding: 10px 12px;
  text-align: center;
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 8px;
  font-family: 'Trebuchet MS', sans-serif;
}

footer a { color: var(--link); font-size: 10px; }
footer a:visited { color: var(--link-v); }
footer p { margin-bottom: 3px; line-height: 1.5; }

footer .footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  margin: 6px 0;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.blink { animation: blink 1s step-end infinite; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.spin { display: inline-block; animation: spin 2s linear infinite; }

/* ================================================================
   UTILITY
   ================================================================ */

.tc   { text-align: center; }
.tr   { text-align: right; }
.red  { color: var(--red); }
.tl   { color: var(--teal-mid); }
.nv   { color: var(--navy); }
.sf   { color: var(--ink-soft); }
.bold { font-weight: bold; }
.mono { font-family: 'Share Tech Mono', 'Courier New', monospace; }
.sm   { font-size: 11px; }
.mb0  { margin-bottom: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 600px) {
  body { padding: 4px; font-size: 12px; }
  .page-layout { flex-direction: column; }
  .col-left { width: 100%; }
  .site-header h1 { font-size: 20px; }
  .site-header .header-meta { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   EOF · chronoentity.neocities.org/style.css
   ☆ member of 3 webrings · guestbook open · y2k compliant ☆
   no cookies · no tracking · no javascript · just html & css
   ================================================================ */