        @font-face {
            font-family: 'Righteous';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('fonts/righteous.woff2') format('woff2');
        }
        @font-face {
            font-family: 'Press Start 2P';
            font-style: normal;
            font-weight: 400;
            font-display: swap;
            src: url('fonts/press-start-2p.woff2') format('woff2');
        }
        
        :root {
            --bg-color: #f8f8f8;
            --primary-pink: #ff33aa;
            --primary-yellow: #ffcc00;
            --primary-blue: #33ccff;
            --primary-green: #00ff66;
            --text-color: #000;
            --border-width: 4px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Righteous', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(255, 51, 170, 0.08) 2px, transparent 2px),
                linear-gradient(90deg, rgba(255, 51, 170, 0.08) 2px, transparent 2px);
            background-size: 30px 30px;
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 20px;
            background: var(--primary-pink);
            color: white;
            padding: 10px 20px;
            border: var(--border-width) solid #000;
            box-shadow: 4px 4px 0 #000;
            z-index: 9999;
            font-family: 'Press Start 2P', monospace;
            font-size: 10px;
            text-decoration: none;
            transition: top 0.2s;
        }
        .skip-link:focus {
            top: 20px;
            outline: none;
        }

        header {
            background-color: var(--primary-pink);
            padding: 20px;
            text-align: center;
            border-bottom: var(--border-width) solid #000;
            box-shadow: 0 8px 0 rgba(0,0,0,1);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .logo-container {
            margin-bottom: 10px;
        }

        .logo-container img {
            max-width: 250px;
            height: auto;
            filter: drop-shadow(4px 4px 0px #000);
        }

        h1 {
            font-family: 'Press Start 2P', monospace;
            font-size: 22px;
            line-height: 1.5;
            color: #fff;
            text-shadow: 4px 4px 0 #000;
            text-transform: uppercase;
            margin: 10px 0 0 0;
            letter-spacing: 1px;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 16px;
                line-height: 1.5;
            }
            .logo-container img {
                max-width: 170px;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px 20px;
        }

        .back-link {
            display: inline-block;
            margin-bottom: 30px;
            font-family: 'Press Start 2P', monospace;
            font-size: 12px;
            color: #000;
            text-decoration: none;
            background-color: var(--primary-yellow);
            padding: 12px 18px;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #000;
            transition: all 0.1s ease;
        }
        
        .back-link:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000;
        }

        .back-link:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 #000;
        }

        /* Intro Box */
        .intro-box {
            background: #fff;
            border: var(--border-width) solid #000;
            box-shadow: 6px 6px 0 #000;
            padding: 25px;
            margin-bottom: 30px;
            line-height: 1.6;
            font-size: 16px;
        }

        .intro-box h2 {
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            margin-top: 0;
            color: var(--primary-pink);
            text-transform: uppercase;
        }

        /* Search Box styling */
        .search-container {
            background: #fff;
            border: var(--border-width) solid #000;
            box-shadow: 6px 6px 0 #000;
            padding: 20px;
            margin-bottom: 40px;
            background-image: radial-gradient(#ececec 1px, transparent 1px);
            background-size: 15px 15px;
            position: relative;
        }
        .search-label {
            font-family: 'Press Start 2P', monospace;
            font-size: 10px;
            color: var(--primary-pink);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .search-bar-wrapper {
            display: flex;
            align-items: center;
            border: 3px solid #000;
            background: #fff;
            padding: 10px 15px;
            box-shadow: inset 2px 2px 0 rgba(0,0,0,0.1);
            position: relative;
        }
        .search-prompt {
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            color: var(--primary-green);
            margin-right: 12px;
            text-shadow: 1px 1px 0 #000;
        }
        #search-input {
            flex: 1;
            border: none;
            background: transparent;
            font-family: 'Righteous', sans-serif;
            font-size: 18px;
            color: #000;
            outline: none;
            padding: 0;
            margin: 0;
        }
        #search-input::placeholder {
            color: #aaa;
            font-style: italic;
        }
        #search-clear-btn {
            background: none;
            border: none;
            font-family: 'Press Start 2P', monospace;
            font-size: 16px;
            cursor: pointer;
            padding: 0 5px;
            color: #666;
            transition: color 0.1s;
        }
        #search-clear-btn:hover {
            color: var(--primary-pink);
        }

        /* Search results dropdown / overlay */
        .search-results-overlay {
            border: 3px solid #000;
            background: #fff;
            margin-top: 10px;
            box-shadow: 4px 4px 0 #000;
            max-height: 350px;
            overflow-y: auto;
            z-index: 100;
            position: relative;
        }
        .search-result-item {
            padding: 15px;
            border-bottom: 2px solid #000;
            cursor: pointer;
            transition: background 0.1s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .search-result-item:last-child {
            border-bottom: none;
        }
        .search-result-item:hover {
            background: #fff8f8;
        }
        .search-result-title {
            font-family: 'Righteous', sans-serif;
            font-size: 16px;
            font-weight: bold;
            color: #000;
        }
        .search-result-cabinet {
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            background: var(--primary-yellow);
            border: 2px solid #000;
            padding: 3px 6px;
            text-transform: uppercase;
        }
        .search-no-results {
            padding: 20px;
            text-align: center;
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            color: #991b1b;
            background: #fee2e2;
            line-height: 1.8;
        }

        /* Flash animation for found article card */
        @keyframes pixelFlash {
            0% { background-color: var(--primary-yellow); box-shadow: 0 0 20px var(--primary-yellow), 4px 4px 0 #000; }
            50% { background-color: var(--primary-pink); color: #fff; box-shadow: 0 0 20px var(--primary-pink), 4px 4px 0 #000; }
            100% { background-color: #fff; color: #000; box-shadow: 4px 4px 0 #000; }
        }
        .flash-highlight {
            animation: pixelFlash 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        /* Arcade Grid */
        /* Themen-Sprungnavigation (Kachel-Übersicht) */
        .tipps-jumpnav-wrap {
            background: #fff;
            border: var(--border-width) solid #000;
            box-shadow: 6px 6px 0 #000;
            padding: 20px;
            margin-bottom: 40px;
        }
        .jumpnav-label {
            font-family: 'Press Start 2P', monospace;
            font-size: 10px;
            color: var(--primary-pink);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }
        .tipps-jumpnav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tipps-jumpnav .jump-chip {
            font-family: 'Press Start 2P', monospace;
            font-size: 9px;
            line-height: 1.4;
            text-transform: uppercase;
            background: #fff;
            color: #000;
            border: 3px solid #000;
            box-shadow: 3px 3px 0 #000;
            padding: 9px 12px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: all 0.08s ease;
        }
        .tipps-jumpnav .jump-chip:hover {
            transform: translate(-1px, -1px);
            box-shadow: 4px 4px 0 #000;
            background: var(--primary-yellow);
        }
        .tipps-jumpnav .jump-chip:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 #000;
        }
        .tipps-jumpnav .jump-emoji {
            font-size: 15px;
            line-height: 1;
        }

        .arcade-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        /* Arcade Cabinet */
        .arcade-cabinet {
            background: #fff;
            border: var(--border-width) solid #000;
            box-shadow: 6px 6px 0 #000;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            min-height: 250px;
            box-sizing: border-box;
            background-image: radial-gradient(#ececec 1px, transparent 1px);
            background-size: 15px 15px;
        }

        .arcade-cabinet:focus-within {
            outline: 3px solid var(--primary-pink);
            outline-offset: 5px;
        }

        .arcade-header {
            background: #000;
            color: #fff;
            padding: 10px;
            font-family: 'Press Start 2P', monospace;
            font-size: 9px;
            text-align: center;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
        }

        .arcade-screen {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-bottom: 3px solid #000;
            transition: background 0.15s;
            position: relative;
            overflow: hidden;
        }

        .arcade-screen::after {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.08) 50%);
            background-size: 100% 4px;
            z-index: 2;
            pointer-events: none;
        }

        .arcade-icon {
            font-size: 45px;
            margin-bottom: 12px;
            filter: drop-shadow(2px 2px 0px #000);
            transition: transform 0.2s;
        }

        .arcade-title {
            font-family: 'Press Start 2P', monospace;
            font-size: 11px;
            color: #000;
            margin: 0;
            line-height: 1.5;
            text-transform: uppercase;
        }

        .arcade-controls {
            padding: 15px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arcade-btn {
            width: 100%;
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            color: #000;
            background: var(--primary-yellow);
            border: 3px solid #000;
            box-shadow: 3px 3px 0 #000;
            padding: 10px;
            cursor: pointer;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.08s ease;
        }

        .arcade-btn:hover {
            transform: translate(-1px, -1px);
            box-shadow: 4px 4px 0 #000;
            background: #fff;
        }

        .arcade-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 #000;
        }

        /* Hover glows */
        .cabinet-pink:hover {
            border-color: var(--primary-pink);
            box-shadow: 8px 8px 0 var(--primary-pink), 8px 8px 0px 4px #000;
        }
        .cabinet-pink:hover .arcade-header { background: var(--primary-pink); }
        .cabinet-pink:hover .arcade-icon { transform: scale(1.15) rotate(-5deg); }

        .cabinet-blue:hover {
            border-color: var(--primary-blue);
            box-shadow: 8px 8px 0 var(--primary-blue), 8px 8px 0px 4px #000;
        }
        .cabinet-blue:hover .arcade-header { background: var(--primary-blue); color: #000; }
        .cabinet-blue:hover .arcade-icon { transform: scale(1.15) rotate(5deg); }

        .cabinet-green:hover {
            border-color: var(--primary-green);
            box-shadow: 8px 8px 0 var(--primary-green), 8px 8px 0px 4px #000;
        }
        .cabinet-green:hover .arcade-header { background: var(--primary-green); color: #000; }
        .cabinet-green:hover .arcade-icon { transform: scale(1.15) rotate(-5deg); }

        .cabinet-yellow:hover {
            border-color: var(--primary-yellow);
            box-shadow: 8px 8px 0 var(--primary-yellow), 8px 8px 0px 4px #000;
        }
        .cabinet-yellow:hover .arcade-header { background: var(--primary-yellow); color: #000; }
        .cabinet-yellow:hover .arcade-icon { transform: scale(1.15) rotate(5deg); }

        /* Detail Panel */
        .guide-panel {
            grid-column: 1 / -1;
            background: #fff;
            border: var(--border-width) solid #000;
            box-shadow: 8px 8px 0 #000;
            padding: 35px;
            margin-top: 5px;
            margin-bottom: 25px;
            display: none;
            animation: pixelCollapse 0.2s steps(4) forwards;
            line-height: 1.6;
            font-size: 16px;
            position: relative;
            min-width: 0;
        }

        .guide-panel.active {
            display: block;
        }

        .guide-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-family: 'Press Start 2P', monospace;
            font-size: 16px;
            background: #fff;
            border: 2px solid #000;
            box-shadow: 2px 2px 0 #000;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
            margin: 0;
            transition: all 0.1s;
        }
        .guide-close:hover {
            background: var(--primary-pink);
            color: #fff;
            transform: translate(-1px, -1px);
            box-shadow: 3px 3px 0 #000;
        }

        .guide-panel h3 {
            font-family: 'Press Start 2P', monospace;
            font-size: 18px;
            color: var(--primary-pink);
            margin-top: 0;
            margin-bottom: 20px;
            border-bottom: 3px dashed var(--primary-yellow);
            padding-bottom: 12px;
            text-transform: uppercase;
            line-height: 1.4;
            overflow-wrap: break-word;
            word-break: break-word;
        }

        .guide-panel h4 {
            font-family: 'Press Start 2P', monospace;
            font-size: 13px;
            color: #000;
            margin-top: 25px;
            margin-bottom: 10px;
            text-transform: uppercase;
            line-height: 1.4;
            overflow-wrap: break-word;
            word-break: break-word;
        }
        .guide-panel h5 {
            font-family: 'Press Start 2P', monospace;
            font-size: 11px;
            color: #111;
            margin-top: 22px;
            margin-bottom: 10px;
            text-transform: uppercase;
            line-height: 1.4;
            border-bottom: 2px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 4px;
        }

        .guide-panel ol, .guide-panel ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .guide-panel li {
            margin-bottom: 12px;
        }

        .pro-tip {
            background: #fffdf5;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #000;
            padding: 20px;
            margin: 25px 0 10px 0;
            position: relative;
        }

        .pro-tip-title {
            font-family: 'Press Start 2P', monospace;
            font-size: 9px;
            background: var(--primary-yellow);
            color: #000;
            border: 2px solid #000;
            padding: 4px 8px;
            position: absolute;
            top: 0;
            left: 15px;
            transform: translateY(-50%);
            text-transform: uppercase;
            line-height: 1.5;
            max-width: calc(100% - 30px);
        }

        /* Structured Card Box for specific articles */
        .article-card-box {
            background: #fff;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #000;
            padding: 20px;
            margin-bottom: 25px;
            transition: all 0.2s ease;
        }
        .article-card-box h4 {
            margin-top: 0 !important;
            color: var(--primary-pink) !important;
            border-bottom: 2px solid #000;
            padding-bottom: 8px;
        }

        /* Strict structure tags */
        .struct-label {
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            display: inline-block;
            padding: 3px 6px;
            border: 2px solid #000;
            margin-right: 6px;
            text-transform: uppercase;
        }
        .label-fehler { background: #fee2e2; color: #991b1b; }
        .label-ursache { background: #fef3c7; color: #92400e; }
        .label-loesung { background: #dcfce7; color: #166534; }

        .retro-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
            border: 3px solid #000;
        }
        .retro-table th, .retro-table td {
            border: 2px solid #000;
            padding: 10px;
            text-align: left;
        }
        .retro-table th {
            background: var(--primary-yellow);
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            text-transform: uppercase;
        }
        .retro-table tr:nth-child(even) {
            background: #fdfdfd;
        }

        .guide-section-divider {
            font-family: 'Press Start 2P', monospace;
            font-size: 9px;
            background: #000;
            color: var(--primary-green);
            padding: 8px;
            margin: 35px 0 20px 0;
            text-align: center;
            border: 2px solid var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Custom Checkbox Styling for Pre-Flight list */
        .preflight-checkbox:checked {
            background-color: var(--primary-green) !important;
        }
        .preflight-checkbox:checked::after {
            content: "✓";
            color: #000;
            font-family: 'Press Start 2P', monospace;
            font-size: 10px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

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

        
        
        
        
        

        button:focus-visible, a:focus-visible {
            outline: 4px solid var(--primary-pink);
            outline-offset: 4px;
        }
    
        /* --- TRUST FOOTER --- */
        .site-footer {
            background-color: #f0f0f0;
            border-top: 4px solid #000;
            padding: 40px 20px;
            margin-top: 60px;
            font-family: sans-serif; font-size: 14px;
            color: #333;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
        }
        .footer-col {
            display: flex;
            flex-direction: column;
            align-items: center; /* Center items in columns */
            text-align: center;
        }
        .footer-col h2 {
            font-family: 'Press Start 2P', monospace;
            font-size: 10px;
            color: #000;
            margin-bottom: 20px;
            text-transform: uppercase;
            border-bottom: 3px solid var(--primary-pink);
            display: inline-block;
            padding-bottom: 5px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #444;
            text-decoration: none;
            transition: color 0.1s;
            font-size: 14px;
            font-weight: normal;
        }
        .footer-links a:hover {
            color: var(--primary-pink);
        }
        .footer-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center; /* Center logos */
            align-items: center;
            min-height: 30px;
        }
        .trust-logo {
            height: 24px;
            width: auto;
            filter: grayscale(0.2);
            transition: filter 0.2s;
        }
        .trust-logo:hover {
            filter: grayscale(0);
        }
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #ccc;
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            color: #444;
        }
        @media (max-width: 600px) {
            .site-footer { padding: 30px 15px; margin-top: 40px; }
            .footer-container { grid-template-columns: 1fr; gap: 30px; }
            .footer-col { align-items: center !important; text-align: center !important; }
        }







        .cart-modal-content {
            background: #fff;
            border: 4px solid #000;
            box-shadow: 10px 10px 0 var(--primary-pink);
            width: 100%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }

        .cart-modal-title {
            font-family: 'Press Start 2P', monospace;
            font-size: 18px;
            margin-bottom: 25px;
            border-bottom: 4px solid var(--primary-yellow);
            padding-bottom: 10px;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 2px dotted #ccc;
            font-size: 14px;
        }

        .cart-total {
            margin-top: 20px;
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            text-align: right;
        }

        .checkout-btn {
            margin-top: 30px;
            width: 100%;
            background: #25D366;
            color: #fff;
            border: 4px solid #000;
            padding: 15px;
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 6px 6px 0 #000;
            -webkit-appearance: none;
            appearance: none;
        }

        .checkout-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 4px 4px 0 #000;
        }

        .sumup-btn {
            margin-top: 15px;
            width: 100%;
            background: #2D8CFF;
            color: #fff;
            border: 4px solid #000;
            padding: 15px;
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 6px 6px 0 #000;
            -webkit-appearance: none;
            appearance: none;
        }

        .sumup-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 4px 4px 0 #000;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 24px;
            font-weight: bold;
        }

        .new-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--primary-pink);
            color: #000;
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            padding: 5px 8px;
            border: 2px solid #000;
            box-shadow: 2px 2px 0 #000;
            transform: rotate(5deg);
            z-index: 10;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0% { transform: rotate(5deg) scale(1); }
            50% { transform: rotate(5deg) scale(1.1); }
            100% { transform: rotate(5deg) scale(1); }
        }


        .heart-btn-action {
            background: #fff;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #000;
            width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.1s;
            padding: 0;
        }
        .heart-btn-action:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000;
        }
        .heart-btn-action:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 #000;
        }
        @media (max-width: 600px) {
            .heart-btn-action {
                width: 35px;
                font-size: 14px;
            }
        }

        .icon-btn {
            background: transparent;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            box-shadow: none;
            transition: all 0.1s;
            padding: 2px;
            opacity: 0.7;
        }

        .icon-btn:hover {
            transform: scale(1.2);
            opacity: 1;
        }

        .icon-btn:active {
            transform: scale(0.9);
        }

        @media (max-width: 600px) {
            .cart-float {
                bottom: 15px;
                left: 15px;
                width: 45px;
                height: 45px;
            }
            .cart-modal-content {
                padding: 15px;
            }
            .qty-btn { width: 25px; height: 25px; font-size: 12px; }
            .qty-input { width: 35px; height: 25px; font-size: 10px; }
            .add-to-cart-btn { font-size: 8px; padding: 12px; }
        }

        /* PWA Install Button */
        .install-btn {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary-yellow);
            color: #000;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #000;
            padding: 8px 12px;
            font-family: 'Press Start 2P', monospace;
            font-size: 10px;
            cursor: pointer;
            z-index: 100;
            transition: all 0.1s;
        }

        .install-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000;
        }

        .install-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 #000;
        }

        @media (max-width: 600px) {
            .install-btn {
                top: 10px;
                right: 10px;
                font-size: 8px;
                padding: 6px 8px;
                border: 2px solid #000;
                box-shadow: 2px 2px 0 #000;
            }
        }

        /* Retro Hit Counter Styles */
        .counter-container {
            margin: 30px auto 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            user-select: none;
        }
        .counter-label {
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            color: #666;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .retro-counter {
            background-color: #000;
            color: #00ff44;
            font-family: 'Press Start 2P', monospace;
            padding: 10px 15px;
            border: 4px solid #333;
            border-top-color: #111;
            border-left-color: #111;
            border-bottom-color: #555;
            border-right-color: #555;
            display: inline-block;
            letter-spacing: 4px;
            text-shadow: 0 0 8px #00ff44;
            font-size: 14px;
            box-shadow: inset 0 0 15px #000, 4px 4px 0 rgba(0,0,0,0.2);
            border-radius: 2px;
        }

        /* 7-Segment Atari Counter */
        .atari-counter {
            display: flex;
            gap: 5px;
            background: #000;
            padding: 10px 15px;
            border: 3px solid var(--primary-green);
            border-right-color: #00cc55;
            border-bottom-color: #009944;
            border-left-color: #33ff88;
            border-top-color: #66ffaa;
            box-shadow: 4px 4px 0 rgba(0,0,0,0.2), inset 0 0 10px #000;
            margin: 60px auto 30px;
            width: fit-content;
        }

        .segment-digit {
            position: relative;
            width: 14px;
            height: 26px;
        }

        .segment {
            position: absolute;
            background: #222; /* More visible inactive color */
            border-radius: 1px;
            transition: background 0.2s, box-shadow 0.2s;
        }

        .segment.active {
            background: #ff33aa !important;
            box-shadow: 0 0 10px #ff33aa !important;
            display: block !important;
        }
        .atari-counter .segment.active {
            background-color: #ff33aa !important;
        }

        /* Horizontal segments */
        .seg-a, .seg-g, .seg-d { width: 10px; height: 2px; left: 2px; }
        .seg-a { top: 0; }
        .seg-g { top: 12px; }
        .seg-d { bottom: 0; }

        /* Vertical segments */
        .seg-f, .seg-b, .seg-e, .seg-c { width: 2px; height: 10px; }
        .seg-f { left: 0; top: 1.5px; }
        .seg-b { right: 0; top: 1.5px; }
        .seg-e { left: 0; bottom: 1.5px; }
        .seg-c { right: 0; bottom: 1.5px; }

        @media (max-width: 600px) {
            .atari-counter { padding: 10px 15px; gap: 5px; }
            .segment-digit { width: 14px; height: 26px; }
            .seg-a, .seg-g, .seg-d { width: 10px; height: 2px; left: 2px; }
            .seg-g { top: 12px; }
            .seg-f, .seg-b, .seg-e, .seg-c { width: 2px; height: 10px; }
        }
        /* --- NEWS TICKER --- */
        .ticker-container {
            width: 100%;
            background-color: #000;
            color: var(--primary-green);
            font-family: 'Press Start 2P', monospace;
            font-size: 11px;
            padding: 10px 0;
            overflow: hidden;
            border-bottom: 3px solid var(--primary-pink);
            position: relative; /* Oder sticky, falls es mitwandern soll */
            z-index: 2000;
            display: flex;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .ticker-scroll {
            display: flex;
            white-space: nowrap;
            animation: ticker-animation 40s linear infinite;
            will-change: transform;
        }

        .ticker-item {
            padding-right: 80px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        .ticker-item::after {
            content: '+++';
            margin-left: 80px;
            color: var(--primary-pink);
        }

        @keyframes ticker-animation {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Mobile adjustments for ticker */
        @media (max-width: 600px) {
            .ticker-container {
                font-size: 9px;
                padding: 8px 0;
            }
        }

        /* Flexi Creator Promo Banner */
        .flexi-creator-banner {
            background-color: #111;
            border: 4px solid #ff007f;
            box-shadow: 6px 6px 0 #000, 0 0 20px rgba(255, 0, 127, 0.5);
            padding: 20px;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            border-radius: 0;
            font-family: 'Righteous', sans-serif;
        }
        
        .flexi-creator-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 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));
            background-size: 100% 4px, 6px 100%;
            pointer-events: none;
            z-index: 2;
        }

        .flexi-creator-title {
            color: #00f0ff;
            font-size: 22px;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 #000, 0 0 10px rgba(0, 240, 255, 0.6);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .flexi-creator-desc {
            color: #fff;
            font-size: 14px;
            margin: 0;
            max-width: 600px;
            line-height: 1.5;
            text-shadow: 2px 2px 0 #000;
        }

        .flexi-creator-btn {
            font-family: 'Righteous', sans-serif;
            font-size: 16px;
            padding: 10px 24px;
            background-color: var(--primary-yellow);
            color: #000;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #ff007f;
            cursor: pointer;
            text-transform: uppercase;
            transition: all 0.1s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            z-index: 3;
        }

        .flexi-creator-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #ff007f, 0 0 15px rgba(255, 0, 127, 0.5);
            background-color: #fff;
        }

        .flexi-creator-btn:active {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 #ff007f;
        }

        .flexi-creator-close {
            position: absolute;
            top: 5px;
            right: 5px;
            background: transparent;
            border: none;
            color: #ff007f;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            line-height: 1;
            padding: 5px 10px;
            transition: all 0.1s;
        }
        
        .flexi-creator-close:hover {
            color: #fff;
            text-shadow: 0 0 8px #ff007f;
            transform: scale(1.2);
        }

        @media (max-width: 600px) {
            .flexi-creator-banner {
                padding: 15px;
                margin-bottom: 20px;
                gap: 12px;
            }
            .flexi-creator-title {
                font-size: 17px;
            }
            .flexi-creator-desc {
                font-size: 12px;
            }
            .flexi-creator-btn {
                font-size: 13px;
                padding: 8px 16px;
            }
        }

    /* Burger Menu Styles */
        .burger-btn {
            position: fixed;
            top: 59px;
            right: 20px;
            background-color: var(--primary-yellow);
            color: #000;
            border: 3px solid #000;
            padding: 8px 12px;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 3px 3px 0 #000;
            z-index: 1000;
        }
        .burger-btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 5px 5px 0 #000;
        }
        @media (max-width: 600px) {
            .burger-btn { top: 43px; right: 10px; }
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .mobile-menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }
        .mobile-menu-content {
            overflow-y: auto;
            background-color: var(--bg-color, #f8f8f8);
            border-left: 4px solid var(--primary-pink, #ff33aa);
            padding: 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 80%;
            max-width: 350px;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        }
        .mobile-menu-header {
            padding: 40px 40px 10px 40px;
            position: relative;
            flex-shrink: 0;
        }
        .mobile-menu-links {
            padding: 20px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: safe center;
            gap: 20px;
            flex: 1 1 auto;
        }
        .mobile-menu-header {
            padding: 40px 40px 10px 40px;
            position: relative;
            flex-shrink: 0;
        }
        .mobile-menu-links {
            padding: 20px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: safe center;
            gap: 20px;
            flex: 1 1 auto;
        }
        .mobile-menu-header {
            padding: 40px 40px 10px 40px;
            position: relative;
            flex-shrink: 0;
        }
        .mobile-menu-links {
            padding: 20px 40px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            justify-content: safe center;
            gap: 20px;
            flex: 1 1 auto;
        }
        .mobile-menu-overlay.open .mobile-menu-content {
            transform: translateX(0);
        }
        .mobile-menu-content a {
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            color: #000;
            text-decoration: none;
            padding: 15px;
            border: 3px solid #000;
            background-color: #fff;
            box-shadow: 4px 4px 0 #000;
            transition: all 0.1s;
        }
        .mobile-menu-content a:hover {
            background-color: var(--primary-pink, #ff33aa);
            color: #fff;
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 #000;
        }
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #000;
            z-index: 10;
        }

        /* Floating Controls Container */
        .floating-controls {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 199;
        }

        /* Common styles for all floating buttons */
        .whatsapp-float, .social-float, .back-to-top, .scroll-to-bottom {
            width: 55px;
            height: 55px;
            position: relative;
            color: #fff;
            border: 3px solid #000;
            box-shadow: 4px 4px 0 #000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-decoration: none;
            box-sizing: border-box;
            padding: 0;
            margin: 0;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        .whatsapp-float:focus, .social-float:focus, .back-to-top:focus, .scroll-to-bottom:focus {
            outline: none;
        }

        @media (hover: hover) {
            .whatsapp-float:hover, .social-float:hover, .back-to-top:hover, .scroll-to-bottom:hover {
                transform: translate(-2px, -2px);
                box-shadow: 5px 5px 0 #000;
            }
        }

        .whatsapp-float:active, .social-float:active, .back-to-top:active, .scroll-to-bottom:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 #000;
        }

        .whatsapp-float svg, .social-float svg, .back-to-top svg, .scroll-to-bottom svg {
            width: 26px;
            height: 26px;
            fill: #fff;
        }

        /* Back to top specifics */
        .back-to-top {
            background-color: var(--primary-pink);
            display: none;
            z-index: 200;
        }
        
        .back-to-top.visible {
            display: flex;
        }

        .scroll-to-bottom {
            background-color: var(--primary-yellow);
            display: none;
            z-index: 200;
        }
        
        .scroll-to-bottom.visible {
            display: flex;
        }

        .scroll-to-bottom svg {
            fill: #000 !important;
        }

        .table-scroll-hint {
            display: none;
            font-family: 'Press Start 2P', monospace;
            font-size: 12px;
            color: var(--primary-pink);
            text-align: right;
            margin-bottom: 5px;
            animation: pulse-hint 1.5s infinite;
        }
        @keyframes pulse-hint {
            0%, 100% { opacity: 0.7; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(3px); }
        }

        @media (max-width: 600px) {
            .table-scroll-hint {
                display: block;
            }
            .retro-table th, .retro-table td,
            .guide-panel table th, .guide-panel table td {
                min-width: 140px;
            }
            .retro-table th:first-child, .retro-table td:first-child,
            .guide-panel table th:first-child, .guide-panel table td:first-child {
                min-width: 100px;
            }
        }
    
        /* Mobile Layout Optimizations for more text space */
        @media (max-width: 600px) {
            .guide-panel {
                padding: 15px !important;
                border-width: 3px !important;
                margin: 20px 10px !important;
                border-radius: 8px !important;
            }
            .guide-panel h3 { font-size: 14px !important; }
            .guide-panel h4 { font-size: 12px !important; }
            .article-card-box {
                padding: 0 !important;
                border: none !important;
                box-shadow: none !important;
                margin-bottom: 20px !important;
            }
            .infill-card {
                border: none !important;
                box-shadow: none !important;
            }
            .arcade-cabinet {
                padding: 10px !important;
                border-width: 4px !important;
                border-radius: 6px !important;
                box-shadow: 6px 6px 0 rgba(0,0,0,0.2) !important;
                margin-bottom: 30px !important;
            }
            .arcade-screen {
                padding: 15px !important;
                border-width: 3px !important;
                border-radius: 6px !important;
            }
            .pro-tip {
                padding: 12px !important;
                padding-top: 35px !important;
                border-width: 2px !important;
                box-shadow: 3px 3px 0 #000 !important;
            }
            ul {
                padding-left: 20px !important;
            }
        }

/* Stufe 2: Suchtreffer als Link (statt div) – Flex-Layout der Basisregel beibehalten
   (NICHT block!), damit der Titel links und das gelbe Themen-Badge mit Abstand rechts sitzt. */
a.search-result-item { text-decoration: none; color: inherit; }
.search-result-item { gap: 14px; }
.search-result-title { min-width: 0; }
.search-result-cabinet { flex: 0 0 auto; white-space: nowrap; line-height: 1.4; }
