:root {
    --primary: #00f2ff;
    --bg: #030712;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

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

.logo {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    font-weight: 900;
    margin-bottom: 3rem;
    opacity: 0.6;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--primary);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
    animation: pulse 2s infinite;
}

.title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.title span {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: var(--glass);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: loading 3s ease-in-out infinite;
}

.contact-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

.contact-hint a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

/* Background Effects */
.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    border-radius: 50%;
}

.glow-1 { top: -10%; right: -10%; animation: float 10s infinite; }
.glow-2 { bottom: -10%; left: -10%; animation: float 12s reverse infinite; }

@keyframes pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; box-shadow: 0 0 30px rgba(0, 242, 255, 0.4); }
    100% { opacity: 0.8; }
}

@keyframes loading {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 100%; transform: translateX(100%); }
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
}
