* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* BODY BACKGROUND */
body {
    min-height: 100vh;
    background: url("../image/bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
}

/* BLACK OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

/* CONTENT */
.coming-container {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;

    padding: 20px;
}

/* LOGO */
.logo {
    font-size: 70px;
    letter-spacing: 6px;
    font-weight: 700;
}

/* TAGLINE */
.tagline {
    font-size: 20px;
    opacity: 0.85;
}

/* COUNTDOWN */
.countdown {
    display: flex;
    gap: 35px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown div {
    text-align: center;
}

.countdown span {
    font-size: 42px;
    font-weight: 700;
    color: #00ffd5;
}

.countdown small {
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* CONTACT */
.contact {
    font-size: 18px;
}

.contact a {
    color: #00ffd5;
    text-decoration: none;
    font-weight: 600;
}

/* BUTTON */
.social a {
    margin-top: 25px;
    padding: 14px 40px;
    border-radius: 40px;
    background: linear-gradient(90deg,#ff00cc,#3333ff);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.social a:hover {
    transform: scale(1.1);
}

/* FOOTER */
.footer-links {
    margin-top: 35px;
    font-size: 14px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
    .logo {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .countdown span {
        font-size: 30px;
    }
}
