html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0E0E0E;
    color: #F5F5F5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #000;
}

.logo h1 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

.logo span {
    color: #ff003c;
    text-shadow: 0 0 8px #ff003c;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.logo img {
    height: 60px;
    width: auto;
}

/* SECCION EN VIVO */

.live-section {
    padding: 80px 40px;
    text-align: center;
    background: #111;
}

.live-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff003c;
}

.live-section p {
    margin-bottom: 30px;
    font-size: 18px;
}

.live-box {
    margin: 20px auto;
    padding: 15px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    border-radius: 50px;
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff003c;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,60,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,0,60,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,60,0); }
}

.radio-player {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0E0E0E;
    text-align: center;
}

.radio-player h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.radio-player span {
    color: #ff003c;
    text-shadow: 0 0 8px #ff003c;
}

.player-box {
    margin: 30px 0;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 10px;
    width: 300px;
}

