/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Dark Minimal Background */
body {
    background-color: #0b0f19; /* Deep luxury dark background */
    color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow: hidden;
}

/* Main Container with smooth fade-in */
.container {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Brand Name in Deep Royal Blue */
.brand {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1d4ed8; /* Premium Deep Blue */
    margin-bottom: 5px;
    letter-spacing: -1px;
    text-transform: capitalize;
}

/* Soon Text */
.status {
    font-size: 1.8rem;
    font-weight: 600;
    color: #60a5fa; /* Glowing soft blue */
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

/* Modern Subtext */
.subtext {
    font-size: 1rem;
    color: #6b7280; /* Subtle grey */
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Minimal Modern Loading Bar */
.loader {
    width: 80px;
    height: 3px;
    background-color: #1e293b;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.loader .bar {
    width: 40%;
    height: 100%;
    background-color: #1d4ed8; /* Deep Blue Loader */
    border-radius: 10px;
    animation: loading 2s infinite linear;
}

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

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

/* Responsive adjustments */
@media (max-width: 480px) {
    .brand { font-size: 2.2rem; }
    .status { font-size: 1.4rem; }
}