/* ============================================
   THEME: SBFM – Soundbase-FM
   Vibe: Club, Electro, Dark Grey & Lime Green
   ============================================ */

/* 1. Variablen (Lime-Green auf Dunkelgrau) */
body.station-sbfm {
    --accent:         #9eff00;  /* Helles Lime / Neongrün-Gelb */
    --accent-hover:   #b3ff33;  /* Noch helleres Lime für Hover */
    --accent-glow:    rgba(158, 255, 0, 0.4);
    
    --bg-gradient-1:  #101010;  /* Sehr dunkles Grau (fast Schwarz) */
    --bg-gradient-2:  #1a1d1a;  /* Dunkelgrau mit minimalem Grünstich */

    --text-primary:   #f1f5f9;  /* Klares Weiß/Hellgrau */
    --text-secondary: #94a3b8;  /* Mittleres Grau für Nebentexte */
    --text-heading:   #ffffff;

    --card-bg:        rgba(20, 20, 20, 0.95); /* Dunkelgrauer Karten-Hintergrund */
    --card-border:    #9eff00;  /* Harter Lime-Rand wie im Bild */
}

/* 2. Hintergrund (Dunkel mit gepunktetem Soundwellen-Vibe) */
body.station-sbfm {
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(rgba(158, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(135deg, #0a0a0a 0%, #151815 50%, #0a0a0a 100%);
    background-size: 30px 30px, 100% 100%;
    background-attachment: fixed;
}

/* 3. Sanfter Glow-Effekt im Hintergrund (wie die grünen Nebel auf der Seite) */
body.station-sbfm::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(158, 255, 0, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(158, 255, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* 4. Player-Card (Auffälliger Rahmen passend zum Screenshot) */
.station-sbfm .player-card {
    border: 1px solid var(--card-border);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(158, 255, 0, 0.15); /* Leichter äußerer Glow */
    border-radius: 8px; /* Leicht eckiger, technischer Look */
}

/* 5. Headlines / Brand */
.station-sbfm h1, .station-sbfm .h1,
.station-sbfm h2, .station-sbfm .h2,
.station-sbfm h3, .station-sbfm .h3,
.station-sbfm .brand-name {
    font-family: "Montserrat", "Segoe UI", system-ui, sans-serif;
    font-weight: 700;
    color: var(--text-heading);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.station-sbfm .brand-name {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* 6. Buttons (Solid Lime Green mit schwarzer Schrift, wie der "Radio An" oder "Trackliste" Button) */
.station-sbfm .btn-primary,
.station-sbfm .btn-play {
    background: linear-gradient(180deg, #aeff26 0%, #8ade00 100%);
    border: 1px solid #7ecc00;
    color: #000000;
    font-weight: 700;
    border-radius: 4px; /* Eckigere Buttons passen besser zum echten Design */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.2s ease;
}

.station-sbfm .btn-primary:hover,
.station-sbfm .btn-play:hover {
    background: linear-gradient(180deg, #c0ff52 0%, #9eff00 100%);
    color: #000000;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-1px);
}

/* Outline-Buttons im UI (z.B. Station-Switcher) */
.station-sbfm .station-btn.btn-outline-light {
    --bs-btn-color: var(--text-primary);
    --bs-btn-border-color: #333333; /* Dunkler Rand im inaktiven Zustand */
    --bs-btn-hover-bg: #222222;
    --bs-btn-hover-border-color: var(--accent);
    --bs-btn-hover-color: var(--accent);
    --bs-btn-active-bg: var(--accent);
    --bs-btn-active-color: #000000;
    border-radius: 4px;
}

.station-sbfm .station-btn.btn-outline-light.active {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #000000 !important;
    box-shadow: 0 0 20px var(--accent);
}



/* 7. Links */
.station-sbfm a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
.station-sbfm a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--accent-glow);
}

/* 8. Komponenten-Details */
.station-sbfm .player-footer,
.station-sbfm .track-artist {
    color: var(--text-secondary);
}

/* Volume-Slider */
.station-sbfm #volumeSlider {
    accent-color: var(--accent);
}
.station-sbfm #volumeSlider::-webkit-slider-thumb {
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    border: 1px solid #000; /* Schwarzer Rand für besseren Kontrast */
}
.station-sbfm #volumeSlider::-moz-range-thumb {
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    border: 1px solid #000;
}

/* Album-Cover */
.station-sbfm .cover-image {
    border: 1px solid var(--accent);
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    border-radius: 4px;
}

.brand-short {
    color: black;
}