:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-color: #3b82f6;
    /* A nice blue, can be adjusted to brand */
    --accent-glow: rgba(59, 130, 246, 0.5);
    --secondary-text: #94a3b8;
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Subtle background glowing orb effect */
.container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.brand-name {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.headline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.subtext {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Loader */
.loader-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-glow);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.status {
    font-size: 0.875rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-active {
    color: #10b981;
    /* Green */
    font-weight: 600;
}

.footer {
    position: absolute;
    bottom: -50px;
    /* Push it down a bit */
    left: 0;
    right: 0;
    font-size: 0.75rem;
    color: #475569;
}

/* Responsiveness */
@media (max-width: 480px) {
    .brand-name {
        font-size: 3rem;
    }

    .headline {
        font-size: 1.25rem;
    }
}