/* --- GRUNDEINSTELLUNGEN & FONTS --- */
:root {
    --neon-cyan: #0ff;
    --neon-blue: #00aaff;
    --neon-purple: #bd00ff;
    --bg-dark: #050508;
    --text-main: #e0ffff; /* Kein reines Weiß, leicht getönt */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Tieferer Hintergrund mit Verlauf für mehr "Raum" */
    background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-dark) 80%);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif; /* Lesbare Schrift für Fliesstext */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; /* Verhindert seitliches Scrollen durch Effekte */
}

/* --- VISUELLE CHAT-ELEMENTE IM HINTERGRUND --- */
.chat-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Hinter dem Hauptinhalt */
    pointer-events: none; /* Damit man sie nicht anklicken kann */
    overflow: hidden;
}

.bubble {
    position: absolute;
    padding: 15px 25px;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.7;
    /* Der Neon-Look für die Blasen */
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan), inset 0 0 10px rgba(0, 255, 255, 0.2);
    color: var(--neon-cyan);
    animation: float 6s ease-in-out infinite;
}

/* Positionierung der einzelnen Blasen */
.bubble-left { top: 25%; left: 15%; animation-delay: 0s; border-radius: 20px 20px 20px 0; }
.bubble-right { top: 40%; right: 15%; animation-delay: 2s; border-radius: 20px 20px 0 20px; color: var(--neon-purple); border-color: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); }
.bubble-center-back { top: 60%; left: 50%; transform: translateX(-50%); opacity: 0.3; font-size: 1.5rem; border: none; background: none; box-shadow: none; text-shadow: 0 0 10px var(--neon-blue); }


/* --- HAUPTBEREICH (HERO) --- */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1; /* Vordergrund */
    padding: 20px;
}

/* Das kleine Icon über dem Text */
.chat-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--text-main);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
    margin-bottom: 20px;
}

/* Die Hauptüberschrift */
.neon-brand {
    font-family: 'Orbitron', sans-serif; /* Futuristische Schrift */
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    color: var(--text-main);
    /* Intensiverer, mehrfarbigerer Schatten */
    text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 50px var(--neon-blue),
        0 0 100px var(--neon-purple);
}

/* Ein kleiner Flacker-Effekt auf einem Teil des Wortes */
.flicker { animation: flicker 3s infinite alternate; }

.tagline {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    color: #a0a0c0;
    margin: 30px 0 50px 0;
    line-height: 1.4;
}

/* --- CYBER-BUTTON --- */
.cyber-button {
    position: relative;
    display: inline-block;
    padding: 18px 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--bg-dark);
    background: var(--neon-cyan);
    border: none;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); /* Cyberpunk-Form */
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.cyber-button:hover {
    background: var(--neon-purple);
    color: white;
    box-shadow: 0 0 40px var(--neon-purple);
    transform: scale(1.05);
}


/* --- FOOTER --- */
footer {
    padding: 30px;
    text-align: center;
    background: rgba(10, 10, 15, 0.8); /* Leicht transparent */
    border-top: 1px solid #1a1a2e;
    z-index: 2;
    backdrop-filter: blur(5px);
}

footer nav a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    transition: color 0.3s, text-shadow 0.3s;
}

footer nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.copyright { color: #4a4e69; font-size: 0.8rem; margin-top: 15px; }


/* --- ANIMATIONEN --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
        0 0 5px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 50px var(--neon-blue),
        0 0 100px var(--neon-purple);
        opacity: 1;
    }
    20%, 24%, 55% {        
        text-shadow: none; opacity: 0.5;
    }
}

/* --- RESPONSIVE ANPASSUNGEN --- */
@media (max-width: 768px) {
    .neon-brand { font-size: 3rem; letter-spacing: 2px; }
    .tagline { font-size: 1.2rem; }
    /* Auf Handys die äußeren Blasen ausblenden, damit es nicht zu voll wird */
    .bubble-left, .bubble-right { display: none; } 
    .cyber-button { padding: 15px 30px; font-size: 1rem; width: 80%; }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -150px; /* Startet versteckt unter dem Bildschirmrand */
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    border-top: 2px solid var(--neon-purple);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Legt sich über alle anderen Elemente */
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -5px 20px rgba(189, 0, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    bottom: 0; /* Fährt sanft ins Bild */
}

.cookie-text {
    color: #c0c0d0;
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.95rem;
    max-width: 800px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.btn-accept:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.btn-decline {
    background: transparent;
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
}

.btn-decline:hover {
    background: var(--neon-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--neon-purple);
}