/* =========================================================
   PHP-Fusion 9 Theme: SchwarzNeonGrün
   Datei: themes/SchwarzNeonGruen/styles.css
   Schwarz-neongrünes, modernes, atmosphärisches Design
   ========================================================= */

:root {
    --st-bg:           #060d0d;
    --st-bg-soft:      #0b1716;
    --st-panel:        #0e1b1a;
    --st-panel-2:      #122322;
    --st-panel-border: #1c3331;
    --st-turq:         #00cc00;
    --st-turq-dark:    #006600;
    --st-turq-deep:    #003300;
    --st-turq-bright:  #00ff00;
    --st-turq-glow:    #39ff14;
    --st-text:         #e3f1ef;
    --st-text-dim:     #8ba8a4;
    --st-link:         #39ff14;
    --st-link-hover:   #76ff03;
    --st-shadow:       0 18px 45px rgba(0, 0, 0, .55);
    --st-glow:         0 0 22px rgba(0, 255, 0, .28);
    --st-radius:       14px;
    --st-radius-sm:    8px;
    --st-ease:         cubic-bezier(.2, .7, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    background:
        radial-gradient(1100px 600px at 50% -8%, rgba(0, 204, 0, .10), transparent 65%),
        radial-gradient(ellipse at bottom, #0a1413 0%, #060d0d 60%);
    color: var(--st-text);
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
                 "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(0, 255, 0, .28);
    color: #fff;
}

a {
    color: var(--st-link);
    text-decoration: none;
    transition: color .18s var(--st-ease), text-shadow .18s var(--st-ease);
}
a:hover {
    color: var(--st-link-hover);
    text-shadow: 0 0 10px rgba(57, 255, 20, .45);
}

/* ---------- Layout-Wrapper ---------- */
.st-wrapper {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Topbar ---------- */
.st-topbar {
    background: rgba(5, 12, 12, .85);
    border-bottom: 1px solid var(--st-turq-deep);
}
.st-topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    font-size: 12px;
    padding: 6px 4px;
    color: var(--st-text-dim);
}
.st-topbar-inner a { color: var(--st-text-dim); }
.st-topbar-inner a:hover { color: var(--st-turq-bright); }

/* ---------- Header / Logo ---------- */
.st-header {
    position: relative;
    padding: 26px 0 0;
    background: transparent;
}
/* leuchtende Akzentlinie unter dem Header statt harter Border */
.st-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent, var(--st-turq-dark) 18%, var(--st-turq-bright) 50%,
        var(--st-turq-dark) 82%, transparent);
    box-shadow: 0 0 16px rgba(0, 255, 0, .5);
}
.st-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 6px;
}

.st-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.st-banner-img {
    max-height: 450px;
    max-width: 1310px;
    height: auto;
    width: auto;
    display: block;
    background: transparent;
    filter: drop-shadow(0 6px 22px rgba(0, 255, 0, .22));
}
.st-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, .65));
}
.st-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.st-logo-main {
    font-size: 27px;
    font-weight: 800;
    letter-spacing: .5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--st-turq-glow) 60%, var(--st-turq) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--st-turq-bright); /* Fallback */
}
.st-logo-slogan {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--st-turq-bright);
    margin-top: 4px;
}

/* ---------- Navigation ---------- */
.st-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
    background: rgba(5, 12, 12, .6);
    border-radius: 0 0 var(--st-radius) var(--st-radius);
    backdrop-filter: blur(4px);
}
.st-nav ul, .st-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.st-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.st-nav a, .st-nav span {
    position: relative;
    display: inline-block;
    padding: 8px 13px;
    color: var(--st-text);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
    border-radius: var(--st-radius-sm);
    transition: color .18s var(--st-ease), background .18s var(--st-ease);
}
/* animierte Unterstreichung */
.st-nav a::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--st-turq-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s var(--st-ease);
}
.st-nav a:hover {
    background: rgba(0, 204, 0, .12);
    color: #fff;
    text-shadow: none;
}
.st-nav a:hover::after { transform: scaleX(1); }

/* ---------- Content Layout ---------- */
.st-content-wrapper {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    align-items: flex-start;
}
/* Alle drei Spalten (links / mitte / rechts) im selben
   Milchglas-Look: gleicher Hintergrund, Rahmen, Radius,
   Schatten, Blur und Innenabstand. */
.st-left-panel,
.st-right-panel,
.st-center-panel {
    min-width: 0;
    padding: 16px;
    background: rgba(14, 27, 26, .78);
    border: 1px solid var(--st-panel-border);
    border-radius: var(--st-radius);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
/* Mitte breiter, links/rechts schmaler:
   Verhältnis 1 : 3.2 : 1 */
.st-left-panel,
.st-right-panel {
    flex: 1 1 0;
}
.st-center-panel {
    flex: 3.2 1 0;
}
/* letzte Box in JEDER Spalte: kein doppelter Abstand unten */
.st-left-panel  > .st-table:last-child,
.st-left-panel  > .st-side:last-child,
.st-right-panel > .st-table:last-child,
.st-right-panel > .st-side:last-child,
.st-center-panel > .st-table:last-child,
.st-center-panel > .st-side:last-child {
    margin-bottom: 0;
}

/* ---------- Panels (alle Typen, gleicher Look) ----------
   Gilt für Seiten-Panels (.st-side), Inhaltsboxen (.st-table) und
   selbst erstellte Panels (.st-panel). Dunkler Verlauf-Innenraum,
   rundum leuchtender Neon-Grün-Rahmen, Titel als heller Text mit
   farbigem Balken darunter.
   Für eigene HTML-Panels einfach so aufbauen:
     <div class="st-panel">
       <div class="st-panel-title">Titel</div>
       <div class="st-panel-body"> ... Inhalt ... </div>
     </div>  */
.st-side,
.st-table,
.st-panel {
    position: relative;
    background: linear-gradient(160deg, #11201f 0%, #0b1514 55%, #0e1a18 100%);
    border: 1px solid rgba(0, 255, 0, .75);
    border-radius: var(--st-radius);
    box-shadow:
        0 0 20px rgba(0, 255, 0, .30),
        inset 0 0 26px rgba(0, 255, 0, .06);
    overflow: hidden;
}
.st-side  { margin-bottom: 20px; }
.st-table,
.st-panel {
    margin-bottom: 24px;
    transition: border-color .2s var(--st-ease), box-shadow .2s var(--st-ease);
}
.st-table:hover,
.st-panel:hover {
    border-color: rgba(57, 255, 20, .95);
    box-shadow:
        0 0 30px rgba(0, 255, 0, .45),
        inset 0 0 26px rgba(0, 255, 0, .08);
}

/* Titel: heller Neon-Grün-Text, leicht leuchtend, ohne Hintergrundbalken */
.st-side-title,
.st-table-title,
.st-panel-title {
    position: relative;
    background: none;
    border: none;
    color: var(--st-turq-glow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    text-shadow: 0 0 12px rgba(0, 255, 0, .45);
}
/* farbiger Balken unter dem Titel, über die volle Panel-Breite */
.st-side-title::after,
.st-table-title::after,
.st-panel-title::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--st-turq), var(--st-turq-bright));
    box-shadow: 0 0 12px rgba(0, 255, 0, .55);
}
.st-side-title  { font-size: 12px; padding: 13px 14px 10px; }
.st-table-title,
.st-panel-title { font-size: 16px; padding: 14px 16px 12px; }

.st-side-body {
    padding: 8px 14px 14px;
    font-size: 13px;
    color: var(--st-text-dim);
}
.st-side-body a { color: var(--st-link); }
.st-table-body,
.st-panel-body {
    padding: 9px 16px 16px;
    line-height: 1.6;
}
.st-panel-body a { color: var(--st-link); }
.st-table-body img { max-width: 100%; }

.st-side-body,
.st-table-body,
.st-panel-body {
    line-height: 1.65;
    font-size: 13px;
}

.st-table-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.st-table-body table th, .st-table-body table td {
    border: 1px solid var(--st-panel-border);
    padding: 6px 9px;
}
.st-table-body table th {
    background: #102220;
    color: var(--st-turq-bright);
    text-align: left;
}
.st-table-body table tr:nth-child(even) td {
    background: rgba(0, 255, 0, .04);
}

/* ---------- Modul-/Infusion-Panels an den Look angleichen ----------
   PHP-Fusion-Module & Bootstrap geben teils eigene .panel/.card/.well
   aus (laufen nicht über opentable). Die bekommen denselben Rahmen.
   .alert bleibt absichtlich aussen vor (Meldungsfarben erhalten). */
.panel,
.panel-default,
.card,
.well {
    position: relative !important;
    background: linear-gradient(160deg, #11201f 0%, #0b1514 55%, #0e1a18 100%) !important;
    border: 1px solid rgba(0, 255, 0, .75) !important;
    border-radius: var(--st-radius) !important;
    box-shadow:
        0 0 20px rgba(0, 255, 0, .30),
        inset 0 0 26px rgba(0, 255, 0, .06) !important;
    color: var(--st-text);
    overflow: hidden;
    margin-bottom: 24px;
}
.panel-heading,
.card-header {
    position: relative !important;
    background: none !important;
    border: none !important;
    color: var(--st-turq-glow) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-size: 16px;
    padding: 16px 18px 14px !important;
    text-shadow: 0 0 12px rgba(0, 255, 0, .45);
}
.panel-heading::after,
.card-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--st-turq), var(--st-turq-bright));
    box-shadow: 0 0 12px rgba(0, 255, 0, .55);
}
.panel-title,
.card-title { margin: 0; font-size: inherit; color: inherit; }
.panel-body,
.card-body {
    background: none !important;
    color: var(--st-text);
    padding: 10px 18px 18px !important;
    line-height: 1.65;
}
.panel-footer,
.card-footer {
    background: rgba(0, 0, 0, .22) !important;
    border-top: 1px solid var(--st-panel-border) !important;
    color: var(--st-text-dim);
    padding: 10px 18px !important;
}

/* ---------- Buttons ---------- */
.st-buttonbar { margin: 14px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.st-buttonbar-center { justify-content: center; }

input[type="submit"], input[type="button"], button, .button {
    background: linear-gradient(135deg, var(--st-turq-bright), var(--st-turq-dark));
    color: #ffffff;
    border: none;
    padding: 6px 2.3px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    border-radius: var(--st-radius-sm);
    cursor: pointer;
    transition: transform .14s var(--st-ease), box-shadow .14s var(--st-ease), filter .14s var(--st-ease);
}
input[type="submit"]:hover, input[type="button"]:hover, button:hover, .button:hover {
    box-shadow: 0 0 18px rgba(0, 255, 0, .6);
    transform: translateY(-1px);
    filter: brightness(1.05);
}
input[type="submit"]:active, input[type="button"]:active, button:active, .button:active {
    transform: translateY(0);
}

/* ---------- Forms ---------- */
input[type="text"], input[type="password"], input[type="email"],
textarea, select {
    background: #081312;
    border: 1px solid var(--st-panel-border);
    color: var(--st-text);
    padding: 9px 11px;
    border-radius: var(--st-radius-sm);
    transition: border-color .16s var(--st-ease), box-shadow .16s var(--st-ease);
}
input[type="text"]:focus, input[type="password"]:focus,
input[type="email"]:focus, textarea:focus, select:focus {
    border-color: var(--st-turq);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 204, 0, .22);
}

/* ---------- Bullet ---------- */
.st-bullet { color: var(--st-turq-bright); margin-right: 4px; }

/* ---------- Footer ---------- */
.st-footer {
    position: relative;
    background: rgba(5, 12, 12, .85);
    margin-top: 30px;
    border-radius: var(--st-radius) var(--st-radius) 0 0;
}
.st-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent, var(--st-turq-dark) 18%, var(--st-turq-bright) 50%,
        var(--st-turq-dark) 82%, transparent);
}
.st-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--st-text-dim);
}
.st-credits { color: var(--st-turq-bright); opacity: .8; }

/* ---------- Breadcrumb (z.B. "Start > Tracklist") ausblenden ---------- */
.breadcrumb {
    display: none !important;
}

/* ---------- Scrollbar (Webkit) ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--st-bg); }
::-webkit-scrollbar-thumb {
    background: var(--st-turq-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--st-turq); }
/* Firefox */
* { scrollbar-color: var(--st-turq-dark) var(--st-bg); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .st-content-wrapper { flex-direction: column; }
    .st-left-panel, .st-right-panel { flex: 1 1 auto; width: 100%; }
    .st-header-inner { flex-direction: column; }
    .st-logo-main { font-size: 26px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
    .st-nav a::after { transition: none; }
}

/* =========================================================
   Social-Sidepanel (rechts fixiert)
   Schwarz -> Neon-Grün angepasst, Marken-Glow beim Hover bleibt
   ========================================================= */
.fdb-sidepanel {
    position: fixed;
    top: 30%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
/* Markieren sperren */
.fdb-sidepanel,
.fdb-sidepanel * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.fdb-sidepanel a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    color: #eafdfa;
    border-radius: 8px 0 0 8px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--st-turq-dark), var(--st-turq-deep));
    border: 1px solid rgba(0, 255, 0, .25);
    border-right: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, .5);
    transition: all .3s var(--st-ease);
}
.fdb-sidepanel a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
/* Hover: dunkel + markentypischer Schimmer + leicht ausfahren */
.fdb-discord:hover {
    background: #0a1413;
    box-shadow: 0 0 16px #5865F2;
    transform: translateX(-6px);
    color: #fff;
}
.fdb-facebook:hover {
    background: #0a1413;
    box-shadow: 0 0 16px #1877F2;
    transform: translateX(-6px);
    color: #fff;
}
.fdb-ts3:hover {
    background: #0a1413;
    box-shadow: 0 0 16px #0088ff;
    transform: translateX(-6px);
    color: #fff;
}
.fdb-whatsapp:hover {
    background: #0a1413;
    box-shadow: 0 0 16px #25D366;
    transform: translateX(-6px);
    color: #fff;
}
/* radio.de: Glow in Theme-Neon-Grün */
.fdb-radiode:hover {
    background: #0a1413;
    box-shadow: 0 0 16px var(--st-turq-glow);
    transform: translateX(-6px);
    color: var(--st-turq-glow);
}

/* Mobil: untere Leiste statt rechter Spalte */
@media (max-width: 768px) {
    .fdb-sidepanel {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        justify-content: center;
        gap: 6px;
        padding: 10px;
        background: rgba(4, 10, 10, .92);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }
    .fdb-sidepanel a {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        border-right: 1px solid rgba(0, 255, 0, .25);
    }
    .fdb-sidepanel a:hover {
        transform: translateY(-5px);
    }
}
