* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    height: 100vh;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;

    /* Bigger grid */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* MAIN CONTAINER */
.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

/* LOGO CIRCLE (BIGGER) */
.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #f4d35e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;

    box-shadow:
        0 0 20px rgba(244, 211, 94, 0.3),
        0 0 60px rgba(244, 211, 94, 0.15);
}

.logo-circle img {
    width: 75%;
}

/* BRAND LOGO (BIGGER) */
.brand img {
    width: 360px;
    max-width: 90%;
}

/* TAGLINE */
.tagline {
    margin-top: 18px;
    letter-spacing: 6px;
    font-size: 14px;
    color: #9a9a9a;
}

/* LOADER (LONGER) */
.loader {
    width: 140px;
    height: 4px;
    background: #ff5c35;
    margin: 40px auto;
    border-radius: 4px;
    animation: pulse 1.6s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scaleX(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(0.5);
        opacity: 0.5;
    }
}

/* COMING TEXT */
.coming {
    letter-spacing: 5px;
    font-size: 13px;
    color: #666;
}
