/* style.css */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  transition: background 0.5s ease, color 0.5s ease;
}

.container {
  max-width: 95%;
  padding: 20px;
}

h1 {
  color: #f5c518;
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #f0f;
}

.info-block > div {
  margin: 10px 0;
  font-size: 1.2em;
}

.quick-links {
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 95%;
}

.quick-links a {
  background-color: #333;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  min-width: 100px;
  text-align: center;
  flex: 1 1 auto;
}

.quick-links a:hover {
  background-color: #555;
}

textarea {
  width: 90%;
  max-width: 400px;
  height: 80px;
  margin-top: 20px;
  border-radius: 8px;
  padding: 10px;
  font-family: monospace;
  font-size: 1em;
  resize: none;
  background-color: #222;
  color: #fff;
  border: 1px solid #444;
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #666;
}

.theme-toggle {
  margin-top: 20px;
}

/* Spotify Block */
.spotify-block {
  margin: 20px 0;
}

.spotify-block button {
  background-color: #1DB954;
  color: #fff;
  font-weight: bold;
}

.spotify-block button:hover {
  background-color: #1aa34a;
}

#spotify-nowplaying {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(29, 185, 84, 0.6);
}

#spotify-nowplaying img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-right: 10px;
}

#track-info {
  text-align: left;
}

#song-name {
  font-weight: bold;
}

#artist-name {
  font-size: 0.9em;
  opacity: 0.8;
}

/* Utility */
.hidden {
  display: none;
}

/* Light Mode */
body.light {
  background-color: #f5f5f5;
  color: #111;
}

body.light .quick-links a {
  background-color: #ddd;
  color: #111;
}

body.light textarea {
  background-color: #fff;
  color: #000;
}

/* Vapor Mode */
body.vapor {
  background: linear-gradient(135deg, #4b0082, #ff00ff, #00ffff);
  color: #fff;
  animation: vaporwave 15s ease infinite;
  background-size: 300% 300%;
}

@keyframes vaporwave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}