:root {
    --bg-color: #120000;
    --text-primary: #ffffff;
    --accent-1: #ff0000;
    --accent-2: #cc0000;
    --accent-light: #ff3333;
    --glass-bg: rgba(255, 255, 255, 0.03);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    background-image: radial-gradient(circle at center, #2a0000 0%, var(--bg-color) 70%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.5;
    animation: drift 15s infinite alternate ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background-color: var(--accent-1);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background-color: var(--accent-2);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.container {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out forwards;
}

.logo-img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255,0,0,0.4));
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.coming-soon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 10px;
    color: var(--text-primary);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.loading-bar {
    width: 400px;
    max-width: 90vw;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-light));
    border-radius: 2px;
    animation: loading 2s infinite ease-in-out alternate;
    box-shadow: 0 0 10px var(--accent-1);
}

.contact-section {
    margin-top: 60px;
    opacity: 0.9;
}

.contact-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    border: 2px solid var(--accent-1);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: var(--accent-1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    transform: translateY(-2px);
}

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

@keyframes loading {
    0% { width: 10%; transform: translateX(0); }
    100% { width: 40%; transform: translateX(250px); }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .logo-img {
        max-width: 200px;
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .coming-soon-text {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }

    .loading-bar {
        width: 300px;
    }

    .contact-section {
        margin-top: 40px;
    }

    .contact-button {
        padding: 10px 24px;
        font-size: 1rem;
    }
    
    .orb-1 {
        width: 250px;
        height: 250px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 160px;
    }
    
    .logo-text {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .coming-soon-text {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }

    .loading-bar {
        width: 240px;
    }
    
    @keyframes loading {
        0% { width: 10%; transform: translateX(0); }
        100% { width: 40%; transform: translateX(144px); } /* 240px - 96px (40%) = 144px */
    }

    .orb-1 {
        width: 200px;
        height: 200px;
    }

    .orb-2 {
        width: 150px;
        height: 150px;
    }
}
