:root {
    --primary-cyan: #00ffff;
    --primary-magenta: #ff00ff;
    --dark-bg: #0a0e27;
    --card-bg: #1a1f3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --footer-bg: #0f1229;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a0033 100%);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ==================== INDEX.HTML STYLES ==================== */

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.logo-section {
    margin-bottom: 60px;
    animation: float-in 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
    border-radius: 20px;
}

.content {
    max-width: 600px;
}

.title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.coming-soon {
    font-size: 2rem;
    color: var(--primary-cyan);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Animations */
@keyframes pulse-slide {
    0% {
        opacity: 0.6;
        transform: translateX(-20px);
    }
    50% {
        opacity: 1;
        transform: translateX(20px);
    }
    100% {
        opacity: 0.6;
        transform: translateX(-20px);
    }
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-pulse-slide {
    animation: pulse-slide 3s ease-in-out infinite;
}

.animate-pulse-slide-delayed {
    animation: pulse-slide 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* ==================== IMPRESSUM STYLES ==================== */

.impressum-container {
    flex: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.back-link {
    display: inline-block;
    color: var(--primary-cyan);
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-link:hover {
    color: var(--primary-magenta);
    transform: translateX(-5px);
}

.impressum-content {
    background: rgba(var(--card-bg), 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.impressum-content h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.impressum-section {
    margin-bottom: 40px;
    text-align: left;
}

.impressum-section h2 {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 15px;
    margin-top: 20px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    padding-bottom: 10px;
}

.impressum-section h2:first-child {
    margin-top: 0;
}

.impressum-section h3 {
    font-size: 1.1rem;
    color: var(--primary-magenta);
    margin-top: 15px;
    margin-bottom: 10px;
}

.impressum-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.impressum-section a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section a:hover {
    color: var(--primary-magenta);
    text-decoration: underline;
}

/* ==================== FOOTER STYLES ==================== */

.footer {
    background: linear-gradient(180deg, rgba(15, 18, 41, 0.8) 0%, rgba(10, 14, 39, 0.95) 100%);
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    padding: 20px;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0, 255, 255, 0.05);
}

.footer-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--primary-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    transform: scale(1.1);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 150px;
    }

    .impressum-content {
        padding: 25px;
    }

    .impressum-content h1 {
        font-size: 2rem;
    }

    .impressum-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 1.2rem;
    }

    .logo {
        max-width: 120px;
    }

    .impressum-content {
        padding: 15px;
    }

    .impressum-content h1 {
        font-size: 1.5rem;
    }

    .impressum-section h2 {
        font-size: 1rem;
    }

    .impressum-section p {
        font-size: 0.85rem;
    }
}
