body {
    font-family: 'Roboto Mono', monospace; /* Fuente que simula pantallas de radio antiguas */
    background-color: #333;
    color: #eee;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    color: #ffcc00; /* Típico color de luz de radio */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.radio-container {
    background-color: #5c4033; /* Color madera o baquelita */
    border: 10px solid #4d362c;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    width: 90%;
    max-width: 800px;
    margin-bottom: 40px;
    position: relative;
}

.radio-face {
    background-color: #222;
    border: 5px inset #111;
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr); /* 10 columnas, ajusta si necesitas más o menos */
    gap: 10px;
    margin-bottom: 20px;
}

.channel-button {
    background-color: #444;
    border: 2px outset #555;
    border-radius: 5px;
    color: #ffcc00;
    font-weight: bold;
    padding: 10px 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s, transform 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px; /* Altura fija para los botones */
}

.channel-button:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.channel-button:active {
    background-color: #333;
    border-style: inset;
    transform: translateY(0);
}

.display {
    background-color: #000;
    border: 3px solid #111;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0; /* Color verde típico de displays antiguos */
    font-family: 'Digital-7', monospace; /* Si encuentras una fuente digital */
    font-size: 1.2em;
}

#program-info {
    margin: 0;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.custom-controls {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

#play-pause-btn {
    background-color: #ffcc00;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#play-pause-btn:hover {
    background-color: #ffe066;
}

#progress-bar {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 8px;
    background: #444;
    outline: none;
    border-radius: 5px;
}

#progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffcc00;
    cursor: pointer;
}

#volume-bar {
    width: 100px;
    -webkit-appearance: none;
    height: 8px;
    background: #444;
    outline: none;
    border-radius: 5px;
}

#volume-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffcc00;
    cursor: pointer;
}


.info-section {
    background-color: #222;
    border: 5px inset #111;
    border-radius: 8px;
    padding: 25px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    margin-top: 30px;
    width: 90%;
    max-width: 800px;
    text-align: justify;
}

.info-section h2 {
    color: #ffcc00;
    text-align: center;
    margin-bottom: 15px;
}

footer {
    margin-top: auto; /* Empuja el footer hacia abajo */
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    border-top: 1px solid #444;
    color: #aaa;
}

.footer-links a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}