@font-face {
  font-family: 'Headers';
  src: url('/fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RainyHearts';
  src: url('/fonts/rainyhearts.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BasicFont';
  src: url('/fonts/basiic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body, .window-bar, .window-title, .folder-btn span, .pixel-button, .sticker-btn, nav, .window-bar-blue, .window-bar-pink, .window-bar-yellow, .window-content, p, ul, li, button {
  font-family: 'RainyHearts', cursive, sans-serif !important;
}

.name-tag, h1 {
  font-family: 'Headers', monospace, sans-serif !important;
}

.folder-svg {
  display: block;
  margin-bottom: 2px;
  width: 48px;
  height: 38px;
}
/* Folder buttons for opening windows */
.folder-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 0 8px 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  transition: filter 0.12s, transform 0.12s;
}
.folder-btn img {
  width: 54px;
  height: 54px;
  margin-bottom: 4px;
  filter: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.folder-btn span {
  font-size: 13px;
  color: #0077cc;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
  margin-top: 2px;
}
.folder-btn:active {
  filter: brightness(0.92) contrast(1.1);
  transform: scale(0.97);
}
/* Colored window bars for Y2K/retro look */
.window-bar-blue {
  background: linear-gradient(90deg, #b3e0ff 60%, #7fc7ff 100%);
  color: #234b7a;
}
.window-bar-pink {
  background: linear-gradient(90deg, #ffd6f7 60%, #ffb3e6 100%);
  color: #a02c6d;
}
.window-bar-yellow {
  background: linear-gradient(90deg, #fff7b3 60%, #ffe680 100%);
  color: #a08a2c;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3em 0.8em 0.3em 0.7em;
  border-radius: 10px 10px 0 0;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  background: linear-gradient(90deg, #eaf6ff 60%, #b3e0ff 100%);
  color: #3a5ca4;
  font-size: 12px;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  border-bottom: none;
}
.window-close {
  background: #fff;
  border: 2px solid #b3e0ff;
  border-radius: 6px;
  color: #234b7a;
  font-size: 1.1em;
  font-family: inherit;
  cursor: pointer;
  margin-left: 10px;
  padding: 0 0.5em;
  transition: background 0.2s, color 0.2s;
}
.window-close:hover {
  background: #ffb3e6;
  color: #a02c6d;
}
.floating-window {
  position: absolute;
  min-width: 220px;
  max-width: 320px;
  z-index: 20;
  box-shadow: 0 4px 24px #b3e0ff55, 0 1.5px 0 #fff inset;
  border-radius: 12px;
  background: #fafdffcc;
  border: none;
  overflow: hidden;
  user-select: none;
}
.window-frame.mini {
  border-radius: 12px;
  overflow: hidden;
  background: none;
  box-shadow: none;
}
.window-content {
  padding: 1em 1.2em 1em 1.2em;
  font-family: 'Comic Neue', 'Pixelify Sans', 'VT323', 'Press Start 2P', cursive, monospace;
  background: #fafdffcc;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
  color: #234b7a;
}
/* Floating Y2K/cute sticker decorations */
.floating-sticker {
  position: absolute;
  font-size: 2.2rem;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 2px 8px #b3e0ff);
  user-select: none;
  animation: floatSticker 5s ease-in-out infinite alternate;
}

@keyframes floatSticker {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(1.08); }
}

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

body {
  min-height: 100vh;
  color: #0077cc;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
  padding: 20px;
  background: linear-gradient(180deg, #eaf6ff 0%, #cbe7ff 60%, #ffffff 100%);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
}

/* Y2K/retro window nav and floating windows */
.window-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  position: fixed;
  left: 38vw;
  top: 38vh;
  z-index: 110;
  margin: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}
.window-btn {
  display: flex;
}
.window-frame {
  background: #f8fbff;
  border: 2px solid #b3e0ff;
  border-radius: 12px 12px 10px 10px;
  box-shadow: 0 4px 16px #b3e0ff44, 2px 2px 0 #b3e0ff;
  min-width: 80px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.window-bar {
  width: 100%;
  background: linear-gradient(90deg, #eaf6ff 60%, #b3e0ff 100%);
  color: #3a5ca4;
  font-size: 12px;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
  padding: 2px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: none;
  border-bottom: none;
}
.window-dot {
  width: 10px;
  height: 10px;
  background: #b3e0ff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  border: 1.5px solid #3a5ca4;
}
.window-title {
  font-weight: bold;
  letter-spacing: 1px;
}
.window-content {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 8px 8px;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
}
.window-content img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px #b3e0ff);
}
.window-content:active {
  background: #eaf6ff;
  transform: scale(0.96);
}
.floating-window {
  position: absolute;
  z-index: 105;
  pointer-events: none;
}
.window-frame.mini {
  min-width: 60px;
  min-height: 40px;
  font-size: 10px;
  box-shadow: 0 2px 8px #b3e0ff44;
}


/* Sparkle stickers */
.sparkle {
  position: absolute;
  pointer-events: none;
  font-size: 22px;
  opacity: 0.7;
  animation: sparkle-float 2.5s ease-in-out infinite alternate;
  z-index: 100;
}

@keyframes sparkle-float {
  0% { transform: translateY(0) scale(1) rotate(-10deg); opacity: 0.7; }
  50% { transform: translateY(-10px) scale(1.1) rotate(10deg); opacity: 1; }
  100% { transform: translateY(0) scale(1) rotate(-10deg); opacity: 0.7; }
}


/* Top-left name */
.name-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4.2rem !important;
  color: #0077cc;
  letter-spacing: 2px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #b3e0ff;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
}


/* Hide the nav, we'll use stickers instead */
.header-buttons {
  display: none;
}

/* Sticker buttons */
.sticker-btn {
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
}
.sticker-btn img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 16px;
  background: #fff8;
  box-shadow: 0 2px 8px #b3e0ff44;
}
.sticker-btn span {
  display: block;
  font-size: 13px;
  color: #0077cc;
  margin-top: 2px;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
}
.sticker-btn:hover {
  transform: scale(1.12) rotate(-6deg);
  filter: drop-shadow(0 4px 12px #b3e0ffcc);
}

.pixel-button {
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
  font-size: 10px;
  padding: 10px 18px;
  color: #0077cc;
  border: 2px solid #b3e0ff;
  background: linear-gradient(180deg, #ffffff 60%, #eaf6ff 100%);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 2px 8px #b3e0ff44, 2px 2px 0 #b3e0ff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.pixel-button:hover {
  background: linear-gradient(180deg, #eaf6ff 60%, #ffffff 100%);
  color: #0077cc;
  box-shadow: 0 4px 16px #b3e0ff88, 2px 2px 0 #b3e0ff;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  gap: 20px;
}

h1 {
  font-size: 16px;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
}

p {
  font-size: 10px;
  max-width: 300px;
  font-family: 'Pixelify Sans', 'VT323', 'Press Start 2P', monospace, cursive;
}


/* Wavify SVG wave at the bottom */
.kanmoji-wave {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 80px;
  background: transparent;
  z-index: 100;
  padding: 0;
  overflow: hidden;
  border-top: none;
  box-shadow: none;
  pointer-events: none;
}
#myWave {
  display: block;
  width: 100vw;
  height: 80px;
  min-width: 100vw;
  min-height: 80px;
}
.now-listening-bar {
  position: fixed;
  top: 32px;
  right: 0;
  left: unset;
  width: calc(100vw - 39vw); /* Nudge slightly to the left */
  max-width: none;
  height: 2.8rem;
  z-index: 200;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: none;
}


