* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(circle at top, rgba(110, 70, 255, 0.18), transparent 35%),
        linear-gradient(180deg, #090b14, #05070d);

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
}
.radio-header {
    width: 100%;
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 18px 40px;

    background: rgba(8, 10, 20, 0.94);

    border-bottom: 1px solid rgba(130, 90, 255, 0.28);

    backdrop-filter: blur(14px);
}

.radio-brand {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;
    text-decoration: none;
}

.radio-brand-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #8b5cff,
        #ff4fa3
    );

    box-shadow: 0 0 24px rgba(139, 92, 255, 0.35);

    font-size: 20px;
}

.radio-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.radio-brand-text strong {
    font-size: 18px;
    letter-spacing: 1.2px;
}

.radio-brand-text small {
    margin-top: 5px;
    color: #a9adba;
    font-size: 11px;
    letter-spacing: 0.8px;
}

.radio-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.radio-nav a {
    color: #cfd2dc;
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;

    transition: 0.25s ease;
}

.radio-nav a:hover,
.radio-nav a.active {
    color: #ffffff;
}

.radio-nav a.active {
    text-shadow: 0 0 14px rgba(255, 79, 163, 0.6);
}

.radio-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 14px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    color: #ffffff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    transition: 0.25s ease;
}

.radio-back:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
}
.radio-main {
    width: min(1200px, calc(100% - 40px));
    margin: 55px auto 0;
}

.radio-hero {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;

    align-items: center;

    padding: 42px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 255, 0.12),
            rgba(255, 79, 163, 0.06)
        ),
        rgba(8, 10, 20, 0.92);

    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(139, 92, 255, 0.12);
}

.radio-cover {
    position: relative;

    aspect-ratio: 1;

    border-radius: 26px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #8b5cff,
            #ff4fa3
        );

    box-shadow:
        0 0 50px rgba(139, 92, 255, 0.28);
}

.radio-cover-glow {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.22),
            transparent 35%
        );
}

.radio-cover-content {
    position: relative;
    z-index: 1;

    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 18px;

    text-align: center;
}

.radio-cover-content i {
    font-size: 74px;
}

.radio-cover-content span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.radio-now {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.radio-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 12px;

    border-radius: 999px;

    background: rgba(255, 70, 85, 0.12);
    border: 1px solid rgba(255, 70, 85, 0.35);

    color: #ff6b78;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.radio-live-badge i {
    font-size: 8px;
}

.radio-kicker {
    margin-top: 24px;

    color: #a9adba;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.radio-now h1 {
    margin-top: 10px;

    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
}

.radio-artist {
    margin-top: 18px;

    color: #c5c8d1;

    font-size: 18px;
    line-height: 1.5;
}

.radio-play-button {
    margin-top: 30px;
    padding: 16px 24px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #8b5cff,
            #ff4fa3
        );

    color: #ffffff;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.8px;

    cursor: pointer;

    box-shadow: 0 0 28px rgba(139, 92, 255, 0.28);

    transition: 0.25s ease;
}

.radio-play-button:hover {
    transform: translateY(-3px) scale(1.02);
}
.radio-schedule-preview {
    width: 100%;
    margin-top: 30px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.radio-schedule-card {
    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;

    background: rgba(10, 12, 24, 0.9);

    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(139, 92, 255, 0.08);
}

.radio-schedule-label {
    color: #ff5cab;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.radio-schedule-card h2 {
    margin-top: 10px;

    font-size: 24px;
}

.radio-schedule-card p {
    margin-top: 10px;

    color: #aeb2bf;

    line-height: 1.5;
}
.radio-song-art {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}
.radio-play-button.playing {
    box-shadow:
        0 0 20px rgba(255, 79, 163, 0.45),
        0 0 40px rgba(139, 92, 255, 0.35);

    animation: radioPulse 1.8s ease-in-out infinite;
}

@keyframes radioPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }
}
.radio-equalizer {
    display: none;

    align-items: flex-end;
    gap: 4px;

    height: 24px;
    margin-top: 16px;
}

.radio-equalizer span {
    width: 4px;
    height: 8px;

    border-radius: 999px;

    background: linear-gradient(
        180deg,
        #ff4fa3,
        #8b5cff
    );

    animation: equalizerMove 0.8s ease-in-out infinite alternate;
}

.radio-equalizer span:nth-child(2) {
    animation-delay: 0.15s;
}

.radio-equalizer span:nth-child(3) {
    animation-delay: 0.3s;
}

.radio-equalizer span:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes equalizerMove {
    from {
        height: 6px;
    }

    to {
        height: 24px;
    }
}

.radio-equalizer.active {
    display: flex;
}