﻿/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    font-family: Orbitron, sans-serif;
    color: #ffffff;
    background: url("img/galaxy.png");
}

    /* leichtes Scanline-Overlay für Retro-Monitor-Vibe */
    body::after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 3px);
        opacity: 0.25;
        mix-blend-mode: soft-light;
        z-index: 999;
    }

/* globale Vars */
:root {
    --hero-padding-x: 3rem;
    --max-card-width: 1100px;
    --neon-cyan: #00e5ff;
}

/* ---------------------------------------------------------
   HERO – Logo links, Titel Mitte, Navi rechts
--------------------------------------------------------- */

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 3rem var(--hero-padding-x) 2rem;
    width: 100%;
}

/* Mitte: Container für Titel / Content */
.center-side {
    max-width: var(--max-card-width);
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Logo + Untertitel links */
.left-side {
    position: absolute;
    left: var(--hero-padding-x);
    top: 3rem;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logo */
.logo {
    height: 260px;
    width: auto;
    animation: pulse 3s infinite ease-in-out;
}

/* Logo-Pulse-Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
    }

    50% {
        transform: scale(1.09);
        filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.9));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
    }
}

/* Untertitel unter dem Logo */
.subtitle {
    margin-top: 1rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
    max-width: 260px;
    text-align: center;
    line-height: 1.4;
    font-family: Orbitron, sans-serif;
}

/* Navigation rechts */
.nav-panel {
    position: absolute;
    right: var(--hero-padding-x);
    top: 3rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

/* Nav-Buttons */
.nav-item {
    position: relative;
    display: block;
    padding: 0.7rem 0.9rem 0.9rem;
    border-radius: 18px;
    text-decoration: none;
    background: rgba(5, 10, 25, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
    color: var(--neon-cyan);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    overflow: hidden;
}

    .nav-item:hover {
        transform: translateX(4px);
        background: rgba(10, 25, 40, 0.95);
        box-shadow: 0 0 16px rgba(0, 229, 255, 0.8);
    }

    /* pulsierender Neonrand */
    .nav-item::after {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        border: 1px solid rgba(0, 229, 255, 0);
        box-shadow: 0 0 0 rgba(0, 229, 255, 0);
        pointer-events: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-item:hover::after {
        border-color: rgba(0, 229, 255, 0.9);
        box-shadow: 0 0 14px rgba(0, 229, 255, 0.9);
    }

.nav-title {
    display: block;
    font-family: audiowide, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-align: center;
}

.nav-desc {
    display: block;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #cbefff;
    opacity: 0.9;
    font-family: Orbitron, sans-serif;
    text-align: center;
}

/* ---------------------------------------------------------
   WELCOME – Freischwebender Sci-Fi Hologramm-Titel
--------------------------------------------------------- */

.welcome-free {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.welcome-title {
    font-family: audiowide, sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: white;
    text-shadow: 0 0 5px #00eaff, 0 0 25px #00eaff, 0 0 45px #0088cc, 0 0 45px rgba(0, 150, 255, 0.4);
    margin-bottom: 1.4rem;
    animation: holoGlow 5s ease-in-out infinite;
}

@keyframes holoGlow {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.welcome-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #d6f7ff;
    max-width: 1100px;
    margin: 0 auto;
    font-family: Orbitron, sans-serif;
    opacity: 0.9;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.25);
}

/* ---------------------------------------------------------
   NEWS SECTION (Landing Page)
--------------------------------------------------------- */

.news-section {
    max-width: var(--max-card-width);
    width: 100%;
    margin: 1.8rem auto 4rem;
}

    /* NEWS-Headline mit Neon-Linien */
    .news-section .section-title {
        text-align: center;
        margin-bottom: 1.2rem;
        font-family: audiowide, sans-serif;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-size: 2.3rem;
        text-shadow: 0 0 8px var(--neon-cyan), 0 0 16px var(--neon-cyan), 0 0 32px #0094ff;
        position: relative;
    }

        .news-section .section-title::before,
        .news-section .section-title::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 18%;
            height: 2px;
            background: linear-gradient( to right, transparent, rgba(0, 229, 255, 0.9), transparent );
            transform: translateY(-50%);
        }

        .news-section .section-title::before {
            left: 8%;
        }

        .news-section .section-title::after {
            right: 8%;
        }

/* Carousel */
.news-carousel {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    margin: 0 auto;
}

/* einzelne News-Slides */
.news-slide {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 1.5rem;
    padding: 1.6rem 1.9rem;
    border-radius: 18px;
    background: rgba(5, 5, 20, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.25);
    box-shadow: 0 0 18px rgba(0, 80, 160, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

    .news-slide.active {
        opacity: 1;
        pointer-events: auto;
    }

/* Bildbereich */
.news-image {
    flex: 0 0 220px;
    border-radius: 14px;
    overflow: hidden;
    transform-origin: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Bild schweben beim Hover */
.news-slide:hover .news-image {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
}

/* Textbereich */
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-family: audiowide, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--neon-cyan);
}

.news-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-family: Orbitron, sans-serif;
}

.news-meta {
    font-size: 0.8rem;
    opacity: 0.7;
    font-family: Orbitron, sans-serif;
}

/* kleine Dots unter dem Carousel */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
}

    .news-dot.active {
        background: var(--neon-cyan);
    }

/* ---------------------------------------------------------
   ABOUT STARLUNE – Info unter News
--------------------------------------------------------- */

.about-starlune {
    max-width: 1100px;
    margin: 3rem auto 5rem;
    padding: 1.5rem 1.8rem 2rem;
    background: rgba(5, 10, 25, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
}

    .about-starlune .section-title {
        text-align: center;
        font-family: audiowide, sans-serif;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-size: 2rem;
        margin-bottom: 1.2rem;
        text-shadow: 0 0 8px #00e5ff, 0 0 16px #00e5ff;
    }

.about-starlune p {
    font-family: Orbitron, sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #d6f7ff;
    opacity: 0.9;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.15);
}


/* ---------------------------------------------------------
   HUD unten links
--------------------------------------------------------- */

.hud-corner {
    position: fixed;
    left: 2rem;
    bottom: 1.5rem;
    padding: 0.7rem 1.2rem 0.9rem;
    border-radius: 10px;
    background: rgba(5, 10, 25, 0.75);
    border: 1px solid rgba(0, 229, 255, 0.6);
    box-shadow: 0 0 14px rgba(0, 229, 255, 0.4);
    font-family: Orbitron, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cbefff;
    z-index: 1001;
    overflow: hidden;
}

.hud-line + .hud-line {
    margin-top: 0.15rem;
    opacity: 0.9;
}

/* dünne Neonlinie oben im HUD */
.hud-corner::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 6px;
    height: 1px;
    background: linear-gradient( to right, transparent, rgba(0, 229, 255, 0.9), transparent );
    opacity: 0.8;
}

/* dezenter Scan- / Glitch-Balken */
.hud-corner::after {
    content: "";
    position: absolute;
    left: -30%;
    bottom: 0;
    width: 30%;
    height: 2px;
    background: linear-gradient( to right, transparent, rgba(0, 229, 255, 0.9), transparent );
    opacity: 0.8;
    animation: hud-scan 4s linear infinite;
}

@keyframes hud-scan {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(400%);
    }
}

/* Auf sehr kleinen Screens etwas kleiner & höher */
@media (max-width: 700px) {
    .hud-corner {
        left: 1rem;
        bottom: 1rem;
        padding: 0.5rem 0.9rem 0.7rem;
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }
}

/* ---------------------------------------------------------
   MEET'N GLITCH – Character Card
--------------------------------------------------------- */

.char-main {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 2rem;
}

.character-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Rahmen für Card + Pfeile */
.char-frame {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

/* Pfeile */
.char-arrow {
    background: rgba(5, 10, 25, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.6);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    color: #00e5ff;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    position: relative;
    z-index: 10;
}

    .char-arrow:hover {
        transform: scale(1.08);
        background: rgba(10, 25, 40, 0.95);
        box-shadow: 0 0 18px rgba(0, 229, 255, 0.9);
    }

/* Card als 2x2 Grid:
   portrait | info
   portrait | bio  */
.char-card {
    width: 1200px;
    max-width: 95%;
    margin: 2rem auto;
    padding: 2.2rem 2.6rem;
    border-radius: 22px;
    background: rgba(5, 5, 20, 0.92);
    border: 1px solid rgba(0, 229, 255, 0.45);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.25);
    display: grid;
    grid-template-columns: 380px 1fr;
    grid-template-areas:
        "portrait info"
        "bio bio"; /* <- Bio nimmt jetzt beide Spalten */
    column-gap: 2rem;
    row-gap: 2rem;
}


/* Portrait links */
.char-portrait {
    grid-area: portrait;
    display: inline-flex; /* wichtig! kein Strecken */
    flex-direction: column;
    justify-content: flex-end; /* Bild unten */
    align-items: flex-start;
    padding: 0.8rem;
    border-radius: 18px;
    background: rgba(5, 10, 25, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
    height: auto; /* zwingend */
    align-self: flex-start; /* verhindert Höhe-Ausdehnung */
}



    .char-portrait img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain; /* kannst du auch weglassen, schadet aber nicht */
        margin-bottom: -11px;
    }


/* Info oben rechts */
.char-info {
    grid-area: info;
    display: flex;
    flex-direction: column;
}

/* Name */
.char-name {
    font-family: audiowide, sans-serif;
    color: #ff42c3;
    font-size: 2rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.1rem;
}

/* Rolle */
.char-role {
    font-family: Orbitron, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 0.45rem;
}

/* Tagline als neon Zitat */
.char-tagline {
    position: relative;
    font-family: Audiowide, sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: deeppink;
    margin-bottom: 1.0rem;
    padding-left: 1.2rem;
    letter-spacing: 0.04em;
}

    .char-tagline::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.15rem;
        bottom: 0.15rem;
        width: 3px;
        border-radius: 999px;
        background: linear-gradient(to bottom, #ffdd55, #ff7b00);
        box-shadow: 0 0 10px rgba(255, 200, 80, 0.9);
    }

/* Basic + Preferences als zwei Spalten */
.char-details {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 2.8rem;
    letter-spacing: 0.1em;
}

.char-column {
    display: flex;
    flex-direction: column;
}

.char-section-title {
    font-family: Orbitron, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.85;
    position: relative; /* wichtig für die Linie */
    padding-bottom: 0.5rem; /* Platz für Linie */
    margin-bottom: 1.1rem; /* Abstand unter der Linie */
}

    .char-section-title::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px;
        /* Futuristischer Neonverlauf */
        background: linear-gradient( to right, transparent, rgba(0, 229, 255, 0.9), transparent );
        /* subtiler Glow */
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
    }




/* Labels/Werte */
.char-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.char-meta-row {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

    .char-meta-row dt {
        font-family: Orbitron, sans-serif;
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #00e5ff;
        opacity: 0.9;
    }

    .char-meta-row dd {
        margin: 0;
        font-family: Orbitron, sans-serif;
        font-size: 0.9rem;
        opacity: 0.95;
        line-height: 1.35;
    }

.char-bio-card {
    grid-area: bio;
    align-self: flex-start;
    width: 100%; /* volle Breite */
    max-width: none; /* keine Begrenzung */

    padding: 1.1rem 1.3rem 1.3rem;
    border-radius: 18px;
    background: rgba(5, 10, 25, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}


.char-bio-title {
    font-family: Audiowide, sans-serif;
    font-size: 1.0rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #00e5ff;
    margin-bottom: 0.4rem;
}

.char-description p {
    margin: 0 0 0.9rem;
    font-family: Orbitron, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.96;
}

/* Dots */
.char-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
}

.char-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 1px solid #00e5ff;
    background: transparent;
    cursor: pointer;
}

    .char-dot.active {
        background: #00e5ff;
    }

/* Responsive */
@media (max-width: 900px) {
    .char-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .char-portrait,
    .char-info,
    .char-bio-card {
        grid-area: unset;
    }

    .char-portrait {
        margin: 0 auto;
        max-width: 360px;
    }

    .char-details {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   EXTENDED MUSIC UNIVERSE – Band Icon Bar
--------------------------------------------------------- */

.band-bar {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 0.4rem auto 0.2rem;
}

.band-btn {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 255, 0.45);
    background: rgba(5, 10, 25, 0.85);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.22);
    cursor: pointer;
    display: grid;
    place-items: center;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

    .band-btn:hover {
        transform: translateY(-2px);
        background: rgba(10, 25, 40, 0.95);
        box-shadow: 0 0 18px rgba(0, 229, 255, 0.55);
        border-color: rgba(0, 229, 255, 0.85);
    }

    .band-btn.active {
        border-color: rgba(0, 229, 255, 1);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.75);
        background: rgba(0, 229, 255, 0.10);
    }

    .band-btn img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* optional: kleines Label unter Icon */
.band-label {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.85;
    letter-spacing: 0.12em;
    margin-top: 0.2rem;
    text-transform: uppercase;
    color: #cbefff;
}



/* ---------------------------------------------------------
   LORE & GLOSSAR – Layout
--------------------------------------------------------- */

.lore-wrapper {
    max-width: 1100px;
    margin: 3rem auto 5rem;
    padding: 0 1.8rem;
}

.lore-card {
    margin-top: 1.5rem;
    padding: 1.8rem 1.8rem 2.2rem;
    background: rgba(5, 10, 25, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 18px;
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Suchleiste */

.lore-search-bar {
    margin-bottom: 1.6rem;
}

.lore-search-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: rgba(200, 240, 255, 0.85);
}

.lore-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#lore-search-input {
    width: 100%;
    padding: 0.7rem 2.4rem 0.7rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.6);
    background: rgba(3, 6, 18, 0.9);
    color: #e6f7ff;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

    #lore-search-input::placeholder {
        color: rgba(180, 210, 230, 0.6);
    }

    #lore-search-input:focus {
        border-color: #00e5ff;
        box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
        background: rgba(3, 10, 30, 0.95);
    }

.lore-search-icon {
    position: absolute;
    right: 0.9rem;
    font-size: 1rem;
    opacity: 0.75;
}

.lore-search-hint {
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: rgba(180, 210, 230, 0.7);
}

/* Liste & Einträge */

.lore-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.4rem;
}

.lore-item {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 60%);
    border: 1px solid rgba(0, 229, 255, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease, background 0.15s ease;
}

    .lore-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
        border-color: rgba(0, 229, 255, 0.6);
        background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.18), transparent 70%);
    }

.lore-term {
    font-family: audiowide, system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.lore-definition {
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(215, 235, 255, 0.9);
    letter-spacing: 0.2em;
}

/* zum Ausblenden über JS */
.lore-item--hidden {
    display: none;
}

.lore-empty-message {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px dashed rgba(0, 229, 255, 0.5);
    background: rgba(5, 15, 35, 0.9);
    color: rgba(210, 230, 255, 0.85);
}


.lyrics-main {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 2rem 3rem;
}

.lyrics-section {
    background: rgba(5, 10, 25, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
    padding: 2rem 2.2rem 2.4rem;
}

    .lyrics-section .section-title {
        text-align: center;
        margin-bottom: 1.5rem;
    }

.lyrics-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.album-info {
    flex: 1 1 260px;
    min-width: 250px;
}

.album-cover {
    width: 100%;
    max-width: 260px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
    margin-bottom: 1rem;
}

    .album-cover img {
        display: block;
        width: 100%;
        height: auto;
    }

.album-meta {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

    .album-meta strong {
        font-weight: 600;
    }

.track-list {
    flex: 1 1 260px;
    min-width: 250px;
}

    .track-list h3 {
        font-family: "Orbitron", system-ui, sans-serif;
        font-size: 1rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin: 0 0 0.75rem;
    }

.track-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.track-btn {
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.45);
    background: rgba(5, 10, 25, 0.9);
    color: #e6f7ff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .track-btn span.track-number {
        font-family: "Orbitron", system-ui, sans-serif;
        font-size: 0.75rem;
        opacity: 0.8;
        margin-right: 0.35rem;
    }

    .track-btn:hover {
        background: rgba(0, 229, 255, 0.08);
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
        transform: translateY(-1px);
    }

    .track-btn.active {
        background: rgba(0, 229, 255, 0.18);
        border-color: rgba(0, 229, 255, 0.9);
        box-shadow: 0 0 14px rgba(0, 229, 255, 0.55);
    }

.lyrics-display {
    margin-top: 2.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(0, 229, 255, 0.35);
}

.lyrics-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

#lyrics-title {
    font-size: 1.1rem;
    font-family: "Orbitron", system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lyrics-meta {
    font-size: 0.8rem;
    opacity: 0.8;
}

#lyrics-text {
    display: flex;
    gap: 2.2rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

/* Jede Spalte */
.lyrics-col {
    flex: 1 1 0;
    min-width: 0;
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 0.95rem;
}





.lyrics-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    font-size: 0.85rem;
}

    .lyrics-nav button {
        background: rgba(5, 10, 25, 0.9) !important;
        color: #e6f7ff !important;
        border-radius: 999px;
        border: 1px solid rgba(0, 229, 255, 0.6);
        padding: 0.35rem 0.9rem;
        cursor: pointer;
        font-size: 0.8rem;
        transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    }

        .lyrics-nav button:hover {
            background: rgba(0, 229, 255, 0.15) !important;
            box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
            transform: translateY(-1px);
        }

.lyrics-counter {
    opacity: 0.8;
}

.lyric-heading {
    font-weight: 700;
    letter-spacing: 0.03em;
    display: block;
    font-size: 1rem;
    color: #e6f7ff;
    text-transform: uppercase;
    /* Wichtig: Überschriften sollen nicht allein stehen */
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
   
}

.lyrics-col p {
    margin: 0 0 0.6rem 0; /* Abstand zum nächsten Absatz */
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}




/* Mobile */
@media (max-width: 768px) {
    .lyrics-section {
        padding: 1.6rem 1.4rem 2rem;
    }

    .lyrics-layout {
        flex-direction: column;
    }

    .album-cover {
        max-width: 100%;
    }

    .lyrics-nav {
        justify-content: center;
    }

    /* auf kleineren Screens nur eine Spalte */
    #lyrics-text {
        flex-direction: column; /* Spalten untereinander auf Handy */
    }
}







/* Aktiver Nav-Button für Lyrics */
.nav-item-active {
    border-color: rgba(0, 229, 255, 1) !important;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.6);
    cursor: default;
}

/* Hero + Navigation responsive */
@media (max-width: 1000px) {
    .hero {
        position: static;
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
    }

    .left-side {
        position: static;
        width: auto;
        align-items: center;
        margin-bottom: 1rem;
    }

    .subtitle {
        text-align: center;
    }

    .nav-panel {
        position: static;
        width: 100%;
        margin-top: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .nav-item {
        max-width: 260px;
        margin: 0.25rem;
    }

    .center-side {
        width: 100%;
    }

    .news-section {
        max-width: 1100px;
        width: 100%;
        margin: 2rem auto 4rem;
        padding: 0 1.2rem;
    }

    .news-carousel {
        height: auto;
    }

    .news-slide {
        position: relative;
        flex-direction: column;
        height: auto;
    }

    .news-image {
        flex: 0 0 auto;
        height: 180px;
    }

    .news-section .section-title::before,
    .news-section .section-title::after {
        width: 14%;
    }

   

}

/* ---------------------------------------------------------
   OTHER PROJECTS – Slider Layout
--------------------------------------------------------- */

.projects-main {
    max-width: 1200px;
    margin: 2rem auto 5rem;
    padding: 0 2rem;
}

.projects-section .section-title {
    text-align: center;
    font-family: audiowide, sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px #00e5ff, 0 0 16px #00e5ff;
}

/* Tabs */
.projects-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.project-tab {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.5);
    background: rgba(5, 10, 25, 0.75);
    color: #cbefff;
    font-family: Orbitron, sans-serif;
    letter-spacing: 0.13em;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

    .project-tab:hover {
        background: rgba(0, 229, 255, 0.12);
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
    }

    .project-tab.active {
        background: rgba(0, 229, 255, 0.2);
        border-color: rgba(0, 229, 255, 0.8);
        box-shadow: 0 0 16px rgba(0, 229, 255, 0.55);
    }

/* Frame */
.projects-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

/* Slides */
.project-slide {
    display: none;
    max-width: 1100px;
    background: rgba(5, 10, 25, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 18px;
    padding: 2rem 2.3rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
    gap: 2rem;
}

    .project-slide.active {
        display: flex;
        flex-direction: column;
    }

/* Arrows */
.project-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 10, 25, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.6);
    border-radius: 999px;
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
    color: #00e5ff;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .project-arrow:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 0 18px rgba(0, 229, 255, 0.9);
        background: rgba(10, 25, 40, 0.95);
    }

    .project-arrow[data-direction="prev"] {
        left: -3rem;
    }

    .project-arrow[data-direction="next"] {
        right: -3rem;
    }

/* Info Text */
.project-title {
    font-family: audiowide, sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.13em;
    margin-bottom: 0.6rem;
    color: #00e5ff;
}

.project-tagline {
    font-family: Orbitron, sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.project-text {
    font-family: Orbitron, sans-serif;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #d6f7ff;
}

/* Gallery */
.project-gallery {
    display: flex;
    gap: 1.4rem;
    margin-top: 1.3rem;
    flex-wrap: wrap;
}

.project-image {
    width: calc(33% - 1rem);
    background: rgba(5, 10, 25, 0.8);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 0.6rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

    .project-image img {
        width: 100%;
        border-radius: 10px;
        display: block;
    }

    .project-image figcaption {
        font-size: 0.75rem;
        margin-top: 0.4rem;
        opacity: 0.75;
    }

/* Disclaimer */
.projects-disclaimer {
    margin-top: 2rem;
    text-align: center;
    font-family: Orbitron, sans-serif;
    font-size: 0.9rem;
    color: #cbefff;
    opacity: 0.8;
}

/* Bio Toggle Button */
.bio-toggle {
    width: 100%;
    background: rgba(5, 10, 25, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #00e5ff;
    font-family: Orbitron, sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
    transition: 0.25s ease;
}

    .bio-toggle:hover {
        background: rgba(0, 229, 255, 0.15);
        border-color: rgba(0, 229, 255, 0.6);
    }

/* Hidden bio content */
.bio-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 0.3rem;
}

    /* When open */
    .bio-content.open {
        max-height: 800px; /* genug für jede Bio */
        margin-top: 0.7rem;
    }

/* ---------------------------------------------------------
   LINKS – External Resources
--------------------------------------------------------- */

.links-main {
    max-width: 1200px;
    margin: 2rem auto 5rem;
    padding: 0 2rem;
}

.links-section {
    background: rgba(5, 10, 25, 0.85);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 18px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
    padding: 2rem 2.2rem 2.4rem;
}

    .links-section .section-title {
        text-align: center;
        font-family: audiowide, sans-serif;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
        text-shadow: 0 0 8px #00e5ff, 0 0 16px #00e5ff;
    }

.links-intro {
    text-align: center;
    font-family: Orbitron, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d6f7ff;
    opacity: 0.9;
    margin-bottom: 1.6rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem 1.3rem;
}

.link-card {
    display: block;
    padding: 1rem 1.2rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 229, 255, 0.35);
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), rgba(5, 10, 25, 0.9));
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.18);
    text-decoration: none;
    color: #e6f7ff;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease, background 0.15s ease;
}

    .link-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 22px rgba(0, 229, 255, 0.4);
        border-color: rgba(0, 229, 255, 0.8);
        background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.18), rgba(5, 10, 30, 0.95));
    }

.link-pill {
    display: inline-block;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.8);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    opacity: 0.9;
}

.link-title {
    font-family: audiowide, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.link-desc {
    font-family: Orbitron, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(210, 235, 255, 0.93);
}

.links-disclaimer {
    margin-top: 1.8rem;
    text-align: center;
    font-family: Orbitron, sans-serif;
    font-size: 0.8rem;
    color: #cbefff;
    opacity: 0.75;
}

/* Mobile */
@media (max-width: 768px) {
    .links-main {
        padding: 0 1.4rem;
    }

    .links-section {
        padding: 1.7rem 1.6rem 2.1rem;
    }
}














