:root {
    --bg-dark: #0a0a0c;
    --card-bg: rgba(18, 18, 22, 0.1);
    --text-color: #d1d1d6;
    --accent-neon: #2489db;

    --cyber-cyan: #00f3ff;
    --cyber-green: #00ff62;
    --cyber-yellow: #d9ff00;

    --cyber-background-main-color: #2489db;
    --cyber-background-accent-color: #db2a24;

    --border-color: #22222b;
    --error: #ff0055;

    --footer-height: 4rem;
}

body,
html {
    min-height: 100vh;
}

body.loading {
    overflow: hidden !important;
    height: 100vh;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.6s ease;
}

body:not(.loading) #loading-screen {
    opacity: 0;
    transform: scale(2.5);
    pointer-events: none;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: var(--footer-height);
    /* Footer height */
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: var(--footer-height);
    /* Footer height */
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050507;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyber-cyan);
}

body.cyber-atmosphere {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
}

/* Scanlines Overlayer */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.6;

    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%),
        /* Vignette */
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 100%, 100% 4px, 6px 100%;
}

.crt-curvature {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    /* Der innere Schatten erzeugt den Eindruck einer Wölbung */
    box-shadow: inset 0 0 100px rgba(36, 115, 219, 0.05);
}

header {
    background-color: #050507;
    border-bottom: 1px solid var(--border-color);
    height: 10vh;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px var(--accent-neon);
}

.main-nav .nav-item {
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.2s, text-shadow 0.2s;
}

.main-nav .nav-item.active,
.main-nav .nav-item:hover {
    color: var(--cyber-cyan);
    text-shadow: 0 0 8px var(--cyber-cyan);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    background: radial-gradient(circle, rgba(36, 115, 219, 0.12) 0%, rgba(10, 10, 12, .9) 70%);
    border-bottom: 1px solid var(--border-color);
}

#social-node-container {
    position: relative;
    background: radial-gradient(circle, rgba(36, 182, 219, 0.12) 0%, rgba(10, 10, 12, .9) 70%);

    width: 100%;
    height: 50vh;
    padding: 0;
    margin: 0;

    box-shadow: inset 0 0 120px #000;
}

.hero-image {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.05;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.glitch-text {
    white-space: nowrap;
    font-size: clamp(1.2rem, 9vw, 3.2rem);
    color: #fff;
    letter-spacing: 4px;
    margin: 0 10px;
}

.hero-sub {
    color: #666;
    font-size: clamp(0.6rem, 2vw, 1rem);
}

.section-title {
    color: var(--cyber-cyan);
    letter-spacing: 2px;
    padding-bottom: 10px;
    margin: 0;
}

.section-title.bordered {
    border-bottom: 1px solid var(--border-color);
}

.tracks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 22, 0.98);
    z-index: 100;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(0px);
    border: 0px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

body:has(.tracks-container.open) {
    overflow: hidden;
}

#releases:has(.tracks-container.open) .release-card:not(:has(.tracks-container.open)) {
    filter: blur(4px) grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.tracks-container.open {
    position: absolute;
    opacity: 0.90;
    border: 1px solid var(--cyber-cyan);
    overflow-y: auto;
    pointer-events: all;
    box-shadow: 0 0 111px 0 var(--cyber-cyan);
    transition: all 0.3s ease-in-out;
}

.track-list-button {
    cursor: pointer;
    list-style: none;
    order: 2;
    margin-top: 10px;
}


.tracks-container ul {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
}

.tracks-container ul::-webkit-scrollbar {
    width: 4px;
}

.track-cover {
    width: 25px;
    object-fit: cover;
    aspect-ratio: 3 / 4 !important;
}

.release-title-block {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.release-subtitle {
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Toggle Button für Trackliste */
.btn-cyber-toggle {
    background: #17171e;
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 0;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.btn-cyber-toggle:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 0 8px rgba(161, 36, 219, 0.3);
    color: #fff;
}

.btn-cyber-toggle .toggle-icon {
    transition: transform 0.2s ease;
}

.btn-cyber-toggle:not(.collapsed) {
    border-color: var(--cyber-cyan);
    color: var(--cyber-cyan);
}

.btn-cyber-toggle:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
}

/* Track Elements & Link-Icons */
.track-item {
    border-bottom: 1px solid #1c1c24;
}

.track-item:last-child {
    border-bottom: none;
}

.track-thumb {
    width: 45px;
    height: 60px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: #000;
}

.track-title {
    font-size: 0.95rem;
    color: #bbb;
}

/* Admin Elements */
.admin-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Bootstrap Form Overrides */
.form-control,
.form-select {
    background-color: #000 !important;
    border: 1px solid var(--border-color) !important;
    color: #fff !important;
    border-radius: 0 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--cyber-cyan) !important;
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.2) !important;
}

/* Custom Cyber Button */
.btn-cyber {
    background-color: transparent;
    color: var(--cyber-cyan);
    border: 1px solid var(--cyber-cyan);
    border-radius: 0;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-cyber:hover {
    background-color: var(--cyber-cyan);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
}

/* ==========================================
   social CYBERPUNK TABS & RESPONSIVE BUTTONS
   ========================================== */

#social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    padding: 0 20px;
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 50px;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

#social a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    color: var(--text-color);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    backdrop-filter: blur(5px);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    bottom: -1px;
}

/* Hover Effect Allgemein (Höhe erweitern anstelle von Position verschieben) */
#social a:hover {
    color: #fff;
    border-color: var(--cyber-cyan);
    border-bottom: none;
    background-color: rgba(18, 18, 22, 0.8);
    box-shadow: 0 -5px 15px rgba(0, 243, 255, 0.3), inset 0 2px 10px rgba(0, 243, 255, 0.2);
    padding-top: 14px;
    text-shadow: 0 0 8px var(--cyber-cyan);
    z-index: 3;
}

/* Klick Effekt */
#social a:active {
    padding-top: 11px;
}

/* Cyber Glitch Sweep Animation */
#social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 243, 255, 0.2),
            transparent);
    transition: left 0.5s ease-in-out;
}

#social a:hover::before {
    left: 100%;
}

/* Top Accent Line für Tab-Optik */
#social a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--cyber-cyan);
    transition: width 0.3s ease;
}

#social a:hover::after {
    width: 100%;
}

/* ==========================================
   PLATTFORMSPEZIFISCHE HIGHLIGHTS (HOVER)
   ========================================== */

/* Dynamische Border-Farbe für den #social Container bei Hover */
#social:has(a:hover) {
    border-bottom-color: var(--cyber-cyan);
}

/* YouTube Hover */
#social a[href*="youtube"]:hover {
    border-color: #ff0000;
    border-bottom: none;
    box-shadow: 0 -5px 15px rgba(255, 0, 0, 0.4), inset 0 2px 10px rgba(255, 0, 0, 0.2);
    text-shadow: 0 0 8px #ff0000;
}

#social a[href*="youtube"]::after {
    background-color: #ff0000;
}

#social:has(a[href*="youtube"]:hover) {
    border-bottom-color: #ff0000;
}

/* Spotify Hover */
#social a[href*="spotify"]:hover {
    border-color: #1db954;
    border-bottom: none;
    box-shadow: 0 -5px 15px rgba(29, 185, 84, 0.4), inset 0 2px 10px rgba(29, 185, 84, 0.2);
    text-shadow: 0 0 8px #1db954;
}

#social a[href*="spotify"]::after {
    background-color: #1db954;
}

#social:has(a[href*="spotify"]:hover) {
    border-bottom-color: #1db954;
}

/* TikTok Hover */
#social a[href*="tiktok"]:hover {
    border-color: #00f2fe;
    border-bottom: none;
    box-shadow: -2px -4px 12px rgba(0, 242, 254, 0.5), 2px -4px 12px rgba(254, 44, 85, 0.5);
    text-shadow: -1px 0 #00f2fe, 1px 0 #fe2c55;
}

#social a[href*="tiktok"]::after {
    background: linear-gradient(90deg, #00f2fe, #fe2c55);
}

#social:has(a[href*="tiktok"]:hover) {
    border-bottom-color: #00f2fe;
}

/* Instagram Hover */
#social a[href*="instagram"]:hover {
    border-color: #e1306c;
    border-bottom: none;
    box-shadow: 0 -5px 15px rgba(225, 48, 108, 0.4), inset 0 2px 10px rgba(225, 48, 108, 0.2);
    text-shadow: 0 0 8px #e1306c;
}

#social a[href*="instagram"]::after {
    background: linear-gradient(90deg, #f09433, #e1306c, #bc2a8d);
}

#social:has(a[href*="instagram"]:hover) {
    border-bottom-color: #e1306c;
}

/* ==========================================
   MOBILE RESPONSIVE (Umschalten auf runde Buttons)
   ========================================== */

@media (max-width: 768px) {
    #social {
        align-items: center;
        gap: 12px;
        padding: 15px 10px;
        margin-bottom: 10px;
        min-height: auto;
        border-bottom: 1px solid var(--border-color);
    }

    #social a {
        bottom: 0;
        border-bottom: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 8px 18px;
        font-size: 0.85rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }

    #social a:hover {
        padding-top: 8px;
        border-bottom: 1px solid var(--cyber-cyan);
        transform: translateY(-2px);
        box-shadow: 0 0 12px rgba(0, 243, 255, 0.4);
    }

    #social a:active {
        padding-top: 8px;
        transform: translateY(0);
    }

    #social a::after {
        display: none;
    }

    /* Mobile Platform Hover Overrides */
    #social a[href*="youtube"]:hover {
        border-bottom: 1px solid #ff0000;
        box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    }

    #social a[href*="spotify"]:hover {
        border-bottom: 1px solid #1db954;
        box-shadow: 0 0 12px rgba(29, 185, 84, 0.5);
    }

    #social a[href*="tiktok"]:hover {
        border-bottom: 1px solid #00f2fe;
        box-shadow: -2px 0 10px rgba(0, 242, 254, 0.5), 2px 0 10px rgba(254, 44, 85, 0.5);
    }

    #social a[href*="instagram"]:hover {
        border-bottom: 1px solid #e1306c;
        box-shadow: 0 0 12px rgba(225, 48, 108, 0.5);
    }
}

/* ==========================================
   SYS//MENSCH DATA-DECK CARDS
   ========================================== */

.release-card.sys-deck {
    background: rgba(10, 10, 14, 0.65);
    border: 1px solid rgba(0, 243, 255, 0.15);
    backdrop-filter: blur(12px);
    position: relative;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-card.sys-deck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
    opacity: 0.3;
    transition: opacity 0.3s ease, height 0.3s ease;
}

/* Card Hover State */
.release-card.sys-deck:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 10px 30px -10px rgba(0, 243, 255, 0.25);
    border-radius: 0px 0px 20px 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.release-card.sys-deck:hover::before {
    opacity: 0.8;
    height: 4px;
}

/* Card Header Components */
.sys-status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--cyber-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyber-green);
}

.sys-id {
    font-size: 0.65rem;
    color: #adadad;
    letter-spacing: 1px;
}

/* Cover Wrapper & Brackets */
.sys-cover-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.sys-deck:hover .sys-cover-wrapper {
    border-radius: 10px;
    animation: all 0.3s ease-in-out;
}

.sys-deck:hover .sys-corner-bracket {
    border-radius: 3px;
    animation: all 0.3s ease-in-out;
}


.sys-cover-wrapper .cover-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(90%) contrast(105%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.release-card.sys-deck:hover .cover-art {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

.sys-scan-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%,
            rgba(0, 0, 0, 0.4) 50%);
    background-size: 100% 4px;
    opacity: 0.6;
}

/* Futuristic Tech Brackets on Cover */
.sys-corner-bracket {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--cyber-cyan);
    border-style: solid;
    opacity: 0.5;
    transition: opacity 0.3s, border-color 0.3s;
}

.release-card.sys-deck:hover .sys-corner-bracket {
    opacity: 1;
}

.sys-corner-bracket.top-left {
    top: 6px;
    left: 6px;
    border-width: 1.5px 0 0 1.5px;
}

.sys-corner-bracket.bottom-right {
    bottom: 6px;
    right: 6px;
    border-width: 0 1.5px 1.5px 0;
}

/* Typography Overrides */
.sys-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.release-card.sys-deck:hover .sys-title {
    color: var(--cyber-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

/* Card Footer & Pulse Line */
.sys-card-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.sys-pulse-line {
    height: 10px;
    width: 30px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.release-card.sys-deck:hover .sys-pulse-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyber-cyan);
    animation: sysPulse 1.2s infinite;
}

@keyframes sysPulse {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ==========================================
   SYS//MENSCH STREAMING BUTTONS (NEO-FUTURISTIC)
   ========================================== */

.release-links .stream-link {
    position: relative;
    width: 80px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    backdrop-filter: blur(4px);
}

/* Subtiles Tech-Gitter im Hintergrund des Buttons */
.release-links .stream-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 4px 2px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

/* Platform Icon (via Font Awesome Pseudo-Element) */
.release-links .stream-link::after {
    font-family: "Font Awesome 6 Brands";
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

/* Eck-Akzent oben links (Tech-Bracket Detail) */
.release-links .stream-link .sys-btn-notch {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    opacity: 0.4;
    transition: all 0.3s ease;
}

/* HOVER STATES & ANIMATIONEN */
.release-links .stream-link:hover {
    transform: scale(1.04);
    background: rgba(22, 22, 30, 0.9);
}

.release-links .stream-link:hover::before {
    opacity: 0.6;
}

.release-links .stream-link:hover::after {
    transform: scale(1.15);
}

.release-links .stream-link:hover .sys-btn-notch {
    opacity: 0.6;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
}

.release-links .stream-link:hover .sys-btn-glare {
    left: 100%;
}

/* ==========================================
   PLATTFORMSPEZIFISCHE CYBER-COLORWAYS
   ========================================== */

/* Spotify */
.release-links .stream-link.spot {
    color: #1DB954;
    border-color: rgba(29, 185, 84, 0.25);
}

.release-links .stream-link.spot::after {
    content: "\f1bc";
}

.release-links .stream-link.spot:hover {
    border-color: #1DB954;
    box-shadow: 0 0 16px rgba(29, 185, 84, 0.45), inset 0 0 8px rgba(29, 185, 84, 0.2);
}

.release-links .stream-link.spot:hover::after {
    filter: drop-shadow(0 0 6px #1DB954);
}

/* YouTube */
.release-links .stream-link.yt {
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.25);
}

.release-links .stream-link.yt::after {
    content: "\f167";
}

.release-links .stream-link.yt:hover {
    border-color: #FF0000;
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.45), inset 0 0 8px rgba(255, 0, 0, 0.2);
}

.release-links .stream-link.yt:hover::after {
    filter: drop-shadow(0 0 6px #FF0000);
}

/* YouTube Music */
.release-links .stream-link.yt-music {
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.25);
}

.release-links .stream-link.yt-music::after {
    content: "\f3c4";
}

.release-links .stream-link.yt-music:hover {
    border-color: #FF0000;
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.45), inset 0 0 8px rgba(255, 0, 0, 0.2);
}

.release-links .stream-link.yt-music:hover::after {
    filter: drop-shadow(0 0 6px #FF0000);
}

/* TikTok */
.release-links .stream-link.tiktok {
    color: #00f2fe;
    border-color: rgba(0, 242, 254, 0.25);
}

.release-links .stream-link.tiktok::after {
    content: "\e07b";
}

.release-links .stream-link.tiktok:hover {
    border-color: #00f2fe;
    box-shadow: -3px 0 14px rgba(0, 242, 254, 0.45), 3px 0 14px rgba(254, 44, 85, 0.45);
}

.release-links .stream-link.tiktok:hover::after {
    filter: drop-shadow(-1px 0 4px #00f2fe) drop-shadow(1px 0 4px #fe2c55);
}

/* Instagram */
.release-links .stream-link.instagram {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.25);
}

.release-links .stream-link.instagram::after {
    content: "\f16d";
}

.release-links .stream-link.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 16px rgba(225, 48, 108, 0.45), inset 0 0 8px rgba(225, 48, 108, 0.2);
}

.release-links .stream-link.instagram:hover::after {
    filter: drop-shadow(0 0 6px #e1306c);
}

/* Generic Fallback */
.release-links .stream-link.generic {
    color: var(--cyber-cyan);
    border-color: rgba(0, 243, 255, 0.25);
}

.release-links .stream-link.generic::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0c1";
}

.release-links .stream-link.generic:hover {
    border-color: var(--cyber-cyan);
    box-shadow: 0 0 16px rgba(0, 243, 255, 0.45), inset 0 0 8px rgba(0, 243, 255, 0.2);
}

.release-links .stream-link.generic:hover::after {
    filter: drop-shadow(0 0 6px var(--cyber-cyan));
}

/* ==========================================
   SYS//MENSCH HERO ACTION BUTTON
   ========================================== */

.sys-hero-btn {
    padding: 1.1rem 3rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.35rem;
    letter-spacing: 4px;
    color: var(--cyber-cyan);
    background: rgba(10, 10, 14, 0.75);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.15), inset 0 0 10px rgba(0, 243, 255, 0.05);
}

.sys-hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 243, 255, 0.15) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Dynamic Corner Brackets */
.sys-hero-btn .sys-btn-notch {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--cyber-cyan);
    border-style: solid;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
}

.sys-hero-btn .sys-btn-notch.top-left {
    top: 4px;
    left: 4px;
    border-width: 2px 0 0 2px;
}

.sys-hero-btn .sys-btn-notch.bottom-right {
    bottom: 4px;
    right: 4px;
    border-width: 0 2px 2px 0;
}

/* Glare & Light Pass Effect */
.sys-hero-btn .sys-btn-glare {
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(0, 243, 255, 0.35) 50%,
            transparent 55%);
    transition: left 0.75s ease;
    pointer-events: none;
}

.sys-hero-btn .sys-btn-text {
    position: relative;
    z-index: 2;
    transition: text-shadow 0.3s ease;
}

.sys-hero-btn .sys-btn-icon {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover States */
.sys-hero-btn:hover {
    color: #fff;
    border-color: var(--cyber-cyan);
    background: rgba(18, 18, 26, 0.9);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.45), inset 0 0 15px rgba(0, 243, 255, 0.25);
}

.sys-hero-btn:hover .sys-btn-text {
    text-shadow: 0 0 12px var(--cyber-cyan);
}

.sys-hero-btn:hover .sys-btn-notch {
    opacity: 1;
    width: 18px;
    height: 18px;
}

.sys-hero-btn:hover .sys-btn-glare {
    left: 100%;
}

.sys-hero-btn:hover .sys-btn-icon {
    transform: translateY(4px);
}

/* Mobile Responsive Scale */
@media (max-width: 768px) {
    .sys-hero-btn {
        padding: 0.85rem 1.8rem;
        font-size: 1rem;
        letter-spacing: 2px;
    }
}

/* ==========================================
   SYS//MENSCH BACK TO TOP BUTTON
   ========================================== */

.sys-top-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 14, 0.85);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    color: var(--cyber-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.sys-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.sys-top-btn .sys-btn-notch {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: var(--cyber-cyan);
    border-style: solid;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.sys-top-btn .sys-btn-notch.top-left {
    top: 3px;
    left: 3px;
    border-width: 1.5px 0 0 1.5px;
}

.sys-top-btn .sys-btn-notch.bottom-right {
    bottom: 3px;
    right: 3px;
    border-width: 0 1.5px 1.5px 0;
}

.sys-top-btn .sys-top-icon {
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sys-top-btn:hover {
    color: #fff;
    border-color: var(--cyber-cyan);
    background: rgba(18, 18, 26, 0.95);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.45);
}

.sys-top-btn:hover .sys-btn-notch {
    opacity: 1;
    width: 12px;
    height: 12px;
}

.sys-top-btn:hover .sys-top-icon {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .sys-top-btn {
        bottom: 90px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}