:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #570a0a;
    /* Sporty Cyan */
    --accent-glow: rgba(0, 242, 255, 0.4);
    --secondary-text: #a0a0a0;
    --font-main: 'Inter', sans-serif;
    --font-heading: '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-main);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 1.6;
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1;
}

.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--accent-glow);
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
    animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

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

.container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

/* Content Animations */
.content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.loaded .content {
    opacity: 1;
    transform: translateY(0);
}

/* Logo */
.logo-wrapper {
    margin-bottom: 3rem;
}

#main-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: float 6s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Typography */
.sub-headline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.4rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    font-weight: 300;
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.accent {
    color: #9f9f9f;
    text-shadow: 0 0 30px rgb(199 199 199 / 40%);
}

.description {
    font-size: 1.1rem;
    color: var(--secondary-text);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

/* Status & Progress */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    box-shadow: 0 0 10px var(--accent-color);
}

.pulse::after {
    width: 8px;
    height: 8px;
    background: #951919;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    box-shadow: 0 0 10px #ff0000;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.progress-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 4rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--accent-color);
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Footer */
.footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 600px) {
    .headline {
        font-size: 2.5rem;
    }

    .sub-headline {
        letter-spacing: 0.2rem;
    }

    #main-logo {
        max-width: 200px;
    }
}