body {
    margin: 0;
    padding: 0;
    background-color: #1a0033;
    background-image: url('/img/site/background.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
    font-family: 'Arial', sans-serif;
  }
  
  /* Layout for logo + menu */
  .header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .logo-container {
    display: inline-block;
  }
  
  .logo-container img {
    display: block;
    height: 135px;
    width: auto;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-end;
    flex-grow: 1;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .nav-links a {
    font-family: 'Orbitron', sans-serif;
    text-decoration: none;
    color: #ffeb3b;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease;
  }
  
  .nav-links a:hover {
    transform: scale(1.1);
  }
  
  .listen-live {
    font-family: 'Orbitron', sans-serif;
    background-color: #ff1493;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.2s ease, transform 0.2s ease;
    animation: pulse-live 0.5s infinite alternate;
  }
  
  .listen-live:hover {
    background-color: #ff40b3;
    transform: scale(1.05);
  }

  @keyframes pulse-live {
  0% {
    box-shadow: 0 0 8px #ff1493, 0 0 16px #ff1493;
  }
  100% {
    box-shadow: 0 0 25px #ff1493, 0 0 30px #ff69b4;
  }
}

  
  /* Now Playing */
 .now-playing-box {
  background: linear-gradient(145deg, #00bfff 0%, #1e90ff 100%);
  border-radius: 20px;
  padding: 20px;
  max-width: 200px;
  margin: 20px 0 0 20px;
  font-family: 'Arial', sans-serif;
  color: white;
  box-shadow: 0 0 12px #00bfff, 0 0 20px #1a1aff;
  float: left;
  text-align: center;
}

.now-header {
  font-family: 'Orbitron', sans-serif;
  color: #ff1493;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
  text-shadow: 0 0 5px #ff1493, 0 0 10px #ff1493;
  letter-spacing: 1px;
}

.now-playing img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: contain;
  background-color: white;
  padding: 5px;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
  margin-bottom: 10px;
}

.track-title,
.artist-name,
.song-title {
  color: white;
  margin: 5px 0;
  font-size: 16px;
  line-height: 1.4;
}

.artist-name {
  font-weight: bold;
  font-size: 18px;
}

.previous-header {
  font-family: 'Orbitron', sans-serif;
  color: #ff1493;
  font-size: 18px;
  margin-top: 25px;
  text-shadow: 0 0 5px #ff1493, 0 0 10px #ff1493;
}

.previous-tracks {
 list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  font-size: 12.5px; /* slightly smaller than current */
  text-align: left;  /* override centre from parent */
}

.previous-tracks li {
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6px;
}


.now-playing-box {
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 8px #00bfff, 0 0 16px #1a1aff;
  }
  100% {
    box-shadow: 0 0 25px #00bfff, 0 0 30px #1a1aff;
  }
}

.prev-symbol {
  color: #ffff00;
  font-weight: bold;
  text-shadow: 0 0 4px #ffff00;
  margin-right: 6px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.track-line {
  flex: 1;
}

  
  /* Main content wrapper */
  .main-content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 40px 0 320px;
  }
  
  /* Hero section */
  .hero-box {
    background-color: #ff1493;
    border-radius: 16px;
    padding: 20px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    display: block;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }
  
  .hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  
  .hero-image {
    width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 300px;
  }
  
  .hero-text-content {
    flex: 1;
  }
  
  .hero-title {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    margin: 0 0 10px 0;
  }
  
  .hero-text {
    font-size: 18px;
    line-height: 1.5;
  }
  
  /* Ad banner */
  .ad-banner {
    background-color: #ffeb3b;
    margin: 20px 0;
    border-radius: 12px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

/* Default: show desktop, hide mobile */


.ad-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Hide mobile by default */
.ad-mobile {
  display: none;
}

/* Show mobile ad only on small screens */
@media screen and (max-width: 600px) {
  .ad-desktop {
    display: none;
  }
  .ad-mobile {
    display: inline-block;
  }
}

  
  /* Feature buttons */
  .feature-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  
  .feature-box {
    flex: 1 1 250px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-align: center;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
  }
  
  .feature-box h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
    color: white;
  }
  
  .feature-box img {
    width: 220px;
    height: auto;
    margin: 10px 0;
  }
  
  .feature-box p {
    font-size: 16px;
    line-height: 1.4;
    color: white;
  }
  
  .feature-box.pink {
    background-color: #ff1493;
  }
  
  .feature-box.yellow {
    background-color: #ffeb3b;
    color: black;
  }
  
  .feature-box.yellow h3 {
    color: black;
  }
  
  .feature-box.yellow p {
    color: black;
  }
  
  .feature-box.blue {
    background-color: #00bfff;
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .header-bar {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
    }
  
    .navbar {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  
    .listen-live {
      align-self: flex-start;
      margin-top: 10px;
    }
  
    .now-playing-box,
    .main-content {
      float: none;
      width: calc(100% - 40px);
      margin: 20px;
    }
  
    .hero-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .hero-image {
      width: 100%;
      max-width: 100%;
    }
  
    .hero-text-content {
      width: 100%;
    }
  
    .feature-buttons {
      flex-direction: column;
    }
  
    .feature-box {
      width: 100%;
    }
  }

  .main-content img {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
  }


  .main-content h1,
  .main-content h2,
  .main-content h3,
  .main-content h4,
  .main-content h5,
  .main-content h6 {
    color: #ffeb3b; /* yellow */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .main-content a {
    color: #ffeb3b;
    text-decoration: underline;
    transition: color 0.2s ease;
  }
  
  .main-content a:hover {
    color: #ffffff; /* optional: white on hover */
  }

footer {
  text-align: center;
  color: #ffeb3b;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  padding: 20px;
  margin-top: 40px;
}
footer a {
  color: #ffeb3b;
  text-decoration: underline;
}
footer a:hover {
  color: #ffffff;
}


.feature-box a {
  display: inline-block;
  background-color: #ffffff;
  color: #800080; /* bold purple */
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.feature-box a:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0;
  margin: 1rem 0;
}

.breadcrumb li::after {
  content: ">";
  margin: 0 0.5rem;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}

.breadcrumb span {
  font-weight: bold;
}
