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

:root {
  --hot-blue: #1100ff;
  --cyan: #000550;
  --purple: #9900cc;
  --dark-purple: #000533;
  --lime: #ccff00;
  --very-light-white: #f1f9ff;
  --bg-dark: #0d0011;
  --text-main: #000000;
  --table-bg: rgba(255, 255, 255, 0.85);
  --border-glow: #002fff;
}

body.fish-mode{
  background-image: url("imgs/bg2.gif");
}

body.dark-mode {
  background-image: url("imgs/bgdark.gif");
  --cyan: #c8d8ff;
  --dark-purple: #1a1a2e;
  --very-light-white: #c8d8ff;
  --bg-dark: #0a0a1a;
  --text-main: #dde6ff;
  --table-bg: rgba(10, 10, 40, 0.88);
  --border-glow: #4466ff;
}


body.dark-mode .profile-pic img {
  width: 300px;
  content: url("imgs/aboutmedark.jpg"); 
}

.dark-mode .playlist li .ptitle {
  color: #c8d8ff;
}

body.dark-mode .playlist li .partist {
  color: #9baee0;
}

body.dark-mode .playlist li.active .ptitle {
  color: #7799ff;
}

body.dark-mode .about-text em {
  color: #7799ff;
}

body.dark-mode .info-table .label {
  color: #8faaff; 
}

body.dark-mode .info-table .val {
  color: #c8d8ff;
}

body.dark-mode p {
  color: #dde6ff;
}

body.dark-mode .box {
  box-shadow: 0 0 10px rgba(80, 120, 255, 0.4), inset 0 0 20px rgba(0,0,0,0.7);
}

body.dark-mode .about-text,
body.dark-mode .project-desc,
body.dark-mode .project-title {
  color: var(--text-main);
}

body.dark-mode .gb-form input,
body.dark-mode .gb-form textarea {
  background: #0d0d2e;
  color: var(--text-main);
  border-color: #4466ff;
}

body.dark-mode .gb-entry {
  background: rgba(15, 15, 50, 0.9);
}

body.dark-mode .info-table .val {
  color: var(--very-light-white);
}

body.dark-mode .status-bar {
  background: #050518;
}

body.dark-mode .site-footer {
  color: #aaa;
}

.dark-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: linear-gradient(10deg, #fbfbff, #dcdaff, #fbfbff);
  border: 2px solid var(--hot-blue);
  border-radius: 25px;
  color: var(--hot-blue);
  font-family: 'Nintendo', monospace;
  font-size: 22px;
  width: 48px;
  height: 48px;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  box-shadow: 2px 2px 0 #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
}

body.dark-mode .dark-toggle {
  background: #0d0d2e;
  color: #a0b4ff;
  border-color: #4466ff;
  box-shadow: 2px 2px 0 #4466ff;
}

body.dark-mode .dark-toggle:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
  background: #515cff;
}

.dark-toggle:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
  background: #00065e;
}


body {
  background-color: #000000;
  background-image: url("imgs/bglace.gif");
  background-repeat: repeat-x repeat-y;
  font-size: 20px;
  min-height: 100vh;
  cursor: url("imgs/cursors/Wii Pointer.cur"), auto;
  font-family: 'Nintendo', monospace;
  color: var(--text-main);
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: #006eff;
}

html::-webkit-scrollbar-thumb {
  background: #b6d5ff; 
  border-radius: 10px;
  border: 2px solid #001b57; 
}

html::-webkit-scrollbar-thumb:hover {
  background: #80d8ff;
}

a:hover,
button:hover,
.pet-btn:hover,
.gallery-item:hover,
.project-link:hover,
.nav-bar a:hover {
    cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.03),
    rgba(0,0,0,0.03) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
}

.sticky-nav {
  background:
    linear-gradient(
      180deg,
      rgba(220, 235, 255, 0.25) 0%,
      rgba(170, 210, 255, 0.12) 40%,
      rgba(100, 170, 255, 0.308) 100%
    );

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  border-top: 1px solid rgba(181, 216, 255, 0.7);
  border-bottom: 1px solid rgba(111, 188, 255, 0.5);

  box-shadow:
    0 4px 12px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(120,180,255,0.25);

  padding: 4px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  display: flex;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.sticky-nav.visible {
  opacity: 1;
  pointer-events: auto;
}
.sticky-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.sticky-nav-inner a {
  background: linear-gradient(10deg, #fbfbff, #dcdaff, #fbfbff);
  border: 2px solid var(--hot-blue);
  color: var(--hot-blue);
  text-decoration: none;
  padding: 3px 10px;
  font-family: 'Nintendo', monospace;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.1s;
  box-shadow: 2px 2px 0 #000;
}
.sticky-nav-inner a:hover {
  background: var(--hot-blue);
  color: #ffffff;
}


.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px;
}

.site-header {
  text-align: center;
  padding: 20px 10px 10px;
  position: relative;
  font-size: 30px;
}

@keyframes sparkle {
  from { opacity: 1; text-shadow: 0 0 8px #ff00aa; }
  to { opacity: 0.4; text-shadow: 0 0 20px #ff00aa, 0 0 40px #ff00aa; }
}
.site-title {
  font-family: 'Nintendo', monospace;
  font-size: 55px;
  color: var(--hot-blue);
  margin: 8px 0;
  line-height: 1.6;
}

.visitor-counter {
  display: inline-block;
  margin: 8px auto;
  border: 2px solid var(--very-light-white);
  padding: 4px 16px;
  font-family: 'Nintendo', monospace;
  font-size: 36px;
  background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

@font-face { font-family: Nintendo; src: url('fonts/Nintendo-DS-BIOS.ttf') format('truetype'); }
@font-face { font-family: OldEnglish; src: url('fonts/EnglishTowne.ttf') format('truetype'); }

.nav-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 12px 0;
}
.nav-bar a {
  background: linear-gradient(10deg, #fbfbff, #dcdaff, #fbfbff);
  border: 2px solid var(--hot-blue);
  color: var(--hot-blue);
  text-decoration: none;
  padding: 5px 12px;
  font-family: 'Nintendo', monospace;
  font-weight: 700;
  font-size: 22px;
  transition: all 0.1s;
  box-shadow: 2px 2px 0 #000;
}
.nav-bar a:hover {
  background: var(--hot-blue);
  color: #ffffff;
  transform: translate(-1px,-1px);
  box-shadow: 3px 3px 0 #000;
}

.main-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
}
.col-left { width: 220px; vertical-align: top; }
.col-right { vertical-align: top; }

.box {
  background: var(--table-bg);
  border: 2px solid var(--border-glow);
  box-shadow: 0 0 10px rgba(25, 0, 255, 0.3), inset 0 0 20px rgba(0,0,0,0.5);
  margin-bottom: 10px;
  overflow: hidden;
}
.box-header {
  background: linear-gradient(90deg, #6fbaff, #0011ff, #6fbaff);
  border-bottom: 2px solid var(--hot-blue);
  padding: 5px 10px;
  font-family: 'Nintendo', monospace;
  font-size: 30px;
  color: var(--very-light-white);
  text-shadow: 1px 1px 0 #000;
  display: flex;
  align-items: center;
  gap: 6px;
}
.box-header .icon { font-size: 16px; }
.box-body { padding: 10px; }

.profile-pic {
  width: 300px;
  height: 350px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(90deg, #6fbaff, #0011ff, #6fbaff);
  border: 3px solid var(--hot-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.profile-pic img {
  transform: rotate(0deg) translateX(0px) translateY(-5px);
  width: 360px;
  height: auto;
}

.profile-pic::after {
  content: '';
  position: absolute;
  inset: -200% 0;

  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0.20) 0px,
    rgba(0,0,0,0.20) 1px,
    transparent 1px,
    transparent 4px
  );

  pointer-events: none;
  z-index: 2;

  animation: crtScroll 1s linear infinite;
}

@keyframes crtScroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(4px);
  }
}

.status-bar {
  background: #000;
  border: 1px solid var(--hot-blue);
  padding: 4px 8px;
  font-size: 14px;
  color: var(--lime);
  margin-bottom: 6px;
}
.status-bar span { color: var(--hot-blue); }
.info-table { width: 100%; font-size: 20px; }
.info-table td { padding: 2px 4px; }
.info-table .label { color: var(--hot-blue); width: 40%; }
.info-table .val { color: var(--cyan); }

.blinkies {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.blinkie {
  font-size: 11px;
  padding: 2px 6px;
  font-family: 'Nintendo', monospace;
  animation: blink 0.7s step-end infinite;
}
.blinkie-pink { background: var(--hot-blue); color: #000; }
.blinkie-cyan { background: var(--cyan); color: #000; animation-delay: 0.3s; }
.blinkie-lime { background: var(--lime); color: #000; animation-delay: 0.6s; }
.blinkie-gold { background: var(--very-light-white); color: #000; animation-delay: 0.15s; }

.now-playing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  background: #3a5eff15;
  font-family: 'OldEnglish', monospace;
  font-size: 20px;
  border: 1px solid #0000ff;
  padding: 8px;
}
.vinyl {
  width: 90px;
  height: 90px;
  background: url("imgs/vinyl.png");
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  position: relative;

  animation: vinylrotate 10s linear infinite;
  animation-play-state: paused;
}

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

.track-info { flex: 1; overflow: hidden; min-width: 0; }
.track-title {
  font-size: 23px;
  color: var(--cyan);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.track-artist { font-size: 20px; color: #564a8b; }

.playlist-scroll-wrap {
  max-height: calc(4 * 32px); 
  overflow-y: auto;
  border-top: 1px solid rgba(4, 0, 255, 0.3);
  scrollbar-width: thin;
  scrollbar-color: var(--hot-blue) #b9d1ff;
}
.playlist-scroll-wrap::-webkit-scrollbar { width: 7px; }
.playlist-scroll-wrap::-webkit-scrollbar-track { background: #000122; }
.playlist-scroll-wrap::-webkit-scrollbar-thumb { background: var(--hot-blue); border-radius: 0; }

.player-controls {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 8px;
}

.ctrl-btn {
  background: linear-gradient(180deg, #0400ff, #5171ff);
  border: 2px solid #0011fa;
  color: #ddd;
  font-size: 16px;
  width: 34px; height: 34px;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: monospace;
  flex-shrink: 0;
  transition: background 0.15s;
}

.ctrl-btn:hover {
  background: #00ffff;
}
.ctrl-btn#playBtn {
  width: 40px; height: 40px;
  font-size: 20px;
  border-color: var(--hot-blue);
}

.progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.progress-bar-outer {
  background: #001aff48;
  border: 1px solid #0000ff;
  height: 12px;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  position: relative;
  overflow: hidden;
}
.progress-bar-outer:hover { border-color: var(--hot-blue); }
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #04003d, var(--hot-blue));
  transition: width 0.25s linear;
  pointer-events: none;
}
.progress-bar-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: #fff;
  left: var(--scrub, 0%);
  transform: translateX(-50%);
  opacity: 0;
  transition: left 0.25s linear;
}
.progress-bar-outer:hover::after { opacity: 0.6; }

.time-display {
  font-size: 12px;
  color: #777;
  letter-spacing: 1px;
  font-family: 'Nintendo', monospace;
  white-space: nowrap;
  text-align: right;
}

.vol-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.vol-row label { font-size: 15px; color: var(--hot-blue); flex-shrink: 0; }
.vol-row input[type=range] {
  -webkit-appearance: none;
  flex: 1;
  height: 6px;
  background: #5a8eff;
  border: 1px solid #0000ff;
  outline: none;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
}
.vol-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: var(--hot-blue);
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  border-radius: 0;
}
.vol-row input[type=range]::-moz-range-thumb {
  width: 14px; height: 14px;
  background: var(--hot-blue);
  border: none;
  border-radius: 0;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
}

.player-status {
  font-size: 13px;
  color: #777;
  min-height: 18px;
  margin-bottom: 6px;
  font-style: italic;
}
.player-status.error   { color: #ff4444; }
.player-status.loading { color: var(--very-light-white); }

.playlist { list-style: none; }
.playlist li {
  padding: 5px 8px;
  font-size: 14px;
  font-family: 'OldEnglish', monospace;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  border-bottom: 1px solid rgba(125, 111, 255, 0.2);
  display: flex;
  gap: 8px;
  align-items: center;
  transition: background 0.1s;
}
.playlist li:hover { background: rgba(14, 0, 204, 0.2); }
.playlist li.active { color: var(--hot-blue); background: rgba(255,0,170,0.08); }
.playlist li.active::before { content: '▶ '; font-size: 10px; }
.playlist li .pnum { color: #444; font-family: 'OldEnglish', monospace; font-size: 12px; min-width: 18px; flex-shrink: 0; }
.playlist li .ptitle { flex: 1; font-size:14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #06003898; }
.playlist li.active .ptitle { font-family: 'OldEnglish', monospace; font-size: 15px; color: var(--hot-blue); }
.playlist li .partist { color: #666; font-size: 14px; white-space: nowrap; }

.pet-area { text-align: center; padding: 10px; }
.pet-display {
  font-size: 64px;
  line-height: 1;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pet-display.eating  { animation: wiggle 0.3s ease 3; }
.pet-display.petting { animation: bounce 0.3s ease 3; }
@keyframes wiggle {
  0%,100%{transform:rotate(0)}25%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}
}
@keyframes bounce {
  0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}
}
.pet-stats {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px 0;
}
.stat-bar-wrap { font-size: 13px; text-align: left; }
.stat-label { color: var(--hot-blue); font-size: 16px; }
.stat-bar { width: 80px; height: 10px; background: #111; border: 1px solid #0000ff; overflow: hidden; }
.stat-fill { height: 100%; transition: width 0.5s; }
.stat-fill.hunger { background: linear-gradient(90deg, #ff3c00, #ffdb11); }
.stat-fill.happy  { background: linear-gradient(90deg, #1100ff,#ff066e) }
.stat-fill.energy { background: linear-gradient(90deg, #008cff, #f3fcff);; }
.pet-msg { font-size: 15px; color: var(--cyan); min-height: 22px; margin: 4px 0; }
.pet-btns { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.pet-btn {
  background: linear-gradient(45deg, #7cc0ff, #0011ff, #7cc0ff);
  border: 2px solid var(--hot-blue);
  color: var(--very-light-white);
  padding: 5px 12px;
  font-family: 'Nintendo', monospace;
  font-size: 20px;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
}
.pet-btn:hover { background: var(--hot-blue); color: #000; }

.project-entry {
  border: 1px solid rgba(31, 0, 204, 0.4);
  padding: 8px;
  margin-bottom: 8px;
  background: rgba(198, 199, 255, 0.3);
  transition: border-color 0.2s;
}
.project-entry:hover { border-color: var(--hot-blue); }
.project-title { color: #000; font-family: 'Nintendo', monospace; font-size: 30px; margin-bottom: 4px; }
.project-tags { display: flex; gap: 4px; flex-wrap: wrap; margin: 4px 0; }
.tag { background: #0000ff; color: #fff; font-size: 20px; padding: 1px 8px; }
.project-desc { font-size: 20px; color: #000000; line-height: 1.4; }
.project-link { display: inline-block; margin-top: 4px; color: var(--cyan); text-decoration: none; font-size: 19px; }
.project-link:hover { text-decoration: underline; color: var(--hot-blue); }

.project-ss{
  width:283px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery-item {
  width: 100%;
  aspect-ratio: auto;
  border: 2px solid #0000ff;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  position: relative;
  overflow: hidden;
  background: rgba(131, 131, 255, 0);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.gallery-item:hover { border-color: var(--hot-blue); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(19, 17, 143, 0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-family: 'Nintendo', monospace;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  padding: 4px; text-align: center;
}
.gallery-item canvas { width: 100%; height: 100%; display: block;}

.guestbook-emoji {
  vertical-align: middle;
}

.gb-editor {
  min-height: 100px;
  padding: 8px;
  border: 1px solid #aaa;
  background: white;
  overflow-y: auto;
  word-wrap: break-word;
}

body.dark-mode .gb-editor {
  background: #0d0d2e;
  color: var(--text-main);
  border-color: #4466ff;
}

.gb-editor.is-empty::before {
  content: attr(data-placeholder);
  color: #888;
  pointer-events: none;
}


.gb-form { margin-bottom: 12px; }
.gb-form input, .gb-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #0000ff;
  color: var(--text-main);
  font-family: 'VT323', monospace;
  font-size: 16px;
  padding: 5px 8px;
  margin-bottom: 5px;
  outline: none;
}
.gb-form input:focus, .gb-form textarea:focus {
  border-color: var(--hot-blue);
  box-shadow: 0 0 6px rgba(15, 0, 228, 0.4);
}
.gb-form textarea { resize: vertical; min-height: 60px; }
.gb-emojis {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin: 6px 0;
  background: rgba(0, 26, 255, 0.041);
  padding: 6px;
  border: 1px solid rgba(153,0,204,0.4);
}
.gb-emoji { cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;; font-size: 20px; padding: 2px 4px; transition: transform 0.1s; user-select: none; line-height: 1; }
.gb-emoji:hover { transform: scale(1.4); }
.gb-submit {
  background: linear-gradient(180deg, var(--hot-blue), #87d9ff);
  border: 2px solid #ff88cc;
  color: #fff;
  font-family: 'Nintendo', monospace;
  font-size: 16px;
  padding: 8px 16px;
  cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer;
  box-shadow: 2px 2px 0 #000;
}
.gb-submit:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 #000; }
.gb-submit:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 #000; }
.gb-entry { border: 1px solid rgba(153,0,204,0.4); padding: 8px; margin-bottom: 6px; background: rgba(0, 0, 0, 0.808); font-size: 19px; }
.gb-entry-header { display: flex; justify-content: space-between; margin-bottom: 4px; }
.gb-name { color: #cdd8ff; font-family: 'Nintendo', monospace; font-size: 20px; }
.gb-date { color: #d1d1d1; font-size: 17px; }
.gb-text { color: #ddd; word-break: break-word; }

.gb-entries {
  max-height: calc(13 * 69px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hot-blue) #b9d1ff;
}
.gb-entries::-webkit-scrollbar { width: 7px; }
.gb-entries::-webkit-scrollbar-track { background: #000122; }
.gb-entries::-webkit-scrollbar-thumb { background: var(--hot-blue); border-radius: 0; }

.contact-list { list-style: none; }
.contact-list li { padding: 6px 0; border-top: 1px dotted rgba(153,0,204,0.4); font-size: 21px; display: flex; align-items: center; gap: 10px; }
.contact-list .cicon { font-size: 22px; }
.contact-list a { color: var(--cyan); text-decoration: none; }
.contact-list a:hover { color: var(--hot-blue); text-decoration: underline; }

.lightbox-title:empty {
  display: none;
}

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-img { min-height:70%; max-height: 90%; border: 3px solid var(--hot-blue); box-shadow: 0 0 40px rgba(0, 25, 247, 0.5); }
.lightbox-title { color: var(--very-light-white); font-family: 'Nintendo', monospace; font-size: 12px; margin-top: 12px; }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 32px;cursor: url("imgs/cursors/Wii Pointer Open Hand.cur"), pointer; color: var(--hot-blue); }

.site-footer { text-align: center; padding: 20px; border-top: 2px solid #0000ff; margin-top: 16px; font-size: 14px; color: #666; }
.site-footer a { color: var(--purple); }

.divider { text-align: center; color: var(--hot-blue); font-size: 20px; margin: 4px 0; letter-spacing: 4px; }

.about-text { font-size: 20px; color: #000000; line-height: 1.5; }
.about-text p { margin-bottom: 30px; }
.about-text em { color: var(--hot-blue); font-style: normal; }

.box { animation: fadeInUp 0.4s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.col-left .box:nth-child(2) { animation-delay: 0.1s; }
.col-left .box:nth-child(3) { animation-delay: 0.2s; }
.col-left .box:nth-child(4) { animation-delay: 0.3s; }
.col-right .box:nth-child(2) { animation-delay: 0.15s; }
.col-right .box:nth-child(3) { animation-delay: 0.25s; }
.col-right .box:nth-child(4) { animation-delay: 0.35s; }

.mood-bar { display: flex; align-items: center; gap: 6px; font-size: 15px; margin: 4px 0; }
.mood-label { color: var(--hot-blue); }

.rainbow-text, .site-header {
  background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff);
  text-shadow: 0px 3px #0011fa;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.section-anchor { display: block; position: relative; top: -60px; }


.inline-gif {
    height: 1.2em;
    vertical-align: middle;
}

.about-text ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 10px 0 30px;
}

.about-text li {
  display: list-item;
}



@media (max-width: 600px) {
  .main-table, .main-table tbody, .main-table tr, .main-table td { display: block; width: 100%; }
  .col-left { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}