:root {
    --bg-color: #060a0d;
    /* Very dark blueish-black */
    --text-primary: #ffffff;
    --text-secondary: #748393;
    --text-footer: #4c5a66;
    --accent-color: #04bfa0;
    /* Teal/Green from the logo and links */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Canvas */
#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    /* Subtle constellation effect */
    pointer-events: none;
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    /* Above canvas */
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    height: 120px;
    /* Adjust based on actual logo size */
    width: auto;
    display: inline-block;
}

/* Typography */
.brand-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    animation: fadeIn 1.2s ease-out;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 60px;
    animation: fadeIn 1.4s ease-out;
}

.status-message {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    animation: fadeIn 1.6s ease-out;
}

.support-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeIn 1.8s ease-out;
}

/* Links */
.accent-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

.accent-link:hover {
    color: #06e0bc;
    text-shadow: 0 0 8px rgba(4, 191, 160, 0.4);
}

/* Footer */
.footer {
    padding: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-footer);
    position: relative;
    z-index: 1;
    width: 100%;
    animation: fadeIn 2s ease-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Overrides */
@media (max-width: 600px) {
    .brand-title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .status-message {
        font-size: 1.1rem;
    }

    .support-text {
        font-size: 0.85rem;
    }
}