/* Скрытый контент */
.locked-content {
    display: none;
}

/* ===============================
   OVERLAY
================================= */

.launch-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.70);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* Внутренняя колонка */
.launch-timer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    color: #fff;
}

/* ===============================
   ЗАГОЛОВОК
================================= */

.launch-timer h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0 0 60px 0;
}

/* ===============================
   КАРТОЧКА ТАЙМЕРА
================================= */

.timer-box {
    background: #fff;
    padding: 60px 80px;
    border-radius: 24px;

    display: flex;
    justify-content: center;
    gap: 40px;
}

/* ===============================
   БЛОК ОДНОГО ВРЕМЕНИ
================================= */

.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Сам циферблат */
.time-item span {
    position: relative;
    width: 110px;
    height: 120px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 64px;
    font-weight: 700;
    color: #f5f5f5;

    border-radius: 18px;

    background: linear-gradient(180deg, #292929 -0.23%, #353535 6.33%, #4D4D4D 16.57%, #777474 24.64%, rgba(131, 131, 131, 0.90) 29.63%, rgba(135, 135, 135, 0.90) 35.31%, rgba(114, 114, 114, 0.90) 40.41%, #222 50.56%, #292929 58.65%, #343434 67.15%, #444 78.34%, #737373 96.79%);
    
    box-shadow:
        inset 0 3px 6px rgba(255,255,255,0.06),
        inset 0 -8px 14px rgba(0,0,0,0.6),
        0 12px 30px rgba(0,0,0,0.5);
}

/* Подпись */
.time-item small {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.7;
    color: #000;
}

/* ===============================
   НИЖНИЙ ТЕКСТ
================================= */

.launch-footer {
    font-size: 60px;
    font-weight: 700;
    margin: 60px 0 0 0;
}



/* ===============================
   MOBILE 450px
================================= */

@media (max-width: 450px) {

    .launch-timer h1 {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .timer-box {
        width: calc(100% - 32px);
        margin: 0 auto;
        padding: 36px;
        gap: 14px;
        border-radius: 20px;
    }

    .time-item span {
        width: 64px;
        height: 72px;
        font-size: 28px;
        border-radius: 14px;
    }

    .time-item small {
        font-size: 11px;
        margin-top: 6px;
    }   

    .launch-footer {
        font-size: 28px;
        margin-top: 30px;
        padding: 0 20px;
    }

    .launch-overlay {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* ===============================
   EXTRA SMALL 360px и ниже
================================= */

@media (max-width: 320px) {

    .timer-box {
        flex-wrap: wrap;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .time-item {
        width: 45%;
        margin-bottom: 16px;
    }

    .time-item span {
        width: 100%;
        height: 70px;
        font-size: 28px;
    }

    .launch-title {
        font-size: 24px;
    }

    .launch-footer {
        font-size: 24px;
    }
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}