:root {
    --primary-color: #007AFF;
    --secondary-color: #5E5CE6;
    --bg-color: #050505;
    --text-color: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --accent-glow: rgba(0, 122, 255, 0.3);
}

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

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

/* Background Effects */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    transition: background 0.3s ease;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

/* Container & Content */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.logo-wrapper {
    margin-bottom: 10px;
    animation: fadeInDown 1.2s ease-out;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.2em;
    background: linear-gradient(to bottom, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--accent-glow);
    position: relative;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--primary-color);
    animation: scaleWidth 1.5s ease-in-out infinite alternate;
}

.status {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    animation: pulse 2s infinite;
}

.description {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

/* Loader */
.loader-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 40px;
    border-radius: 1px;
    overflow: hidden;
}

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

/* Socials */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 1.5s ease-out 0.8s both;
}

.social-icon {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.social-icon:hover {
    color: var(--text-color);
    border-bottom: 1px solid var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    position: absolute;
    bottom: 30px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleWidth {
    from { width: 40px; }
    to { width: 80px; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bg-grid {
        background-size: 30px 30px;
    }
    
    .status {
        letter-spacing: 0.3em;
    }
    
    .social-links {
        gap: 15px;
    }
}
