.rs-fantasy {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    padding: 20px 24px;
    color: #e8e8e8;
    font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
    max-width: 900px;
    margin: 20px auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    position: relative;
}

.rs-border-top, .rs-border-bottom {
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), rgba(0, 234, 255, 0.5), rgba(212, 175, 55, 0.8), transparent);
    margin: 0 -24px;
    border-radius: 2px;
}
.rs-border-bottom { margin-top: 12px; }

.rs-header {
    font-size: 22px;
    color: #00eaff;
    padding: 10px 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rs-note { font-size: 1.2em; opacity: 0.9; }
.rs-station-name { font-weight: 600; }

.rs-online { color: #00ff7f; font-size: 14px; font-weight: normal; }
.rs-offline { color: #ff5555; font-size: 14px; font-weight: normal; }

.rs-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    margin: 8px 0 16px;
}
.rs-divider-small {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 10px 0;
}

.rs-main {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.rs-dj-frame {
    padding: 4px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(0, 234, 255, 0.2), rgba(212, 175, 55, 0.4));
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    flex-shrink: 0;
}

.rs-left img, .rs-dj-frame img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    background: #0d0d1a;
    display: block;
}

.rs-center {
    flex: 1;
    font-size: 14px;
    min-width: 0;
}

.rs-info-row { margin-bottom: 6px; }
.rs-value { color: #00eaff; }

.rs-player-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #e8e8e8;
}

.rs-player-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.rs-player-icons a {
    display: block;
    padding: 4px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.rs-player-icons a:hover {
    border-color: #00eaff;
    background: rgba(0, 234, 255, 0.1);
}

.rs-external-links {
    margin-top: 8px;
    font-size: 0.85rem;
}
.rs-external-links a {
    color: rgba(0, 234, 255, 0.9);
    text-decoration: none;
    margin-right: 12px;
}
.rs-external-links a:hover {
    text-decoration: underline;
}

.rs-player-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.rs-player-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--gr-accent, rgba(212, 175, 55, 0.4));
    border-radius: 8px;
    padding: 10px;
}

/* Titel durchlaufend (Scrolling) */
.rs-song {
    margin-top: 10px;
    font-size: 15px;
}

.rs-song-marquee {
    overflow: hidden;
    margin-top: 2px;
    padding: 4px 0;
    white-space: nowrap;
}

.rs-song-text {
    display: inline-block;
    padding-left: 100%;
    color: #fff;
    font-weight: 500;
    animation: rs-marquee 20s linear infinite;
}

.rs-song-marquee:hover .rs-song-text {
    animation-play-state: paused;
}

@keyframes rs-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.rs-right audio {
    width: 100%;
    min-width: 200px;
    max-width: 280px;
}

.rs-right {
    flex-shrink: 0;
}

.rs-footer {
    text-align: center;
    font-size: 11px;
    padding: 8px 0;
    color: rgba(0,234,255,0.7);
}

.rs-admin {
    margin-top: 10px;
    padding: 10px;
    background: rgba(0,0,0,0.4);
    border: 1px dashed rgba(212, 175, 55, 0.5);
    border-radius: 6px;
}

/* MOBILE */
@media (max-width: 700px) {
    .rs-main {
        flex-direction: column;
        align-items: center;
    }

    .rs-right audio {
        max-width: 100%;
    }
}
