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

body {
    background-color: #0e222c;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Verdana;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader.fade-out {
    opacity: 0;
}

#lottie-animation {
    width: 80vw;
    max-width: 600px;
    aspect-ratio: 1920 / 1080;
}

.container.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
}

.logo {
    margin-bottom: 60px;
}

.logo-img {
    width: 450px;
    height: auto;
}

.tagline {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 26px;
    font-weight: 200;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.4;
}

.coming-soon {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ff6233;
    letter-spacing: 8px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    #lottie-animation {
        width: 90vw;
        max-width: 400px;
    }

    .logo-img {
        width: 200px;
    }

    .tagline {
        font-size: 22px;
        padding: 0 20px;
    }

    .coming-soon {
        font-size: 12px;
        letter-spacing: 6px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 160px;
    }

    .tagline {
        font-size: 18px;
    }
}
