* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: linear-gradient(160deg, #7ec8e3 0%, #a8d8ea 30%, #c5e8c5 70%, #90c8a0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Tahoma, Arial, sans-serif;
  padding: 20px 0;
}

/* ── OUTER WINDOW ── */
.outer-win {
  width: 370px;
  background: rgba(180, 215, 245, 0.55);
  backdrop-filter: blur(4px);
  border-top: 2px solid rgba(255,255,255,0.9);
  border-left: 2px solid rgba(255,255,255,0.9);
  border-right: 2px solid #5a8fc0;
  border-bottom: 2px solid #5a8fc0;
  border-radius: 6px 6px 4px 4px;
  box-shadow:
    0 0 0 1px #3a70b0,
    3px 3px 0 #2a5090,
    0 0 40px rgba(80,160,220,0.4);
  overflow: hidden;
}

/* ── TITLE BAR (outer) ── */
.outer-titlebar {
  background: linear-gradient(180deg, #5ba8e8 0%, #2070cc 45%, #1050aa 100%);
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  border-bottom: 1px solid #0a3888;
}

.outer-titlebar .t-left {
  display: flex; align-items: center; gap: 5px;
}

.outer-titlebar .t-icon { font-size: 13px; }

.outer-titlebar .t-title {
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px #0038a0;
  letter-spacing: 0.2px;
}

.outer-titlebar .t-heart {
  font-size: 13px;
  color: #fff;
  margin-right: 4px;
  text-shadow: 0 0 6px #ffaacc;
}

.win-btns { display: flex; gap: 2px; }

.win-btn {
  width: 18px; height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.3);
  font-size: 9px;
  font-weight: bold;
  font-family: Marlett, Tahoma, sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  line-height: 1;
}
.win-btn:hover { filter: brightness(1.25); }
.btn-min { background: linear-gradient(180deg,#70b8f0,#3880d8); }
.btn-max { background: linear-gradient(180deg,#70b8f0,#3880d8); }
.btn-cls { background: linear-gradient(180deg,#f07070,#cc2020); }

/* ── BODY PADDING ── */
.outer-body {
  padding: 10px 9px 9px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ── WINAMP BAR ── */
.winamp {
  background: linear-gradient(90deg,#e8e0d0,#d8cfc0,#e8e0d0);
  border: 1px solid #a09080;
  border-radius: 2px;
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0 6px;
  gap: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 1px 1px 0 #887060;
  position: relative;
}

.winamp-logo {
  background: linear-gradient(135deg,#e87820,#c05010);
  border: 1px solid #803808;
  border-radius: 2px;
  font-size: 9px;
  font-weight: bold;
  color: #fff;
  padding: 1px 4px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  font-family: Arial, sans-serif;
}

.winamp-title {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.3px;
}

.winamp-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Windows XP logo (colored squares) */
.xp-logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 20px; height: 20px;
}
.xp-logo span {
  border-radius: 1px;
  display: block;
}

/* ── JAPANESE TEXT ── */
.ch-text {
  font-family: 'MS Gothic', 'Meiryo', monospace;
  font-size: 20px;
  color: #2761b9;
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
  padding: 0 4px;
}

/* ── WINDOWS MEDIA PLAYER ── */
.wmp-window {
  border: 2px solid #4a88cc;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 2px 0 #1a4888, inset 0 0 0 1px rgba(255,255,255,0.3);
}

.wmp-titlebar {
  background: linear-gradient(180deg,#5ba8e8 0%,#2070cc 45%,#1050aa 100%);
  height: 22px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5px;
}

.wmp-t-left { display: flex; align-items: center; gap: 4px; }

.wmp-icon {
  width: 14px; height: 14px;
  background: radial-gradient(circle at 35% 35%, #ff9900, #cc5500);
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.wmp-title-txt {
  font-size: 10px; font-weight: bold; color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.wmp-btns { display: flex; gap: 2px; }
.wmp-btn {
  width: 16px; height: 14px;
  border-radius: 2px;
  font-size: 8px; font-weight: bold; color: #fff;
  background: linear-gradient(180deg,#70b8f0,#3880d8);
  border: 1px solid rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.wmp-btn.cls { background: linear-gradient(180deg,#f07070,#cc2020); }

.wmp-menubar {
  background: #ece9d8;
  border-bottom: 1px solid #a0a090;
  display: flex;
  padding: 1px 4px;
  gap: 0;
}
.wmp-menubar span {
  font-family: Tahoma, sans-serif;
  font-size: 10px;
  color: #000;
  padding: 1px 7px;
  cursor: default;
}
.wmp-menubar span:hover { background: #316ac5; color: #fff; }

/* WMP art area */
.wmp-art {
  height: 190px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.4) 0%, transparent 60%),
    linear-gradient(160deg, #87ceeb 0%, #4a9fd4 25%, #1a5aa0 55%, #0a3070 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Water waves */
.wave {
  position: absolute;
  bottom: 30px;
  left: -10%;
  width: 120%;
  height: 60px;
  background: rgba(255,255,255,0.18);
  border-radius: 50% 50% 0 0;
  animation: waveAnim 4s ease-in-out infinite;
}
.wave2 {
  bottom: 20px;
  animation-delay: -2s;
  opacity: 0.12;
  background: rgba(180,230,255,0.3);
}

@keyframes waveAnim {
  0%,100% { transform: scaleX(1.05) translateY(0); }
  50% { transform: scaleX(0.95) translateY(-8px); }
}

/* Floating elements */
.fish-float {
  position: absolute;
  font-size: 18px;
  animation: fishSwim 6s ease-in-out infinite;
}
.butterfly {
  position: absolute;
  font-size: 16px;
  animation: butterflyFloat 5s ease-in-out infinite;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(180,220,255,0.3));
  border: 1px solid rgba(255,255,255,0.6);
  animation: bubbleRise linear infinite;
}

@keyframes fishSwim {
  0%,100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(8px) translateY(-5px); }
  75% { transform: translateX(-5px) translateY(5px); }
}
@keyframes butterflyFloat {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}
@keyframes bubbleRise {
  from { transform: translateY(0); opacity: 0.8; }
  to { transform: translateY(-200px); opacity: 0; }
}

/* anime girl silhouette using CSS */
.anime-figure {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 12px rgba(180,230,255,0.9));
}

.anime-figure .hair {
  font-size: 56px;
  line-height: 1;
  filter: hue-rotate(200deg) saturate(2);
}

.anime-figure .body-txt {
  font-size: 32px;
  margin-top: -10px;
}

/* ── WMP CONTROLS ── */
.wmp-controls {
  background: linear-gradient(180deg, #2a2a3a, #1a1a28);
  padding: 5px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ctrl-btn {
  font-size: 14px;
  cursor: pointer;
  color: #aac8f0;
  transition: color 0.1s;
  line-height: 1;
  user-select: none;
}
.ctrl-btn:hover { color: #fff; }

.progress-bar {
  flex: 1;
  height: 5px;
  background: #334;
  border-radius: 2px;
  margin: 0 4px;
  position: relative;
  cursor: pointer;
}
.progress-fill {
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, #44aaff, #0066cc);
  border-radius: 2px;
}
.progress-bar::after {
  content:'';
  position: absolute;
  right: 65%;
  top: -2px;
  width: 8px; height: 9px;
  background: #88ccff;
  border-radius: 2px;
  box-shadow: 0 0 4px #44aaff;
}

.vol-bar {
  width: 40px; height: 5px;
  background: #334;
  border-radius: 2px;
  cursor: pointer;
}
.vol-fill {
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg,#44ff88,#00cc55);
  border-radius: 2px;
}

.time-txt {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #aac8f0;
}

/* ── CD + PROFILE ── */
.profile-section {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 2px;
}

.cd {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #c0d4f0 0deg, #8ab0e0 40deg,
    #5080c0 80deg, #1848a0 120deg,
    #3870c8 160deg, #90bce8 200deg,
    #ffffff 240deg, #b8d4f0 280deg,
    #7098d0 320deg, #c0d4f0 360deg
  );
  border: 3px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 10px rgba(0,50,180,0.45), inset 0 0 8px rgba(255,255,255,0.3);
  position: relative;
  flex-shrink: 0;
  animation: spinCD 5s linear infinite;
}

@keyframes spinCD {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cd::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle,#dde8f8,#aac4e8);
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 6px rgba(0,80,200,0.4);
  z-index: 2;
}

.cd-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle,#b0c8e8,#7898c8);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.cd-label-text {
  font-size: 6px;
  font-family: Arial, sans-serif;
  color: rgba(0,30,80,0.7);
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  transform: rotate(-10deg);
}

.profile-info {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #001a55;
  line-height: 1.7;
}

.profile-handle {
  font-size: 12px;
  font-weight: bold;
  color: #0044cc;
  display: flex; align-items: center; gap: 3px;
}

.profile-age {
  display: flex; align-items: center; gap: 3px;
  font-size: 11px;
}

.profile-pronoun {
  display: flex; align-items: center; gap: 3px;
}
.pronoun-link { text-decoration: underline; color: #001a55; }

.profile-id {
  font-size: 11px;
  display: flex; align-items: center; gap: 3px;
}

.profile-name {
  font-size: 11px;
  display: flex; align-items: center; gap: 3px;
}

.heart-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3060c8, #4888e0);
  border: 1px solid #1a40a0;
  border-radius: 3px;
  padding: 2px 10px;
  font-size: 11px;
  color: #fff;
  font-family: Tahoma, sans-serif;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
  margin-top: 2px;
  user-select: none;
}

/* ── NAV BUTTONS ── */
.nav-section {
  background: rgba(200, 225, 248, 0.55);
  border: 1px solid rgba(100,160,220,0.5);
  border-radius: 3px;
  padding: 7px 6px;
}

.nav-label-top {
  text-align: center;
  font-size: 9px;
  font-family: Tahoma, sans-serif;
  color: #224488;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}

.nav-btn {
  background: linear-gradient(180deg, #eaf4ff 0%, #c0dcf8 50%, #90c0f0 100%);
  border: 1px solid #4a88cc;
  border-bottom: 2px solid #1a5098;
  border-right: 2px solid #1a5098;
  border-radius: 3px;
  padding: 6px 4px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 10px;
  color: #002266;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.08s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  user-select: none;
}

.nav-btn:hover {
  background: linear-gradient(180deg, #d0eaff 0%, #90c8ff 50%, #50a0e8 100%);
  box-shadow: 0 0 6px rgba(80,160,255,0.6), inset 0 1px 0 rgba(255,255,255,0.8);
  color: #001144;
}

.nav-btn:active {
  transform: translateY(1px);
  border-bottom: 1px solid #1a5098;
  border-right: 1px solid #1a5098;
  background: linear-gradient(180deg, #90c0f0 0%, #c0dcf8 100%);
  box-shadow: none;
}

.nav-btn .btn-icon { font-size: 16px; line-height: 1; }
.nav-btn .btn-label { font-size: 9px; line-height: 1; }
.nav-btn.wide { grid-column: span 3; flex-direction: row; gap: 5px; padding: 5px 8px; font-size: 10px; }
.nav-btn.span2 { grid-column: span 2; flex-direction: row; gap: 5px; padding: 5px 8px; }

/* ── LINKS ROW ── */
.links-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 2px;
}

.links-row a {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #3366cc;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.links-row a:hover { text-decoration: underline; color: #0044ff; }
.links-dot { color: #7799bb; font-size: 11px; }

/* ── THUMB STRIP ── */
.thumb-strip {
  display: flex;
  gap: 4px;
}

.thumb {
  flex: 1;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.7);
  border-right: 2px solid #4a78b0;
  border-bottom: 2px solid #4a78b0;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.thumb-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: white;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.thumb-bg.t1 { background: linear-gradient(135deg,#87ceeb,#2060a8); }
.thumb-bg.t2 { background: linear-gradient(135deg,#6ab870,#2a7830); }
.thumb-bg.t3 { background: linear-gradient(135deg,#7ab8e8,#0a50a0); }

/* ── STATUS BAR ── */
.statusbar {
  background: linear-gradient(180deg,#d5e8f8,#c0d8f0);
  border-top: 1px solid #a0c0d8;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sb-items {
  display: flex; gap: 2px; align-items: center;
}

.sb-item {
  font-family: Tahoma, sans-serif;
  font-size: 9px;
  color: #334455;
  padding: 1px 4px;
  border: 1px solid #9ab8d0;
  background: rgba(255,255,255,0.5);
  border-radius: 1px;
  cursor: default;
}

.sb-divider {
  width: 1px; height: 10px;
  background: #8ab0c8;
  margin: 0 2px;
}

.btn-img{
    width: 30px;
}

.i{
  width: 30px;
}

.in{
  width: 20px;
}