body {
    background: transparent !important;
}

.record {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border: 5px solid var(--Primary-Primary-100);
    border-radius: 50%;
    position: relative;
    background-color: var(--Primary-Primary-100);
    background-image: url('/icon/nightlight-pattern3.png');
    background-size: 500%;
    animation: record-spin 1.33s linear infinite;
}

.record.paused {
    animation-play-state: paused;
}

.record img {
    border-radius: 50%;
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 4px var(--Primary-Primary-200);
}

.record-info {
    display: flex;
    flex-direction: column;
    text-align: left !important;
    max-width: 50%;
}

.record-info p,
h2 {
    flex-shrink: 1;
    margin: 5px 0;
}

.radio {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 450px;
    background-color: var(--Neutral-Neutral-300);
    padding: 30px;
    border-radius: 30px;
    border: solid 2px var(--Neutral-Neutral-400);
    overflow: hidden;
    transition: all 1.5s ease-in-out;
}

.radio-page {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-direction: column;

}

.radio-play-btn {
    width: 60px;
    height: 60px;
    background: var(--bg-image), var(--Primary-Primary-400);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    --bg-image: url("/icon/profile/play.svg");
}

.radio-play-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

@keyframes record-spin {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}