/* style.css - Custom stylesheet for the Retro Vortex fansite */

/* Apply a pixelated font to specific elements */
.pixel-font {
    font-family: 'Press Start 2P', cursive;
}

/* Habbo-style background */
body.bg-habbo {
    background-image: url('https://i.imgur.com/KzS2a7A.png');
    background-repeat: repeat;
    background-color: #87CEEB; /* Sky blue fallback */
    transition: background-color 0.3s ease;
}

/* Dark mode overlay for the background image */
.dark body.bg-habbo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://i.imgur.com/KzS2a7A.png');
}

/* --- Custom Radio Player Slider --- */
.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  transition: opacity .2s;
}

.dark .custom-slider {
    background: #4a5568; /* gray-700 */
}

.custom-slider:hover {
  opacity: 1;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3b82f6; /* blue-500 */
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.dark .custom-slider::-webkit-slider-thumb {
    background: #60a5fa; /* blue-400 */
    border-color: #2d3748; /* gray-800 */
}

.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #3b82f6;
  cursor: pointer;
  border: 2px solid #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.dark ::-webkit-scrollbar-track {
  background: #2d3748;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}
.dark ::-webkit-scrollbar-thumb {
  background: #b7b7b7;
  border-color: #2d3748;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.dark ::-webkit-scrollbar-thumb:hover {
    background: #e0e0e0;
}
