body {
    background-color: #f9f9f7; /* Светло-кремовый фон как на фото */
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    margin: 0;
    color: #000;
}

.container {
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding-top: 50px;
}


.logo-wrapper {
    margin-bottom: 20px; /* Отступ снизу как на макете */
    display: flex;
    justify-content: center;
}

.main-logo {
    max-width: 180px;    /* Ограничь ширину под свой дизайн */
    height: auto;        /* Сохранит пропорции */
    display: block;
}

/* На мобилках можно сделать лого чуть меньше */
@media (max-width: 480px) {
    .main-logo {
        max-width: 140px;
    }
}


.drop-info {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 10px;
}

h1 {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1;
}

.sub-text {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Стили таймера */
.timer {
    display: flex;
    justify-content: center;
    border: 1px solid #000;
    margin-bottom: 40px;
}

.time-item {
    flex: 1;
    padding: 15px 0;
    border-right: 1px solid #000;
}

.time-item:last-child { border-right: none; }

.time-item span {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.time-item p {
    font-size: 10px;
    margin: 5px 0 0 0;
    color: #666;
}

/* Форма */
input {
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

.btn-black {
    width: 100%;
    padding: 18px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 5px;
}

.small-text {
    font-size: 12px;
    color: #888;
    margin: 15px 0;
}

.waitlist {
    font-size: 16px;
    margin: 30px 0;
}

#waitlist-count { font-weight: bold; }

.bottom-box {
    border: 1px solid #000;
    padding: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.footer-info {
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    padding-bottom: 40px;
    line-height: 1.8;
}
