/* ===========================
   Reset
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* body {
    background: #0f172a;
    color: #fff;
} */

.coming-soon {
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    color: #fff;
}


/* ===========================
   Coming Soon Section
=========================== */

.coming-soon {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    padding: 70px 20px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    text-align: center;
}


/* ===========================
   Icon
=========================== */

.icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff18;
    border: 2px solid #38bdf8;
    backdrop-filter: blur(8px);
}

.icon i {
    font-size: 42px;
    color: #38bdf8;
}


/* ===========================
   Heading
=========================== */

.content h3 {
    color: #38bdf8;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-size: 20px;
}

.content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content p {
    color: #d8d8d8;
    line-height: 30px;
    font-size: 18px;
}


/* ===========================
   Countdown
=========================== */

.countdown {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-box {
    width: 120px;
    height: 120px;
    background: #ffffff10;
    border: 1px solid #38bdf8;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: .3s;
}

.time-box:hover {
    transform: translateY(-6px);
}

.time-box span {
    font-size: 40px;
    font-weight: bold;
    color: #38bdf8;
}

.time-box small {
    margin-top: 8px;
    color: #fff;
    font-size: 15px;
}


/* ===========================
   Progress
=========================== */

.progress {
    width: 100%;
    height: 10px;
    background: #ffffff20;
    border-radius: 30px;
    margin: 45px auto 25px;
    overflow: hidden;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #00e5ff, #38bdf8);
    animation: loading 2s linear infinite alternate;
}

@keyframes loading {
    from {
        width: 20%;
    }
    to {
        width: 85%;
    }
}


/* ===========================
   Status
=========================== */

.status {
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 35px;
}


/* ===========================
   Button
=========================== */

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    text-decoration: none;
    background: #38bdf8;
    color: #fff;
    border-radius: 50px;
    transition: .3s;
}

.home-btn:hover {
    background: #0ea5e9;
    transform: translateY(-4px);
}


/* ===========================
   Tablet
=========================== */

@media(max-width:992px) {
    .content h1 {
        font-size: 52px;
    }
}


/* ===========================
   Mobile
=========================== */

@media(max-width:768px) {
    .coming-soon {
        padding: 60px 15px;
    }
    .content h1 {
        font-size: 42px;
    }
    .content h3 {
        font-size: 18px;
    }
    .content p {
        font-size: 16px;
    }
    .time-box {
        width: 95px;
        height: 95px;
    }
    .time-box span {
        font-size: 30px;
    }
}


/* ===========================
   Small Mobile
=========================== */

@media(max-width:480px) {
    .content h1 {
        font-size: 34px;
    }
    .content h3 {
        font-size: 16px;
    }
    .content p {
        font-size: 15px;
    }
    .countdown {
        gap: 12px;
    }
    .time-box {
        width: 80px;
        height: 80px;
    }
    .time-box span {
        font-size: 24px;
    }
    .time-box small {
        font-size: 12px;
    }
    .icon {
        width: 70px;
        height: 70px;
    }
    .icon i {
        font-size: 30px;
    }
    .home-btn {
        width: 100%;
        justify-content: center;
    }
}