:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #333333;
    --font-primary: '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-primary);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

/* Hero & Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    /* Adjust based on logo actual size preference */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    margin-bottom: 4rem;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #666);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
}

/* Content */
.content {
    margin-bottom: 4rem;
}

.status-msg {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
    opacity: 0;
    animation: slideUp 1s ease-out 1s forwards;
}

.sub-msg {
    font-size: 1.2rem;
    font-weight: 300;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    opacity: 0;
    animation: slideUp 1s ease-out 1.2s forwards;
}

/* Loader Line Animation */
.loader-line {
    width: 0;
    height: 2px;
    background-color: #fff;
    margin: 2rem auto;
    animation: expandLine 1.5s ease-out 1.5s forwards;
}

/* Footer */
.footer {
    font-size: 0.8rem;
    color: #444;
    position: absolute;
    bottom: 2rem;
    width: 100%;
    left: 0;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
        letter-spacing: 0.2rem;
    }

    .status-msg {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 150px;
    }
}