:root {
    --primary-color: #0a5bb1;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --text-color-dark: #333;
    --text-color-light: #fff;
    --bg-color: #343434;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}
.logo-img {
    height: 100px;
    width: auto;
    margin-right: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}
/* Main Player Styles */
main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-image: url('/image/cusco.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.player-container {
    background-color: rgba(10,10,10, 0.5);
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.station-info {
    margin-bottom: 2rem;
}

.station-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ddd;
    margin-bottom: 0.5rem;
}

.current-track {
    font-size: 1.2rem;
    color: #ddd;
    font-weight: 400;
    margin-bottom: 2rem;
}

.controls {
    margin-bottom: 2rem;
}

.play-pause-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.play-pause-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.play-pause-btn.paused {
    background-color: #e74c3c;
}

.play-pause-btn.paused:hover {
    background-color: #c0392b;
}

.volume-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.volume-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ddd;
}

.volume-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #ecf0f1;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    border: 2px solid #ecf0f1;
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    background: #2980b9;
    transform: scale(1.1);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: #ecf0f1;
    padding: 2rem;
    text-align: center;
}

.about-section {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #3498db;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e74c3c;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .player-container {
        padding: 2rem 1.5rem;
    }

    .station-name {
        font-size: 1.5rem;
    }

    .current-track {
        font-size: 1.1rem;
    }

    .play-pause-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .player-container {
        padding: 1.5rem 1rem;
    }

    .station-name {
        font-size: 1.3rem;
    }

    .play-pause-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .volume-container {
        max-width: 250px;
    }
}