:root {
    --primary-color: #1a4a83;
    /* Based on Logo Dark Blue */
    --accent-color: #42bfae;
    /* Based on Logo Cyan/Nodes */
    --text-color: #2c3e50;
    --bg-color: #f2f2f2;
    /* Matches Logo Background */
    --transition-speed: 0.8s;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.logo {
    max-width: 320px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #5d6d7e;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

footer {
    margin-top: 4rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #bdc3c7;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(66, 191, 174, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(66, 191, 174, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(66, 191, 174, 0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInAnimation var(--transition-speed) ease-out forwards;
}

.fade-in-delayed {
    opacity: 0;
    animation: fadeInAnimation var(--transition-speed) ease-out 0.4s forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 250px;
    }
}