:root {
    --bg-color: #d8ecfd;
    --text-color: #050510;
    --accent-color: #0077ff;
    /* Darker blue for better contrast on light bg */
    --secondary-accent: #7000ff;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-accent);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
    text-align: center;
}

/* Header */
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 119, 255, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.5));
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 119, 255, 0.4);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.status-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 119, 255, 0.6);
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 12px #ffffff;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Content */
.title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.description {
    font-size: 1.125rem;
    color: rgba(5, 5, 16, 0.7);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}


/* Footer */
.footer {
    margin-top: 4rem;
    border-top: 1px solid rgba(5, 5, 16, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(5, 5, 16, 0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.social-links span {
    font-weight: 700;
    /* Bold for "Kontakt:" */
    color: var(--text-color);
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
    /* Normal for phone/email */
}

.social-link:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .orb-1,
    .orb-2 {
        width: 200px;
        height: 200px;
    }
}