/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #121212; /* Fundo escuro */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #f0f0f0;
}

.container {
    width: 100%;
    max-width: 800px;
    background-color: #1e1e1e; /* Container escuro */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding-bottom: 20px;
}

/* Cabeçalho */
header {
    text-align: center;
    padding: 30px 20px;
    background-color: #1a1a1a; /* Cabeçalho mais escuro */
    border-bottom: 1px solid #333;
    position: relative;
}

.logo-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.logo-text {
    text-align: center;
}

.logo-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #f7931e; /* Laranja da logo */
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-subtitle {
    font-family: 'Oswald', sans-serif;
    color: #f7931e; /* Laranja da logo */
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline {
    color: #ccc;
    font-style: italic;
    margin-top: 10px;
}

/* Área principal */
main {
    padding: 30px 20px;
}

.player-container {
    background-color: #252525; /* Player escuro */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    border-left: 4px solid #f7931e; /* Borda laranja */
}

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

.play-button {
    background-color: #f7931e; /* Laranja da logo */
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(247, 147, 30, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-button:hover {
    background-color: #e58018;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(247, 147, 30, 0.4);
}

.play-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(247, 147, 30, 0.2);
}

.play-button.playing {
    background-color: #2c3e50; /* Azul escuro quando tocando */
    color: #fff;
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
}

.play-button.playing:hover {
    background-color: #1a2530;
    box-shadow: 0 6px 12px rgba(44, 62, 80, 0.4);
}

.pause-icon {
    display: none;
}

.playing .play-icon {
    display: none;
}

.playing .pause-icon {
    display: inline;
}

.playing .button-text {
    content: "PAUSAR";
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 300px;
}

.volume-control label {
    font-weight: 500;
    min-width: 70px;
    color: #ddd;
}

.volume-control input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: #444;
    border-radius: 5px;
    outline: none;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #f7931e;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.volume-control input[type="range"]::-webkit-slider-thumb:hover {
    background: #e58018;
}

.now-playing {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #1a1a1a;
    border-radius: 8px;
    font-size: 1.1rem;
}

#station-name {
    font-weight: bold;
    color: #f7931e; /* Laranja da logo */
}

.host {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #ccc;
}

#host-name {
    font-weight: bold;
    color: #f7931e; /* Laranja da logo */
}

/* Seção Sobre */
.about-section {
    background-color: #252525;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-section h2 {
    color: #f7931e; /* Laranja da logo */
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.feature {
    flex: 1 1 300px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #f7931e;
}

.feature h3 {
    color: #f7931e;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 0.9rem;
    margin-top: 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location {
    font-style: italic;
    color: #ccc;
    margin-top: 5px;
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        border-radius: 10px;
    }
    
    .logo-text h1 {
        font-size: 2.5rem;
    }
    
    .logo-subtitle {
        font-size: 1.2rem;
    }
    
    .play-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .player-container {
        padding: 20px 15px;
    }
    
    .features {
        flex-direction: column;
    }
}
