*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Farbschema */
    --neon-blue: #00f2ff;
    --neon-green: #28a745;
    --steam-gold: #c5a059;
    --danger-red: #ff4d4d;
    --dark-bg: #0d0d0d;
    
    /* Abstände */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    
    /* Schriftgrößen */
	--font-size-base: 20px;
    
    /* Master-Schalter für Überschriften */
    --font-size-h1: 1.4em;
    --font-size-h2: 1.2em;
    --font-size-topic: 1.0em;
    
    /* Kleingedrucktes (Footer, Details) */
    --font-size-small: 1.0em;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: url('bilder/hintergrund_bunker2.webp') no-repeat center center fixed;
    background-size: cover;
    background-color: var(--dark-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* --- 2. TYPOGRAFIE --- */
html body p, 
html body li,
.legal-box p, 
.about-box p, 
.content-box p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #e0e0e0;
    text-align: left;
    margin-bottom: 15px;
}

html body h1 { 
    font-size: var(--font-size-h1);
    color: var(--steam-gold) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 10px;
    margin-bottom: 30px;
    text-align: left;
}

html body h2 { 
    font-size: var(--font-size-h2);
    color: var(--steam-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

html body h3 { 
    font-size: var(--font-size-h3);;
    color: var(--neon-blue) !important;
    text-transform: uppercase;
    border-left: 3px solid var(--neon-blue);
    padding-left: 15px;
    margin-top: 30px;
    text-align: left;
}

.content-box h2, 
.intro-box h2, 
.youtube-box h2, 
.page-title { 
    text-align: left !important;
    color: var(--neon-blue) !important;
}

/* --- 3. LOGO --- */
h1.logo-wrapper, 
div.logo-wrapper {
    text-align: center !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 30px auto 20px auto !important;
    padding: 0 !important;
    border: none !important;
    line-height: 0 !important;
}

.logo-container {
    display: inline-block;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container img { 
    max-height: 50vh !important;
    object-fit: contain;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container:hover img {
    box-shadow: 0 0 35px var(--neon-blue), 0 0 10px #fff;
    border-color: #fff;
}

/* --- 4. NAVIGATION --- */
.nav-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 25px auto;
    padding: 0 10px;
}

.nav-bar { 
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
}

.nav-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 8px !important;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85em !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-height: 45px;
}

.nav-btn:hover { 
    background: var(--neon-blue);
    color: #000;
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* Navigation: Aktive Seite (Highlight) */
.nav-btn.highlight {
    background: rgba(207, 255, 4, 0.15) !important;
    color: #ffb514 !important;
    border-color: #14b5ff !important;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3) !important;
}

.nav-btn.highlight:hover {
    background: var(--neon-blue) !important;
    color: #000 !important;
}

/* Navigation: Rechtliche Seiten (Orange) */
.nav-btn.legal { 
    color: #ff9900;
    border-color: #ff9900;
}

.nav-btn.legal:hover {
    background: #ff9900;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

.nav-btn.legal.highlight {
    background: rgba(255, 153, 0, 0.25);
    color: #ff9900;
    border-color: #ff9900;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.5); 
}

.nav-btn.legal.highlight:hover {
    background: #ff9900;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

/* Navigation: Startseite (Grau) */
.nav-btn.start-btn {
    color: #aaa;
    border-color: #555;
}

.nav-btn.start-btn:hover {
    background: #555;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* --- 5. CONTENT-BOXEN --- */
.content-box, 
.fazit-grid, 
.finance-grid, 
.sector-box, 
.legal-box, 
.sector-container, 
.config-box, 
.about-box, 
.video-grid, 
.content-container,
.main-content > div:not(.nav-container):not(.logo-wrapper):not(.overlay) {
    width: 100% !important;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 30px;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    border: 1px solid #444;
}

.instruction-banner {
    display: block !important;
    background-color: rgba(10, 10, 10, 0.95) !important;
    border: 1px solid var(--neon-blue) !important;
    color: #eee !important;
    padding: 20px !important;
    margin-bottom: 30px !important;
    border-radius: 4px !important;
    width: 100% !important;
    text-align: left !important;
}

/* --- 6. BILDER --- */
.content-box img:not(.header-thumb), 
.topic-text img:not(.header-thumb), 
.schematic-image, 
.skill-image, 
.gold-border-img {
    width: 100% !important;
    max-width: 900px !important;
    height: auto !important;
    border: 3px solid var(--steam-gold) !important;
    border-radius: 4px !important;
    margin: 0 auto 25px auto !important;
    display: block !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
}

img.header-thumb, 
.header-thumb {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    border: 1px solid var(--steam-gold) !important;
    border-radius: 4px !important;
    margin: 0 !important;
    display: inline-block !important;
    box-shadow: none !important;
    object-fit: cover !important;
}

/* --- 7. AKKORDEON / TOPICS --- */
.topic-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.topic-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 20px !important;
    width: auto !important;
}

.topic-header h2 {
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
    font-size: var(--font-size-topic) !important;
    text-align: left !important;
    color: var(--steam-gold) !important;
}

.topic-content {
    display: none;
    padding: 20px 30px;
    flex-direction: row !important;
    gap: 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    align-items: flex-start !important;
}

.topic-content.show { 
    display: flex !important;
}

.topic-image { 
    flex: 0 0 250px;
    max-width: 250px;
}

.topic-text { 
    flex: 1;
}

.permanent-open .topic-content { 
    display: block !important;
    border-top: none;
}

.permanent-open .topic-header { 
    cursor: default;
    pointer-events: none;
}

/* --- 8. TABELLEN --- */
.scroll-container { 
    overflow-x: auto;
    width: 100%;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
}

.master-table { 
width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: rgba(5, 5, 5, 0.95);
    table-layout: fixed; 
    word-wrap: break-word;
    hyphens: auto;
}

.master-table th { 
    padding: 15px;
    text-align: left;
    color: var(--steam-gold);
    background: rgba(0, 242, 255, 0.05);
    border-bottom: 2px solid var(--neon-blue);
    position: sticky;
    top: 0;
    z-index: 10;
}

.master-table td { 
    padding: 15px;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    line-height: 1.6;
    color: #e0e0e0;
}

/* Tabellen: Tags */
.tag-war { 
    background: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.8em;
}

.tag-nature { 
    background: rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.8em;
}

.tag-terror { 
    background: rgba(197, 160, 89, 0.2);
    color: #c5a059;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.8em;
}

.tag-bio { 
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 0.8em;
}

/* --- 9. FOOTER (Aktualisiert) --- */
footer {
    padding: 30px 0;
    width: 100%;
    text-align: center;
    font-size: 0.8em;
    color: var(--steam-gold);
    background: rgba(0, 0, 0, 0.8);
    margin-top: 60px;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    
    /* Flexbox für die Anordnung (Links oben, Copyright unten) */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
}

/* Container für die kleinen Links */
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Der Style der kleinen "Buttons" (Textlinks) */
.footer-mini-btn {
    color: #888;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer-mini-btn:hover {
    color: var(--neon-blue);
    border-bottom-color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
}

/* Trennstrich zwischen den Links (optisch) */
.footer-mini-btn:not(:last-child)::after {
    content: '|';
    color: #333;
    margin-left: 18px;
    pointer-events: none;
}

.back-top { 
    display: block;
    width: fit-content;
    margin: 40px auto;
    background: rgba(10, 10, 10, 0.95);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-top:hover {
    background: var(--neon-blue);
    color: #000;
    transform: translateY(-2px);
}

/* --- 10. OVERLAY (Vignetten-Effekt) --- */
.overlay { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center, 
        transparent 20%, 
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* --- 11. ACCESSIBILITY (Fokus-States) --- */
a:focus, 
button:focus, 
input:focus, 
select:focus, 
textarea:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* --- 12. MOBILE OPTIMIERUNG --- */
@media (max-width: 850px) {
    .nav-bar { 
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    
    .topic-content.show { 
        flex-direction: column !important;
    }
    
    .header-left { 
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .topic-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Content-Boxen */
    .content-box, 
    .intro-box, 
    .config-box, 
    .topic-card, 
    .instruction-banner {
        padding: 20px 15px !important;
        width: 95% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Überschriften */
    html body h1 { 
        font-size: 1.4em !important;
        word-wrap: break-word;
    }
    
    html body h2 { 
        font-size: 1.2em !important;
    }
    
    /* Tabellen: Horizontales Scrollen */
    .scroll-container { 
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    table { 
        min-width: 600px;
    }
    
    /* Bilder */
    .content-box img, 
    .topic-text img, 
    .schematic-image { 
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    /* Navigation */
    .nav-bar { 
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 5px;
    }
    
    .nav-btn { 
        font-size: 0.75em !important;
        padding: 8px 2px !important;
        min-height: 40px;
    }
    
    /* Logo */
    .logo-container img { 
        max-height: 30vh !important;
    }
    
    h1.logo-wrapper, 
    div.logo-wrapper { 
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    /* Extra kleine Bildschirme */
    html body p,
    html body li {
        font-size: 0.95em !important;
    }
    
    .nav-btn {
        font-size: 0.7em !important;
        padding: 6px 2px !important;
    }
    
    .content-box,
    .config-box {
        padding: 15px 10px !important;
    }
}

/* --- 13. DRUCKEN (Print Styles) --- */
@media print {
    .nav-container,
    .overlay,
    .back-top,
    footer,
    .action-btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .content-box,
    .config-box {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}

/* --- 14. GRID-LAYOUTS (für spezielle Seiten) --- */
.video-grid { 
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.finance-grid,
.fazit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* --- 15. CHART-CONTAINER (falls Charts verwendet werden) --- */
.chart-container {
    position: relative;
    height: 400px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .chart-container {
        height: 300px !important; 
        padding: 10px !important;
    }
}

/* --- SPEZIFISCHE STYLES FÜR AGB.HTML --- */

html body div.logo-wrapper {
    margin: 60px auto 20px auto !important;
}

/* Die legal-box Container-Regeln */
html body .legal-box {
    max-width: 1000px !important;
    width: 100% !important;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--neon-green) !important;
    border-left: 5px solid var(--neon-green) !important;
    padding: 40px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.9) !important;
    margin-bottom: 40px !important;
    text-align: left !important;
}

/* H1 in der legal-box */
html body .legal-box h1 {
    color: var(--steam-gold) !important; 
    font-size: 1.4em !important;
    text-transform: uppercase !important;
    margin-top: 0px !important; 
    border-left: 3px solid var(--neon-green) !important;
    padding-left: 15px !important; 
    letter-spacing: 2px !important;
    background: rgba(40, 167, 69, 0.05) !important;			
    border-bottom: none !important; 
    text-align: left !important;
    margin-bottom: 20px !important;
}

/* H2 in der legal-box */
html body .legal-box h2 {
    color: var(--neon-green) !important; 
    font-size: 1.1em !important; 
    text-transform: uppercase !important;
    margin-top: 30px !important; 
    border-left: 3px solid var(--neon-green) !important;
    padding-left: 15px !important; 
    letter-spacing: 1px !important;
    border-bottom: none !important;
}

/* H3 in der legal-box */
html body .legal-box h3 {
    color: var(--steam-gold) !important;
    font-size: 1.05em !important;
    margin-top: 20px !important;
    border-left: none !important;
    padding-left: 0 !important;
}

/* Text und Listen in der legal-box */
html body .legal-box p, 
html body .legal-box li { 
    line-height: 1.8 !important; 
    color: #d0d0d0 !important; 
    margin-bottom: 15px !important; 
    font-size: 1.05em !important; 
    text-align: left !important;
}

html body .legal-box ul, 
html body .legal-box ol { 
    margin-bottom: 20px !important; 
    padding-left: 25px !important; 
}

/* Spezial-Elemente aus der agb.html */
.widerruf-box {
    background: rgba(0, 242, 255, 0.08);
    border: 2px solid var(--neon-blue);
    padding: 25px;
    margin: 25px 0;
    border-radius: 4px;
}

.widerruf-box h2 {
    color: var(--neon-blue) !important;
    margin-top: 0 !important;
    border-left: 3px solid var(--neon-blue) !important;
}

.important-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid var(--steam-gold);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.important-box p {
    margin: 0 !important;
    color: #ffd700 !important;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.3), transparent);
    margin: 40px 0;
}

.big-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.6), transparent);
    margin: 60px 0;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.link-highlight {
    color: var(--neon-blue);
    text-decoration: none;
}

.placeholder {
    background: rgba(255, 193, 7, 0.15);
    border: 1px dashed var(--steam-gold);
    padding: 3px 8px;
    border-radius: 3px;
    font-style: italic;
    color: #ffd700;
}

/* --- SPEZIFISCHE STYLES FÜR DATENSCHUTZ.HTML --- */

/* Die legal-box für Datenschutz (Blauer Rahmen) */
html body .legal-box {
    border: 1px solid var(--neon-blue) !important;
    border-left: 5px solid var(--neon-blue) !important;
}

/* H2 in der Datenschutz-Seite (mit Hintergrund) */
html body .legal-box h2 {
    background: rgba(40, 167, 69, 0.05) !important;
    border-bottom: none !important;
}

/* H3 in der Datenschutz-Seite (Großbuchstaben) */
html body .legal-box h3 {
    font-size: 1.1em !important;
    text-transform: uppercase !important;
    border-left: none !important;
    padding-left: 0 !important;
}

/* Listen-Padding Korrektur */
html body .legal-box ul {
    padding-left: 20px !important;
}

/* Kontakt-Info Boxen */
.contact-info-box {
    background: rgba(0, 242, 255, 0.05) !important;
    border: 1px solid var(--neon-blue) !important;
    border-left: 3px solid var(--neon-blue) !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    border-radius: 4px !important;
}

.contact-info-box p {
    margin: 8px 0 !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

.contact-info-box strong {
    color: var(--neon-blue) !important;
}

/* Weitere Boxen */
.notice-box {
    background: rgba(255, 193, 7, 0.1) !important;
    border-left: 3px solid var(--steam-gold) !important;
    padding: 15px !important;
    margin: 20px 0 !important;
    border-radius: 4px !important;
}

.notice-box p {
    margin: 0 !important;
    color: #ffd700 !important;
}

.info-box {
    background: rgba(40, 167, 69, 0.08) !important;
    border-left: 3px solid var(--neon-green) !important;
    padding: 15px !important;
    margin: 20px 0 !important;
    border-radius: 4px !important;
}

.info-box p {
    margin: 0 !important;
    color: #6de06d !important;
}

.meta-info {
    font-size: 0.9em !important;
    opacity: 0.6 !important;
    margin-top: 40px !important;
}

/* Divider Anpassung für Datenschutz (Blau) */
html body .legal-box .section-divider {
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.3), transparent) !important;
}

/* --- SPEZIFISCHE STYLES FÜR IMPRESSUM.HTML --- */

/* Die legal-box für Impressum (Goldener Rahmen) */
html body .legal-box {
    border: 1px solid var(--steam-gold) !important;
    border-left: 5px solid var(--steam-gold) !important;
}

/* H2 im Impressum (Blau mit Balken) */
html body .legal-box h2 {
    color: var(--neon-blue) !important;
    border-left: 3px solid var(--neon-blue) !important;
    border-bottom: none !important;
    background: none !important;
}

/* Spezifische Boxen für Impressum */
.scope-header {
    background: rgba(0, 242, 255, 0.05) !important;
    padding: 20px !important;
    border: 1px solid rgba(0, 242, 255, 0.2) !important;
    margin-bottom: 30px !important;
    border-radius: 4px !important;
}

/* Kontakt-Info Box im Impressum (Gold-Thema) */
html body .legal-box .contact-info-box {
    background: rgba(255, 193, 7, 0.05) !important;
    border: 1px solid var(--steam-gold) !important;
    border-left: 3px solid var(--steam-gold) !important;
}

html body .legal-box .contact-info-box strong {
    color: var(--steam-gold) !important;
}

/* Horizontale Linie (hr) Anpassung */
html body .legal-box hr {
    border: 0 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.2) !important;
    margin: 40px 0 !important;
}

/* --- SPEZIFISCHE STYLES FÜR SUPPORT.HTML --- */

.support-wrapper {
    max-width: 1000px !important; 
    margin: 0 auto 60px auto !important;
    text-align: center;
}

/* Intro Box Spezifität */
html body .support-wrapper .intro-box {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid #444 !important;
    border-left: 5px solid var(--steam-gold) !important;
    padding: 40px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
    margin-bottom: 50px !important;
    text-align: left !important;
}

/* Titel Fix */
html body .support-wrapper h1.main-title {
    color: var(--steam-gold) !important;
    text-transform: uppercase !important; 
    letter-spacing: 3px !important;
    font-size: 1.6em !important; 
    border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
    padding-bottom: 15px !important; 
    margin-bottom: 20px !important;
    text-align: left !important;
}

/* Donate Grid & Cards */
.donate-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    max-width: 900px !important; 
    margin: 0 auto !important;
}

.donate-card {
    background: rgba(10, 15, 20, 0.95) !important;
    border: 1px solid #333 !important;
    border-top: 4px solid #555 !important;
    padding: 40px !important;
    border-radius: 4px !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    display: flex !important; 
    flex-direction: column !important; 
    align-items: center !important; 
    justify-content: space-between !important;
    height: 100% !important; 
    min-height: 350px !important;
}

.donate-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8) !important;
}

.donate-icon { font-size: 4em !important; margin-bottom: 20px !important; display: block !important; }

.donate-title {
    color: #fff !important; 
    font-size: 1.5em !important; 
    font-weight: bold !important; 
    text-transform: uppercase !important; 
    margin-bottom: 15px !important; 
    letter-spacing: 1px !important;
}

.donate-text {
    color: #aaa !important; 
    font-size: 1em !important; 
    line-height: 1.6 !important; 
    margin-bottom: 30px !important;
    text-align: center !important;
}

/* Buttons */
.action-btn {
    display: inline-block !important; 
    padding: 15px 30px !important;
    text-decoration: none !important; 
    text-transform: uppercase !important; 
    font-weight: bold !important;
    border-radius: 4px !important; 
    transition: 0.3s !important; 
    font-size: 1.1em !important; 
    cursor: pointer !important;
    width: 100% !important; 
    max-width: 280px !important;
    border: none !important;
}

/* PayPal & Amazon Themes */
.card-paypal { border-top-color: #0070ba !important; }
.card-paypal .donate-icon { color: #0070ba !important; }
.btn-paypal { background: #0070ba !important; color: #fff !important; }
.btn-paypal:hover { background: #005ea6 !important; box-shadow: 0 0 20px rgba(0, 112, 186, 0.4) !important; }

.card-amazon { border-top-color: #ff9900 !important; }
.card-amazon .donate-icon { color: #ff9900 !important; }
.btn-amazon { background: #ff9900 !important; color: #000 !important; }
.btn-amazon:hover { background: #e68a00 !important; box-shadow: 0 0 20px rgba(255, 153, 0, 0.4) !important; }

/* Goal Container (Gold-Rand) */
.goal-container {
    margin-top: 60px !important; 
    padding: 30px !important; 
    border: 2px dashed var(--steam-gold) !important;
    border-radius: 4px !important;
    background: rgba(15, 15, 15, 0.95) !important;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2) !important;
}

.goal-text { 
    color: var(--steam-gold) !important; 
    font-family: monospace !important; 
    font-size: 1.3em !important; 
    font-weight: bold !important; 
    margin-bottom: 10px !important; 
}

/* Inline-Style Korrekturen für Info-Bereiche */
html body .support-wrapper ul {
    text-align: left !important;
    max-width: 700px !important;
    margin: 0 auto 20px auto !important;
}

/* --- SPEZIFISCHE STYLES FÜR EMPFEHLUNGEN.HTML --- */

.sector-container {
    width: 100% !important;
    max-width: 1100px !important;
    margin-bottom: 50px !important;
}

/* Intro-Box für Empfehlungen */
html body .sector-container .intro-box {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid #444 !important;
    border-left: 5px solid var(--steam-gold) !important;
    padding: 40px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
    margin-bottom: 40px !important;
    text-align: left !important;
    width: 100% !important;
}

/* Spezifisches H1 Design */
html body .sector-container h1.main-title {
    color: var(--neon-blue) !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-top: 0 !important;
    font-size: 1.4em !important; 
    border-bottom: 1px solid rgba(0, 242, 255, 0.2) !important;
    padding-bottom: 15px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

/* Kategorie-Boxen (Sektoren) */
.category-box {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid var(--neon-blue) !important;
    border-left: 5px solid var(--neon-blue) !important;
    padding: 30px !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 40px !important;
}

h2.category-title {
    color: var(--steam-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3) !important;
    padding-bottom: 10px !important;
    font-size: 1.4em !important;
    text-align: left !important;
}

/* --- FINALES GRID LAYOUT (Erzwungene Gleichheit) --- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)); 
    gap: 20px;
    margin-top: 20px;
    align-items: stretch; 
}

.product-card {
    background-color: rgba(255, 255, 255, 0.03); 
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px;
    
    display: flex;
    flex-direction: column; 
    height: 100%; 
    
    text-align: center;
    transition: all 0.2s ease;
    
    /* Sicherheitsnetz: Verhindert, dass die Karte breiter wird als die Spalte */
    overflow: hidden; 
    min-width: 0; 
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Titel im Grid */
.product-card h4 {
    color: var(--neon-blue) !important;
    margin: 0 0 10px 0 !important;
    font-size: 0.8em !important;
    text-transform: uppercase;
    min-height: 1.8em; 
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Verhindert, dass lange Wörter das Layout sprengen */
    word-wrap: break-word; 
    hyphens: auto;
}

/* Textbeschreibung im Grid */
.product-card p {
    font-size: 0.85em !important;
    color: #ccc !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    line-height: 1.4 !important;
    flex-grow: 1; 
}

/* Produktbild im Grid */
.product-card img {
    width: 100% !important;
    max-width: 100% !important; 
    height: auto !important; 
    margin-bottom: 15px !important;
    
    background: transparent !important; 
    padding: 0 !important;
    
    border-radius: 2px !important;
    border: none !important;
    object-fit: contain;
}

/* Amazon Button für Grid */
.amazon-btn {
    display: block !important; 
    background: #ff9900 !important;
    color: #000 !important;
    font-weight: bold !important;
    text-decoration: none !important; 
    padding: 10px 5px !important; 
    border-radius: 4px !important; 
    transition: 0.3s !important; 
    text-transform: uppercase !important; 
    font-size: 0.8em !important; 
    width: 100% !important; 
    text-align: center !important;
    border: none !important;
    margin-top: auto; 
}

.amazon-btn:hover {
    background: #fff !important;
    box-shadow: 0 0 20px #ff9900 !important;
}

/* --- RESPONSIVE ANPASSUNG --- */

/* Tablet (bis 1200px): 3 Spalten */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Kleines Tablet / Großes Handy (bis 850px): 2 Spalten */
@media (max-width: 850px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Handy (bis 550px): 1 Spalte */
@media (max-width: 550px) {
    .product-grid {
        grid-template-columns: minmax(0, 1fr); 
        max-width: 350px; 
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card {
        margin-bottom: 10px;
    }
}

/* --- SPEZIFISCHE STYLES FÜR FAZIT.HTML --- */

/* Grid-System für Fazit */
.fazit-grid {
    display: grid !important; 
    grid-template-columns: 1fr !important; 
    gap: 35px !important;
    width: 100% !important; 
    max-width: 1100px !important; 
    margin-bottom: 50px !important;
}

/* Intro-Box Spezifität für Fazit */
html body .intro-box {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Inhalts-Boxen im Fazit (Gold-Thema Standard) */
html body .fazit-grid .content-box {
    background: rgba(10, 10, 10, 0.95) !important; 
    border: 1px solid var(--steam-gold) !important; 
    border-left: 5px solid var(--steam-gold) !important;
    padding: 40px !important;
}

/* Farbvarianten der Boxen */
html body .fazit-grid .content-box.danger { border-color: var(--danger-red) !important; border-left-color: var(--danger-red) !important; }
html body .fazit-grid .content-box.solution { border-color: var(--neon-green) !important; border-left-color: var(--neon-green) !important; }
html body .fazit-grid .content-box.legal { border-color: var(--steam-gold) !important; border-left-color: var(--steam-gold) !important; background: rgba(25, 20, 10, 0.95) !important; }

/* Chart-Container Design */
.chart-container {
    position: relative !important;
    width: 100% !important; 
    height: 500px !important; 
    background: rgba(0,0,0,0.4) !important; 
    border: 1px solid var(--danger-red) !important;
    margin: 30px 0 !important; 
    padding: 20px !important;
    border-radius: 4px !important;
}

.chart-meta { font-size: 0.85em; color: #888; text-align: right; margin-top: 10px; font-style: italic; }

/* Spezifische Tags für das Fazit */
.type-tag { font-weight: bold; text-transform: uppercase; font-size: 0.8em; padding: 2px 5px; border-radius: 3px; white-space: nowrap; }
.tag-hybrid { background: rgba(255, 165, 0, 0.2); color: #ffa500; }

/* Checklisten Design */
.checklist { background: rgba(0, 20, 10, 0.5) !important; border-left: 3px solid var(--neon-green) !important; padding: 20px !important; margin: 20px 0 !important; border-radius: 4px; }
.checklist ul { list-style: none !important; padding-left: 0 !important; }
.checklist li { padding: 8px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.05) !important; color: #e0e0e0 !important; text-align: left !important; }
.checklist ul ul { margin-left: 20px !important; margin-top: 5px !important; }
.checklist ul ul li { font-size: 0.9em !important; color: #aaa !important; border-bottom: none !important; }

/* CTA Button */
.cta-button { display: inline-block; background: var(--neon-green); color: #000; padding: 12px 24px; border-radius: 4px; text-decoration: none; font-weight: bold; margin-top: 15px; transition: all 0.3s; }
.cta-button:hover { background: var(--neon-blue); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 242, 255, 0.4); }

/* Details & Summary */
details { margin: 10px 0; padding: 12px; background: rgba(0,0,0,0.3); border-left: 2px solid var(--neon-blue); border-radius: 4px; }
summary { cursor: pointer; color: var(--neon-blue); font-weight: bold; font-size: 0.9em; outline: none; }
summary:hover { color: var(--steam-gold); }

/* Quellen & Info-Notizen */
.sources { background: rgba(20, 20, 20, 0.95); border: 1px solid #333; padding: 30px; border-radius: 4px; margin-top: 40px; }
.sources ol { line-height: 1.8; color: #ccc; font-size: 0.9em; }
.info-note { font-size: 0.9em; color: #aaa; font-style: italic; border-left: 3px solid var(--steam-gold); padding-left: 15px; margin: 20px 0; text-align: left !important; }

/* Mobiler Scroll-Indikator & Fixes */
@media (max-width: 768px) {
    .fazit-grid { display: block !important; }
    .chart-container { height: 300px !important; }
    .scroll-container::before {
        content: '⟷ Scrollen';
        position: absolute; top: 10px; right: 10px;
        color: var(--neon-blue); font-size: 0.9em;
        background: rgba(0,0,0,0.8); padding: 5px 10px; border-radius: 3px;
        animation: pulse 2s infinite; z-index: 10;
    }
}

/* --- SPEZIFISCHE STYLES FÜR FLUCHT.HTML --- */

/* Topic-Cards Layout (Content immer sichtbar machen!) */
html body .topic-card.permanent-open .topic-content {
    display: block !important;
}

/* Stellt sicher, dass Tabellentext oben (top) ausgerichtet ist */
html body .master-table td {
    vertical-align: top !important;
    padding-top: 15px !important;
    text-align: left !important;
}

/* Topic-Cards allgemein */
.topic-card {
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid #444 !important;
    border-left: 5px solid var(--neon-blue) !important;
    margin-bottom: 30px !important;
    border-radius: 4px !important;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.topic-card.highlight-green { border-left-color: var(--neon-green) !important; }


/* Spezifische Box-Typen */
.warning-box {
    background: rgba(255, 68, 68, 0.08) !important;
    border: 1px solid #ff4444 !important;
    border-left: 4px solid #ff4444 !important;
    padding: 20px !important;
    margin: 25px 0 !important;
    border-radius: 4px;
}
.warning-box h3 { color: #ff4444 !important; margin-top: 0 !important; }

.tip-box {
    background: rgba(144, 238, 144, 0.08) !important;
    border: 1px solid var(--neon-green) !important;
    border-left: 4px solid var(--neon-green) !important;
    padding: 20px !important;
    margin: 25px 0 !important;
    border-radius: 4px;
}
.tip-box h3 { color: var(--neon-green) !important; margin-top: 0 !important; }

/* Gewichtsrechner */
.calculator-box {
    background: rgba(197, 160, 89, 0.1) !important;
    border: 2px dashed var(--steam-gold) !important;
    padding: 25px !important;
    margin: 30px 0 !important;
    border-radius: 6px;
    text-align: center;
}
.calculator-box input {
    background: rgba(0,0,0,0.5) !important;
    border: 1px solid var(--steam-gold) !important;
    color: #fff !important;
    padding: 10px !important;
    margin: 10px 5px !important;
    border-radius: 3px;
    width: 120px;
}
.calculator-box button {
    background: var(--steam-gold) !important;
    color: #000 !important;
    border: none !important;
    padding: 12px 30px !important;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Checklisten Icon */
ul.checklist { list-style: none !important; padding-left: 0 !important; }
ul.checklist li:before { content: "☐ " !important; color: var(--steam-gold) !important; font-size: 1.3em; margin-right: 10px; }

/* Praxis-Tipps Grid */
.tips-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 20px !important;
    margin: 30px 0 !important;
}
.tip-card {
    text-align: left !important;
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid #444 !important;
    padding: 20px !important;
    border-radius: 4px !important;
    border-top: 3px solid var(--neon-blue) !important;
}

@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* --- SPEZIFISCHE STYLES FÜR GOLDRESERVEN.HTML --- */

/* Grid-System für Goldreserven */
.finance-grid {
    display: grid !important; 
    grid-template-columns: 1fr !important; 
    gap: 35px !important;
    width: 100% !important; 
    max-width: 1100px !important; 
    margin-bottom: 50px !important;
}

/* Intro-Box Spezifität für Goldreserven */
html body .intro-box {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Spezifische Content-Boxen (Silber, Barter, Special, Danger) */
html body .finance-grid .content-box.silver { border-color: #c0c0c0 !important; border-left-color: #c0c0c0 !important; }
html body .finance-grid .content-box.barter { border-color: var(--neon-green) !important; border-left-color: var(--neon-green) !important; }
html body .finance-grid .content-box.special { border-color: var(--neon-blue) !important; border-left-color: var(--neon-blue) !important; }
html body .finance-grid .content-box.danger { border-color: var(--danger-red) !important; border-left-color: var(--danger-red) !important; }

/* Historical Box */
.historical-box {
    background: rgba(197, 160, 89, 0.1) !important;
    border: 1px solid var(--steam-gold) !important;
    border-left: 5px solid var(--steam-gold) !important;
    padding: 25px !important;
    border-radius: 4px !important;
    margin: 25px 0 !important;
}

.historical-box h3 {
    color: var(--steam-gold) !important;
    margin-top: 0 !important;
}

/* Ratio Box */
.ratio-box {
    background: rgba(197, 160, 89, 0.1) !important; 
    padding: 25px !important;
    border: 1px dashed var(--steam-gold) !important; 
    margin: 25px 0 !important; 
    border-radius: 4px !important;
}

/* Chart Disclaimer - Absolut im relativen Container */
.chart-disclaimer {
    position: absolute !important;
    top: 80px !important;
    left: 280px !important;
    background: rgba(255, 77, 77, 0.2) !important;
    border: 1px solid var(--danger-red) !important;
    padding: 4px 8px !important;
    border-radius: 3px !important;
    font-size: 0.85em !important;
    color: #ffaaaa !important;
    font-style: italic !important;
    z-index: 10 !important;
}

/* Externe Links (Buttons) */
.stat-link {
    display: inline-block !important; 
    padding: 12px 25px !important; 
    background: rgba(0, 242, 255, 0.1) !important;
    border: 1px solid var(--neon-blue) !important; 
    color: var(--neon-blue) !important;
    text-decoration: none !important; 
    font-weight: bold !important; 
    margin-top: 10px !important; 
    margin-right: 10px !important; 
    transition: 0.3s !important;
    text-transform: uppercase !important; 
    font-size: 0.85em !important;
}

.stat-link:hover { 
    background: var(--neon-blue) !important; 
    color: #000 !important; 
    box-shadow: 0 0 20px var(--neon-blue) !important; 
}

/* Priority Badges in der Tabelle */
.priority-badge {
    display: inline-block !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    font-size: 0.75em !important;
    font-weight: bold !important;
    margin-right: 8px !important;
    text-transform: uppercase !important;
}

.priority-badge.critical {
    background: rgba(255, 77, 77, 0.3) !important;
    border: 1px solid var(--danger-red) !important;
    color: #ffaaaa !important;
}

.priority-badge.important {
    background: rgba(255, 215, 0, 0.2) !important;
    border: 1px solid #ffd700 !important;
    color: #ffd700 !important;
}

.priority-badge.useful {
    background: rgba(0, 242, 255, 0.2) !important;
    border: 1px solid var(--neon-blue) !important;
    color: var(--neon-blue) !important;
}
/* Spezifisch für den Finanz-Chart: Größer als der Standard-Chart */
.finance-grid .chart-container {
    height: 400px !important;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--steam-gold);
    margin-bottom: 30px;
}

/* Anpassung Disclaimer Position im großen Chart */
.finance-grid .chart-disclaimer {
    top: 15px !important;
    left: auto !important;
    right: 15px !important; 
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid var(--steam-gold) !important;
    color: var(--steam-gold) !important;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .finance-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    .chart-container {
        height: 250px !important;
        padding: 5px !important;
    }

    .chart-disclaimer {
        position: static !important;
        margin-bottom: 10px !important;
        font-size: 0.75em !important;
    }

    .stat-link {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 10px !important;
        margin-right: 0 !important;
    }
}
/* =========================================
   SPEZIFISCH: KRISENVORSORGE (Accordion)
   ========================================= */

/* Der Hinweis-Banner oben */
.instruction-banner {
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: #e0e0e0;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Die Karten-Container */
.topic-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #444;
    border-left: 5px solid #888;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.topic-card:hover {
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

/* Header der Karte (Klickbar) */
.topic-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.topic-header h2 {
    margin: 0;
    font-size: 1.1em;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #555;
}

/* Der Pfeil rechts */
.toggle-icon {
    font-size: 1.2em;
    color: var(--steam-gold);
    transition: transform 0.3s ease;
}

.topic-card.open .toggle-icon {
    transform: rotate(180deg);
}

/* Der Inhalt (Standardmäßig versteckt) */
.topic-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
}

.topic-content.show {
    max-height: 8000px;
    opacity: 1;
    border-top: 1px solid #333;
}

/* Layout im Inneren (Bild links, Text rechts) */
.topic-content {
    display: flex;
    flex-wrap: wrap; 
    padding: 15px; 
}

/* --- BILDBEREICH --- */
.topic-image {
    flex: 0 0 300px;      
    max-width: 300px;     
    margin-right: 15px;   
}

.topic-image img {
    width: 100%;
    height: 100%;          
    min-height: 200px;    
    object-fit: cover;
    display: block;
    
    /* Goldener Rand */
    border: 1px solid var(--steam-gold); 
    border-radius: 2px;
}

/* --- TEXTBEREICH --- */
.topic-text {
    flex: 1;
    padding: 0;
    min-width: 300px;     
}

/* Info-Sektionen (Gefahr, Auswirkung, Lösung) */
.info-section {
    margin-bottom: 15px;
}

.info-header {
    display: block;
    color: var(--steam-gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.0em;
    margin-bottom: 5px;
}

.info-body {
    color: #ccc;
    line-height: 1.6;
	font-size: var(--font-size-small);
}

/* --- Farb-Varianten der Karten --- */
.topic-card.highlight-red {
    border-left-color: var(--danger-red);
    border-color: rgba(255, 0, 0, 0.3);
}
.topic-card.highlight-red .topic-header {
    background: rgba(255, 0, 0, 0.05);
}

.topic-card.highlight-green {
    border-left-color: var(--neon-green);
    border-color: rgba(0, 255, 0, 0.3);
}

.topic-card.highlight-blue {
    border-left-color: var(--neon-blue);
}

/* Responsiv für Handy: Bild oben, Text unten */
@media (max-width: 768px) {
    .topic-content {
        flex-direction: column;
    }
    .topic-image {
        max-width: 100%;
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 20px;
    }
    .topic-image img {
        height: 200px; /* Fixe Höhe auf dem Handy */
    }
}
/* =========================================
   FIX: PERMANENT OFFENE KARTEN (Flucht.html)
   ========================================= */
.topic-card.permanent-open .topic-content {
    max-height: none !important;
    opacity: 1 !important;
    display: block !important;
    overflow: visible !important;
    padding: 20px !important;
}

/* Verhindert, dass der Pfeil angezeigt wird oder sich dreht */
.topic-card.permanent-open .toggle-icon {
    display: none !important;
}

/* Header nicht klickbar machen */
.topic-card.permanent-open .topic-header {
    cursor: default !important;
    pointer-events: none;
}
/* =========================================
   SPEZIFISCH: OUTDOOR (Skill-Cards)
   ========================================= */

/* Profi-Tipp Box (Spezifisch für Outdoor) */
.pro-tip {
    background: rgba(255, 215, 0, 0.1);
    border: 1px dashed var(--steam-gold);
    border-left: 4px solid var(--steam-gold);
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
    color: #e0e0e0;
}

/* Karten-Container für Outdoor */
.skill-card {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #444;
    border-left: 5px solid var(--neon-green);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.skill-card:hover {
    box-shadow: 0 0 15px rgba(101, 255, 148, 0.3);
}

/* Header der Karte */
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.skill-card.open .skill-header {
    border-bottom: 1px solid #444;
    background: rgba(255, 255, 255, 0.07);
}

/* Der Pfeil (Nutzt Logik vom Topic-Card Toggle, aber hier spezifisch) */
.skill-card.open .toggle-icon {
    transform: rotate(180deg);
}

/* Inhalt der Karte */
.skill-content {
    display: none;
    padding: 30px;
}

.skill-content.show {
    display: block;
}

/* Bilder im Outdoor-Content (Volle Breite!) */
.skill-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 4px;
    border: 2px solid #555;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin: 20px 0;
    display: block;
}

/* Mobile Anpassung für den Header */
@media (max-width: 768px) {
    .skill-header h2 {
        font-size: var(--font-size-topic) !important;
    }
}
/* =========================================
   SPEZIFISCH: PRINT / BIBLIOTHEK
   ========================================= */

/* Logo Wrapper Anpassung für Print (Abstand) */
html body div.logo-wrapper {
    margin: 60px auto 20px auto !important;
}

/* Feature Liste (für die Aufzählung "Weitere Module") */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    color: #d0d0d0;
}

.feature-list li::before {
    content: '▶';
    color: var(--neon-green);
    margin-right: 15px;
    font-size: 0.8em;
}

/* --- PDF VIEWER STYLING --- */
.pdf-container {
    margin-top: 10px;
    width: 100%;
    border: 1px solid var(--steam-gold);
    background: #000;
    height: 85vh; 
    min-height: 600px;
}

.pdf-frame {
    width: 100%;
    height: 100%; 
    border: none;
    display: block;
}

/* --- DOWNLOAD BEREICH UNTER PDF --- */
.download-area {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid var(--neon-blue);
    padding: 15px;
    margin-top: 0;
    text-align: center;
    border-top: none;
}

.btn-download {
    display: inline-block;
    background: var(--steam-gold);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 2px;
    transition: 0.3s;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.btn-download:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--steam-gold);
}

/* Mobile Anpassung für PDF und Button */
@media (max-width: 768px) {
    .pdf-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .btn-download {
        display: block;
        margin: 10px auto;
    }
}
/* =========================================
   SPEZIFISCH: ÜBER MICH (Profil)
   ========================================= */

/* Haupt-Container der Seite */
.about-box {
    max-width: 1000px;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--neon-blue);
    border-left: 5px solid var(--neon-green);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    margin: 0 auto 30px auto;
    text-align: left;
}

/* Spezifische Typografie innerhalb der Box */
.about-box h3 {
    color: var(--neon-green);
    font-size: 1.4em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-left: none;
    padding-left: 0;
}

.about-box p {
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.highlight-text {
    color: var(--neon-green);
    font-weight: bold;
}

/* --- Layout: Bild & Text nebeneinander --- */
.content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

/* Umgekehrte Reihenfolge (Bild rechts) */
.content-row.reverse {
    flex-direction: row-reverse;
}

.text-col {
    flex: 1;
}

.image-col {
    flex: 0 0 200px; 
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.image-col img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0;
}

.image-col img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .content-row, 
    .content-row.reverse {
        flex-direction: column;
        gap: 20px;
    }

    .image-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 180px; 
    }

    .about-box {
        padding: 25px; 
    }
    
    .about-box h3 {
        font-size: 1.2em;
    }
}
.welcome-box {
    margin-top: 50px;
    padding: 30px;
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 4px;
}
.welcome-box h3 {
    color: var(--neon-green) !important;
    text-align: center;
    margin-top: 0;
}
.welcome-box p {
    text-align: center !important;

    margin-bottom: 0 !important;
}
/* =========================================
   SPEZIFISCH: YOUTUBE
   ========================================= */

/* Logo Wrapper Anpassung */
html body div.logo-wrapper {
    margin: 60px auto 20px auto !important;
}

/* Intro Box (Grüner Rahmen) */
.channel-intro {
    max-width: 900px;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--neon-green);
    border-left: 5px solid var(--neon-green);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    margin-left: auto;
    margin-right: auto;
}

.channel-intro p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* Spezifische H1 für YouTube (Blau statt Gold) */
.channel-intro h1.main-title {
    color: var(--neon-blue) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0;
    font-size: 1.4em !important; 
    text-align: left !important;
    border-bottom: none !important; 
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
}

/* Hinweis Boxen (Datenschutz etc.) */
.note-box {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--steam-gold);
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95em;
    color: var(--steam-gold);
    text-align: left;
}

/* --- ABO-BOX (Ersetzt das Inline-CSS) --- */
.subscribe-box {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000; 
    padding: 25px;
    border-radius: 4px;
}

.subscribe-box h2 {
    color: #ff0000 !important;
    font-size: 1.3em !important;
    margin: 0 0 15px 0 !important;
    text-transform: uppercase;
    border: none !important;
    text-align: center !important;
}

.subscribe-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 6px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 2px;
    font-size: 0.8em;
    transition: 0.3s;
}

.subscribe-btn:hover {
    background: #cc0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

/* --- SECTOR BOX (Breiter Container für 4 Spalten) --- */
.sector-box {
    width: 100%;
    max-width: 1260px; 
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--neon-blue);
    border-left: 5px solid var(--neon-blue);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.category-title {
    width: 100%; 
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding-bottom: 15px; 
    margin: 0 0 25px 0;
    font-size: 1.5em;
    text-align: left;
}

/* --- VIDEO GRID & CARDS --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%; 
    margin-bottom: 0;
}

.video-card {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.1);
}

.thumbnail-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
}

.thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: 0.3s;
    border: none !important;
    margin: 0 !important;
}

.video-card:hover img {
    opacity: 1;
}

.video-info {
    padding: 15px;
    text-align: left;
}

.video-title {
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 8px;
    display: block;
}

.video-desc {
    color: #888;
    font-size: 0.8em;
    line-height: 1.4;
    display: block;
}

/* Media Queries für YouTube Grid */
@media (max-width: 1100px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-title {
        font-size: 0.85em;
    }
    
    .video-desc {
        font-size: 0.75em;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/* =========================================
   SPEZIFISCH: NACHRICHTEN / LAGEZENTRUM
   ========================================= */

/* --- MONITOR GRID (Oben) --- */
.monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.monitor-card {
    background: rgba(10, 15, 20, 0.95);
    border: 1px solid #333;
    border-top: 3px solid #555; 
    border-radius: 4px;
    padding: 15px;
    transition: 0.3s;
    text-decoration: none;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    height: 180px; 
    position: relative; 
    overflow: hidden;
}

.monitor-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.8); 
}

/* CRT Scanline Effekt */
.monitor-card::after {
    content: " "; 
    display: block; 
    position: absolute; 
    top: 0; left: 0; bottom: 0; right: 0;
    background: 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));
    z-index: 2; 
    background-size: 100% 2px, 3px 100%; 
    pointer-events: none;
}

/* Karten Varianten */
.card-news { border-top-color: var(--neon-blue); }
.card-news:hover { box-shadow: 0 0 20px rgba(0, 242, 255, 0.2); border-color: var(--neon-blue); }

.card-alert { border-top-color: var(--danger-red); }
.card-alert:hover { box-shadow: 0 0 20px rgba(255, 77, 77, 0.2); border-color: var(--danger-red); }

.card-weather { border-top-color: var(--neon-green); }
.card-weather:hover { box-shadow: 0 0 20px rgba(40, 167, 69, 0.2); border-color: var(--neon-green); }

/* Inhalt der Monitor-Karten */
.monitor-icon { font-size: 2em; margin-bottom: 10px; display: block; }
.monitor-title { color: #fff; font-size: 1.0em; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; line-height: 1.3; }
.monitor-status { font-family: monospace; font-size: 0.85em; color: #888; display: flex; align-items: center; }

/* Status LED */
.status-led { width: 8px; height: 8px; border-radius: 50%; background: #333; margin-right: 8px; box-shadow: 0 0 5px #333; }
.card-news:hover .status-led { background: var(--neon-blue); box-shadow: 0 0 8px var(--neon-blue); }
.card-alert:hover .status-led { background: var(--danger-red); box-shadow: 0 0 8px var(--danger-red); }
.card-weather:hover .status-led { background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }

.external-link-icon { position: absolute; bottom: 20px; right: 20px; color: #444; font-size: 1.5em; transition: 0.3s; }
.monitor-card:hover .external-link-icon { color: #fff; }

/* --- EMERGENCY BEREICH (Unten) --- */
.emergency-wrapper {
    max-width: 1200px; 
    margin: 0 auto 60px auto;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(5px);
    border: 1px solid #333; 
    border-top: 4px solid var(--danger-red);
    padding: 30px; 
    border-radius: 4px;
}

.emergency-header-main {
    text-align: center; 
    color: var(--danger-red); 
    text-transform: uppercase;
    font-size: 1.8em; 
    letter-spacing: 2px; 
    margin-bottom: 30px; 
    margin-top: 0;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.3); 
    border-bottom: 1px solid #333; 
    padding-bottom: 20px;
}

/* Notruf-Raster */
.comm-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 15px;
}

.comm-card {
    background: #0a0a0a; 
    border: 1px solid #333; 
    border-left: 3px solid #555;
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: flex-start;
    border-radius: 4px; 
    transition: 0.2s; 
    min-height: 110px;
}
.comm-card:hover { background: #1a1a1a; border-color: #666; }

.comm-info h3 { 
    margin: 0 0 5px 0; 
    color: #fff; 
    font-size: 0.8em; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    word-wrap: break-word; 
    hyphens: auto; 
}
.comm-info p { margin: 0; color: #888; font-size: 0.75em; line-height: 1.2; }

/* Telefonnummer Button */
.comm-number {
    margin-top: 10px;
    font-family: monospace; 
    font-size: 1.2em; 
    font-weight: bold;
    background: rgba(255,255,255,0.08); 
    padding: 6px 0; 
    border-radius: 3px;
    text-decoration: none; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%; 
    text-align: center; 
    display: block; 
    word-break: break-all;
}
.comm-number:hover { background: #fff; color: #000; }

/* Farb-Codes für Notrufe */
.prio-high { border-left-color: var(--danger-red); }
.prio-high .comm-number { color: var(--danger-red); border-color: rgba(255, 77, 77, 0.3); }
.prio-high .comm-number:hover { background: var(--danger-red); color: #000; }

.prio-med { border-left-color: var(--steam-gold); }
.prio-med .comm-number { color: var(--steam-gold); border-color: rgba(197, 160, 89, 0.3); }

.prio-social { border-left-color: #d63384; } 
.prio-social .comm-number { color: #d63384; border-color: rgba(214, 51, 132, 0.3); }

.prio-info { border-left-color: var(--neon-green); }
.prio-info .comm-number { color: var(--neon-green); border-color: rgba(40, 167, 69, 0.3); }

.email-link { font-size: 0.85em !important; }

/* --- W-FRAGEN BOX --- */
.w-questions-wrapper {
    margin-top: 40px;
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--steam-gold);
    padding: 20px; 
    border-radius: 4px;
}
.w-title {
    color: var(--steam-gold); font-size: 1.2em; text-transform: uppercase; 
    margin-bottom: 15px; font-weight: bold; text-align: center;
}

.w-grid {
    display: grid; grid-template-columns: 1fr; gap: 10px;
}

@media (min-width: 900px) {
    .w-grid { grid-template-columns: repeat(5, 1fr); }
}

.w-item {
    background: rgba(0,0,0,0.6); padding: 15px; border-radius: 4px; 
    border: 1px solid #444; text-align: center;
}
.w-item strong { display: block; color: var(--steam-gold); font-size: 1.4em; margin-bottom: 5px; }
.w-item span { display: block; color: #ccc; font-size: 0.9em; line-height: 1.3; }

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .comm-number {
        font-size: clamp(0.9em, 3vw, 1.2em);
        padding: 8px 4px;
    }
    
    .intro-box h1.main-title {
        font-size: 1.2em !important;
    }
}

/* Touchscreen Optimierung */
@media (hover: none) {
    .comm-card {
        min-height: 130px; 
    }
}
/* Hilfsklassen für Nachrichten-Seite */
.disclaimer-text {
    margin-top: 15px; 
    font-size: 0.9em; 
    color: #888; 
    border-top: 1px dashed #444; 
    padding-top: 15px;
}

.blackout-info-box {
    background: rgba(197, 160, 89, 0.1); 
    border: 1px solid var(--steam-gold); 
    padding: 20px; 
    margin-top: 30px; 
    border-radius: 4px; 
    text-align: center;
}

.blackout-info-box strong { color: var(--steam-gold); font-size: 1.1em; }
.blackout-info-box span { color: #ccc; font-size: 0.95em; line-height: 1.6; display: block; margin-top: 10px; }

/* =========================================
   SPEZIFISCH: SZENARIO TRAINER (Game)
   ========================================= */

/* Lokale Variablen für das Game-Design */
.game-wrapper {
    --terminal-bg: #0d0d0d;
    --terminal-text: #33ff00;
    --terminal-dim: #1a5c1a;
    --terminal-border: #333;
    --danger: #ff3333;
    --warning: #ff9900;
    --info: #00aaff;
    
    max-width: 1200px; 
    margin: 0 auto 60px auto;
    font-family: 'Courier New', Courier, monospace;
}

/* --- VISUELLE EFFEKTE (Animationen) --- */
.blackout-flicker { animation: flicker-out 1.5s forwards; }

@keyframes flicker-out {
    0% { opacity: 1; filter: brightness(1); }
    10% { opacity: 0; filter: brightness(0); }
    20% { opacity: 1; filter: brightness(1.2); }
    100% { opacity: 1; filter: brightness(0.4); }
}

.flashlight-on { 
    filter: brightness(1.1) contrast(1.2); 
    box-shadow: inset 0 0 100px rgba(51, 255, 0, 0.15); 
    transition: all 1s ease; 
}

.glitch-red { 
    animation: screen-glitch 0.2s 3; 
    background: rgba(255, 0, 0, 0.2) !important; 
}

@keyframes screen-glitch { 
    0% { transform: translate(2px, 1px) rotate(0deg); } 
    50% { transform: translate(-2px, -1px) rotate(-1deg); } 
    100% { transform: translate(0px, 0px) rotate(0deg); } 
}

.shivering { 
    animation: shiver 0.3s infinite; 
}

@keyframes shiver {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.battery-low { 
    animation: battery-warn 0.5s infinite alternate; 
    color: var(--danger) !important; 
}

@keyframes battery-warn { 
    from { opacity: 1; } 
    to { opacity: 0.3; } 
}

/* --- INTRO BOX (Überschreibt globales Design für Game) --- */
.game-wrapper .intro-box {
	text-align: left !important;
    background-color: #111;
    border: 1px solid #333;
    border: 1px solid var(--terminal-border, #333);
    border-left: 5px solid #33ff00;
    border-left: 5px solid var(--terminal-text, #33ff00);
    padding: 20px;
    margin-bottom: 25px;
    color: #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    line-height: 1.6;
    text-align: left;
}

.game-wrapper .intro-box h2 {
    margin-top: 0; 
    color: #33ff00;
    color: var(--terminal-text, #33ff00);
    font-size: 1.4em; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    text-align: left;
    border-bottom: none;
}

.game-wrapper .intro-box strong { color: #fff; }
.game-wrapper .intro-box ul { margin-top: 10px; padding-left: 20px; color: #aaa; }
.game-wrapper .intro-box li { margin-bottom: 5px; font-size: 0.9em; }

/* --- DIFFICULTY SELECTION --- */
.difficulty-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.diff-btn {
    padding: 15px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid #444;
    color: #aaa;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: bold;
}

.diff-btn.easy { border-color: #28a745; color: #28a745; }
.diff-btn.normal { border-color: #00aaff; color: #00aaff; }
.diff-btn.hardcore { border-color: #ff3333; color: #ff3333; }

.diff-btn:hover { transform: scale(1.05); }
.diff-btn.easy:hover { background: #28a745; color: #000; }
.diff-btn.normal:hover { background: #00aaff; color: #000; }
.diff-btn.hardcore:hover { background: #ff3333; color: #000; }

/* --- TERMINAL UI LAYOUT --- */
.terminal-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    background: #000;
    border: 2px solid #333;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(51, 255, 0, 0.15);
    overflow: hidden;
    min-height: 650px;
}

@media(max-width: 900px) { 
    .terminal-grid { 
        grid-template-columns: 1fr; 
        min-height: auto;
    } 
}

/* Main Screen Area */
.terminal-main {
    display: flex; 
    flex-direction: column;
    border-right: 1px solid #333;
}

.terminal-header {
    background: #111; 
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    color: #666; 
    font-size: 0.8em; 
    text-transform: uppercase;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.status-indicator {
    display: flex;
    gap: 15px;
    font-size: 0.75em;
}

.status-indicator span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.terminal-screen {
    flex-grow: 1; 
    padding: 20px;
    background: radial-gradient(circle, rgba(16,30,16,1) 0%, rgba(0,0,0,1) 100%);
    color: #33ff00;
    font-size: 1.05em; 
    line-height: 1.7;
    overflow-y: auto; 
    max-height: 500px;
    text-align: left;
}

.event-log {
    font-size: 0.85em; 
    color: #888; 
    margin-bottom: 15px; 
    border-left: 2px solid #444; 
    padding-left: 10px; 
    font-style: italic;
}

.terminal-options {
    padding: 15px; 
    border-top: 1px dashed #333;
    background: #050505;
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

/* Puzzle Input */
.puzzle-container {
    background: rgba(0, 170, 255, 0.05);
    border: 1px solid #00aaff;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.puzzle-input {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #00aaff;
    color: #33ff00;
    font-family: inherit;
    font-size: 1em;
    margin: 10px 0;
}

.puzzle-submit {
    padding: 10px 20px;
    background: #00aaff;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.puzzle-submit:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Sidebar & Stats */
.terminal-sidebar {
    background: #0a0a0a; 
    padding: 15px;
    color: #33ff00; 
    font-size: 0.85em;
    overflow-y: auto;
    max-height: 650px;
    text-align: left;
}

.sidebar-section { 
    margin-bottom: 20px; 
    border-bottom: 1px solid #222; 
    padding-bottom: 10px; 
}

.sidebar-title { 
    font-weight: bold; 
    letter-spacing: 1px; 
    color: #fff; 
    margin-bottom: 8px;
    text-transform: uppercase; 
    font-size: 0.9em;
}

.stat-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 6px; 
    position: relative;
}

.stat-label { color: #888; }
.stat-val { font-weight: bold; color: #33ff00; }

.val-low { color: #ff9900; }
.val-crit { color: #ff3333; animation: pulse 1s infinite; }
.val-high { color: #33ff00; }

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #222;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.progress-fill {
    height: 100%;
    background: #33ff00;
    transition: width 0.5s ease;
}

.progress-fill.warning { background: #ff9900; }
.progress-fill.danger { background: #ff3333; }

/* Inventory */
.inventory-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.inventory-item { 
    background: rgba(51, 255, 0, 0.05); 
    border-left: 2px solid #1a5c1a;
    margin-bottom: 4px; 
    padding: 6px 8px; 
    font-size: 0.85em; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.inventory-item:hover {
    background: rgba(51, 255, 0, 0.15);
    border-left-color: #33ff00;
}

.item-durability {
    font-size: 0.7em;
    color: #666;
}

/* Weather Widget */
.weather-widget {
    background: rgba(0, 170, 255, 0.1);
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: center;
}

.weather-icon {
    font-size: 1.5em;
    margin-bottom: 5px;
}

/* Game Buttons */
.game-btn {
    background: transparent; 
    border: 1px solid #1a5c1a;
    color: #33ff00; 
    padding: 12px 15px; 
    text-align: left;
    cursor: pointer; 
    font-family: inherit; 
    font-size: 0.95em;
    transition: all 0.2s; 
    position: relative;
    display: block;
    width: 100%;
}

.game-btn:hover { 
    background: #33ff00; 
    color: #000; 
}

.game-btn:disabled { 
    opacity: 0.3; 
    cursor: not-allowed; 
    border-color: #333; 
}

.game-btn.danger {
    border-color: #ff3333;
    color: #ff3333;
}

.game-btn.danger:hover {
    background: #ff3333;
    color: #000;
}

.req-badge {
    float: right; 
    font-size: 0.7em; 
    background: #222; 
    color: #ccc; 
    padding: 2px 6px; 
    border-radius: 3px;
    margin-left: 10px;
}

.game-btn:hover .req-badge { 
    color: #fff; 
    background: #000; 
}

/* Cursor Animation */
.cursor::after { 
    content: '▋'; 
    animation: blink 1s infinite; 
}

@keyframes blink { 
    0%, 100% { opacity: 1; } 
    50% { opacity: 0; } 
}

@keyframes pulse { 
    0% { opacity: 1; } 
    50% { opacity: 0.5; } 
    100% { opacity: 1; } 
}

/* Achievement Popup */
.achievement-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid #33ff00;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 9999;
    animation: slideIn 0.5s ease;
    max-width: 300px;
}

@keyframes slideIn {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.achievement-icon {
    font-size: 2em;
    text-align: center;
    margin-bottom: 10px;
}

.achievement-name {
    font-size: 1.1em;
    color: #33ff00;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.achievement-desc {
    font-size: 0.85em;
    color: #aaa;
    text-align: center;
}

/* Tooltip */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: nowrap;
    z-index: 1000;
    border: 1px solid #33ff00;
    margin-top: 5px;
}

/* Logo Wrapper Override für Game */
html body div.logo-wrapper {
    margin: 60px auto 20px auto !important;
}
/* =========================================
   SPEZIFISCH: KALKULATOR / PLANER
   ========================================= */

/* Haupt-Wrapper (nur für Kalkulator-Seite) */
.calculator-main-wrapper {
    position: relative; z-index: 10;
    padding: 0 5px 20px 5px;
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 101vh; 
}

/* Config Box (Allgemeiner Container) */
.config-box { 
    background: rgba(15, 15, 15, 0.95); 
    padding: 30px; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
    border: 1px solid #444;
    text-align: center; 
    width: 100%;
    max-width: 1100px; 
    box-sizing: border-box;
}

/* Spezifische Page Title (falls abweichend von Global) */
h2.page-title {
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
    margin-top: 0; margin-bottom: 15px;
    text-transform: uppercase; font-size: 1.5em;
}

/* Einleitungstext */
.intro-text {
    color: #ccc; font-size: 0.8em; line-height: 1.5;
    max-width: 900px; margin: 0 auto 25px auto;
    text-align: left; padding-bottom: 25px;
    border-bottom: 1px solid #333; 
}

/* Input Bereich */
.input-area { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
}

/* Tage-Auswahl */
.days-wrapper { 
    background: rgba(0, 123, 255, 0.2); 
    padding: 12px; 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    border: 1px solid var(--neon-blue); 
    width: fit-content; 
}

.days-wrapper input {
    width: 55px; 
    background: #000; 
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue); 
    padding: 5px;
    font-weight: bold; 
    text-align: center;
}

/* Haushalt-Sektion */
.hh-section { 
    display: flex; 
    gap: 40px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.hh-sub-group { 
    border-left: 3px solid var(--neon-green); 
    padding-left: 20px; 
    text-align: left;
}

.hh-sub-group h3 { 
    margin-top: 0; 
    font-size: 0.8em; 
    color: var(--neon-green); 
}

.group-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
}

.group-item { 
    background: rgba(40, 40, 40, 0.9); 
    padding: 8px 12px; 
    border: 1px solid #555; 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 0.8em; 
    color: #ffffff !important;
}

.group-item input { 
    width: 45px; 
    padding: 4px; 
    text-align: center; 
    border: 1px solid var(--neon-green); 
    border-radius: 4px; 
    background: #000; 
    color: #fff;
}

/* --- TABELLEN DESIGN (Kalkulator) --- */
#artikelTable { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 0; 
    font-size: 13px; 
    background: rgba(5, 5, 5, 0.95); 
    table-layout: fixed; 
    border: 1px solid var(--neon-blue);
    min-width: 800px;
}

#artikelTable th, 
#artikelTable td, 
#artikelTable .cell-name, 
#artikelTable .editable-cell { 
    border: 1px solid #333; 
    padding: 8px; 
    text-align: left; 
    vertical-align: middle; 
    color: #ffffff !important; 
    opacity: 1 !important;
}

#artikelTable th { 
    background-color: #111; 
    color: var(--neon-blue) !important; 
    position: sticky; 
    top: 0; 
    z-index: 10; 
    border-bottom: 2px solid var(--neon-green);
    text-transform: uppercase;
}

.editable-cell { 
    background-color: rgba(255,255,255,0.1) !important; 
    border-bottom: 1px dashed var(--steam-gold) !important; 
}

.item-row td { border: 1px solid rgba(0, 242, 255, 0.3); }
 
.item-row:hover td {
    background: rgba(0, 242, 255, 0.1) !important;
    border-color: var(--neon-blue);
}

.col-result { font-weight: bold; background-color: rgba(0, 242, 255, 0.2) !important; color: var(--neon-blue) !important; }
.col-cost { font-weight: bold; background-color: rgba(40, 167, 69, 0.2) !important; color: var(--neon-green) !important; }

tr.cat-header td { 
    background-color: #1a4d23 !important; 
    color: #ffffff !important; 
    font-weight: bold; 
    padding: 12px; 
    font-size: 1.2em; 
    border-left: 8px solid var(--neon-blue);
}

/* --- Sticky Footer Bar (Optimiert / Slim) --- */
.total-sticky-bar { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: #000; 
    color: #fff; 
    padding: 8px 0;
    z-index: 100; 
    border-top: 2px solid var(--neon-blue);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.8);
}

/* Preis-Anzeige im Footer */
#grandTotalDisplay {
    font-size: 1.3em !important;
    vertical-align: middle;
}

/* --- Action Buttons (Teilen, PDF) --- */
.action-btn { 
    background: var(--neon-green); 
    color: white; 
    border: none; 
    padding: 10px 18px; 
    border-radius: 5px; 
    font-weight: bold; 
    cursor: pointer; 
    margin-left: 10px; 
    transition: 0.2s;
    font-size: 1em; 
}

.action-btn:hover { 
    background: #218838; 
    transform: translateY(-2px); 
}

/* WICHTIG: Spezifische Regel für die Buttons in der Sticky-Bar */
.total-sticky-bar .action-btn {
    display: inline-block !important;
    width: auto !important;
    margin-bottom: 0 !important;
    padding: 6px 12px !important; 
    font-size: 0.9em !important;
    margin-left: 5px;
}

/* Mobile Anpassung: Auch hier nebeneinander lassen, aber etwas kleiner */
@media (max-width: 768px) {
    .total-sticky-bar .action-btn { 
        padding: 8px 10px; 
        font-size: 0.85em; 
        margin-left: 5px; 
        width: auto !important;
    }
}
/* --- Checkboxen in den Überschriften --- */
.bulk-check { 
    transform: scale(1.3);
    cursor: pointer; 
    margin-right: 10px; 
    vertical-align: middle; 
}
/* =========================================
   SPEZIFISCH: STARTSEITE (Dashboard)
   ========================================= */

/* Intro Box auf Startseite (Grüner Rand, Linksbündig) */
.content-box.intro-box {
    border-left: 5px solid var(--neon-green);
    text-align: left !important;
    max-width: 850px;
}

/* Youtube Box auf Startseite (Goldener Rand rechts, Linksbündig) */
.content-box.youtube-box {
    border-right: 5px solid var(--steam-gold);
    text-align: left !important;
    max-width: 850px;
}

/* Overview Box auf Startseite (Blauer Rand, Linksbündig) */
.content-box.overview-box {
    border-left: 5px solid var(--neon-blue);
    text-align: left !important;
    max-width: 850px;
}

/* --- Typografie Spezifisch für Startseiten-Boxen --- */

/* H1 Main Title in der Intro Box */
.content-box.intro-box h1.main-title {
    color: var(--neon-blue) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    text-align: center !important;
    border-bottom: none !important;
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
}

/* H2 in den Startseiten-Boxen (Blau, Zentriert) */
.content-box.intro-box h2,
.content-box.youtube-box h2,
.content-box.overview-box h2 {
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    text-align: left;
    border-bottom: none;
}

/* P in den Startseiten-Boxen (Größer, Schatten, LINKSBÜNDIG) */
.content-box.intro-box p,
.content-box.youtube-box p {
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    text-align: left !important;
}

/* Bilder in den Boxen */
.content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* --- Sektoren-Liste (Overview) --- */
.sector-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sector-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    line-height: 1.5;
    text-align: left;
}

.sector-list li:last-child { border-bottom: none; }

.sector-title {
    color: var(--neon-green);
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 8px;
    letter-spacing: 1px;
}

.sector-icon {
    color: var(--steam-gold);
    margin-right: 10px;
}

.highlight-green { color: var(--neon-green);}
.highlight-gold { color: var(--steam-gold);}

/* --- STATISTIK DASHBOARD (Kompakt) --- */
.stats-box {
    width: 100%;
    max-width: 450px !important;
    margin: 40px auto;
    padding: 20px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid var(--steam-gold);
    border-left: 5px solid var(--steam-gold);
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    border-radius: 4px;
    text-align: center;
}

.stats-box h3 {
    color: var(--steam-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* --- STATISTIK DASHBOARD (Startseite) --- */
.stats-box .chart-container {
    position: relative;
    height: 210px !important; 
    width: 100%;
    margin-bottom: 15px;
}

.stats-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-btn {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 4px 10px;
    font-size: 0.75em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.stat-btn:hover, .stat-btn.active {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 10px var(--neon-blue);
}

.counter-display {
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 10px;
    color: #888;
    font-size: 0.85em;
    letter-spacing: 1px;
}

/* --- QUIZ STYLES --- */
#quiz-wrapper {
    text-align: left;
}

.quiz-btn {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
    padding: 12px 15px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    margin-bottom: 8px;
}

.quiz-btn:hover:not(:disabled) {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--neon-blue);
    color: #fff;
}

/* Quiz Status Klassen */
.quiz-btn.correct {
    background: rgba(40, 167, 69, 0.2) !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.quiz-btn.wrong {
    background: rgba(220, 53, 69, 0.2) !important;
    border-color: #dc3545 !important;
    color: #fff !important;
}

/* Mobile Anpassungen für Index */
@media (max-width: 600px) {
    .stats-box { padding: 20px 15px; }
    .chart-container { height: 200px; }
    .stats-controls { flex-direction: column; gap: 10px; }
    .stat-btn { width: 100%; padding: 10px; }
}

/* Responsiv für Handy: Bild oben, Text unten */
@media (max-width: 768px) {
    .topic-content {
        flex-direction: column;
    }
    .topic-image {
        max-width: 100%;
        width: 100%;
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
    .topic-image img {
        height: auto !important;
        width: 100%;
        max-width: 400px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}



/* =========================================
   FIX FÜR GOLD-STATISTIK (Mobile)
   ========================================= */
@media (max-width: 768px) {

    .finance-grid .chart-container {
        height: 250px !important;
        padding: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block;
    }

    /* 2. Den Canvas (die Grafik selbst) bändigen */
    #financialChart {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
    }
}

/* =====================================================
   UPDATE 5.0 - MODERN TECH LOOK & TABLE UX
   ===================================================== */

/* 1. Neue Schriftarten laden */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;600&display=swap');

/* 2. Globale Anpassungen für den Hacker-Look */
body {
    font-family: 'Rajdhani', sans-serif !important; 
}

/* Glassmorphism Effekt für alle Boxen */
.content-box, .topic-card, .intro-box, .legal-box, .config-box, .about-box {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(0, 242, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(0, 242, 255, 0.05) !important;
}

/* Überschriften im Tech-Stil */
html body h1, html body h2, html body h3 {
    font-family: 'Share Tech Mono', monospace !important;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.3) !important;
}

/* 3. Optimierung der Tabellen */
.master-table {
    border-collapse: separate !important;
    border-spacing: 0 5px !important;
    background: transparent !important;
}

.master-table th {
    background: rgba(0, 242, 255, 0.15) !important;
    border-bottom: 2px solid var(--neon-blue) !important;
    text-transform: uppercase;
    font-size: 0.9em;
}

.master-table tr {
    transition: all 0.2s ease;
}

/* Zebra-Look für bessere Lesbarkeit */
.master-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03) !important;
}

/* Interaktiver Hover-Effekt: Zeile leuchtet beim Drüberfahren */
.master-table tbody tr:hover {
    background: rgba(0, 242, 255, 0.1) !important;
    outline: 1px solid var(--neon-blue);
    transform: scale(1.01);
    cursor: default;
}

/* 4. Visuelle Trennelemente */
.section-divider-neon {
    height: 1px;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* Box-Akzente: Ein dezentes Scanline-Muster im Hintergrund */
.warning-box, .tip-box {
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, rgba(255,0,0,0.05) 0px, rgba(255,0,0,0.05) 1px, transparent 2px);
    pointer-events: none;
}

/* =====================================================
   GLOBAL AMBIENT DUST (Zentral in style.css)
   ===================================================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.dust-wrapper {
    position: absolute;
    bottom: -100px;
    animation: dust-rise linear infinite;
    will-change: transform;
}

.dust-dot {
    display: block;
    background: rgba(175, 175, 175, 0.4);
    border-radius: 50%;
    filter: blur(0.5px);
    animation: dust-sway ease-in-out infinite alternate;
}

@keyframes dust-rise {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120vh); opacity: 0; }
}

@keyframes dust-sway {
    from { transform: translateX(-40px); }
    to { transform: translateX(40px); }
}

/* Styling für den Klick-Hinweis */
.mega-hint {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.7em;
    font-weight: bold;
    padding: 5px 15px;
    margin-left: 15px;
    border: 2px solid;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    vertical-align: middle;
    background: rgba(0, 0, 0, 0.6);
    
    /* Die Magie: Endlos-Animation */
    animation: neon-cycle 4s infinite linear; 
}

/* Die Animation: Wechselt Farbe, Rahmen und Leuchten */
@keyframes neon-cycle {
    0% {
        color: var(--neon-blue);
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px var(--neon-blue);
        transform: scale(1);
    }
    25% {
        color: var(--neon-green);
        border-color: var(--neon-green);
        box-shadow: 0 0 10px var(--neon-green);
        transform: scale(1.05); 
    }
    50% {
        color: var(--steam-gold);
        border-color: var(--steam-gold);
        box-shadow: 0 0 15px var(--steam-gold);
        transform: scale(1);
    }
    75% {
        color: var(--danger-red);
        border-color: var(--danger-red);
        box-shadow: 0 0 10px var(--danger-red);
        transform: scale(1.05);
    }
    100% {
        color: var(--neon-blue);
        border-color: var(--neon-blue);
        box-shadow: 0 0 10px var(--neon-blue);
        transform: scale(1);
    }
}

/* Mobile Anpassung */
@media (max-width: 650px) {
    .header-left h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .mega-hint {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}


/* Erzeugt den Abstand zwischen Box-Rand und Textinhalt */
html body .content-container .intro-box {
    padding: 20px !important; 
}

/* Optional: Erzeugt zusätzlichen Abstand speziell unter der Überschrift */
html body .content-container .intro-box .main-title {
    margin-bottom: 35px !important;
    padding-bottom: 15px !important;
}