@charset "UTF-8";
/* Verhindert Springen und sichert die volle Höhe */
        html, body {
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Der Hauptbereich füllt den Raum zwischen Header (falls vorhanden) und Footer */
        .main-wrapper {
            flex: 1 0 auto; 
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px 0;
        }

        .main-container {
            display: flex;
            flex-direction: row;
            width: 95%;
            max-width: 1200px;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            z-index: 10;
        }

        .hero-section {
            flex: 0 0 400px;
            text-align: left;
        }

        h1 { font-size: 3.5rem; margin: 0; line-height: 1.1; font-weight: 700; }
        .subline { color: var(--text-gray); margin: 15px 0 30px 0; font-size: 1.1rem; }

        .progress-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
        }

        #status-text {
            color: var(--accent);
            font-size: 0.8rem;
            font-family: monospace;
            --text-transform: uppercase;
        }

        .bar-bg { height: 4px; background: #21262d; border-radius: 10px; overflow: hidden; margin-top: 10px; }
        .bar-fill {
            height: 100%;
            background: var(--accent);
            width: 0%;
            animation: progressRun 10s linear forwards;
        }

        @keyframes progressRun { to { width: 100%; } }

        .domain-viewport {
            flex: 1;
            position: relative;
            height: 450px; 
            overflow: hidden;
            cursor: grab;
            display: flex;
            align-items: center;
        }

        .domain-slider {
            display: flex;
            width: 200%; 
            transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
            will-change: transform;
        }

        .domain-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            width: 50%;
            padding: 0 10px;
            box-sizing: border-box;
        }

        .domain-link {
            text-decoration: none;
            opacity: 0;
            transform: translateX(30px);
            animation: itemAppear 0.5s forwards;
        }

        .domain-item {
            background: var(--card-bg);
            border-left: 3px solid var(--success);
            padding: 12px 15px;
            font-family: monospace;
            font-size: 0.85rem;
            color: #d1d5db;
            border-radius: 4px;
            transition: border-color 0.4s ease;
        }

        /* Footer am unteren Rand fixiert */
        footer {
            flex-shrink: 0; /* Verhindert, dass der Footer gequetscht wird */
            width: 100%;
            padding: 25px 0;
            background: var(--bg-dark);
            border-top: 0px solid rgba(255, 255, 255, 0.05);
            font-size: 0.75rem;
            color: var(--text-gray);
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright-text {
            opacity: 0.6;
            letter-spacing: 0.5px;
        }

        @keyframes itemAppear { to { opacity: 1; transform: translateX(0); } }

        @media (max-width: 950px) {
            .main-container {
                flex-direction: column;
                text-align: center;
                margin-top: 20px;
                gap: 30px;
            }
            .hero-section { flex: none; width: 100%; }
            .domain-viewport { width: 100%; height: auto; min-height: 480px; }
            .domain-grid { grid-template-columns: 1fr; }
            h1 { font-size: 2.5rem; }
        }