/* --- GHOSTFAIZE MASTER STYLESHEET --- */

/* 1. GLOBALE BASIS */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    /* Verhindert, dass Padding die Breite vergrößert */
}

body {
    background: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    padding-top: 140px;
    /* Ungefähre Höhe deines Headers */
    /* overflow-x: hidden; <-- DIESE ZEILE ENTFERNEN ODER AUSKOMMENTIEREN */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. NAVIGATION & HEADER */
header {
    background: #000;
    border-bottom: 1px solid #222;
    padding: 30px 0;
    position: fixed;
    /* Wir wechseln von sticky auf fixed für maximale Kompatibilität */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    transition: all 0.4s ease;
}

/* Spezifisches H1 Branding im Header der Index */
header h1 {
    color: #8b0000;
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 900;
    margin-top: 0;
    transition: all 0.3s ease-in-out;
}

/* --- Der "Shrink"-Effekt --- */
header.scrolled {
    padding: 10px 0 !important;
    /* Kleineres Padding beim Scrollen */
    background: rgba(0, 0, 0, 0.95);
    /* Leicht transparent für Tiefe */
}

header.scrolled h1 {
    font-size: 24px;
    /* Deutlich kleinerer Titel */
    margin-bottom: 5px;
}

header.scrolled nav {
    gap: 20px;
    /* Engeres Menü */
}

header.scrolled nav a {
    font-size: 12px;
    /* Etwas kleinere Schrift */
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
    /* Reduziert, da Header Padding hat */
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 900;
    transition: 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #8b0000;
}

nav a.active {
    color: #fff;
    border-bottom: 2px solid #8b0000;
}

/* DROPDOWN NAVIGATION */
.dropdown {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    /* Erzeugt eine unsichtbare Brücke zur Box */
    margin-bottom: -15px;
    /* Gleicht das Padding wieder aus */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #050505;
    min-width: 180px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 1001;
    border: 1px solid #222;
    top: 40px;
    /* Position exakt unter dem Link */
    left: 50%;
    transform: translateX(-50%);
}

/* Pseudo-Element als zusätzliche Brücke (Sicherheitsnetz) */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #888;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 1px solid #111;
    text-align: center;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #111;
    color: #fff;
    border-bottom-color: #8b0000;
}

/* Zeige das Menü beim Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Der "Contact" Button bleibt weiß, wenn man im Dropdown ist */
.dropdown:hover>a {
    color: #8b0000;
}

/* --- OFFERS ACCORDION --- */
.offers-section {
    margin: 50px auto;
}

.section-title {
    color: #8b0000;
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-intro {
    color: #888;
    margin-bottom: 30px;
    text-transform: none;
}

.accordion {
    border: 1px solid #222;
}

.accordion-item {
    border-bottom: 1px solid #222;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #050505;
    color: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #111;
    color: #8b0000;
}

/* Der Pfeil */
.arrow-icon::before {
    content: '+';
    font-size: 24px;
    color: #8b0000;
}

.accordion-item.active .arrow-icon::before {
    content: '-';
}

/* Content verstecken */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #0a0a0a;
    transition: max-height 0.3s ease-out;
}

.content-inner {
    padding: 20px;
    color: #ccc;
    text-transform: none; /* Bessere Lesbarkeit */
    line-height: 1.6;
}

.content-inner ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.content-inner li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-inner li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #8b0000;
    font-size: 10px;
    top: 4px;
}

/* MISSION PAGE */
.mission-content {
    max-width: 800px;
    margin: 60px auto;
    line-height: 1.8;
}

.mission-text {
    text-transform: none;
    color: #ccc;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.mission-text h2 {
    color: #8b0000;
    font-size: 20px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-container {
    margin-top: 60px;
    text-align: center;
}

.btn-massive {
    display: inline-block;
    background: #8b0000;
    color: #fff;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 3px;
    border: none;
    transition: 0.3s;
}

.btn-massive:hover {
    background: #fff;
    color: #8b0000;
}

/* KONTAKTFORMULAR STYLES */
.contact-form {
    margin-top: 50px;
    background: #050505;
    padding: 30px;
    border: 1px solid #111;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ff3333;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #000;
    border: 1px solid #222;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    text-transform: uppercase;
    box-sizing: border-box;
    /* Wichtig, damit Padding das Layout nicht zerschießt */
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8b0000;
}

.contact-form textarea {
    resize: vertical;
    /* User kann nur vertikal ziehen */
}

/* 3. CONTROLS (SUCHE & FILTER) */
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    display: flex;
    background: #111;
    border: 1px solid #333;
    padding: 5px;
    width: 100%;
    max-width: 450px;
}

.search-box input {
    background: transparent;
    border: none;
    color: #eee;
    padding: 10px;
    flex: 1;
    font-size: 12px;
    outline: none;
    text-transform: uppercase;
}

.search-box button {
    background: #222;
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    transition: 0.3s;
}

.search-box button:hover {
    background: #8b0000;
}

/* Grunddesign der Filter-Bar (Desktop) */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    /* Erlaubt Umbruch */
    align-items: center;
    justify-content: space-between;
    /* Tags links, Sortierung rechts */
    margin-bottom: 50px;
    gap: 20px;
}

.tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-link {
    text-decoration: none;
    font-size: 12px;
}

.filter-label {
    color: #888;
    letter-spacing: 1px;
}

.tag-link {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 10px;
}

.tag-link:hover,
.tag-link.active {
    color: #fff;
}

/* 4. VIDEO GRID & CARDS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.video-card {
    background: #050505;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
    display: block;
    color: inherit;
    text-decoration: none;
}

.video-card:hover {
    border-color: #8b0000;
    transform: translateY(-5px);
}

.thumb-container {
    position: relative;
    overflow: hidden;
}

.thumb-container img {
    width: 100%;
    display: block;
}

.video-info {
    padding: 15px;
}

.band-name {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.meta {
    color: #666;
    font-size: 10px;
    letter-spacing: 1px;
}

/* 5. VIDEO DETAILSEITE (Inkl. Sticky Logic) */
.back-link {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    display: block;
    margin: 20px 0;
    transition: 0.3s;
}

.data-header {
    border-left: 4px solid #8b0000;
    padding-left: 20px;
    margin-bottom: 30px;
}

.data-header h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 900;
    letter-spacing: -1px;
}

.tag-badge {
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Platzhalter für das Video, damit die Seite nicht springt */
.video-player-container {
    position: relative;
    width: 100%;
    /* Die Aspekt-Ratio sorgt dafür, dass der Platz reserviert bleibt */
    aspect-ratio: 16/9;
    margin-bottom: 30px;
}

/* Der eigentliche Player-Box-Stil */
.video-player-box {
    background: #000;
    width: 100%;
    height: 100%;
    border: 1px solid #222;
    overflow: hidden;
    transition: width 0.3s ease;
    /* Sanfter Übergang beim Verkleinern */
}

/* Sticky-Modus Anpassung */
@media (min-width: 1000px) {
    .video-player-box.is-sticky {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 350px;
        height: auto;
        aspect-ratio: 16/9;
        z-index: 9999;
        border: 2px solid #8b0000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        animation: slideIn 0.4s ease-out;
    }
}

.stats-bar {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 10px;
    color: #eee;
    letter-spacing: 2px;
    border-top: 1px solid #111;
    padding-top: 15px;
}

/* ECHTE BUTTONS FÜR SHARE-BAR */
.share-bar {
    display: flex;
    gap: 12px;
    margin: 30px 0 50px 0;
    align-items: center;
}

.share-label {
    font-size: 10px;
    color: #eee;
    letter-spacing: 2px;
    margin-right: 10px;
}

.share-btn {
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #eee;
    border: 1px solid #222;
    padding: 8px 16px;
    transition: 0.3s;
    display: inline-block;
    background: transparent;
    cursor: pointer;
}

.share-btn:hover {
    color: #fff;
    border-color: #8b0000;
    background: rgba(139, 0, 0, 0.1);
}

.share-btn.copy-success {
    border-color: #00ff00;
    color: #00ff00;
}

/* 6. FOOTER STATS */
footer {
    margin-top: 100px;
    padding: 60px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.stat-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-val {
    font-size: 24px;
    color: #fff;
    font-family: monospace;
}

.stat-lbl {
    font-size: 10px;
    color: #888;
    letter-spacing: 2px;
}

/* SETLIST KORREKTUR */
.setlist-section h3 {
    color: #ff3333;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.song-list {
    column-count: 2;
    column-gap: 60px;
    margin: 0;
    padding: 0;
}

.song-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #111;
    padding: 10px 0;
    font-size: 14px;
    color: #eee;
    letter-spacing: 1px;
}

.song-num {
    color: #eee;
    font-family: monospace;
    font-size: 11px;
    width: 35px;
    flex-shrink: 0;
}

/* SIDEBAR / ALSO PERFORMING */


.sidebar-section h3 {
    color: #ff3333;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border-bottom: 1px solid #111;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.related-link {
    display: flex;
    align-items: center;
    color: #eee;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.related-link span {
    color: #ff3333;
    /* Der Pfeil in Rot */
    margin-right: 10px;
    font-weight: bold;
}

.related-link:hover {
    color: #fff;
    /* Text wird weiß beim Hover */
    padding-left: 5px;
    /* Kleiner Animationseffekt nach rechts */
}

.related-link:hover span {
    color: #ff3333;
    /* Pfeil wird heller beim Hover */
}

/* 7. ALLGEMEINE HILFSKLASSEN */
mark {
    background: rgba(139, 0, 0, 0.6);
    color: #fff;
    padding: 0 2px;
}

.tag-mini {
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

.tag-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.comment-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #111;
}

.comment-item {
    background: #050505;
    border-left: 3px solid #8b0000;
    padding: 20px;
    margin-bottom: 20px;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
}

.comment-author {
    color: #ff3333;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 1px;
}

.comment-date {
    color: #444;
    font-size: 10px;
}

.comment-text {
    text-transform: none;
    /* WICHTIG: Kommentare nicht in Großbuchstaben */
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Verhindert, dass lange Links in Kommentaren das Layout sprengen */
.comment-text a {
    color: #8b0000;
    word-break: break-all;
}

/* ==========================================================================
   ZENTRALES LAYOUT & GRID (Global)
   ========================================================================== */

/* Das Grid entscheidet selbst, wie viele Spalten passen */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Bilder in Karten immer responsiv */
.video-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Tabellen-Schutz (Immer aktiv, damit nichts das Layout sprengt) */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch;
}

/* Desktop: Nebeneinander */
.video-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.data-header h1 {
    margin: 0 0 10px 0;
}

.location-row {
    margin-top: 10px;
}

.location-row a {
    color: #bbb;
    text-decoration: none;
}

.city-row {
    color: #666;
}

.badge-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 300px;
}

/* --- Desktop & Global --- */
.stats-bar {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    color: #888;
    font-size: 14px;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    /* Erlaubt Umbruch, falls die Zeile zu lang wird */
    gap: 10px;
    align-items: center;
}

.share-btn {
    padding: 8px 15px;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
}

/* Spezifisches Styling für den Random-Button im Desktop-Modus */
.random-btn-inline {
    border-color: #8b0000;
    color: #ff3333 !important;
}

.copy-btn {
    color: #eee;
    border-color: #444;
}

.concert-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Desktop: Setlist links, Sidebar rechts */
    gap: 60px;
    margin-top: 40px;
}

.setlist-columns {
    column-count: 2;
    /* Desktop: Songs in 2 Spalten */
    column-gap: 40px;
}

.no-data {
    color: #eee;
    font-size: 11px;
}

.no-data a {
    color: #ff3333;
    text-decoration: none;
}

/* Künstler Link Button */
.external-link {
    display: inline-block;
    color: #ff3333;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    border: 1px solid #222;
    padding: 5px 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.external-link:hover {
    background: #8b0000;
    color: #fff;
    border-color: #8b0000;
}

/* Dezentere Location Links */
.venue-link {
    font-size: 10px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.venue-link:hover {
    color: #eee;
}

/* --- MISSION STATEMENT SECTION --- */
.mission-statement {
    margin: 60px auto;
}

.mission-wrapper {
    background: #050505;
    border: 1px solid #1a1a1a;
    border-left: 5px solid #8b0000;
    /* Der rote Akzentstreifen */
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.mission-title {
    color: #8b0000;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.mission-section {
    margin-bottom: 30px;
}

.mission-section h3 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.mission-section p {
    color: #ccc;
    text-transform: none;
    /* Text nicht komplett in Großbuchstaben für bessere Lesbarkeit */
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.mission-highlight {
    margin-top: 15px !important;
    padding: 15px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 4px;
    color: #fff !important;
    font-style: italic;
    border-left: 2px solid #8b0000;
}

/* ==========================================================================
   MOBILE OPTIMIERUNG (Media Queries)
   ========================================================================== */

/* Tablets und Smartphones (max 768px) */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        /* Stapelt Tags und Sortierung */
        align-items: flex-start;
        /* Links ausrichten */
        gap: 25px;
    }

    .mission-wrapper {
        padding: 25px;
    }

    .mission-title {
        font-size: 22px;
    }

    .mission-section p {
        font-size: 15px;
    }

    .tags-group {
        justify-content: flex-start;
        width: 100%;
    }

    .sort-group {
        width: 100%;
        padding-top: 15px;
        border-top: 1px solid #222;
        /* Kleine Trennung */
        justify-content: flex-start;
    }

    .filter-label {
        min-width: 50px;
        font-weight: bold;
        color: #555;
    }

    .accordion-header {
        padding: 15px;
        font-size: 14px; /* Etwas kleinere Schrift auf dem Handy */
    }

    .content-inner {
        padding: 15px;
    }

    /* Die zwei Spalten (Video/Audio) untereinander stapeln */
    .tier-details {
        flex-direction: column; 
        gap: 20px;
    }

    .detail-column {
        min-width: 100%;
        border-bottom: 1px solid #1a1a1a;
        padding-bottom: 15px;
    }

    .detail-column:last-child {
        border-bottom: none;
    }

    .detail-column h4 {
        margin-bottom: 10px;
    }

    /* Text für bessere Lesbarkeit auf kleinen Screens anpassen */
    .tier-description p {
        font-size: 14px;
        line-height: 1.6;
    }

    .tier-philosophy {
        font-size: 12px;
        text-align: center;
    }

    /* Der Link zum Beispiel-Video */
    .tier-example {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .example-link {
        font-size: 11px;
        word-break: break-word; /* Verhindert, dass lange Links das Layout sprengen */
    }

    /* Den Haupt-Titel auf Mobile verkleinern */
    .video-detail-header h1 {
        font-size: 28px !important;
        /* Etwas kleiner, damit "LA CASA FANTOM" nicht alles sprengt */
        line-height: 1.1;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    /* Die Badges (4K, Soundboard) untereinander oder flexibel stapeln */
    .badge-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 15px;
    }

    /* Die Location-Info (P8², Karlsruhe...) */
    .video-detail-info {
        font-size: 14px;
        line-height: 1.4;
    }

    .video-detail-info p {
        margin: 5px 0;
        /* Verhindert, dass überlange Adressen rechts rausgehen */
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Der rote Balken links (falls vorhanden) etwas schmaler machen */
    .accent-bar {
        width: 4px !important;
    }

    .external-link {
        display: block;
        text-align: center;
        margin-top: 10px;
        padding: 12px;
    }

    @media (max-width: 768px) {
        .video-header-flex {
            flex-direction: column;
            /* Stapelt Text und Badges */
            align-items: flex-start;
        }

        header {
            position: fixed !important;
            padding: 20px 0;
            width: 100%;
        }

        /* Der Header im gescrollten Zustand auf dem Handy */
        header.scrolled {
            padding: 5px 0 !important;
        }

        header.scrolled h1 {
            font-size: 16px !important;
            /* Sehr kleiner Titel beim Scrollen */
            margin-bottom: 2px !important;
            letter-spacing: 1px !important;
        }

        header.scrolled nav {
            gap: 12px !important;
            /* Engere Links */
        }

        header.scrolled nav a {
            font-size: 10px !important;
            letter-spacing: 1px !important;
        }

        /* Da der Header fixed ist, braucht der Content Platz nach oben */
        body {
            padding-top: 130px;
            /* Platz für den statischen Header */
        }

        .video-header-flex h1 {
            font-size: 24px;
            /* Verhindert, dass der Titel den Screen sprengt */
        }

        .badge-wrapper {
            justify-content: flex-start;
            /* Badges auf Mobile linksbündig */
            max-width: 100%;
            margin-top: 15px;
        }

        .stats-bar {
            justify-content: space-between;
            font-size: 12px;
        }

        .share-section {
            flex-direction: column;
            align-items: flex-start;
        }

        .share-buttons {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* 2 Spalten für die Social Buttons */
            gap: 8px;
        }

        /* Der Random-Button soll auf Mobile die ganze Breite einnehmen */
        .random-btn-inline {
            grid-column: span 2;
            /* Streckt den Button über beide Spalten */
            padding: 15px;
            text-align: center;
            margin-top: 5px;
            font-weight: bold;
        }

        .share-btn:not(.random-btn-inline) {
            text-align: center;
            padding: 12px 5px;
        }

        .share-btn {
            text-align: center;
            padding: 12px 5px;
            /* Größere Klickfläche für Finger */
        }

        .random-btn {
            display: block;
            /* Volle Breite */
            text-align: center;
            padding: 15px;
        }

        .concert-info-grid {
            grid-template-columns: 1fr;
            /* Nur noch eine Spalte */
            gap: 40px;
        }

        .setlist-columns {
            column-count: 1;
            /* Songs untereinander, nicht mehr zweispaltig */
        }

        .sidebar-section {
            margin-top: 20px;
            padding-top: 30px;
            border-top: 1px solid #111;
            /* Trennung zur Setlist */
        }

        .related-link {
            display: block;
            padding: 10px 0;
            font-size: 13px;
        }

        .video-player-box.is-sticky {
            position: fixed !important;
            top: 10px;
            /* Auf Mobile lieber oben platzieren, damit die Tastatur unten nicht stört */
            right: 10px;
            width: 180px !important;
            /* Kompakte Größe für kleine Screens */
            height: 101px !important;
            /* 16:9 Verhältnis */
            z-index: 10001;
            /* Über der Navigation */
            border: 1px solid #8b0000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.9);
            background: #000;
            animation: slideInMobile 0.3s ease-out;
        }

        /* Play-Button auf Mobile im Mini-Fenster ausblenden (wird zu klein) */
        .video-player-box.is-sticky button {
            display: none !important;
        }
    }

    @keyframes slideInMobile {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Kleine Smartphones (max 480px) */
@media (max-width: 480px) {
    .video-grid {
        /* Erlaubt etwas schmalere Kacheln auf kleinen Displays */
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 15px;
    }
}