/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;

  /* Pozadina sa tvojom slikom */
  background-image: url('https://0-x.xyz/bck.jpg'); /* Dodaj putanju do tvoje slike */
  background-size: cover;
  background-position: center;
  
  /* Poluprozirni tamni sloj */
  background-color: rgba(0, 0, 0, 0.5); /* Dodaje tamniji sloj preko slike */
  
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 30px;
  
  /* Efekt kretanja pozadine */
  background-attachment: fixed; /* Drži pozadinu fiksiranom pri pomicanju stranice */
  animation: moveBackground 60s linear infinite; /* Dodaje animaciju kretanja pozadine */
  background-blend-mode: overlay; /* Kombinira boje pozadine sa slikom */
}

/* Animacija kretanja pozadine */
@keyframes moveBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Glavni okvir */
.container {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

/* Naslov */
header h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ff6600; /* Neon narandžasta */
  text-shadow: 0 0 20px #ff6600, 0 0 40px #ff6600, 0 0 60px #ff6600, 0 0 80px #ff6600; /* Neon narandžasta aura */
  animation: neonTextGlow 1.5s infinite alternate; /* Animacija treperenja */
}

@keyframes neonTextGlow {
  0% {
    text-shadow: 0 0 10px #ff6600, 0 0 30px #ff6600, 0 0 60px #ff6600, 0 0 80px #ff6600;
  }
  100% {
    text-shadow: 0 0 20px #ff6600, 0 0 40px #ff6600, 0 0 60px #ff6600, 0 0 100px #ff6600;
  }
}

header p {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #ff6600, 0 0 30px #ff6600, 0 0 50px #ff6600; /* Neon narandžasti tekst */
}

/* Player */
.player-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.5); /* Neon narandžasta */
}

.player-box audio {
  width: 100%;
  margin-top: 10px;
}

#current-label {
  margin-bottom: 10px;
  font-weight: 500;
  text-shadow: 0 0 10px #ff6600, 0 0 20px #ff6600; /* Neon narandžasti tekst */
}

/* Grid stanica */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.station-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.3); /* Neon narandžasta aura */
}

.station-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 0 24px #ff6600, 0 0 10px #ff6600; /* Neon hover efekat */
}

/* Slike loga stanica - Okrugle slike sa boljim kontrastom */
.station-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 0 8px #ff6600; /* Neon narandžasta */
  transition: all 0.3s ease-in-out; /* Glatka tranzicija za hover efekat */
}

/* Efekat pri hoveru na slike loga */
.station-card img:hover {
  box-shadow: 0 0 20px #ff6600, 0 0 30px #ff6600; /* Povećanje neon efekta pri hoveru */
}

.station-card h3 {
  font-size: 1.2em;
  font-weight: 600;
  text-shadow: 0 0 6px #ff6600, 0 0 20px #ff6600; /* Neon narandžasti tekst */
}

/* Animacija pozadine */
@keyframes cyberpunkGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Cyberpunk neon glow efekti */
.neon-text {
  font-size: 2.5em;
  color: #ff6600; /* Neon narandžasta */
  text-shadow: 0 0 20px #ff6600, 0 0 30px #ff6600, 0 0 40px #ff6600, 0 0 50px #ff6600; /* Neon narandžasta efekat */
}

/* Neon button */
button {
  background-color: transparent;
  border: 2px solid #ff6600; /* Neon narandžasta */
  color: #ff6600; /* Neon narandžasta */
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ff6600; /* Neon narandžasta */
  color: #000; /* Tamna boja teksta za kontrast */
  box-shadow: 0 0 15px #ff6600, 0 0 30px #ff6600; /* Neon narandžasta hover efekat */
}

/* Cyberpunk animacija za #select-station-text */
#select-station-text {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-shadow: 0 0 20px #ff6600, 0 0 40px #ff6600, 0 0 60px #ff6600, 0 0 100px #ff6600; /* Neon narandžasti tekst */
  animation: cyberpunkGlow 2s ease-in-out infinite alternate; /* Cyberpunk glow animacija */
}

/* Animacija za cyberpunk glow efekat */
@keyframes cyberpunkGlow {
  0% {
    text-shadow: 0 0 10px #ff6600, 0 0 20px #ff6600, 0 0 30px #ff6600;
    opacity: 0.8;
  }
  50% {
    text-shadow: 0 0 20px #ff6600, 0 0 40px #ff6600, 0 0 60px #ff6600;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 30px #ff6600, 0 
