:root {
    --primary-color: #007bff;
    --secondary-color: #6610f2;
    --background-dark: #0f172a;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --accent: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 2rem;
}

.logo {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
}

.dot {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-weight: 300;
}

.status-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 4rem;
    border-radius: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.status-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.status-box p {
    color: var(--text-dim);
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--text-dim);
    opacity: 0.6;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
}

.cloud-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    animation: float 20s infinite alternate;
}

.cloud-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(102, 16, 242, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: float 15s infinite alternate-reverse;
}

.cloud-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    animation: float 25s infinite alternate;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}

@media (max-width: 768px) {
    .logo { font-size: 3rem; }
    .tagline { font-size: 1.2rem; }
    .status-box { padding: 1.5rem 2rem; }
}
