/* ============================================
   THEME: ROS – Cyber / Mint Green
   Passend zum dunklen "Revolution of Sounds" Design
   ============================================ */

/* 1. Variablen (Helles Mintgrün auf Tiefschwarz) */
body.station-ros {
    --accent:         #7FFAAB;  /* Helles Mint-/Seegrün */
    --accent-hover:   #B2FFDB;  /* Weicheres Hell-Mint für Hover */
    --accent-glow:    rgba(127, 250, 171, 0.4);

    --bg-gradient-1:  #000000;  /* Tiefes Schwarz */
    --bg-gradient-2:  #040a06;  /* Sehr dunkler Mint-Stich */

    --text-primary:   #e5e7eb;  /* Helles Grau/Weiß */
    --text-secondary: #8decb5;  /* Sanftes Mint für Nebentexte */
    --text-heading:   #ffffff;  /* Strahlendes Weiß für Headlines */

    --card-bg:        rgba(0, 0, 0, 0.85); /* Fast schwarzes Glas */
    --card-border:    #7FFAAB;  /* Solider Mint-Rand */
}

/* 2. Cyber-Grid Hintergrund (Radar/Matrix Style) */
body.station-ros {
    background-color: #000000;
    /* Erzeugt ein feines technisches Raster wie auf der Webseite */
    background-image: 
        linear-gradient(rgba(127, 250, 171, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 250, 171, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, #000000 0%, #051207 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    background-attachment: fixed;
}

/* 3. Ambiente Radar-Glow (Sanftes Pulsieren im Hintergrund) */
body.station-ros::before {
    content: "";
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(127, 250, 171, 0.08) 0%,
        rgba(127, 250, 171, 0.02) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    animation: ros-radar-pulse 6s ease-in-out infinite;
}

@keyframes ros-radar-pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50%      { opacity: 1;   transform: translateX(-50%) scale(1.15); }
}

/* 4. Player-Card (Neon-Ränder wie im Screenshot) */
.station-ros .player-card {
    border: 1px solid var(--card-border);
    box-shadow: 
        0 0 15px rgba(127, 250, 171, 0.15),     /* Äußerer Glow */
        inset 0 0 15px rgba(127, 250, 171, 0.1); /* Innerer Glow */
    border-radius: 8px; /* Leicht eckiger, technischer Look */
}

/* 5. Headlines / Brand (Technisch, Eckig) */
.station-ros h1, .station-ros .h1,
.station-ros h2, .station-ros .h2,
.station-ros h3, .station-ros .h3,
.station-ros .brand-name {
    font-family: "Orbitron", "Share Tech Mono", "Courier New", monospace, system-ui;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-heading);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Brand-Name mit "Terminal-Cursor" Effekt (Blinkendes Zeichen am Ende) */
.station-ros .brand-name::after {
    content: "_";
    color: var(--accent);
    animation: ros-blink 1s step-end infinite;
    text-shadow: 0 0 10px var(--accent-glow);
}

@keyframes ros-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* 6. Buttons (komplett mint gefüllt, schwarzer Text wie im Bild) */
.station-ros .btn-primary,
.station-ros .btn-play {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #000000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(127, 250, 171, 0.2);
    transition: all 0.2s ease;
}

.station-ros .btn-primary:hover,
.station-ros .btn-play:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #000000;
    box-shadow: 0 0 25px rgba(127, 250, 171, 0.6);
    transform: scale(1.02);
}

/* Outline-Buttons im UI (z.B. Station-Switcher) */
.station-ros .station-btn.btn-outline-light {
    --bs-btn-color: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-bg: var(--accent);
    --bs-btn-hover-border-color: var(--accent-hover);
    --bs-btn-hover-color: #000000;
    --bs-btn-active-bg: var(--accent-hover);
    --bs-btn-active-color: #000000;
    box-shadow: 0 0 8px rgba(127, 250, 171, 0.1);
}

/* 7. Links */
.station-ros a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s;
}
.station-ros a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--accent-glow);
}

/* 8. Komponenten-Details */
.station-ros .player-footer,
.station-ros .track-artist {
    color: var(--text-secondary);
}


/* Volume-Slider Thumb im Neon-Look */
.station-ros #volumeSlider {
    accent-color: var(--accent);
}
.station-ros #volumeSlider::-webkit-slider-thumb {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    border: 1px solid #fff;
}
.station-ros #volumeSlider::-moz-range-thumb {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    border: 1px solid #fff;
}

/* Album-Cover leichter Mint-Stich (passend zum sanften Glow) */
.station-ros .cover-image {
    border: 1px solid rgba(127, 250, 171, 0.3);
    filter: contrast(1.1) brightness(0.9);
}
