.play {
    padding: 20px 10px;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.sidebar-stream {
    width: 160px;
    min-height: 600px;
}

.adsbygoogle {
    display: block;
    width: 100%;
    min-height: 250px;
}

.main {
    width: 50%;
}

.player-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.cover {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 10px;
    height: 200px;
    background: #000;
}

.cover iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

.cover .fake-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    z-index: 2;
    pointer-events: none;
}

.cover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(2px);
    z-index: 3;
    pointer-events: none;
}

.progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #4a6cf7, #8fa6ff);
    animation: progress 8s linear infinite;
    z-index: 4;
}

@keyframes progress {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

.time {
    font-size: 12px;
    color: #999;
    margin: 10px 0;
}

.song {
    font-size: 22px;
    font-weight: 700;
    margin-top: 5px;
    color: #111;
}

.artist {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.wave {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.bar {
    width: 3px;
    height: 10px;
    background: #4a6cf7;
    border-radius: 2px;
    animation: wave 1.2s infinite ease-in-out;
}

.bar:nth-child(2n) {
    background: #d6dcff;
}

.bar:nth-child(1) {
    height: 8px
}

.bar:nth-child(2) {
    height: 15px
}

.bar:nth-child(3) {
    height: 10px
}

.bar:nth-child(4) {
    height: 18px
}

.bar:nth-child(5) {
    height: 12px
}

.bar:nth-child(6) {
    height: 20px
}

.bar:nth-child(7) {
    height: 10px
}

.bar:nth-child(8) {
    height: 16px
}

.bar:nth-child(9) {
    height: 12px
}

.bar:nth-child(10) {
    height: 14px
}

@keyframes wave {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(0.8)
    }

    50% {
        opacity: 1;
        transform: scaleY(1.3)
    }
}

.controls {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.controls span {
    cursor: pointer;
    transition: 0.2s;
}

.controls span:hover {
    transform: scale(1.2);
    color: #4a6cf7;
}

.radio iframe {
    width: 0;
    height: 0;
    border: 0;
}

.mgid {
    margin-top: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
}

#news-container {
    margin-top: 15px;
    background: #000;
    color: #fff;
    border-radius: 15px;
    padding: 10px;
}

.news-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.news-item:last-child {
    border: none;
}

.item-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
}

.item-radio:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.img-radio {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.berita-radio {
    flex: 1;
    overflow: hidden;
}

.kategori {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.judul {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin: 2px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.load-more {
    margin-top: 30px;
}

@media(max-width:768px) {
    .main {
        width: 100%;
    }

    .player-card {
        border-radius: 20px;
        padding: 15px;
    }

    .cover {
        height: 180px;
    }
}