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

:root {

    --bg: #070b20;
    --bg2: #101632;

    --pink: #ef2675;
    --purple: #8d35ff;
    --blue: #267cff;

    --text: #ffffff;
    --muted: #9ea6c4;

    --card: rgba(22, 27, 55, 0.82);
}

body {

    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(140, 40, 255, .25),
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 10%,
            rgba(0, 120, 255, .20),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            var(--bg),
            var(--bg2)
        );

    color: var(--text);

    min-height: 100vh;
}


/* ================= HEADER ================= */

.header {

    height: 85px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 5%;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(15px);
}


.logo {

    display: flex;

    align-items: center;

    gap: 14px;
}


.logo h1 {

    font-size: 25px;

    letter-spacing: -1px;
}


.logo h1 span {

    color: var(--pink);
}


.logo small {

    color: var(--muted);

    font-size: 11px;
}


.radio-icon {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    box-shadow:
        0 0 25px rgba(239,38,117,.4);
}


nav {

    display: flex;

    gap: 30px;
}


nav a {

    color: #bbbfd3;

    text-decoration: none;

    font-size: 14px;

    transition: .3s;
}


nav a:hover,
nav a.active {

    color: #ffffff;
}


.live-badge {

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 30px;

    padding: 10px 18px;

    font-size: 12px;

    display: flex;

    gap: 8px;

    align-items: center;
}


.live-badge span,
.status .dot,
.on-air span {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #ff315f;

    box-shadow:
        0 0 12px #ff315f;

}


/* ================= HERO ================= */

.hero {

    max-width: 1200px;

    margin: auto;

    padding: 80px 30px 40px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}


/* ================= VINYL ================= */

.player-area {

    display: flex;

    justify-content: center;
}


.vinyl {

    width: 390px;

    height: 390px;

    border-radius: 50%;

    background:

        repeating-radial-gradient(
            circle,
            #090909 0px,
            #171717 2px,
            #080808 4px
        );

    border:

        5px solid
        rgba(255,255,255,.1);

    box-shadow:

        0 0 0 5px rgba(239,38,117,.08),

        0 0 70px
        rgba(140,50,255,.35);

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        spin 12s linear infinite;

    animation-play-state: paused;
}


.vinyl.tocando {
    animation-play-state: running;
}


.vinyl-center {

    width: 170px;

    height: 170px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #11152d,
            #090b18
        );

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-shadow:
        0 0 30px
        rgba(239,38,117,.25);

    animation:
        counterSpin 12s linear infinite;

    animation-play-state: inherit;
}


.vinyl-center i {

    color: var(--pink);

    font-size: 25px;

    margin-bottom: 10px;
}


.vinyl-center strong {

    font-size: 18px;
}


.vinyl-center small {

    color: #ff3f82;

    margin-top: 8px;

    font-size: 10px;
}


@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}


@keyframes counterSpin {

    to {
        transform: rotate(-360deg);
    }

}


/* ================= HERO INFO ================= */

.eyebrow {

    color: var(--pink);

    font-weight: bold;

    font-size: 15px;
}


.hero-info h2 {

    font-size: 58px;

    margin:
        10px 0;

    line-height: 1;
}


.hero-info p {

    color: var(--muted);

    font-size: 19px;

    max-width: 400px;

    line-height: 1.5;
}


.status {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 25px;

    padding: 10px 15px;

    border-radius: 30px;

    background:
        rgba(255,255,255,.05);

    font-size: 12px;
}


.divider {

    height: 14px;

    width: 1px;

    background: rgba(255,255,255,.2);

}


.social {

    display: flex;

    gap: 12px;

    margin-top: 25px;
}


.social a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    text-decoration: none;

    background:
        rgba(255,255,255,.08);
}


/* ================= PLAYER ================= */

.control-player {

    max-width: 1200px;

    margin: 20px auto 50px;

    padding: 18px 25px;

    border-radius: 20px;

    background:
        rgba(20,25,50,.9);

    border:
        1px solid
        rgba(255,255,255,.08);

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 20px;
}


.song-info {

    display: flex;

    align-items: center;

    gap: 15px;
}


.music-icon {

    width: 55px;

    height: 55px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #202a55,
            #141932
        );

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--purple);
}


.song-info small {

    display: block;

    color: var(--pink);

    font-size: 10px;

    margin-bottom: 4px;
}


.song-info strong {

    display: block;

    font-size: 14px;
}


.song-info span {

    color: var(--muted);

    font-size: 11px;
}


.controls {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;
}


.controls button {

    border: none;

    background: none;

    color: white;

    font-size: 18px;

    cursor: pointer;
}


.controls .play {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );

    box-shadow:
        0 0 25px
        rgba(239,38,117,.35);

    transition: opacity .2s;
}


.controls .play:disabled {

    opacity: .55;

    cursor: wait;
}


.volume {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    color: #bbbfd3;
}


.volume input {

    accent-color: var(--pink);

}


/* ================= CARDS ================= */

.cards {

    max-width: 1200px;

    margin: auto;

    padding: 0 30px 60px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.card {

    padding: 25px;

    border-radius: 20px;

    background:
        var(--card);

    border:
        1px solid
        rgba(255,255,255,.07);

    display: flex;

    gap: 18px;
}


.card-icon {

    width: 55px;

    height: 55px;

    min-width: 55px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;
}


.purple {

    color: #b75cff;

    background:
        rgba(160,70,255,.15);
}


.green {

    color: #1dd6a0;

    background:
        rgba(30,210,160,.12);
}


.blue {

    color: #4b8fff;

    background:
        rgba(50,120,255,.12);
}


.card h3 {

    font-size: 14px;

    margin-bottom: 8px;
}


.card p {

    color: var(--muted);

    font-size: 12px;

    line-height: 1.5;

    margin-bottom: 12px;
}


.card button {

    border: none;

    padding: 8px 12px;

    border-radius: 7px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    font-size: 10px;

    cursor: pointer;
}


/* ================= FOOTER ================= */

footer {

    text-align: center;

    padding: 40px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    color: var(--muted);
}


footer strong {

    color: white;
}


.on-air {

    display: inline-flex;

    gap: 10px;

    align-items: center;

    margin-top: 15px;

    font-size: 12px;
}


/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .header {

        height: auto;

        padding: 20px;

        gap: 15px;

        flex-wrap: wrap;
    }


    nav {

        order: 3;

        width: 100%;

        justify-content: center;

        gap: 15px;
    }


    .hero {

        grid-template-columns: 1fr;

        padding-top: 50px;

        gap: 40px;

        text-align: center;
    }


    .hero-info p {

        margin: auto;
    }


    .social,
    .status {

        justify-content: center;
    }


    .vinyl {

        width: 290px;

        height: 290px;
    }


    .control-player {

        margin: 20px;

        grid-template-columns: 1fr;

        text-align: center;
    }


    .song-info {

        justify-content: center;
    }


    .controls {

        justify-content: center;
    }


    .volume {

        justify-content: center;
    }


    .cards {

        grid-template-columns: 1fr;

    }


    .hero-info h2 {

        font-size: 42px;
    }

}
