/* Сброс стандартных отступов и полей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Стили для секции ввода */
.input-section {
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.input-section label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.input-section input {
    padding: 8px 12px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.input-section button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.input-section button:hover {
    background-color: #0056b3;
}

/* Стили для баннера */
.banner {
    position: relative;
    width: 100%;
    height: 60em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    overflow: hidden;
    background-size: cover; /* Изображение растягивается на весь баннер */
    background-position: center; /* Центрирование изображения */
    background-repeat: no-repeat; /* Убираем повторение изображения */
}

/* Псевдоэлемент для отображения слова на фоне (работает, если нет изображения) */
.banner.has-text::before {
    content: attr(data-background-word);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 150px;
    font-weight: bold;
    opacity: 0.1;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
}

/* Стили рекламного текста */
.ad-text {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    text-align: center;
}
/* Кнопка "Получить" (переливание + неоновое свечение) */
.cta-button {
    background: linear-gradient(90deg, #ff6b35, #ff00ff, #00c3ff, #00ff6a, #ff6b35);
    background-size: 300% 300%;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    animation: gradientMove 3s ease infinite;

    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7),
                0 0 20px rgba(0, 195, 255, 0.6),
                0 0 40px rgba(0, 255, 106, 0.5);

    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.9),
                0 0 30px rgba(0, 195, 255, 0.8),
                0 0 60px rgba(0, 255, 106, 0.7);
}

/* Анимация переливания */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
