
  *{
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
  }

  body{
    background-color: #FFFFFF;
  }

  header{
    background-color:  rgb(251, 169, 182);
    box-shadow: 10px 4px 15px #000000;
  }

  main{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  h1 .header-title{
    color: white;
    font-family: 'Zen Tokyo Zoo', cursive;
  }

  .player{
    background-color: rgb(251, 169, 182);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    box-shadow: 0px -1px 5px #868686;
    width: 100%;
    z-index: 999;
    padding: 1rem;
  }

  .current-channel{
    color: black;
    display: block;
    border-bottom: 1px greenyellow solid;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }


.playBtn{
    color: var(--fx-white-color);
    font-size: 2rem;
    transition: .5s;
  }



  .playBtn:hover{
    transform: scale(1.2);
    color: greenyellow;
  }
  @keyframes animate{
    0%{
      opacity: 0;
    }
    50%{
      opacity: 0.7;
    }
    100%{
      opacity: 0;
    }
  }

  .live-message{
    position: absolute;
    left: 10%;
    font-size: 52px;
    font-weight: bold;
  }

  .live-message,.fa-circle{
    color:blue;
    font-size: 1rem;
    animation: animate 2.2s linear infinite;
  }



  .control{
    min-width: max-content;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .stations{
    width: 40%;
    margin-bottom: 100px;
    display: inline;
  }

  .station-item{
    background-color: #FFFFFF;
    display: flex;
    position: relative;
    align-items: center;
    box-shadow: 1px 1px 5px #c8c8c8;
    transition: 0.7s;
  }

  .station-item img{
    width:  100px;
    height: 50px;
    object-fit: cover;
    border-right: 1px greenyellow solid;
    padding-right: 1rem;
    margin: .5rem;
  }

  .image-container{
    flex: 25%;
    padding: 1rem;
  }

  .station-item label{
    color: black;
  }

  .station-item:hover{
    background-color: greenyellow;
    transform: scale(1.03);

  }
  .popup{
    background-color: rgb(250, 221, 159);
    color: white;
    outline: 1px orange solid;
    box-shadow: 0px 0px 10px orange;
    text-shadow:1px 1px 10px rgb(255, 145, 72), 1px 1px 10px rgb(255, 145, 72);
    font-weight: 700;
    width: 100%;
    padding: 10px 0px;
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    z-index: -1;
    transform: translateY(-100%);
    transition: 0.5s;
  }
  .spacing{
    width: 100%;
    border: 1px solid;
    display: inline-block;
    height: 200px;
  }

  .popup-show{
    transform: translateY(0);
  }




  .station-thumb {
  position: relative;
  display: inline-block;
}

.station-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #00e676; /* Lime green (vibrant, clear on both dark/light) */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.station-thumb:hover .station-play {
  opacity: 1;
}

.station-logo {
  cursor: pointer;
}


/* .station-play:hover {
  transform: scale(1.2);
  color: limegreen;
} */

.station-play:hover {
  transform: translate(-50%, -50%) scale(1.2);
}


.station-item {
  cursor: pointer;
}

.station-play {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* === Station Grid Container === */
/* .stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
} */


/* .stations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  justify-items: center;
} */


.stations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 44px;
  padding: 40px 20px;
  justify-items: center;
}


.station-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  width: 100%;
  max-width: 260px;
  position: relative;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.station-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);

}


.station-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.station-item span {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}



/* === Station Card Item === */
/* .station-item {
  flex: 1 1 calc(25% - 1rem);
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  cursor: pointer;
}

.station-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
} */

/* === Station Logo Image === */
.station-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  border-radius: 6px;
}

/* === Station Play Icon === */
.station-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-size: 2rem;
  color: #00e676;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.station-item:hover .station-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

/* === Responsive Grid === */
@media screen and (max-width: 1024px) {
  .station-item {
    flex: 1 1 calc(33.333% - 1rem); /* 3 per row */
  }
}

@media screen and (max-width: 768px) {
  .station-item {
    flex: 1 1 calc(50% - 1rem); /* 2 per row */
  }
}

@media screen and (max-width: 480px) {
  .station-item {
    flex: 1 1 100%; /* 1 per row */
  }
}

.station-thumb {
  position: relative;
  display: inline-block;
}



/* .station-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
} */


/* .station-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
} */


.station-item .logo-container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
