@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #000;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.6),
            rgba(0,0,0,0.9)
        ),
        url('../images/background.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Логотип */
.name img.logo {
    width: 400px; /* можно увеличить при необходимости */
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Название фильма */
.content h1.title {
    font-size: 68px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.content h1.title span {
    color: #10A435;
}

/* Надпись «ЧЕРЕЗ» */
.timer-label {
    font-size: 40px;
    font-weight: 700;
    color: #fff;           /* белая надпись */
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
}

/* Таймер */
.time {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-top: 20px;
}

.time div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time div p {
    font-size: 80px;
    font-weight: 700;
    color: #10A435;
    margin: 0;
    line-height: 1;
}

.time div span {
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
    text-transform: uppercase;
}

.time .colon {
    font-size: 80px;
    font-weight: 700;
    color: #10A435;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

/* Кнопка трейлера */
.button-wrapper {
    width: 100%;
    text-align: right; /* смещаем кнопку вправо */
    margin-top: 45px;
}

.button-wrapper button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #e50914;
    color: #fff;
    padding: 14px 38px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.button-wrapper button:hover {
    background: #e50914;
    box-shadow: 0 0 30px rgba(229,9,20,0.7);
}

/* Адаптив */
@media (max-width: 768px) {
    .content h1.title {
        font-size: 42px;
    }

    .time div p,
    .time .colon {
        font-size: 48px;
    }

    .time {
        flex-wrap: wrap;
    }
}

.logo-movie {
    width: 1000px;     /* можно менять, чтобы подогнать под экран */
    height: auto;
    display: block;
    margin: 0 auto 20px; /* центрируем и даем отступ снизу */
