:root {
    --bg-color: #050505;
    --acc-color: #00f2ff;
    --acc-color-glow: rgba(0, 242, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #0a0a0a 0%, #050505 100%);
}

.glow-orb {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--acc-color);
    top: -10%;
    left: -10%;
    animation-duration: 25s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #7000ff;
    bottom: 10%;
    right: 5%;
    animation-duration: 18s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: #0066ff;
    top: 40%;
    left: 50%;
    animation-duration: 22s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 100px) scale(1.2); }
}

/* Container & Card */
.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 10;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo-area {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.logo-accent {
    color: var(--acc-color);
    text-shadow: 0 0 20px var(--acc-color-glow);
}

.title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--acc-color);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--acc-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--acc-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.footer {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .glass-card {
        padding: 3rem 1.5rem;
    }
}

