/* ==========================================================================
   1. FARBEN & VARIABLEN (Das DexterVPN Branding)
   ========================================================================== */
:root {
    /* Dexter-Orange für Buttons, Hover und wichtige Hervorhebungen */
    --action-color: #F97316; 
    
    /* Tiefes Tech-Blau für Header, Footer und Vertrauens-Elemente */
    --header-bg: #0F172A;    
    
    /* Sehr helles, kühles Grau-Blau für den Hintergrund (wirkt technischer als reines Grau) */
    --site-bg: #F8FAFC;      
    
    /* Textfarben */
    --text-main: #334155; /* Dunkelgrau für bessere Lesbarkeit als pures Schwarz */
    --text-light: #ffffff;
}

/* ==========================================================================
   2. GRUND-RESET & ALLGEMEINES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--site-bg);
}

h2 {
    color: var(--header-bg);
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--action-color);
    padding-left: 10px;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==========================================================================
   3. HEADER & NAVIGATION (Hamburger für Mobile, Dropdown für Desktop)
   ========================================================================== */
.site-header {
    background-color: var(--header-bg);
    border-bottom: 4px solid var(--action-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative !important;
}

/* Das Logo (Dexters Kopf) */
.site-logo .custom-logo,
.site-logo img {
    max-height: 120px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo .custom-logo:hover,
.site-logo img:hover {
    transform: scale(1.03);
}

/* Fallback-Text, falls das Logo noch nicht lädt */
.site-logo a.site-title {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-logo .highlight {
    color: var(--action-color);
}

/* --- MOBILE NAVIGATION (Hamburger) --- */
.menu-toggle {
    display: none; /* Auf Desktop standardmäßig ausblenden */
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 35px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.menu-toggle .strich {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #ffffff; 
    margin: 0; 
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle:hover .strich {
    background-color: var(--action-color);
}

/* --- DESKTOP NAVIGATION (Dropdown & Nebeneinander) --- */
@media (min-width: 992px) {
    .hauptnavigation { 
        display: block !important; /* Auf Desktop immer sichtbar */
        position: static; /* Keine absolute Positionierung wie beim Handy */
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .hauptnavigation .nav-list {
        display: flex;
        gap: 30px;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Jeder Haupt-Menüpunkt */
    .hauptnavigation .nav-list > li {
        position: relative; /* Wichtig für das Dropdown! */
        border-bottom: none; /* Kein Strich drunter wie beim Handy */
        padding: 20px 0; /* Puffer, damit der Hover nicht abbricht */
    }

    .hauptnavigation .nav-list > li > a { 
        font-size: 1.05rem; 
        color: #ffffff; 
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        padding: 0; /* Padding vom Handy-Menü überschreiben */
    }

    .hauptnavigation .nav-list > li > a:hover {
        color: var(--action-color);
        background: transparent;
    }

    /* Pfeil-Symbol für Punkte mit Untermenü */
    .hauptnavigation .nav-list .menu-item-has-children > a::after {
        content: ' ▼';
        font-size: 0.6em;
        margin-left: 6px;
        opacity: 0.7;
        vertical-align: middle;
    }

    /* --- Das versteckte Dropdown-Menü (Sub-Menu) --- */
    .hauptnavigation .nav-list .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px); /* Zentriert unterm Hauptpunkt */
        min-width: 240px;
        background: #1e293b; /* Edles, dunkles Dexter-Blau */
        border: 1px solid #334155;
        border-top: 3px solid var(--action-color); 
        border-radius: 8px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        padding: 10px 0;
        list-style: none;
        opacity: 0;
        visibility: hidden; /* Versteckt, bis man hovert */
        transition: all 0.3s ease;
        z-index: 100;
        margin: 0;
    }

    /* Der Hover-Effekt: Menü taucht auf */
    .hauptnavigation .nav-list > li:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    /* Die Links im Dropdown */
    .hauptnavigation .nav-list .sub-menu li {
        padding: 0;
        margin: 0;
        border-bottom: none;
    }

    .hauptnavigation .nav-list .sub-menu a {
        display: block;
        padding: 12px 25px;
        color: #e2e8f0;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        text-transform: none; /* Normale Schreibweise im Dropdown */
        transition: background 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
    }

    /* Hover auf einen Link im Dropdown */
    .hauptnavigation .nav-list .sub-menu a:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--action-color);
        padding-left: 30px; /* Linker Text rückt leicht nach rechts beim Hover */
    }
}

/* --- MOBILE NAVIGATION AKTIVIEREN (Unter 992px) --- */
@media (max-width: 991px) {
    .menu-toggle { display: flex; } /* Hamburger Button zeigen */
    
    .hauptnavigation { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background-color: #1e293b; 
        border-top: 1px solid #334155; 
        border-bottom: 3px solid var(--action-color); 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 
        z-index: 1000; 
    }

    .hauptnavigation.ist-offen { 
        display: block; 
        animation: einblenden 0.3s ease; 
    }

    .hauptnavigation .nav-list { 
        display: flex;
        flex-direction: column; 
        gap: 0; 
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .hauptnavigation .nav-list > li { 
        width: 100%; 
        border-bottom: 1px solid #334155; 
    }

    .hauptnavigation .nav-list > li > a { 
        display: block; 
        padding: 18px 25px; 
        font-size: 1.05rem; 
        color: #ffffff; 
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hauptnavigation .nav-list > li > a:hover {
        color: var(--action-color);
        background-color: #0f172a;
    }

    /* Dropdown Menü (Unterpunkte) im Handymenü */
    .hauptnavigation .nav-list .sub-menu {
        display: block;
        position: static; 
        background-color: #0f172a; 
        box-shadow: none;
        border-top: none;
        padding: 0;
        list-style: none;
        margin: 0;
        border-left: 4px solid #334155;
    }

    .hauptnavigation .nav-list .sub-menu li {
        border-bottom: 1px dashed #334155;
    }
    
    .hauptnavigation .nav-list .sub-menu li:last-child {
        border-bottom: none;
    }

    .hauptnavigation .nav-list .sub-menu a {
        display: block;
        padding: 12px 25px 12px 40px; /* Eingerückt */
        font-size: 0.95rem;
        color: #94a3b8;
        text-decoration: none;
    }

    .hauptnavigation .nav-list .sub-menu a:hover {
        color: var(--action-color);
        background-color: #1e293b;
    }
}
/* ==========================================================================
   4. HERO BEREICH (Startseite)
   ========================================================================= */
.hero-bereich {
    background-color: var(--header-bg);
    color: #ffffff;
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    padding: 100px 50px 100px 20px; 
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 12px; 
    overflow: hidden; 
    min-height: 480px; 
}

.hero-inhalt {
    max-width: 650px; 
    margin: 0;
    text-align: right; 
}

.hero-inhalt h1 {
    font-size: 2.8rem; 
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: none;
    padding-left: 0;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6); 
}

.hero-inhalt h1 span.wech {
    color: #94a3b8; 
    font-size: 1.4rem;
    display: block;
    margin-bottom: 12px;
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0;
}

.hero-inhalt h1 span.hero-main-title {
    color: #ffffff;
    display: block;
}

.hero-inhalt h1 span.highlight-text {
    color: var(--action-color);
    display: block;
    margin-top: 8px;
    font-size: 3.2rem; 
}

.hero-inhalt p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #e2e8f0;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.8); 
}

.btn-hero {
    display: inline-block;
    background-color: var(--action-color);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-hero:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
    color: #ffffff;
}

@media (max-width: 900px) {
    .hero-bereich {
        justify-content: center;
        padding: 60px 20px;
        background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('images/hero-bg.jpg') no-repeat left center !important;
        background-size: cover !important;
    }
    
    .hero-inhalt {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-inhalt h1 { font-size: 2.2rem; }
    .hero-inhalt h1 span.highlight-text { font-size: 2.2rem; }
}

/* ==========================================================================
   5. SCHNELLNAVIGATION (Quick Nav)
   ========================================================================== */
.quick-nav-bereich {
    margin-top: -60px; 
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.quick-nav-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 15px;
    text-decoration: none;
    border-right: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.quick-nav-item:last-child { border-right: none; }
.quick-nav-item:hover {
    background-color: #f8fafc;
    box-shadow: inset 0 -4px 0 var(--action-color); 
}

.qn-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.quick-nav-item:hover .qn-icon {
    transform: scale(1.1) translateY(-3px); 
}

.qn-text {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--header-bg);
    line-height: 1.2;
}

.qn-text small {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 5px;
    text-transform: none;
}

.post-container {
    max-width: 800px; /* Perfekte Breite für Ratgebertexte */
    margin: 0 auto;
    padding: 20px;
}
.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}
.entry-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   6. TITEL BOXEN & SORTIERUNG
   ========================================================================== */
.titel-box {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    border: 1px solid #e2e8f0;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 25px; 
}

.kategorie-titel {
    margin: 0 0 15px 0;
    font-size: 2rem;
    color: var(--header-bg);
    border-left: none; 
    padding-left: 0;
    position: relative;
    font-weight: 800;
}

.kategorie-titel::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--action-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.sortier-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    margin-bottom: 35px;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 50px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    border: 1px solid #e2e8f0;
}

.sort-form label {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 600;
}

.sort-form select {
    padding: 8px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 30px; 
    background: #f8fafc;
    font-size: 1rem;
    color: var(--header-bg);
    font-weight: bold;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.sort-form select:focus, 
.sort-form select:hover {
    border-color: var(--action-color);
}

/* ==========================================================================
   7. VPN TABELLE
   ========================================================================== */
.vpn-wrapper {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.vpn-zeile {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 1fr 1.5fr; 
    align-items: center;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--action-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 20px;
}

.vpn-zeile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.vpn-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--action-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    border: 3px solid #ffffff;
    z-index: 10;
}

.vpn-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vpn-logo img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.vpn-info h3 {
    margin: 0;
    color: var(--header-bg);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 800;
}

.vpn-features {
    padding: 0 15px;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.vpn-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vpn-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.3;
}

.vpn-features li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 0.9rem;
}

.vpn-pricing, .vpn-bewertung {
    text-align: center;
    padding: 0 15px;
}

.bonus-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
}

.star-rating {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 1.6rem; 
    line-height: 1;
    margin-bottom: 5px;
}

.star-rating::before {
    content: '★★★★★';
    letter-spacing: 2px;
    background: linear-gradient(90deg, #f59e0b var(--percent), #e2e8f0 var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--header-bg);
    color: #ffffff !important;
    padding: 12px 25px; 
    text-decoration: none;
    border-radius: 8px; 
    font-weight: 700; 
    font-size: 0.95rem; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.btn-action:hover {
    background: var(--action-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
}

.alle-ansehen-wrapper {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px; 
}

.btn-alle {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--header-bg); 
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-alle:hover {
    background-color: var(--action-color); 
}

/* ==========================================================================
   DETAILS ACCORDION (Aufklappmenü unter der Tabelle)
   ========================================================================== */
.vpn-details { border-top: 1px solid #e2e8f0; }

.vpn-details summary { 
    padding: 15px 25px; 
    list-style: none; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 0.95rem; 
    color: #64748b; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    transition: background 0.3s, color 0.3s; 
}

.vpn-details summary:hover { 
    background: #f8fafc; 
    color: var(--action-color); 
}

.vpn-details summary::-webkit-details-marker { display: none; } 
.vpn-details summary::after { content: ' ▼'; font-size: 0.75rem; margin-left: 10px; }
.vpn-details[open] summary::after { content: ' ▲'; }

.details-content { 
    padding: 30px; 
    background: #f8fafc; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    border-bottom-left-radius: 12px; 
    border-bottom-right-radius: 12px; 
}

.details-section h4 { color: var(--header-bg); font-size: 1.05rem; margin-bottom: 15px; }

.payment-icons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.payment-icons img { height: 25px; max-width: 70px; object-fit: contain; }

.bonus-specs { list-style: none; margin-bottom: 25px; padding: 0; }
.bonus-specs li { font-size: 0.95rem; margin-bottom: 8px; padding-bottom: 8px; border-bottom: 1px dashed #cbd5e1; color: var(--text-main); }
.bonus-specs li strong { color: var(--header-bg); }

.pro-con-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pro-con-container h5 { font-size: 0.9rem; text-transform: uppercase; margin-bottom: 12px; color: #64748b; font-weight: 800; }

.pro-list ul, .con-list ul { list-style: none; padding: 0; }
.pro-list li, .con-list li { font-size: 0.9rem; margin-bottom: 8px; padding-left: 25px; position: relative; color: var(--text-main); line-height: 1.4; }
.pro-list li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #16a34a; font-weight: bold; }
.con-list li::before { content: '✖'; position: absolute; left: 0; top: 0; color: #dc2626; font-weight: bold; }

@media (max-width: 768px) {
    .details-content { grid-template-columns: 1fr; padding: 20px 15px; gap: 25px; }
    .pro-con-container { grid-template-columns: 1fr; }
}

/* ==========================================================================
   STICKY SIDEBAR (Für VPN Testberichte)
   ========================================================================== */
@media (min-width: 900px) {
    .content-sidebar {
        position: relative;
        height: 100%; 
    }
    
    .sidebar-box {
        position: sticky;
        top: 120px; 
        z-index: 10;
        transition: transform 0.3s ease; 
    }
}

/* ==========================================================================
   TESTBERICHT TYPOGRAFIE & ABSTÄNDE (Bessere Lesbarkeit)
   ========================================================================== */

.the-content-wrapper p { margin-bottom: 25px; color: var(--text-main); line-height: 1.8; }
.the-content-wrapper h3 { font-size: 1.6rem; color: var(--header-bg); margin-top: 45px; margin-bottom: 20px; font-weight: 800; line-height: 1.3; }
.the-content-wrapper h2 { font-size: 1.9rem; margin-top: 55px; margin-bottom: 25px; color: var(--header-bg); padding-left: 0; border-left: none; }
.the-content-wrapper ul, .the-content-wrapper ol { margin-bottom: 25px; padding-left: 25px; }
.the-content-wrapper li { margin-bottom: 10px; line-height: 1.7; color: var(--text-main); }

/* ==========================================================================
   8. NEWSLETTER & SEO TEXTE
   ========================================================================== */
.newsletter-bereich { margin-bottom: 60px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); border: 1px solid #e2e8f0; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; background-color: var(--header-bg); }
.newsletter-formular { padding: 50px; color: #ffffff; }
.newsletter-formular h2 { color: #ffffff; border-left: none; padding-left: 0; margin-bottom: 15px; font-size: 1.8rem; }
.newsletter-formular input[type="email"] { width: 100%; padding: 15px; border: none; border-radius: 8px; margin-bottom: 20px; font-size: 1rem; font-family: inherit; }
.seo-section { margin: 60px 0; }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; background: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; }
.seo-grid.reverse { grid-template-columns: 1fr 1fr; }
.seo-text { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.seo-text h2 { border-left: none; padding-left: 0; }
.seo-text h2::after { content: ''; display: block; width: 50px; height: 3px; background: var(--action-color); margin-top: 15px; }

/* ==========================================================================
   BREITEN-KORREKTUR: Alle Unterseiten an Startseite anpassen (1200px)
   ========================================================================== */
.single-container,
.ueber-container,
.kontakt-container {
    max-width: 1200px !important; /* Erzwingt die volle Startseiten-Breite */
    padding: 0 !important; /* Entfernt die doppelten, einengenden Seitenränder */
    width: 100% !important;
    box-sizing: border-box !important;
}

   /* --- Casino Testbericht --- */
.single-content-bereich { background-color: var(--site-bg); }

.content-text {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-text h2, .content-text h3 { color: var(--header-bg); margin-top: 30px; margin-bottom: 15px; }
.content-text p { margin-bottom: 20px; color: #444; }

.content-sidebar { position: relative; }
.sidebar-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08);
    position: sticky;
    top: 120px; 
}

.bonus-specs li strong { color: var(--header-bg); }

/* --- Über Uns, AGB, Impressum --- */
.ueber-content-bereich { padding: 60px 0; }
.ueber-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.ueber-hero-box {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
                0 4px 15px rgba(230, 96, 0, 0.05); 
    text-align: center;
    margin-bottom: 50px;
}

.ueber-hero-box h1 {
    color: var(--header-bg);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 900;
    border-left: none; 
    padding-left: 0;
}

.ueber-hero-box h1 span { color: var(--action-color); }
.ueber-hero-box p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.ueber-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
                0 4px 15px rgba(230, 96, 0, 0.05); 
    margin-bottom: 40px;
}

.ueber-box h2 {
    color: var(--header-bg);
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    border-left: none; 
    padding-left: 0;
}

.ueber-box h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--action-color);
    margin-top: 8px;
}

.ueber-box p { color: #555; line-height: 1.8; font-size: 1.05rem; margin-bottom: 20px; }

.werte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.wert-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.wert-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--action-color);
    box-shadow: 0 15px 35px rgba(230, 96, 0, 0.1);
}

.wert-icon { font-size: 3.5rem; margin-bottom: 20px; line-height: 1; }
.wert-card h4 { color: var(--header-bg); margin-bottom: 15px; font-size: 1.3rem; }
.wert-card p { color: #666; line-height: 1.6; font-size: 0.95rem; }

/* --- Kontakt --- */
.kontakt-content-bereich { padding: 60px 0; }
.kontakt-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }

.kontakt-info-box, .kontakt-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
                0 4px 15px rgba(230, 96, 0, 0.05);
}

.kontakt-info-box h2, .kontakt-form-box h2 {
    color: var(--header-bg);
    margin-bottom: 25px;
    font-size: 1.6rem;
    position: relative;
}

.kontakt-info-box h2::after, .kontakt-form-box h2::after {
    content: ''; display: block; width: 40px; height: 3px; background: var(--action-color); margin-top: 8px;
}

.kontakt-info-box p { color: #555; line-height: 1.7; margin-bottom: 25px; }

.info-details { display: flex; flex-direction: column; gap: 20px; }
.info-item { background: #f8f9fa; padding: 15px; border-radius: 8px; border-left: 4px solid var(--header-bg); }
.info-item strong { display: block; color: var(--header-bg); margin-bottom: 5px; }
.info-item span { color: #444; font-size: 0.95rem; }

.kontakt-form-box input[type="text"],
.kontakt-form-box input[type="email"],
.kontakt-form-box textarea {
    width: 100%; padding: 12px 15px; margin-bottom: 20px; border: 1px solid #ddd;
    border-radius: 6px; background: #fdfdfd; font-size: 1rem; transition: all 0.3s; box-sizing: border-box;
}

.kontakt-form-box input:focus, .kontakt-form-box textarea:focus {
    border-color: var(--action-color); outline: none; box-shadow: 0 0 8px rgba(230, 96, 0, 0.15);
}

.kontakt-form-box input[type="submit"], .kontakt-form-box button {
    background: var(--action-color); color: #fff; border: none; padding: 15px 30px;
    font-size: 1.1rem; font-weight: bold; border-radius: 6px; cursor: pointer; transition: background 0.3s; width: 100%;
}

.kontakt-form-box input[type="submit"]:hover, .kontakt-form-box button:hover { background: #cc5500; }

/* ==========================================================================
   GLOBALE BREITEN-KORREKTUR (Fix für das Überstehen am Rand)
   ========================================================================== */
.page-hero-box,
.archive-hero-box,
.single-hero-grid,
.single-content-grid,
.post-grid,
.insider-info-section,
.ueber-container,
.kontakt-container {
    /* Exakt die sichtbare Breite zwischen Logo und rechtem Menürand! */
    max-width: 1160px !important; 
    margin-left: auto !important;
    margin-right: auto !important;
}

/* WICHTIG: Damit die Elemente, die "frei" liegen, auf dem Tablet/Handy 
   nicht links und rechts direkt am Bildschirmrand kleben */
@media (max-width: 1200px) {
    .archive-hero-box,
    .post-grid,
    .insider-info-section,
    .ueber-container,
    .kontakt-container {
        width: calc(100% - 40px) !important;
    }
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.site-footer { background-color: var(--header-bg); color: #94a3b8; padding: 60px 20px 20px; text-align: center; border-top: 4px solid var(--action-color); margin-top: 60px; }
.footer-warning { background: #1e293b; border: 1px solid #334155; border-radius: 12px; padding: 30px 20px; max-width: 900px; margin: 0 auto 50px auto; }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap; margin-bottom: 15px; }
.trust-badge { background: transparent; color: #e2e8f0; border: 1px solid #475569; padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 40px auto; text-align: left; }
.footer-col h4 { color: #ffffff; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; border-bottom: 2px solid var(--action-color); padding-bottom: 8px; display: inline-block; }
.footer-col a { color: #94a3b8; text-decoration: none; font-size: 0.95rem; margin-bottom: 12px; display: block; transition: color 0.2s ease, transform 0.2s ease; }
.footer-col a:hover { color: var(--action-color); transform: translateX(4px); }
.footer-copyright { border-top: 1px solid #334155; padding-top: 25px; font-size: 0.9rem; }

/* ==========================================================================
   10. MOBILE ANSICHT (Responsive Fixes)
   ========================================================================== */
@media (max-width: 900px) {
    .site-logo .custom-logo, .site-logo img { max-height: 80px !important; }
}

@media (max-width: 768px) {
    h1, h2, .kategorie-titel { word-wrap: break-word !important; overflow-wrap: break-word !important; hyphens: auto !important; }
    
    .hero-bereich { padding: 40px 15px; }
    .hero-inhalt h1 { font-size: 1.8rem; }
    
    .quick-nav-bereich { margin-top: -30px; }
    .quick-nav-container { grid-template-columns: 1fr 1fr; }
    .quick-nav-item:nth-child(1), .quick-nav-item:nth-child(2) { border-bottom: 1px solid #e2e8f0; }
    .quick-nav-item:nth-child(2) { border-right: none; }
    .quick-nav-item { padding: 20px 10px; }

    .titel-box { padding: 20px 15px; }
    .kategorie-titel { font-size: 1.5rem; text-align: center; }

    .sort-form { flex-direction: column; width: 100%; box-sizing: border-box; }
    .sort-form select { width: 100%; text-align: center; }

    .vpn-zeile { 
        display: flex; 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
        padding: 40px 20px 20px 20px; 
        border-left: none; 
        border-top: 5px solid var(--action-color); 
        margin-top: 25px; 
    }
    
    .vpn-number {
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .vpn-info, .vpn-features, .vpn-pricing, .vpn-bewertung { 
        width: 100%; 
        border-bottom: 1px solid #e2e8f0; 
        padding-bottom: 15px; 
        border-left: none; 
        border-right: none; 
    }
    
    .vpn-features { text-align: left; display: flex; justify-content: center; }
    .btn-action { width: 100%; box-sizing: border-box; padding: 15px; }

    .newsletter-grid { grid-template-columns: 1fr; }
    .newsletter-formular { padding: 30px 20px; }
    .seo-grid, .seo-grid.reverse { grid-template-columns: 1fr; }
    .seo-text { padding: 30px 20px; }
    .seo-grid.reverse .seo-image { order: -1; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4 { margin: 0 auto 20px auto; }
    .footer-col a:hover { transform: none; }

    /* --- FIX: Verhindert das Ausbrechen von Info-Boxen & Grids im Testbericht --- */
    .the-content-wrapper [class*="-grid"],
    .single-content-bereich [class*="-grid"],
    .trust-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    .trust-card,
    [class*="-card"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Globale Sicherung gegen horizontales Scrollen auf dem Handy */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
}

@keyframes einblenden {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }

    
}


/* Booster-Fix: Nur noch Layout-Abstand, kein erzwungenes Symbol mehr */
#gaming-booster li {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
    align-items: flex-start !important;
    padding-left: 0 !important;
    list-style: none !important;
}

#gaming-booster li span:first-child {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: bold;
    padding-left: 7px;
}

/* WordPress-Emoji-Killer bleibt aktiv */
#gaming-booster img.emoji {
    display: none !important;
}