  :root {
            --deepspace-black: #020210;
            --stellar-blue: #0b0b2b;
            --cosmic-silver: #b0b8d1;
            --plasma-gold: #f0b85e;
            --aurora-teal: #3dd6c8;
            --nebula-violet: #8b5cf6;
            --constellation-white: #f0f2fc;
            --horizon-gray: #7f8aa2;
            --card-radial: rgba(18, 20, 52, 0.7);
            --border-glow: rgba(240, 184, 94, 0.4);
            --button-gradient: linear-gradient(145deg, #f0b85e 0%, #d4952b 100%);
            --teal-gradient: linear-gradient(145deg, #3dd6c8 0%, #1f8a7a 100%);
            --danger-glow: #ff5e7a;
            --success-emerald: #2ee6a8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--deepspace-black);
            color: var(--constellation-white);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow-x: hidden;
        }

        .stellar-canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        canvas {
            display: block;
            width: 100%;
            height: 100%;
        }

        .cosmic-ui-wrapper {
            position: relative;
            z-index: 10;
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
        }

        .glassmorphism-panel {
            background: rgba(8, 12, 38, 0.55);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(240, 184, 94, 0.25);
            border-radius: 2.5rem;
            padding: 2.2rem 2rem;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(139, 92, 246, 0.3);
            margin-bottom: 2rem;
        }

        .brand-headline {
            font-size: 2.9rem;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(to right, #f7d774, #f0b85e, #d4952b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
            margin-bottom: 0.6rem;
            line-height: 1.15;
        }

        .german-precision-sub {
            font-size: 1.4rem;
            text-align: center;
            font-weight: 400;
            color: var(--cosmic-silver);
            margin-bottom: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .live-stat-badge {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 2.5rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.7rem 1.8rem;
            border-radius: 100px;
            border: 1px solid rgba(240, 184, 94, 0.5);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            backdrop-filter: blur(10px);
        }

        .live-pulse {
            width: 12px;
            height: 12px;
            background: #2ee6a8;
            border-radius: 50%;
            box-shadow: 0 0 15px #2ee6a8;
            animation: pulse-glow 1.8s infinite;
        }

        @keyframes pulse-glow {
            0% { opacity: 0.7; transform: scale(0.9); }
            50% { opacity: 1; transform: scale(1.3); background: #3dd6c8; }
            100% { opacity: 0.7; transform: scale(0.9); }
        }

        .visitor-count {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--plasma-gold);
        }

        .german-input-cluster {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 2rem 0 2.5rem;
        }

        .input-field-cosmic {
            width: 100%;
            max-width: 460px;
            padding: 1.15rem 1.6rem;
            background: rgba(12, 14, 35, 0.8);
            border: 1.5px solid rgba(240, 184, 94, 0.45);
            border-radius: 3rem;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 1.2rem;
            backdrop-filter: blur(8px);
            transition: all 0.25s ease;
            outline: none;
            letter-spacing: 0.3px;
        }

        .input-field-cosmic:focus {
            border-color: var(--plasma-gold);
            box-shadow: 0 0 25px rgba(240, 184, 94, 0.5);
            background: rgba(20, 22, 45, 0.9);
        }

        .input-field-cosmic::placeholder {
            color: #8b92a8;
            font-weight: 400;
        }

        .action-button-gold {
            background: var(--button-gradient);
            border: none;
            padding: 1.1rem 2.4rem;
            border-radius: 3rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0a0a15;
            letter-spacing: 0.7px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            box-shadow: 0 10px 25px rgba(240, 184, 94, 0.5);
            transition: all 0.3s;
            text-transform: uppercase;
            border: 1px solid rgba(255, 215, 120, 0.8);
        }

        .action-button-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 35px rgba(240, 184, 94, 0.7);
            background: linear-gradient(145deg, #ffcc6b, #e5a030);
        }

        .stats-constellation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.6rem;
            margin: 2.8rem 0 2rem;
        }

        .stat-card-nebula {
            background: var(--card-radial);
            backdrop-filter: blur(12px);
            border-radius: 2rem;
            padding: 1.6rem 1rem;
            text-align: center;
            border: 1px solid rgba(139, 92, 246, 0.3);
            transition: 0.25s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }

        .stat-card-nebula:hover {
            border-color: var(--plasma-gold);
            transform: scale(1.03);
        }

        .stat-icon-astro {
            font-size: 2.3rem;
            margin-bottom: 0.7rem;
        }

        .stat-figure {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--plasma-gold);
            line-height: 1.2;
        }

        .stat-descriptor {
            color: var(--cosmic-silver);
            font-size: 0.95rem;
            letter-spacing: 0.4px;
        }

        .german-index-heading {
            font-size: 1.5rem;
            text-align: center;
            margin: 2.2rem 0 1.8rem;
            color: var(--aurora-teal);
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .dax-market-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
            gap: 1.5rem;
        }

        .stock-card-german {
            background: rgba(18, 20, 52, 0.65);
            backdrop-filter: blur(10px);
            border-radius: 1.8rem;
            padding: 1.4rem 1rem;
            border: 1px solid rgba(240, 184, 94, 0.3);
            transition: 0.2s;
        }

        .stock-card-german:hover {
            border-color: var(--aurora-teal);
            background: rgba(25, 28, 65, 0.7);
        }

        .ticker-symbol {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--plasma-gold);
        }

        .company-name {
            font-size: 0.8rem;
            color: var(--horizon-gray);
            margin: 0.3rem 0 0.8rem;
            height: 2.5rem;
        }

        .price-value {
            font-size: 1.4rem;
            font-weight: 700;
        }

        .change-positive {
            color: var(--success-emerald);
            font-weight: 600;
        }

        .change-negative {
            color: var(--danger-glow);
            font-weight: 600;
        }

        .footer-stellar {
            background: rgba(4, 6, 24, 0.7);
            backdrop-filter: blur(15px);
            border-top: 1px solid rgba(240, 184, 94, 0.3);
            padding: 1.8rem;
            margin-top: auto;
        }

        .footer-flex {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: var(--cosmic-silver);
        }

        .legal-links span {
            margin-right: 2rem;
            cursor: pointer;
            transition: 0.2s;
            font-weight: 500;
        }

        .legal-links span:hover {
            color: var(--plasma-gold);
            text-decoration: underline;
        }

        .contact-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            visibility: hidden;
            opacity: 0;
            transition: 0.25s ease;
        }

        .contact-modal-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        .contact-dialog {
            background: rgba(10, 12, 38, 0.9);
            border: 2px solid var(--plasma-gold);
            border-radius: 2.5rem;
            padding: 2.5rem;
            max-width: 420px;
            width: 90%;
            text-align: center;
            backdrop-filter: blur(25px);
            box-shadow: 0 0 50px rgba(240,184,94,0.5);
        }

        .whatsapp-connect-btn {
            background: var(--teal-gradient);
            border: none;
            padding: 1rem 2rem;
            border-radius: 3rem;
            font-weight: 700;
            font-size: 1.2rem;
            color: #000;
            width: 100%;
            cursor: pointer;
            margin-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        @media (max-width: 650px) {
            .brand-headline {
                font-size: 2rem;
            }
            .glassmorphism-panel {
                padding: 1.8rem 1rem;
            }
        }