* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #0B0F0B 0%, #131A13 100%);
            color: #EDF2ED;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        :root {
            --primary: #A5D66B;
            --primary-dark: #8BC34A;
            --text-muted: #A8B5A8;
            --border-dim: #2A342A;
        }
        
        .error-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }
        
        /* ===== ECHTES TELEFON (vergrößert) ===== */
        .phone {
            position: relative;
            width: 400px;
            height: 780px;
            margin: 0 auto;
        }
        
        /* Äußerer Rahmen (Metallic) */
        .phone-frame {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #4A4A4A, #2A2A2A);
            border-radius: 65px;
            padding: 10px;
            box-shadow: 0 40px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
        }
        
        /* Grünes Gehäuse */
        .phone-body {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #1E2A1E, #0F150F);
            border-radius: 55px;
            padding: 15px;
            border: 3px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        /* Schwarzer Bildschirm */
        .phone-screen {
            width: 100%;
            height: 100%;
            background: #000000;
            border-radius: 48px;
            padding: 70px 25px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-y: auto;
            position: relative;
        }
        
        /* Notch (oben) - vergrößert */
        .notch {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 40px;
            background: #000;
            border-radius: 25px;
            z-index: 20;
        }
        
        /* Lautsprecher im Notch */
        .speaker {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 6px;
            background: #3A3A3A;
            border-radius: 3px;
        }
        
        /* Kamera im Notch */
        .camera {
            position: absolute;
            top: 12px;
            right: 25px;
            width: 14px;
            height: 14px;
            background: #1A3A6A;
            border-radius: 50%;
            box-shadow: 0 0 4px #3A6AAA;
        }
        
        /* ===== SEITENBUTTONS ===== */
        .side-buttons {
            position: absolute;
            right: -8px;
            top: 120px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 15;
        }
        
        .side-btn {
            width: 8px;
            height: 45px;
            background: #5A5A5A;
            border-radius: 4px;
        }
        
        .side-btn.long {
            height: 75px;
        }
        
        .side-buttons-left {
            position: absolute;
            left: -8px;
            top: 140px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 15;
        }
        
        .side-btn-left {
            width: 8px;
            height: 50px;
            background: #5A5A5A;
            border-radius: 4px;
        }
        
        /* ===== ECHTER AKKU mit horizontaler Lade-Animation ===== */
        /* ===== QUER-AKKU (horizontal, wie Powerbank) ===== */
        .battery-container {
            width: 100%;
            max-width: 320px;
            margin-bottom: 30px;
        }

        .battery-real {
            position: relative;
            width: 100%;
            height: 80px;
            background: #1A1A1A;
            border-radius: 12px;
            border: 3px solid var(--primary);
            overflow: hidden;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.3);
        }

        /* RECHTER POL (wie bei Powerbank) - das fehlende # */
        .battery-real::after {
            content: '';
            position: absolute;
            right: -15px;      /* Weiter nach rechts außen */
            top: 50%;
            transform: translateY(-50%);
            width: 12px;       /* Dicker */
            height: 35px;      /* Länger */
            background: var(--primary);
            border-radius: 0 4px 4px 0;
            box-shadow: 0 0 5px var(--primary);
            z-index: 10;       /* Damit er über allem liegt */
        }

        /* Batterie-Zellen (horizontal angeordnet) */
        .battery-cells {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            gap: 4px;
            padding: 8px;
            z-index: 1;
        }

        .cell {
            flex: 1;
            background: #0A0F0A;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        /* Lade-Balken VON LINKS NACH RECHTS */
        .battery-charging-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), #C8E6A0, var(--primary));
            border-radius: 10px;
            animation: chargingHorizontal 3s ease-in-out infinite;
            z-index: 2;
        }

        @keyframes chargingHorizontal {
            0% { width: 0%; }
            25% { width: 30%; }
            50% { width: 55%; }
            75% { width: 80%; }
            100% { width: 100%; }
        }

        /* Prozent-Anzeige */
        .battery-percent {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            font-weight: 800;
            color: white;
            text-shadow: 0 0 8px rgba(0,0,0,0.8);
            z-index: 3;
        }

        .battery-bolt {
            text-align: center;
            margin-top: 12px;
            font-size: 14px;
            color: var(--primary);
            animation: boltPulse 1.5s infinite;
        }

        @keyframes boltPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; text-shadow: 0 0 8px var(--primary); }
        }
        
        /* ===== LADE-PUNKTE (langsamere Animation) ===== */
        .charging-dots {
            display: flex;
            gap: 18px;
            justify-content: center;
            margin: 20px 0 35px;
        }
        
        .dot {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #2A2A2A;
        }
        
        .dot.active {
            background: var(--primary);
            box-shadow: 0 0 15px var(--primary);
        }
        
        /* ===== ERROR ANZEIGE (vergrößert) ===== */
        .error-code-display {
            font-size: 80px;
            font-weight: 800;
            color: var(--primary);
            font-family: monospace;
            letter-spacing: 8px;
            margin: 5px 0;
            text-shadow: 0 0 15px rgba(165, 214, 107, 0.4);
        }
        
        .error-title-display {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 18px;
            text-align: center;
        }
        
        .error-message-display {
            font-size: 14px;
            color: #8A9A8A;
            text-align: center;
            line-height: 1.5;
            max-width: 280px;
            margin: 0 auto;
        }
        
        /* ===== TOUCH BUTTONS (verbessert) ===== */
        .touch-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 35px;
            padding-top: 20px;
            border-top: 1px solid rgba(165, 214, 107, 0.15);
            flex-wrap: wrap;
        }
        
        .touch-btn {
            background: rgba(165, 214, 107, 0.1);
            border: 1px solid rgba(165, 214, 107, 0.3);
            color: var(--primary);
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 40px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .touch-btn:hover {
            background: var(--primary);
            color: #0B0F0B;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(165, 214, 107, 0.3);
        }
        
        /* Spezieller Kontakt-Button (hervorgehoben) */
        .touch-btn-contact {
            background: rgba(165, 214, 107, 0.2);
            border: 1px solid var(--primary);
            color: var(--primary);
            font-weight: 700;
            padding: 10px 24px;
            border-radius: 40px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .touch-btn-contact:hover {
            background: var(--primary);
            color: #0B0F0B;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(165, 214, 107, 0.4);
        }
        
        /* Home-Indikator */
        .home-indicator {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 5px;
            background: #5A5A5A;
            border-radius: 3px;
        }
        
        /* Hilfe im unteren Rahmen */
        .phone-help {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .phone-help a {
            color: var(--primary);
            text-decoration: none;
            padding: 0 4px;
        }
        
        .phone-help a:hover {
            text-decoration: underline;
        }
        
        /* Scrollbar ausblenden */
        .phone-screen::-webkit-scrollbar {
            display: none;
        }
        
        /* Responsive */
        @media (max-width: 500px) {
            .phone { transform: scale(0.85); }
        }
        
        @media (max-width: 420px) {
            .phone { transform: scale(0.75); }
        }