:root {
    --bg-dark: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --accent-color: #ff0000;
    /* Vibrant Orange-Red for sporty look */
    --accent-glow: rgba(255, 69, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Background Placeholder with Gradient */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('assets/background.webp');
    /* Will fallback to gradient if image missing */
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoomDrift 20s infinite alternate ease-in-out;
}

/* Page Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    background: #0f0f0f;
    /* Fallback */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes zoomDrift {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 10;
}

/* Typography & Animations */
.logo {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.tagline {
    font-size: 1.1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-weight: 600;
}

.coming-soon-text {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #888);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Form Styles */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.notify-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notify-form input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.cta-button {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    background: var(--accent-color);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--accent-glow);
    background: #ff571a;
}

.form-message {
    height: 20px;
    font-size: 0.9rem;
    margin-top: -2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--accent-glow);
    border-color: var(--accent-color);
}

/* Footer */
footer {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.developer-credit {
    margin-top: 5px;
    font-size: 0.8rem;
}

.anim-link {
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.anim-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.anim-link:hover {
    color: var(--accent-color);
}

.anim-link:hover::after {
    width: 100%;
}

/* Animation Utilities */
.fade-in-down {
    animation: fadeInDown 1s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .coming-soon-text {
        font-size: 2.5rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form input {
        width: 100%;
    }

    .cta-button {
        width: 100%;
    }
}