/* ==========================================================================
   ★ UNDER CONSTRUCTION ★ ULTRA-90s RETRO STYLING ENGINE (Est. 1999)
   Pure CSS Windows 95 Bezels, Hazard Tapes, Neon WordArt & Progress Bars
   ========================================================================== */

:root {
  --win-bg: #c0c0c0;
  --win-light: #ffffff;
  --win-mid-light: #dfdfdf;
  --win-dark: #808080;
  --win-black: #000000;
  --title-blue: #000080;
  --title-blue-gradient: #1084d0;
  
  /* Cyber & Hazard Neon Palette */
  --neon-green: #00ff66;
  --neon-cyan: #00ffff;
  --neon-yellow: #ffff00;
  --neon-pink: #ff00ff;
  --neon-red: #ff3300;
  --hazard-yellow: #ffcc00;
  --space-dark: #06060c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--space-dark);
  /* Retro space grid & star field pattern purely with CSS gradients */
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 40px 70px, #ffff00, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 90px 40px, #00ffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 160px 120px, #ff00ff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 230px 180px, #ffffff, rgba(0,0,0,0)),
    linear-gradient(to right, rgba(255, 204, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 204, 0, 0.05) 1px, transparent 1px);
  background-size: 250px 250px, 250px 250px, 250px 250px, 250px 250px, 250px 250px, 40px 40px, 40px 40px;
  font-family: 'MS Sans Serif', Tahoma, Geneva, sans-serif;
  color: #000;
  min-height: 100vh;
  padding-bottom: 40px;
  position: relative;
  overflow-x: hidden;
}

/* ==========================================================================
   CRT SCANLINES OVERLAY EFFECT (Toggable)
   ========================================================================== */
body.crt-enabled::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
              linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none;
  z-index: 99999;
}

/* Mouse trail canvas */
#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ==========================================================================
   CAUTION BANNER & MARQUEE
   ========================================================================== */
.construction-strip {
  background: repeating-linear-gradient(
    -45deg,
    #000000,
    #000000 16px,
    #ffcc00 16px,
    #ffcc00 32px
  );
  padding: 8px 0;
  border-bottom: 3px solid #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.strip-text {
  background: #000;
  color: #ffff00;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  padding: 6px 14px;
  display: inline-block;
  border: 2px solid #ffff00;
  letter-spacing: 1px;
}

.marquee-container {
  background: #000080;
  border-top: 2px solid #ffff00;
  border-bottom: 2px solid #ffff00;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: inset 0 0 10px rgba(255, 255, 0, 0.4);
}

.marquee-content {
  display: inline-block;
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--neon-yellow);
  animation: marqueeScroll 25s linear infinite;
  text-shadow: 1px 1px #000, 0 0 8px var(--hazard-yellow);
}

@keyframes marqueeScroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   WIN95 BOXES & WINDOW BEZELS
   ========================================================================== */
.main-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.win95-box {
  background: var(--win-bg);
  border-top: 2px solid var(--win-light);
  border-left: 2px solid var(--win-light);
  border-right: 2px solid var(--win-black);
  border-bottom: 2px solid var(--win-black);
  box-shadow: inset -1px -1px 0 var(--win-dark), inset 1px 1px 0 var(--win-mid-light), 4px 4px 15px rgba(0,0,0,0.7);
  padding: 3px;
}

.win95-titlebar {
  background: linear-gradient(90deg, var(--title-blue), var(--title-blue-gradient));
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px #000;
}

.win95-window-controls {
  display: flex;
  gap: 3px;
}

.win95-btn {
  background: var(--win-bg);
  border-top: 2px solid var(--win-light);
  border-left: 2px solid var(--win-light);
  border-right: 2px solid var(--win-black);
  border-bottom: 2px solid var(--win-black);
  box-shadow: inset -1px -1px 0 var(--win-dark), inset 1px 1px 0 var(--win-mid-light);
  color: #000;
  font-family: inherit;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.1s;
}

.win95-btn:active {
  border-top: 2px solid var(--win-black);
  border-left: 2px solid var(--win-black);
  border-right: 2px solid var(--win-light);
  border-bottom: 2px solid var(--win-light);
  box-shadow: inset 1px 1px 0 var(--win-dark);
  padding: 6px 11px 4px 13px;
}

.btn-sm {
  padding: 1px 6px;
  font-size: 11px;
  min-width: 20px;
  line-height: 14px;
}

.btn-xs {
  padding: 2px 8px;
  font-size: 11px;
}

.btn-close {
  font-weight: 900;
}

.win95-hr {
  border: 0;
  border-top: 1px solid var(--win-dark);
  border-bottom: 1px solid var(--win-light);
  margin: 14px 0;
}

.box-content {
  padding: 14px;
}

/* ==========================================================================
   HEADER & UNDER CONSTRUCTION WORDART
   ========================================================================== */
.header-box {
  background: #101018;
  border-color: #ffffff #000000 #000000 #ffffff;
}

.header-inner {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  background: radial-gradient(circle at center, #2a2200 0%, #0d0a00 100%);
  border: 2px inset #555;
}

.wordart-wrapper {
  text-align: center;
  z-index: 2;
}

.top-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #ffff00;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.wordart.construction-wordart {
  font-family: 'Press Start 2P', 'Impact', sans-serif;
  font-size: 38px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffff00, #ff9900, #ff3300, #ffff00);
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowFlow 3s linear infinite, wordartBounce 3s ease-in-out infinite;
  filter: drop-shadow(3px 3px 0px #000) drop-shadow(6px 6px 0px #ff3300) drop-shadow(9px 9px 0px #ffff00);
  transform: skew(-4deg, -1deg);
}

@keyframes rainbowFlow {
  to { background-position: 200% center; }
}

@keyframes wordartBounce {
  0%, 100% { transform: skew(-4deg, -1deg) scale(1) translateY(0); }
  50% { transform: skew(-4deg, 1deg) scale(1.03) translateY(-4px); }
}

.sub-wordart {
  font-family: 'VT323', monospace;
  font-size: 24px;
  color: var(--neon-yellow);
  margin-top: 15px;
  letter-spacing: 2px;
  text-shadow: 2px 2px #000, 0 0 10px var(--neon-yellow);
}

/* Hazard Badges / Sirens */
.hazard-badge {
  background: #ffcc00;
  border: 4px ridge #ff3300;
  padding: 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 4px 4px 0 #000;
}

.left-hazard { transform: rotate(-5deg); }
.right-hazard { transform: rotate(5deg); }

.hazard-siren {
  font-size: 28px;
  animation: sirenFlash 0.5s infinite alternate;
}

@keyframes sirenFlash {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px #ff0000); }
  100% { transform: scale(1.15); filter: drop-shadow(0 0 12px #ff0000); }
}

.hazard-cone {
  font-size: 24px;
  animation: floatBounce 2s ease-in-out infinite;
}

.badge-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: #000;
  font-weight: bold;
  line-height: 1.4;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ==========================================================================
   MAIN CONTENT GRID
   ========================================================================== */
.content-grid {
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  gap: 20px;
  align-items: start;
}

@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 220px 1fr;
  }
  .sidebar-right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: column;
    text-align: center;
  }
  .wordart.construction-wordart {
    font-size: 26px;
  }
}

/* ==========================================================================
   LEFT SIDEBAR: RETRO MENU & BADGES
   ========================================================================== */
.retro-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-btn {
  text-align: left;
  justify-content: flex-start;
  padding: 8px 12px;
  font-size: 13px;
}

.btn-highlight {
  background: #ffffcc;
  color: #800000;
  border-color: #ffffff #666666 #666666 #ffffff;
  animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
  0%, 100% { background: #ffffcc; }
  50% { background: #ffcc00; }
}

.section-label {
  font-family: 'VT323', monospace;
  font-size: 18px;
  font-weight: bold;
  color: #000080;
  margin-bottom: 8px;
}

.fx-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  background: #e4e4e4;
  padding: 10px;
  border: 2px inset #fff;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.badges-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.retro-badge {
  width: 180px;
  height: 52px;
  border: 2px outset #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Press Start 2P', monospace;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  transition: transform 0.1s;
}

.retro-badge:hover {
  transform: scale(1.05);
}

.badge-top {
  font-size: 7px;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 3px;
}

.badge-main {
  font-size: 10px;
}

.netscape-badge {
  background: linear-gradient(135deg, #004466 0%, #001133 100%);
  color: #fff;
  border-color: #00aa88 #002244 #002244 #00aa88;
}
.netscape-badge .highlight { color: #00ffcc; }

.ie-badge {
  background: linear-gradient(135deg, #224488 0%, #001122 100%);
  color: #fff;
  border-color: #6699ff #112244 #112244 #6699ff;
}
.ie-badge .highlight { color: #ffcc00; }

.res-badge {
  background: #333333;
  color: #00ff00;
  border-color: #666 #111 #111 #666;
}

.notepad-badge {
  background: #800000;
  color: #ffff00;
  border-color: #ff6666 #330000 #330000 #ff6666;
}

/* ==========================================================================
   CENTER COLUMN: CONSTRUCTION STATUS BOARD
   ========================================================================== */
.main-content-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border: 2px inset #c0c0c0;
}

.status-top-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.worker-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--win-bg);
  padding: 8px;
  border: 2px outset #fff;
  height: fit-content;
  min-width: 120px;
  text-align: center;
}

.worker-icon {
  font-size: 54px;
  background: #332200;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px inset #fff;
}

.avatar-status {
  font-size: 9px;
  font-weight: bold;
  color: #804000;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #ff8800;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 5px #ff8800;
}

.status-info {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.neon-title {
  font-family: 'VT323', monospace;
  font-size: 26px;
  color: #cc2200;
  margin-bottom: 8px;
  text-shadow: 1px 1px #ddd;
}

.status-meta {
  background: #ffffea;
  border: 1px solid #cccc88;
  padding: 8px;
  font-size: 12px;
  margin-top: 10px;
  color: #333;
}

.purple-text {
  color: #800080;
}

/* Windows 95 Chunky Progress Bar Section */
.progress-section {
  background: var(--win-bg);
  padding: 14px;
  border: 2px outset #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-family: 'VT323', monospace;
  font-size: 20px;
  font-weight: bold;
  color: #000080;
}

.yellow-highlight {
  background: #000080;
  color: #ffff00;
  padding: 0 6px;
  border: 1px solid #ffff00;
}

.win95-progress-bar {
  background: #ffffff;
  border: 2px inset #808080;
  height: 28px;
  padding: 2px;
  display: flex;
  align-items: center;
}

.progress-chunks {
  display: flex;
  gap: 2px;
  height: 100%;
  width: 100%;
}

.progress-chunk {
  background: linear-gradient(180deg, #1084d0 0%, #000080 100%);
  width: 16px;
  height: 100%;
  border-right: 1px solid #000040;
}

.progress-status-text {
  font-family: 'VT323', monospace;
  font-size: 17px;
  color: #004400;
  background: #eaffea;
  border: 1px solid #88cc88;
  padding: 4px 8px;
}

.progress-actions {
  display: flex;
  justify-content: flex-end;
}

.caution-tape-banner {
  background: repeating-linear-gradient(
    -45deg,
    #ffcc00,
    #ffcc00 20px,
    #000000 20px,
    #000000 40px
  );
  padding: 10px;
  text-align: center;
  border: 2px solid #000;
}

.caution-tape-banner span {
  background: #000;
  color: #ffff00;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  padding: 6px 12px;
  display: inline-block;
  border: 2px solid #ffff00;
}

/* ==========================================================================
   WINAMP MIDI JUKEBOX PANEL
   ========================================================================== */
.winamp-panel {
  background: #2a2a3a;
  border-color: #555566 #111118 #111118 #555566;
  color: #fff;
  font-family: 'VT323', monospace;
}

.winamp-titlebar {
  background: linear-gradient(90deg, #11112a, #2a2a5a);
  color: #00ffcc;
  font-size: 15px;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #111118;
}

.winamp-controls-top {
  letter-spacing: 2px;
  cursor: pointer;
}

.winamp-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.winamp-display {
  background: #000000;
  border: 3px inset #444455;
  padding: 8px;
  display: grid;
  grid-template-columns: 80px 1fr 140px;
  gap: 12px;
  align-items: center;
}

@media (max-width: 600px) {
  .winamp-display {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.winamp-time {
  font-family: 'VT323', monospace;
  font-size: 34px;
  color: #00ff00;
  background: #0a180a;
  border: 1px solid #1a331a;
  padding: 2px 6px;
  text-align: center;
  text-shadow: 0 0 6px #00ff00;
}

.winamp-track-info {
  overflow: hidden;
}

.track-title-scroll {
  font-size: 18px;
  color: #00ffcc;
  white-space: nowrap;
  margin-bottom: 4px;
}

.track-status {
  font-size: 14px;
  color: #ffaa00;
}

.winamp-visualizer {
  background: #08080c;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

#viz-canvas {
  width: 100%;
  height: 40px;
}

.winamp-buttons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.player-controls {
  display: flex;
  gap: 6px;
}

.winamp-btn {
  background: #3a3a4e;
  color: #ffffff;
  border-top: 2px solid #66667a;
  border-left: 2px solid #66667a;
  border-right: 2px solid #1a1a24;
  border-bottom: 2px solid #1a1a24;
  font-family: inherit;
  font-size: 16px;
  padding: 4px 10px;
  cursor: pointer;
  font-weight: bold;
}

.winamp-btn:active {
  border-top: 2px solid #1a1a24;
  border-left: 2px solid #1a1a24;
  border-right: 2px solid #66667a;
  border-bottom: 2px solid #66667a;
}

.btn-play {
  color: #00ff00;
}

.btn-stop {
  color: #ff4444;
}

.track-selector {
  flex: 1;
  min-width: 200px;
}

.win95-input {
  background: #ffffff;
  border: 2px inset #c0c0c0;
  padding: 5px 8px;
  font-family: inherit;
  font-size: 13px;
  width: 100%;
  color: #000;
}

/* ==========================================================================
   WEBMASTER LOG
   ========================================================================== */
.log-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 2px inset #c0c0c0;
}

.log-entry {
  border-bottom: 1px dashed #aaa;
  padding-bottom: 10px;
}

.log-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.log-date {
  font-family: 'VT323', monospace;
  font-size: 18px;
  font-weight: bold;
  color: #800000;
  margin-bottom: 4px;
}

.log-desc {
  font-size: 13px;
  line-height: 1.4;
  color: #222;
}

/* ==========================================================================
   GUESTBOOK SECTION
   ========================================================================== */
.guestbook-section {
  background: #fff;
  border: 2px inset #c0c0c0;
}

.guestbook-intro {
  margin-bottom: 12px;
  font-weight: bold;
  color: #000080;
}

.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--win-bg);
  padding: 14px;
  border: 2px outset #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 12px;
  font-weight: bold;
}

.textarea-input {
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 10px;
}

.btn-submit {
  background: #ccffcc;
}

.recent-signatures-header {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: #000080;
  margin-bottom: 12px;
}

.guestbook-entries-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 5px;
}

.gb-item {
  background: #fcfcf0;
  border: 1px solid #ccc;
  border-left: 5px solid #000080;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.gb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

.gb-author {
  font-weight: bold;
  color: #800000;
  font-size: 14px;
}

.gb-loc {
  color: #555;
}

.gb-date {
  font-size: 11px;
  color: #777;
}

.gb-msg {
  font-size: 13px;
  line-height: 1.4;
  color: #111;
  font-family: 'MS Sans Serif', sans-serif;
}

/* ==========================================================================
   RIGHT SIDEBAR: GADGETS & COUNTER
   ========================================================================== */
.widget-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.widget-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #000080;
  line-height: 1.4;
}

.led-counter {
  background: #000000;
  border: 4px inset #444;
  padding: 6px 10px;
  display: flex;
  gap: 4px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  cursor: pointer;
}

.led-digit {
  font-family: 'VT323', monospace;
  font-size: 32px;
  color: var(--neon-green);
  background: #081a08;
  padding: 0 5px;
  border: 1px solid #153315;
  text-shadow: 0 0 6px var(--neon-green);
  line-height: 1;
}

.counter-subtext {
  font-size: 10px;
  color: #555;
  font-weight: bold;
}

/* Y2K Timer */
.y2k-timer {
  display: flex;
  gap: 6px;
  background: #000;
  border: 3px inset #555;
  padding: 8px;
  color: #ff3300;
  font-family: 'VT323', monospace;
  width: 100%;
  justify-content: center;
}

.y2k-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #110000;
  padding: 2px 6px;
  border: 1px solid #330000;
}

.y2k-block span {
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 0 5px #ff3300;
}

.y2k-block small {
  font-size: 10px;
  color: #aa5555;
}

.y2k-status {
  font-size: 11px;
  font-weight: bold;
}

.green-text {
  color: #008000;
}

/* Poll of the week */
.poll-question {
  font-weight: bold;
  font-size: 13px;
  color: #800080;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  width: 100%;
  font-size: 12px;
  background: #fff;
  padding: 10px;
  border: 2px inset #c0c0c0;
}

.btn-poll {
  margin-top: 6px;
  width: 100%;
}

.poll-result {
  background: #ffffcc;
  border: 1px solid #cccc00;
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #006600;
  width: 100%;
}

.hidden {
  display: none !important;
}

/* Retro Links */
.cyber-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  text-align: left;
}

.cyber-links-list li a {
  display: block;
  background: #fff;
  border: 2px outset #c0c0c0;
  padding: 6px 10px;
  text-decoration: none;
  color: #000080;
  font-size: 12px;
  font-weight: bold;
}

.cyber-links-list li a:hover {
  background: #ffffcc;
  color: #800000;
}

/* ==========================================================================
   FOOTER & WEB-RING
   ========================================================================== */
.footer-box {
  background: #101020;
  border-color: #555 #000 #000 #555;
  color: #fff;
}

.webring-content {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: #1a1a30;
  border: 2px inset #444;
}

.ring-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ring-icon {
  font-size: 38px;
  animation: floatBounce 2s infinite;
}

.ring-text {
  font-size: 13px;
  line-height: 1.5;
}

.ring-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.btn-ring {
  background: #c0c0c0;
  color: #000;
}

.copyright-bar {
  background: #000000;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #8888aa;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   DIAL-UP TERMINAL MODAL EASTER EGG
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  padding: 15px;
}

.terminal-window {
  width: 650px;
  max-width: 100%;
  box-shadow: 0 0 30px #ffff00;
}

.terminal-titlebar {
  background: linear-gradient(90deg, #804000, #cc6600);
}

.terminal-body {
  background: #000;
  padding: 10px;
  border: 3px inset #333;
}

.terminal-screen {
  height: 320px;
  overflow-y: auto;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #00ff00;
  line-height: 1.3;
  padding: 10px;
  background: #080d08;
  border: 1px solid #1a331a;
  text-shadow: 0 0 4px #00ff00;
  white-space: pre-wrap;
}

.terminal-status-bar {
  display: flex;
  justify-content: space-between;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #00ff00;
  padding-top: 8px;
  border-top: 1px dashed #1a331a;
  margin-top: 6px;
}

/* ==========================================================================
   HELPER UTILITIES & BLINK EFFECT
   ========================================================================== */
.blink {
  animation: blinkAnim 1s step-end infinite;
}

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

.blink-yellow {
  animation: blinkYellowAnim 0.7s step-end infinite;
}

@keyframes blinkYellowAnim {
  0%, 100% { color: #ffff00; }
  50% { color: #ff3300; }
}

.blink-red {
  animation: blinkRedAnim 0.8s step-end infinite;
}

@keyframes blinkRedAnim {
  0%, 100% { color: #ff0000; }
  50% { color: #ffff00; }
}
