.blob{width:100%;box-shadow:0 0 0 0 #000;transform:scale(1);animation:pulse 2s infinite}@keyframes pulse{0%{transform:scale(.95);box-shadow:0 0 0 0 rgba(0,0,0,.7)}70%{transform:scale(1);box-shadow:0 0 0 10px transparent}100%{transform:scale(.95);box-shadow:0 0 0 0 transparent}}nav.scrollmenu{overflow:auto;white-space:nowrap}nav.scrollmenu a{display:inline-block;color:#fff;text-align:center;padding:14px;text-decoration:none}nav.scrollmenu a:hover{background-color:#777}.promocode{border-style:dashed;font-size:2em;margin:auto;width:50%;padding:10px;text-align:center;display:block}.cta-button{width:100%;display:inline-block;padding:.5rem 1rem;background-color:#ffc90a;color:#7f2feb;text-align:center;font-size:16px;font-weight:600;text-decoration:none;border-radius:3px;transition:background-color .3s}.cta-button:hover{background-color:#005fa3;text-decoration:none}

/* --- Стили для яркого блока промокода --- */

/* Основной контейнер блока */
.promo-coupon-block {
    display: flex;
    max-width: 800px; /* Можете настроить ширину под ваш контейнер */
    margin: 30px auto; /* Центрирует блок и добавляет отступы */
    background: linear-gradient(#50358f, #7049c1); /* Градиент на основе синего цвета с сайта */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3); /* Яркая, но не "грязная" тень */
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden; /* Важно для работы псевдоэлементов */
    position: relative;
}

/* Левая часть с деталями акции */
.promo-coupon-details {
    padding: 25px 35px;
    flex-grow: 1;
}

.promo-coupon-details h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.promo-coupon-details p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Кнопка активации */
.promo-coupon-button {
    display: inline-block;
    background-color: #ffc107; /* Яркий желтый цвет для контраста (стандартный для "warning") */
    color: #212529; /* Темный текст для читаемости на желтом фоне */
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.promo-coupon-button:hover {
    background-color: #e0a800; /* Более темный желтый при наведении */
    transform: translateY(-2px); /* Небольшой эффект "подъема" */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Правая часть с кодом ("отрывной купон") */
.promo-coupon-code-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 220px; /* Фиксированная ширина */
    flex-shrink: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.4); /* Линия отрыва */
    position: relative;
}

/* Круглые вырезы для эффекта билета */
.promo-coupon-code-area::before,
.promo-coupon-code-area::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #fff; /* Цвет фона вашего сайта */
    border-radius: 50%;
    left: -16px; /* Заезжает на линию, создавая вырез */
}

.promo-coupon-code-area::before {
    top: -15px;
}

.promo-coupon-code-area::after {
    bottom: -15px;
}


.promo-coupon-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Сам промокод */
.promo-coupon-code {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0056b3; /* Темно-синий для контраста */
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 8px;
    border: 1px dashed #007bff;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .promo-coupon-block {
        flex-direction: column;
    }

    .promo-coupon-details {
        text-align: center;
        padding: 25px;
    }

    .promo-coupon-button {
        width: 90%;
        max-width: 300px; /* Ограничиваем ширину кнопки на мобильных */
    }

    .promo-coupon-code-area {
        flex-basis: auto;
        border-left: none;
        border-top: 2px dashed rgba(255, 255, 255, 0.4);
        padding: 20px;
    }

    /* Перемещаем вырезы для вертикального вида */
    .promo-coupon-code-area::before,
    .promo-coupon-code-area::after {
        width: 30px;
        height: 30px;
        top: -16px;
        bottom: auto;
    }
    .promo-coupon-code-area::before {
        left: 20px;
    }
    .promo-coupon-code-area::after {
        right: 20px;
        left: auto;
    }
}
