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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f5f0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #4a1a6b, #2d0a4a);
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    font-size: 14px;
    opacity: 0.8;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: rgba(255,255,255,0.1);
}

/* Main */
main {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6b2fa0, #4a1a6b);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Player */
.radio-player {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

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

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #4a1a6b;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.now-playing {
    flex: 1;
    text-align: left;
}

.now-playing #currentSong {
    font-weight: 600;
    font-size: 18px;
    display: block;
}

.now-playing #currentArtist {
    font-size: 14px;
    opacity: 0.8;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-control input[type="range"] {
    width: 80px;
    height: 5px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.3);
    border-radius: 5px;
}

.volume-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.progress-bar {
    margin-top: 15px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s;
}

/* Programação */
.programacao {
    padding: 60px 0;
    background: #fff;
}

.programacao h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #4a1a6b;
}

.programacao-grid {
    display: grid;
    gap: 15px;
}

.programa-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: #f8f5f0;
    border-radius: 10px;
    transition: transform 0.3s;
}

.programa-item:hover {
    transform: translateX(5px);
}

.programa-item .hora {
    font-weight: 700;
    color: #4a1a6b;
    min-width: 80px;
}

/* Músicas */
.musicas {
    padding: 60px 0;
    background: #f8f5f0;
}

.musicas h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #4a1a6b;
}

.musicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.musica-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.musica-card:hover {
    transform: translateY(-5px);
}

.musica-cover {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6b2fa0, #4a1a6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.musica-info {
    flex: 1;
}

.musica-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.musica-info p {
    font-size: 14px;
    color: #666;
}

.musica-info .duracao {
    font-size: 12px;
    color: #999;
}

.play-music {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #4a1a6b;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.play-music:hover {
    background: #6b2fa0;
}

/* Footer */
footer {
    background: #2d0a4a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #d4a0ff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #6b2fa0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .player-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .musicas-grid {
        grid-template-columns: 1fr;
    }
}