/* Estilos generales para Radio Moon */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #111;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .banner-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
  
  .content {
    flex: 1;
    padding: 2rem;
    text-align: center;
  }
  
  .player-container {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .radio-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #1db954;
    animation: pulse 2s infinite ease-in-out;
    display: none;
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 0.7;
    }
    50% {
      transform: scale(1.2);
      opacity: 1;
    }
  }
  
  .play-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #1db954;
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .play-button:hover {
    background-color: #17a64a;
  }
  
  .socials {
    margin-top: 3rem;
  }
  
  .socials a {
    display: inline-block;
    margin: 0.5rem 1rem;
    font-size: 1.1rem;
    color: #1db954;
    text-decoration: none;
  }
  
  .socials a:hover {
    text-decoration: underline;
  }
  
  .schedule {
    margin-top: 3rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .program {
    margin: 1rem 0;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }
  
  .footer {
    background: #000;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
  }
  
  @media (max-width: 600px) {
    .play-button {
      width: 90%;
    }
  
    .schedule {
      padding: 0 1rem;
    }
  }
  