        /* Your custom CSS from style.css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg: #ffffff;
            --text: #222;
            --accent: #0a84ff;
            /* helles Blau (Light) */
            --accent-weak: rgba(10, 132, 255, .12);
            --accent-strong: #004fa3;
            --card: #f6f7f9;
            --border: #dee2e6;
            --shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
            --edge-gap: 16px;
            --footer-h: 56px;
        }

        .dark-mode {
            --bg: #2f3033;
            --text: #fafafa;
            --accent: #4ea1ff;
            /* weicheres Blau (Dark) */
            --accent-weak: rgba(78, 161, 255, .16);
            --accent-strong: #b7dbff;
            --card: #444444;
            --border: #555555;
            --shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
        }

        html,
        body {
            height: 100%;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            transition: background-color 0.6s ease, color 0.6s ease;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        body.dark-mode {
            background-color: var(--bg);
            color: var(--text);
        }

        .page-container {
            width: 100%;
            display: flex;
            min-height: 100vh;
            align-items: center;
            flex-direction: column;
            justify-content: flex-start;
        }

        .home-header {
            width: 100%;
            background-color: var(--card);
            padding: 2rem 0;
            text-align: center;
            transition: background-color 0.6s ease, color 0.6s ease;
        }

        body.dark-mode .home-header {
            background-color: #444;
            color: #ffffff;
        }

        .home-main {
            flex-grow: 1;
            padding: 2rem;
            max-width: 960px;
            width: 100%;
        }

        .home-lottie-node {
            width: 350px;
            height: 350px;
            z-index: 970;
        }

        .lottie-link {
            align-self: center;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 970;
        }

        .home-text-container span {
            display: block;
            margin-bottom: 0.5rem;
            text-align: center;
            font-size: clamp(1.1rem, 2.5vw, 1.8rem);
        }

        .home-footer {
            background-color: #f8f9fa;
            padding: 0.8rem 0;
            border-top: 1px solid #dee2e6;
            transition: background-color 0.6s ease, color 0.6s ease;
            width: 100%;
            /* Adjust the width to make it more spread out */
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            padding: 0 1rem;
        }

        body.dark-mode .home-footer {
            background-color: #444;
            border-top: 1px solid #555;
            color: #fff;
        }

        .project-container {
            background-color: var(--card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            padding: 18px;
            border-radius: 5px;
            width: 100%;
            max-width: 960px;
            margin: 15px auto;
            display: grid;
            gap: 5px;
        }

        .project-container-next {
            background-color: var(--card);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            padding: 18px;
            border-radius: 5px;
            width: 100%;
            max-width: 960px;
            margin: 15px auto;
            display: grid;
            gap: 5px;
        }

        .project-container:last-of-type,
        .project-container-next:last-of-type {
            margin-bottom: 16px;
        }

        .home-button {
            display: block;
            width: 100%;
            padding: 1rem;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            border: none;
            background-color: #0056b3;
            /* dunkleres Blau für besseren Kontrast */
            color: #ffffff;
            text-align: center;
            cursor: pointer;
        }

        .home-button-next {
            display: block;
            width: 100%;
            padding: 1rem;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            border: none;
            background-color: #3d4250;
            color: white;
            text-align: center;
            cursor: pointer;
        }

        .home-button:hover {
            background-color: #0056b3;
        }

        .ad-container {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 360px;
            height: auto;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 1rem;
            left: 16px;
            align-items: center;
            z-index: 990;
            display: none;
        }

        .ad-container img {
            display: block;
            margin-bottom: 10px;
            max-width: 100%;
            height: auto;
            border: 2px solid var(--accent);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .ad-button {
            display: inline-block;
            padding: 10px 16px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            border: 2px solid var(--accent);
            color: var(--accent);
            background: transparent;
            transition: transform .15s ease, background-color .6s ease, color .6s ease;
        }

        body.dark-mode .ad-button {
            border: 2px solid #0056b3;
        }

        .ad-button:hover {
            transform: translateY(-1px);
            background: var(--accent-weak);
            color: var(--accent-strong);
        }

        body.dark-mode .ad-container img {
            border: 4px solid #0056b3 !important;
            box-shadow: none;
        }

        .ad-container a {
            display: inline-block;
            text-align: center;
        }

        .ad-container2 {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 320px;
            height: auto;
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 1rem;
            right: 16px;
            align-items: center;
            transition: background-color 0.6s ease, color 0.6s ease;
            z-index: 990;
            display: none;
        }

        .ads-enabled .ad-container,
        .ads-enabled .ad-container2 {
            display: block;
        }

        /* Buy Me a Coffee Button Größe einschränken */
        .ad-container2 .bmc-button {
            width: 100% !important;
            min-width: unset !important;
            height: auto !important;
            padding: 8px 12px !important;
            font-size: 0.85rem !important;
        }

        .ad-container2 .bmc-button img {
            height: 32px !important;
            width: auto !important;
        }

        body.dark-mode .ad-container,
        body.dark-mode .ad-container2 {
            background-color: #444;
            border: 1px solid #555;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: rgb(255, 255, 255);
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: #2196F3;
        }

        input:focus+.slider {
            box-shadow: 0 0 1px #2196F3;
        }

        input:checked+.slider:before {
            -webkit-transform: translateX(26px);
            -ms-transform: translateX(26px);
            transform: translateX(26px);
        }

        .slider.round {
            border-radius: 34px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        .dark-mode-lable {
            position: absolute;
            top: 50%;
            right: 70px;
            transform: translateY(-50%);
            pointer-events: none;
        }

        #consentBox {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ffffff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            text-align: center;
            z-index: 9999;
        }

        body.dark-mode #consentBox {
            background: #444;
            color: #ffffff;
        }

        #consentBox.hide {
            opacity: 0;
            pointer-events: none;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }

        ::selection {
            color: #ffffff;
            background: #229a0f;
        }

        #consentContent p {
            color: #858585;
            margin: 10px 0 20px 0;
        }

        #consentContent .buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }

        .consentButton,
        .rejectButton,
        .settingsButton,
        .privacyButton,
        .termsButton {
            padding: 12px 30px;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 16px;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .consentButton {
            background: #2a910b;
            margin-right: 10px;
        }

        .settingsButton {
            background: #2a910b;
            margin-right: 10px;
        }

        .privacyButton {
            background: #2a910b;
            margin-right: 10px;
        }

        .termsButton {
            background: #2a910b;
            margin-right: 10px;
        }

        .rejectButton {
            color: #111211;
            background: transparent;
            border: 2px solid #099c2c;
            text-decoration: none;
            margin-right: 10px;
        }

        body.dark-mode .rejectButton {
            background: #444;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        #consentBox img {
            max-width: 90px;
        }

        #consentHeader {
            font-size: 25px;
            font-weight: 600;
            margin-top: 10px;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }

        .overlay.active {
            display: flex;
        }

        .overlay-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            text-align: center;
            /* NEU: Eigene z-index, um über dem Overlay-Hintergrund zu liegen */
            z-index: 10000;
        }

        body.dark-mode .overlay-content {
            background-color: #444;
            color: #ffffff;
        }

        .overlay-buttons {
            display: flex;
            flex-direction: column;
            /* Ordnet die Buttons untereinander an */
            align-items: center;
            /* Zentriert die Buttons horizontal */
            margin-top: 25px;
            /* Abstand zum Text darüber */
        }

        /* Haupt-Button (z.B. "Schließen") */
        .close-button {
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            background-color: #0055cc; /* Accessible blue: ~6:1 contrast with white (WCAG AA) */
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-bottom: 15px;
            /* Abstand zum unteren Button */
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .close-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .consentButton,
        .settingsButton,
        .privacyButton,
        .termsButton {
            background-color: #1e6b08;
            /* dunkleres Grün für besseren Kontrast */
            color: #ffffff;
        }

        body.dark-mode #consentContent p {
            color: #ffffff;
            /* oder eine hellere Farbe */
        }

        .home-link,
        .home-link1 {
            color: #0056b3 !important;
            /* dunkleres Blau für besseren Kontrast */
        }

        body.dark-mode .home-link,
        body.dark-mode .home-link1 {
            color: #ffffff !important;
            /* weißer Text für besseren Kontrast */
        }

        #lang-switcher {
            padding: 8px 16px;
            font-size: 14px;
            color: var(--text);
            background-color: transparent;
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        #lang-switcher:hover {
            color: var(--accent);
            border-color: var(--accent);
        }

        @media (max-width: 768px) {

            .ad-container,
            .ad-container2 {
                display: none;
            }

            .home-header {
                padding: 1rem 0;
            }

            .home-main {
                padding: 1rem;
            }

            .home-text-container span {
                font-size: 1.5rem;
            }

            .home-button,
            .home-button-next {
                font-size: 1rem;
                padding: 0.5rem;
            }

            .project-container,
            .changelog-section {
                padding: 1rem;
            }

            .home-lottie-node {
                width: 250px;
                height: 250px;
            }

            .footer-content {
                flex-direction: column;
                display: flex;
                width: 100%;
            }

            .dark-mode-lable {
                position: absolute;
                top: 50%;
                right: 70px;
                transform: translateY(-50%);
                pointer-events: none;
            }

            #consentBox {
                bottom: 10px;
                right: 10px;
                padding: 0.8rem;
                border-radius: 10px;
                max-width: 90%;
            }

            #consentContent p {
                font-size: 15px;
                margin-bottom: 10px;
            }

            #consentContent .buttons {
                display: flex;
                justify-content: space-between;
                flex-direction: column;
                align-items: center;

            }

            .consentButton,
            .rejectButton,
            .settingsButton,
            .privacyButton,
            .termsButton {
                padding: 0.8rem 2rem;
                border-radius: 5px;
                cursor: pointer;
                transition: all 0.6s ease;
                flex: 1;
                margin-top: 5px;
            }

            #consentBox img {
                max-width: 70px;
            }

            #consentHeader {
                font-size: 18px;
                font-weight: 600;
                margin-top: 10px;
            }

            .overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                justify-content: center;
                align-items: center;
                z-index: 9999;
            }

            .overlay.active {
                display: block;
                z-index: 1000;
            }
        }

        /* Ads: unter 1400px versteckt (kein Platz neben 960px Content) */
        @media (max-width: 1399px) {
            body.ads-enabled .ad-container,
            body.ads-enabled .ad-container2 {
                display: none !important;
            }
        }

        /* 1400–1599px: ~220px Seitenraum → Ads klein */
        @media (min-width: 1400px) and (max-width: 1599px) {
            .ad-container  { width: 195px; font-size: 0.8rem; }
            .ad-container2 { width: 185px; font-size: 0.8rem; }
        }

        /* 1600–1799px: ~320px Seitenraum → Ads mittel */
        @media (min-width: 1600px) and (max-width: 1799px) {
            .ad-container  { width: 270px; }
            .ad-container2 { width: 260px; }
        }

        /* 1800px+: voller Platz → Ads normal groß (Basisgröße 360/320px bleibt) */

        @media (min-width: 0px) and (max-width: 999px) {
            .dark-mode-lable {
                position: absolute;
                top: 50%;
                right: 0px;
                transform: translateY(-50%);
                pointer-events: none;
            }

            .home-footer {
                padding: 8px 12px;
            }

            .footer-content {
                justify-content: center;
            }

            .footer-content .switch {
                margin-left: 0;
            }
        }

        @media (min-width: 1000px) and (max-width: 1799px) {
            .dark-mode-lable {
                position: absolute;
                top: 50%;
                right: 0px;
                transform: translateY(-50%);
                pointer-events: none;
            }
        }

        /* Laptop / Desktop (1024px+) */
        @media (min-width: 1024px) {
            .home-main {
                padding: 2.5rem 2rem;
            }

            .home-lottie-node {
                width: 380px;
                height: 380px;
            }

            .home-header {
                padding: 2.5rem 0;
            }

            .home-text {
                font-size: 2rem;
            }

            .project-container,
            .project-container-next {
                padding: 24px;
                margin: 18px auto;
            }

            .home-button,
            .home-button-next {
                border-radius: 6px;
                font-size: 1.1rem;
            }
        }