/* ================================
   ПРОМО-БАННЕРЫ
   ================================ 
   
   FIX: Moved padding from .promo-slider-viewport to .promo-banners-container
   to prevent rightmost cards from being cut off. This ensures proper
   container structure and width calculations.
   */
.promo-banners-container {
    position: relative;
    width: 100%;
    margin: 80px 0 30px 0;
    overflow: hidden;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

.promo-slider-viewport {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.promo-banners {
    display: flex;
    gap: 24px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.promo-banner {
    border-radius: var(--border-radius-large);
    padding: 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    width: calc((100vw - (2 * var(--container-padding)) - (3 * 24px)) / 4);
    max-width: 350px;
    min-width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
    animation: slideInFromLeft 0.6s ease forwards;
    box-sizing: border-box;
    text-align: left;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.promo-banner:hover::before {
    transform: translateX(100%);
}

.promo-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Цветовые схемы промо-баннеров */
.promo-banner.vip {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.promo-banner.games {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.promo-banner.drops {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.promo-banner.bonus {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.promo-banner.weekly {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.promo-banner.success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.promo-banner.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.promo-banner.info {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.promo-banner.danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.promo-banner.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.promo-banner.pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.promo-banner.indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.promo-banner.teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

/* Поддержка кастомных фоновых изображений */
.promo-banner[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.promo-banner[style*="background-image"] .promo-content {
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-banner[style*="background-image"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: var(--border-radius-large);
}

.promo-banner[style*="background-image"]:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.promo-banner[style] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Анимации для промо-баннеров */
.promo-banner:nth-child(1) { animation-delay: 0.1s; }
.promo-banner:nth-child(2) { animation-delay: 0.2s; }
.promo-banner:nth-child(3) { animation-delay: 0.3s; }
.promo-banner:nth-child(4) { animation-delay: 0.4s; }
.promo-banner:nth-child(5) { animation-delay: 0.5s; }

.promo-banner.cloned {
    pointer-events: none;
    animation: none;
    opacity: 1;
}

.promo-banner.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Контент промо-баннеров */
.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    margin-right: 20px;
}

.promo-content .promo-label {
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    opacity: 0.9;
    font-weight: 600;
}

.promo-content .title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.promo-btn {
    background: transparent;
    color: #ffffff;
    padding: 0;
    border: none;
    border-bottom: 2px solid #ffffff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    text-align: center;
}

.promo-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transform: none;
}

/* Изображения в промо-баннерах - ИСПРАВЛЕННЫЕ СТИЛИ */
.promo-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin-left: 20px;
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    aspect-ratio: 1 / 1;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, opacity 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    opacity: 0.95;
    will-change: transform;
}

.promo-image:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Загрузка изображений */
.promo-image img[src=""],
.promo-image img:not([src]) {
    opacity: 0;
}

.promo-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.5)"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>') center/contain no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.promo-image img[src]:not([src=""]) + .promo-image::before {
    display: none;
}

/* Декоративные элементы - УЛУЧШЕННЫЕ СТИЛИ */
.promo-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    overflow: hidden;
}

.promo-decoration span {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

/* Контейнер для изображений из админки */
.promo-decoration .admin-image-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius);
}

/* Изображения из админки - ИСПРАВЛЕННЫЕ СТИЛИ */
.promo-decoration .admin-promo-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    animation: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, opacity 0.3s ease;
    aspect-ratio: 1 / 1;
    will-change: transform;
}

.promo-banner:hover .admin-promo-image {
    transform: scale(1.05);
    opacity: 1;
}

/* Плейсхолдер для декоративных изображений */
.promo-decoration .admin-image-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="rgba(255,255,255,0.3)"><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>') center/contain no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.promo-decoration .admin-promo-image[src]:not([src=""]) ~ .admin-image-animation::before {
    display: none;
}

/* Контейнер для иконок по умолчанию */
.promo-decoration .default-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-decoration .default-animation .icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.5;
    animation: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.promo-banner:hover .default-animation .icon {
    transform: scale(1.1);
    opacity: 0.7;
}

/* Позиционирование декоративных элементов */
.promo-decoration .coin:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.promo-decoration .coin:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.promo-decoration .coin:nth-child(3) {
    top: 70%;
    right: 30%;
    animation-delay: 2s;
}

.promo-decoration .card:nth-child(1) {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.promo-decoration .card:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.promo-decoration .spin:nth-child(1) {
    top: 25%;
    right: 20%;
    animation-delay: 0.3s;
}

.promo-decoration .spin:nth-child(2) {
    top: 65%;
    right: 15%;
    animation-delay: 1.3s;
}

.promo-decoration .crown {
    top: 30%;
    right: 20%;
    animation-delay: 0.7s;
}

.promo-decoration .star {
    top: 60%;
    right: 10%;
    animation-delay: 1.7s;
}

/* Навигация промо-слайдера */
.promo-nav-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 16px;
}

.promo-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.promo-nav-arrow.prev {
    left: 12px;
    transform: translateY(-50%);
}

.promo-nav-arrow.next {
    right: 12px;
    transform: translateY(-50%);
}

.promo-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.promo-nav-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1);
}

/* Индикаторы промо-слайдера */
.promo-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px auto;
    flex-wrap: wrap;
    max-width: 300px;
}

.promo-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-indicator.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Пустое состояние */
.promo-banners:empty::after {
    content: 'Промо-баннеры не настроены. Добавьте их в админ-панели.';
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 40px;
}

/* Дополнительные стили для улучшения производительности */
.promo-banner,
.promo-image,
.promo-decoration .admin-promo-image {
    contain: layout style paint;
}

/* Поддержка современных браузеров */
@supports (aspect-ratio: 1 / 1) {
    .promo-image,
    .promo-decoration .admin-promo-image {
        aspect-ratio: 1 / 1;
    }
}

/* Поддержка object-view-box для лучшего кропа */
@supports (object-view-box: inset(0)) {
    .promo-image img,
    .promo-decoration .admin-promo-image {
        object-view-box: inset(0);
    }
}

/* Улучшенная поддержка для высоких DPI экранов */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .promo-image img,
    .promo-decoration .admin-promo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ================================
   STICKY CTA ГЛОБАЛЬНЫЕ СТИЛИ
   ================================ */

/* Базовые стили для sticky CTA */
.cta-sticky {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    will-change: transform, opacity !important;
    contain: layout style paint !important;
}

.cta-sticky--bottom {
    bottom: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
}

.cta-sticky--top {
    top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Скрытое состояние */
.cta-sticky.cta-hidden {
    transform: translateY(100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.cta-sticky--top.cta-hidden {
    transform: translateY(-100%) !important;
}

/* Стили для sticky блока */
.cta-sticky .cta-block {
    min-height: auto !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    position: relative !important;
    padding: 16px 20px !important;
}

/* Кнопка закрытия */
.cta-close {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.cta-close:hover,
.cta-close:focus {
    background: rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.cta-close:active {
    transform: scale(0.95) !important;
}

.cta-close svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2 !important;
}

/* Адаптивность для sticky CTA */
@media (max-width: 1024px) {
    .cta-sticky .cta-block {
        padding: 14px 16px !important;
    }

    .cta-sticky .cta-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .cta-sticky .cta-image,
    .cta-sticky .cta-decoration {
        margin: 8px 0 0 0 !important;
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 768px) {
    .cta-sticky {
        padding: 0 12px !important;
    }

    .cta-sticky .cta-block {
        padding: 12px 16px !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
    }

    .cta-sticky .cta-content {
        flex: 1 !important;
        margin-right: 12px !important;
    }

    .cta-sticky .cta-title {
        font-size: 14px !important;
        margin-bottom: 4px !important;
    }

    .cta-sticky .cta-description {
        font-size: 12px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .cta-sticky .cta-button {
        padding: 8px 16px !important;
        font-size: 11px !important;
        margin-top: 6px !important;
    }

    .cta-sticky .cta-rating {
        margin-bottom: 4px !important;
        font-size: 12px !important;
    }

    .cta-sticky .cta-image,
    .cta-sticky .cta-decoration {
        width: 50px !important;
        height: 50px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .cta-sticky .cta-close {
        top: 8px !important;
        right: 8px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .cta-sticky .cta-close svg {
        width: 14px !important;
        height: 14px !important;
    }
}

@media (max-width: 480px) {
    .cta-sticky {
        padding: 0 8px !important;
    }

    .cta-sticky .cta-block {
        padding: 10px 12px !important;
    }

    .cta-sticky .cta-title {
        font-size: 13px !important;
    }

    .cta-sticky .cta-description {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }

    .cta-sticky .cta-button {
        padding: 6px 12px !important;
        font-size: 10px !important;
        margin-top: 4px !important;
    }

    .cta-sticky .cta-image,
    .cta-sticky .cta-decoration {
        width: 40px !important;
        height: 40px !important;
    }

    .cta-sticky .cta-close {
        width: 24px !important;
        height: 24px !important;
        top: 6px !important;
        right: 6px !important;
    }

    .cta-sticky .cta-close svg {
        width: 12px !important;
        height: 12px !important;
    }
}

/* Отступы для body при показе sticky CTA внизу */
body.cta-sticky-active {
    padding-bottom: var(--cta-height, 80px) !important;
    transition: padding-bottom 0.3s ease !important;
}

/* Поддержка для современных браузеров */
@supports (backdrop-filter: blur(10px)) {
    .cta-sticky {
        background: linear-gradient(135deg, rgba(59, 35, 75, 0.9) 0%, rgba(75, 45, 95, 0.9) 50%, rgba(90, 55, 115, 0.9) 100%) !important;
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .cta-sticky {
        background: linear-gradient(135deg, rgba(59, 35, 75, 0.95) 0%, rgba(75, 45, 95, 0.95) 50%, rgba(90, 55, 115, 0.95) 100%) !important;
    }
}

/* Улучшенная производительность */
.cta-sticky,
.cta-close {
    contain: layout style paint !important;
}

/* Предотвращение конфликтов с другими z-index */
.cta-sticky {
    z-index: 999999 !important;
}

/* Анимация появления */
@keyframes cta-slide-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cta-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-sticky--bottom.cta-show-animation {
    animation: cta-slide-up 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cta-sticky--top.cta-show-animation {
    animation: cta-slide-down 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ================================
   WHY PLAY SLIDER (Similar to Promo Slider)
   ================================ */

.why-play-slider-container {
    position: relative;
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

.why-play-slider-viewport {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.why-play-cards {
    display: flex;
    gap: 16px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: fit-content;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.why-play-card {
    background: rgb(59, 35, 75);
    border-radius: var(--border-radius);
    padding: 20px 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: none;
    backdrop-filter: none;
    min-height: 120px;
    width: calc((100vw - (2 * var(--container-padding)) - (5 * 16px)) / 6);
    max-width: 200px;
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-play-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.why-play-card:hover::before {
    transform: translateX(100%);
}

.why-play-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: rgb(75, 45, 95);
}

.why-play-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-play-card__icon {
    width: 32px;
    height: 32px;
    background: rgb(91, 46, 127);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-play-card:hover .why-play-card__icon {
    background: rgb(139, 92, 246);
    transform: scale(1.1);
}

.why-play-card__icon img {
    display: none;
}

.why-play-card__content {
    color: #ffffff;
    flex: 1;
}

.why-play-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    line-height: 1.2;
}

.why-play-card__description {
    font-size: 0.75rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: left;
}

/* Навигация why-play слайдера */
.why-play-nav-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 16px;
}

.why-play-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.why-play-nav-arrow.prev {
    left: 12px;
    transform: translateY(-50%);
}

.why-play-nav-arrow.next {
    right: 12px;
    transform: translateY(-50%);
}

.why-play-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.why-play-nav-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1);
}

/* Индикаторы why-play слайдера */
.why-play-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px auto;
    flex-wrap: wrap;
    max-width: 300px;
}

.why-play-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-play-indicator.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Анимации для why-play карточек */
.why-play-card:nth-child(1) { animation-delay: 0.1s; }
.why-play-card:nth-child(2) { animation-delay: 0.2s; }
.why-play-card:nth-child(3) { animation-delay: 0.3s; }
.why-play-card:nth-child(4) { animation-delay: 0.4s; }
.why-play-card:nth-child(5) { animation-delay: 0.5s; }
.why-play-card:nth-child(6) { animation-delay: 0.6s; }

.why-play-card.cloned {
    pointer-events: none;
    animation: none;
    opacity: 1;
}

.why-play-card.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Пустое состояние */
.why-play-cards:empty::after {
    content: 'Why Play карточки не настроены.';
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 40px;
}

/* Дополнительные стили для улучшения производительности */
.why-play-card {
    contain: layout style paint;
}

 