/* === Base Styling === */
body {
  font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
  background: repeating-linear-gradient(45deg, red, orange, yellow, green, blue, indigo, violet);
  color: white;
  margin: 0;
  padding-top: 100px;
  text-align: center;
  overflow-x: hidden;
}

/* === Navigation Styling === */
nav {
  background-color: #333;
  padding: 20px;
  border-radius: 15px;
  margin: 30px auto;
  max-width: 600px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 10px 0;
}

nav a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: #66ffe0;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* === Music Player Styling === */
.player {
  background: #222;
  padding: 30px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin: 20px auto;
}

.controls button {
  font-size: 18px;
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#play-btn { background-color: #4caf50; color: white; }
#pause-btn { background-color: #f44336; color: white; }
#prev-btn, #next-btn { background-color: #555; color: white; }

.volume-control {
  margin-top: 20px;
}

.volume-control input[type="range"] {
  width: 200px;
}

#song-title {
  font-size: 20px;
  margin-bottom: 20px;
}

/* === Majora’s Mask Floating GIF === */
#majora-mask {
  position: fixed;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 1000;
  animation: float 4s ease-in-out infinite, blink 5s infinite;
  /* start at random position by JS */
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes blink {
  0%, 20%, 100% { filter: brightness(1); }
  10%, 15% { filter: brightness(0.2); }
}

/* === Live Clock Styling === */
#live-clock {
  position: fixed;
  top: 10px;
  left: 10px;
  font-family: monospace, monospace;
  font-size: 18px;
  color: #00ffcc;
  text-shadow: 0 0 5px #00ffcc;
  user-select: none;
  z-index: 1500;
}


