/* Coming Soon Page Styles */
:root {
    --cs-bg: #000000;
    --cs-text-primary: #ffffff;
    --cs-text-secondary: rgba(255, 255, 255, 0.7);
    --cs-glow: rgba(255, 255, 255, 0.05);
}

#coming-soon-root {
    position: fixed;
    inset: 0;
    background-color: var(--cs-bg) !important;
    color: var(--cs-text-primary) !important;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    padding: 40px 20px;
}

#coming-soon-root::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, var(--cs-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.cs-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cs-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 60px;
}

.cs-message {
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cs-text-secondary) !important;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

.cs-message strong {
    color: var(--cs-text-primary);
    font-weight: 500;
}

.cs-status {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.cs-contact {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.cs-contact a {
    color: var(--cs-text-primary) !important;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cs-contact a:hover {
    opacity: 0.7;
}

/* Base resets for home */
.page-home {
    background-color: var(--cs-bg) !important;
    overflow: hidden !important;
}

@media (max-width: 600px) {
    .cs-message {
        font-size: 1rem;
        padding: 0 15px;
    }
    .cs-logo {
        max-width: 160px;
    }
}
