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

body {
    min-height: 100vh;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: url(./bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-parent {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

.logo-parent {
    display: flex;
    justify-content: center;
}

.logo-parent .logo {
    width: min(200px, 60vw);
    height: auto;
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .logo-parent .logo {
        width: min(150px, 60vw);
    }
}


.updown-animation {
    animation: updown-animation 2s ease-in-out infinite;
}

@keyframes updown-animation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.coming-soon-parent {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 125px;
    opacity: 0.30;
    font-family: "Lalezar", sans-serif;
    text-transform: uppercase;
    padding: 150px 0px;
    font-weight: bolder;
    white-space: nowrap;
}

@media screen and (max-width: 1536px) {
    .coming-soon-parent {
        font-size: 100px;
        padding: 100px 0px;
    }
}

@media screen and (max-width: 1024px) {
    .coming-soon-parent {
        font-size: 50px;
        padding: 50px 0px;
    }
}

@media screen and (max-width: 768px) {
    .coming-soon-parent {
        font-size: 40px;
        padding: 30px 0px;
    }
}

.coming-soon-text {
    position: relative;
    text-shadow: 
                0 0 10px #006eff5d,
                0 0 20px #006eff5d,
                0 0 30px #006eff5d,
                0 0 40px #006eff5d,
                0 0 50px #006eff5d;
}

.dot {
    display: none;
    transition: all 0.5s ease-in-out;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color:black;
    box-shadow: 0 0 10px #006eff5d,
                0 0 20px #006eff5d,
                0 0 30px #006eff5d,
                0 0 40px #006eff5d,
                0 0 50px #006eff5d;
}

@media screen and (max-width: 1536px) {
    .dot {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 768px) {
    .dot {
        width: 8px;
        height: 8px;
    }
}

.dot.show {
    display: inline-block;
}

.progress-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.progress-bar {
    display: flex;
    gap: 4px;
    padding: 2px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 250px;
}

.progress-anim {
    display: none;
}

.progress-anim.active {
    display: block;
}

.progress-segment {
    width: 12px;
    height: 18px;
    background: #ffffff;
    border-radius: 3px;
    transition: background 0.3s ease;
}