* {
  box-sizing: border-box;
}

body {
  background-color: black;
  color: #fefeff;
  font-family: "Roboto", sans-serif;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  color: #4ccce9;
  text-decoration: none;
  padding: 0 10px;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff00ff; /* Neon Pink hover */
}

a:active,
a:visited {
  color: #4ccce9;
}
/* Generic styles for all container boxes */
header,
nav,
.widgets-container {
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  text-align: center;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #00d2ff33;
}

/* Specific overrides for the Header only */
header {
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
    url("images/header_bg.webp");
  background-size: cover;
  background-position: center;
  padding: 40px 15px; /* Keeps the extra height for the image */
}

/* --- THE NEON COLORS --- */
/* Better Neon Buttons */
/* Updated Neon Buttons for Uniformity */
.play-btn {
    background: rgba(76, 204, 233, 0.1);
    color: #4ccce9;
    border: 1px solid #4ccce9;
    padding: 12px 0; /* Vertical padding only */
    border-radius: 8px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    
    /* Fixed sizing logic */
    display: block;
    width: 160px;   /* Set a specific width for all buttons */
    text-align: center;
    margin-top: 10px;
}

.play-btn:hover {
    background: #4ccce9;
    color: #000;
    box-shadow: 0 0 15px #4ccce9;
}

.play-btn.playing {
    background: #ff00ff;
    color: #ffffff;
    border-color: #ff00ff;
    box-shadow: 0 0 15px #ff00ff;
}

/* Align the track text and button together */
.track-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Keeps the button and text left-aligned */
}
.track {
    /* Ensures the image and info/button align as intended in your CSS */
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.track img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #00d2ff;
  border-radius: 8px;
}

/* Widget Grid Fixes */
.widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.widget {
  background-color: #222;
  border: 1px solid #00d2ff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  color: #fefeff;
  transition: transform 0.2s;
}

.widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #00d2ff;
}
/* --- Free Book Banner (Colors Restored) --- */
.free-book-banner {
  background: #b026b0;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 0 10px rgba(176, 38, 176, 0.5);
  transition: 0.3s;
  border: 1px solid #ff00ff;
}

.free-book-banner a {
  color: #ffffff;
  font-weight: bold;
}

.free-book-cta {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fefeff;
}

.free-book-cta a {
  color: #4ccce9;
  font-weight: bold;
}

audio {
  width: 100%;
  filter: invert(100%) hue-rotate(180deg) brightness(1.5); /* Makes standard player match neon theme */
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  text-align: center;
  padding: 40px 0;
  opacity: 0.6;
  font-size: 0.8rem;
}
#about img {
  width: 200px;
  border-radius: 15px;
  border: 2px solid #00d2ff;
  margin: 15px 0;
}
/* --- THE NEON COLORS --- */
.neon-blue {
    color: #00d2ff;
    text-shadow: 
        0 0 5px #00d2ff, 
        0 0 10px #00d2ff, 
        0 0 20px #00d2ff, 
        1px 1px 2px rgba(0,0,0,1);
}

.neon-pink {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}
/* --- THE NEON COLORS --- */
.neon-blue {
    color: #00d2ff;
    text-shadow: 
        0 0 5px #00d2ff, 
        0 0 10px #00d2ff, 
        0 0 20px #00d2ff, 
        1px 1px 2px rgba(0,0,0,1);
}

.neon-pink {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

