/* Основные стили */
.body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Навигация */
.navbar {
    padding: 10px 0;
}

/* Основной стиль баннера */
.banner {
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    margin-bottom: 20px; /* Уменьшен отступ */
}

.banner img {
    width: 100%;
    height: auto;
    max-height: 900px;
    object-fit: cover;
}

/* Затемненный слой поверх баннера */
.banner-overlay {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

/* Большая надпись на всю ширину */
.bonus-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Адаптивное уменьшение текста на мобильных */
@media (max-width: 768px) {
    .bonus-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .bonus-title {
        font-size: 20px;
    }
}

/* Контейнер для кнопок (Десктоп) */
.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

/* Универсальные стили для кнопок */
.btn-red, .btn-blue {
    font-size: 18px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white !important;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: none;
}

/* Красная кнопка */
.btn-red {
    background-color: #ff0000 !important;
}

.btn-red:hover {
    background-color: #cc0000 !important;
}

/* Бирюзовая кнопка */
.btn-blue {
    background-color: #00cccc !important;
}

.btn-blue:hover {
    background-color: #009999 !important;
}

/* Кнопки под баннером (мобильные) */
.banner-buttons-mobile {
    display: none;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-bottom: 15px; /* Добавлен отступ снизу */
}

/* Показываем кнопки под баннером только на мобильных */
@media (max-width: 768px) {
    .banner-overlay {
        left: 5%;
        max-width: 90%;
    }

    .bonus-title {
        font-size: 24px;
    }

    .banner-buttons {
        display: none; /* Скрываем кнопки внутри баннера */
    }

    .banner-buttons-mobile {
        display: flex; /* Показываем мобильные кнопки */
    }

    .btn-red, .btn-blue {
        font-size: 16px;
        padding: 10px 20px;
    }
}
