
        :root {
            --primary-color: #2c3e50;
            --accent-color: #16a085;
            --text-color: #333;
            --bg-color: #f9f9f9;
            --sidebar-width: 250px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            padding: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        header {
            border-bottom: 2px solid #eee;
            padding-bottom: 20px;
            margin-bottom: 20px;
            position: relative;
        }
        .breadcrumbs {
            font-size: 0.9rem;
            color: #777;
            margin-top: 5px;
        }

        /* Hero-Kopfbild mit Titel/Untertitel (site-weit) */
        .site-hero {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 6;
            min-height: 190px;
            max-height: 420px;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 12px;
        }
        .site-hero img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            box-shadow: none;
            margin: 0;
        }
        .site-hero .site-hero-scrim {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,15,20,0.82) 0%, rgba(10,15,20,0.40) 48%, rgba(10,15,20,0) 78%);
        }
        .site-hero .site-hero-text {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: clamp(14px, 4vw, 32px) clamp(12px, 4vw, 40px) 0;
            text-align: center;
        }
        .hero-title {
            font-family: Georgia, "Times New Roman", serif;
            font-weight: 700;
            letter-spacing: clamp(0.5px, 0.4vw, 3px);
            font-size: clamp(1.2rem, 5.2vw, 2.9rem);
            line-height: 1.15;
            margin: 0;
            white-space: nowrap;
            background: linear-gradient(180deg, #f8ecc9 0%, #e6c877 28%, #b6892f 55%, #8a5f1d 78%, #6e4a15 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-stroke: 1px rgba(60,35,10,0.55);
            text-shadow:
                0 1px 0 rgba(255,241,199,0.55),
                0 2px 3px rgba(0,0,0,0.5),
                0 6px 14px rgba(0,0,0,0.55);
        }
        .hero-subtitle {
            font-family: Georgia, "Times New Roman", serif;
            font-style: italic;
            font-weight: 400;
            color: #f5efe2;
            font-size: clamp(0.72rem, 2.4vw, 1.25rem);
            margin-top: clamp(4px, 1vw, 8px);
            letter-spacing: 0.2px;
            max-width: min(90vw, 640px);
            text-shadow: 0 1px 6px rgba(0,0,0,0.75), 0 2px 14px rgba(0,0,0,0.5);
        }
        
        /* Fixierte Kopfleiste (Mobilgeräte) mit Seitennamen und Burger-Icon,
           nach Vorbild slotcar-treff.de / tagesschau.de */
        .mobile-topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 54px;
            background: #fff;
            padding: 0 16px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
        }
        .mobile-topbar__brand {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        .mobile-topbar__brand a {
            color: inherit;
            text-decoration: none;
        }
        .mobile-topbar__brand span {
            color: var(--accent-color);
        }
        body {
            padding-top: 64px; /* Platz für die fixierte Kopfleiste auf Mobilgeräten */
        }

        /* Burger Button - jetzt Teil der Kopfleiste, verwandelt sich beim
           Öffnen animiert in ein X */
        .menu-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 26px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            position: relative;
            z-index: 1001;
        }
        .menu-toggle span {
            width: 26px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 10px;
            transition: all 0.25s ease;
        }
        .menu-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }
        .menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }

        .layout-wrapper {
            display: flex;
            flex-direction: column;
        }
        
        /* Sidebar Mobil-Design: legt sich beim Öffnen als eigene Ebene
           über den Inhalt (Overlay), statt ihn nach unten zu schieben */
        .sidebar {
            display: none;
            position: fixed;
            top: 54px;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 998;
            background: #fff;
            border: none;
            border-radius: 0;
            margin-bottom: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .sidebar-view {
            height: 100%;
            overflow-y: auto;
            padding: 15px;
        }
        /* Drilldown-Panel (Stufe 2): wird per JS aus den Markendaten befüllt */
        #menu-detail-panel {
            display: none;
            height: 100%;
            flex-direction: column;
            padding: 0;
        }
        .sidebar.drilled-down #sidebar-main-view {
            display: none;
        }
        .sidebar.drilled-down #menu-detail-panel {
            display: flex;
        }
        .menu-panel__header {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 16px;
            background: var(--accent-color);
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            flex-shrink: 0;
        }
        .menu-panel__back-arrow {
            font-size: 1.3rem;
            line-height: 1;
        }
        .menu-panel__list {
            list-style: none;
            overflow-y: auto;
            flex: 1;
            padding: 8px 0;
        }
        .menu-panel__list li {
            margin: 0;
        }
        .menu-panel__list a {
            display: block;
            padding: 11px 16px;
            color: #444;
            text-decoration: none;
            font-size: 0.95rem;
            border-bottom: 1px solid #f2f2f2;
        }
        .menu-panel__list a:hover {
            background: #f7f7f7;
            color: var(--accent-color);
        }
        .menu-panel__home {
            background: #f4f6f7;
            color: var(--accent-color) !important;
            font-weight: 600;
        }
        .menu-panel__current {
            display: block;
            padding: 11px 16px;
            color: var(--accent-color);
            font-weight: 600;
            border-bottom: 1px solid #f2f2f2;
        }
        .chevron {
            color: #bbb;
            font-size: 1.2rem;
        }
        .sidebar .sub-menu {
            display: none; /* auf Mobilgeräten: Unterseiten laufen jetzt über das Drilldown-Panel */
        }
        .sidebar.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        body.menu-open {
            overflow: hidden; /* verhindert Hintergrund-Scroll bei geöffnetem Menü */
        }

        @media (min-width: 768px) {
            .mobile-topbar {
                display: none; /* Ausblenden auf Desktop */
            }
            body {
                padding-top: 10px; /* Desktop-Wert wiederherstellen */
            }
            .menu-toggle {
                display: none; /* Ausblenden auf Desktop */
            }
            .layout-wrapper {
                flex-direction: row-reverse;
                gap: 30px;
            }
            .sidebar {
                display: block; /* Immer sichtbar auf Desktop */
                position: static;
                opacity: 1;
                transform: none;
                overflow: visible;
                flex: 0 0 var(--sidebar-width);
                background: #fdfdfd;
                border: 1px solid #eee;
                border-radius: 6px;
                margin-bottom: 20px;
            }
            .sidebar-view {
                height: auto;
                overflow: visible;
                padding: 15px;
            }
            .sidebar.drilled-down #sidebar-main-view {
                display: block; /* Desktop: kein Drilldown, Hauptliste bleibt sichtbar */
            }
            .sidebar.drilled-down #menu-detail-panel {
                display: none;
            }
            .chevron {
                display: none; /* Desktop: kein Antipp-Hinweis nötig */
            }
            .sidebar .sub-menu {
                display: block; /* Desktop: aktive Marke zeigt Unterseiten wie bisher direkt an */
            }
            .main-content {
                flex: 1;
                min-width: 0; /* verhindert, dass die feste Breite der Steckbrief-Karte den Flex-Container sprengt */
                overflow: hidden; /* fängt den rechtsbündigen Float der Steckbrief-Karte sauber ein, statt ihn in die Seitenleiste ragen zu lassen */
            }
        }
        
        .sidebar h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            border-bottom: 1px solid #ddd;
            padding-bottom: 5px;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 6px;
        }
        .sidebar a {
            color: #555;
            text-decoration: none;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 6px;
            border-radius: 4px;
        }
        .sidebar a:hover {
            background: #f0f0f0;
            color: var(--accent-color);
        }
        .sidebar .active-brand {
            font-weight: bold;
            color: var(--accent-color);
        }
        .sidebar .sub-menu {
            padding-left: 15px;
            display: block;
        }
        h1 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 2rem;
            line-height: 1.25;
        }
        h2 {
            color: var(--primary-color);
            margin: 25px 0 15px 0;
            font-size: 1.5rem;
            border-left: 4px solid var(--accent-color);
            padding-left: 10px;
        }
        p {
            margin-bottom: 15px;
        }
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 20px 0;
            border: 1px solid #ddd;
            border-radius: 6px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 500px;
        }
        th, td {
            padding: 12px;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #f4f6f7;
            color: var(--primary-color);
            font-weight: bold;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .media-container {
            margin: 20px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .image-caption {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
            font-style: italic;
        }
        .video-responsive {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background: #000;
            border-radius: 6px;
            margin: 20px 0;
        }
        .video-responsive iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
            text-align: center;
        }
        footer a {
            color: #666;
            margin: 0 10px;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .ads-container {
            margin: 20px 0;
            text-align: center;
            background: #fafafa;
            border: 1px dashed #ccc;
            padding: 10px;
            min-height: 90px;
        }

.social-links { text-align: center; margin: 30px 0 10px 0; }
        .social-links a { margin: 0 15px; text-decoration: none; color: #1565c0; font-weight: bold; }
    

        /* Markenbuttons auf der Startseite (Raster) */
        .marken-liste {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
            margin: 0 0 25px 0;
            padding: 0;
        }
        @media (min-width: 600px) {
            .marken-liste {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .marken-liste li {
            margin: 0;
        }
        .marken-liste a {
            display: block;
            text-align: center;
            padding: 9px 6px;
            border: 1px solid #d7dbdd;
            border-radius: 6px;
            background: #fff;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.82rem;
        }
        .marken-liste a:hover,
        .marken-liste a:focus {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: #fff;
        }

        /* Marken-Kacheln mit Teasertext (Startseite) */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 0 0 25px 0;
        }
        @media (min-width: 600px) {
            .brand-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 900px) {
            .brand-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .brand-card {
            background: #fff;
            border: 1px solid #e2e5e6;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        .brand-card:hover,
        .brand-card:focus-within {
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }
        .brand-card a {
            display: block;
            padding: 14px 16px;
            text-decoration: none;
            color: inherit;
            height: 100%;
        }
        .brand-card__name {
            display: inline-block;
            font-weight: bold;
            font-size: 1rem;
            color: var(--primary-color);
            padding-bottom: 5px;
            margin-bottom: 8px;
            border-bottom: 3px solid var(--accent-color);
        }
        .brand-card__teaser {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #555;
            margin: 0;
        }
		        .social-links { text-align: center; margin: 30px 0 10px 0; }

	
        /* Produktbox fuer Partnerlinks (Variante B) */
        .produkt-box {
            background: #fff;
            border: 1px solid var(--accent-color);
            border-left: 4px solid var(--accent-color);
            border-radius: 0;
            padding: 18px 20px;
            margin: 25px 0;
        }
        .produkt-box h3 {
            margin: 0 0 6px 0;
            font-size: 1.15rem;
            color: var(--primary-color);
        }
        .produkt-box p {
            margin-bottom: 14px;
        }
        .produkt-button {
            display: inline-block;
            background: var(--primary-color);
            color: #fff;
            padding: 12px 22px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
        }
        .produkt-button:hover,
        .produkt-button:focus {
            background: var(--accent-color);
            color: #fff;
        }
        .produkt-hinweis {
            font-size: 0.8rem;
            color: #777;
            margin: 10px 0 0 0;
        }
        .werbehinweis {
            font-size: 0.85rem;
            color: #777;
            background: #fafafa;
            border: 1px solid #eee;
            border-radius: 6px;
            padding: 10px 14px;
        }
	        .social-links { text-align: center; margin: 30px 0 10px 0; }

/* ===================================================================
           NEUE KOMPONENTE: Steckbrief-Karteikarte (nur Ergänzung, Basis-CSS
           oben bleibt unverändert)
           =================================================================== */
        .spec-card {
            position: relative;
            float: right;
            width: 300px;
            max-width: 100%; /* schrumpft mit, falls der Container schmaler als 300px wird */
            margin: 34px 0 20px 30px;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 0 8px 8px 8px; /* oben links bewusst eckig, dort sitzt der Reiter an */
            box-shadow: 0 8px 18px rgba(0,0,0,0.2);
        }
        .spec-card__tab {
            position: absolute;
            top: -30px;
            left: 0;
            background: var(--primary-color);
            color: #fff;
            font-size: 0.92rem;
            font-weight: 600;
            padding: 7px 18px;
            border-radius: 8px 8px 0 0;
            box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        }
        .spec-card__title {
            padding: 16px 16px 12px 16px;
            color: var(--primary-color);
            font-size: 1.05rem;
            font-weight: 700;
        }
        /* Grauer "Karteikarten"-Bereich: nimmt die Tabelle auf und rundet
           zusammen mit der Karte die unteren Ecken */
        .spec-card__body {
            background: #f4f6f7;          /* selber Grauton, den die Seite schon für Tabellenköpfe nutzt */
            border-top: 1px solid #e6e6e6;
            border-radius: 0 0 8px 8px;
            overflow: hidden;             /* rundet die Tabellenkanten sauber mit */
        }
        .spec-table {
            width: 100%;
            min-width: 0;   /* hebt die generische table{min-width:500px} von oben auf */
            table-layout: fixed; /* erzwingt Spaltenbreiten nach %-Angabe statt nach Inhalt */
            border-collapse: collapse;
            font-size: 0.92rem;
        }
        .spec-table th,
        .spec-table td {
            padding: 8px 16px;
            text-align: left;
            vertical-align: top;
            border-bottom: 1px solid rgba(44,62,80,0.09);
            overflow-wrap: break-word;
            hyphens: auto;
        }
        .spec-table tr:last-child th,
        .spec-table tr:last-child td {
            border-bottom: none;
            padding-bottom: 14px;
        }
        .spec-table th {
            width: 42%;
            color: var(--primary-color);
            font-weight: 600;
        }
        /* zwei leicht unterschiedliche Grautöne im Wechsel; th und td derselben
           Zeile bekommen immer denselben Ton */
        .spec-table tbody tr:nth-child(odd) th,
        .spec-table tbody tr:nth-child(odd) td {
            background: #f4f6f7;
        }
        .spec-table tbody tr:nth-child(even) th,
        .spec-table tbody tr:nth-child(even) td {
            background: #e8ebec;
        }
        .spec-table td {
            color: var(--text-color);
        }
        @media (max-width: 767px) {
            .spec-card {
                float: none;
                width: 100%;
                margin: 34px 0 24px 0;
            }
            h1 {
                font-size: 1.4rem;
                line-height: 1.3;
                margin-bottom: 12px;
            }
        }
        /* =================================================================== */
