/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Midnight Luxury */
    --primary: #2EE6D6;
    --primary-dark: #14C8B9;
    --primary-light: #7AF0E6;
    --primary-rgb: 46, 230, 214;
    --primary-dark-rgb: 20, 200, 185;
    --primary-light-rgb: 122, 240, 230;
    --primary-deep: #0B3D3A;
    --primary-darker: #0E9E94;
    --primary-ultra-light: #D9FFFB;
    --gold: #D4AF77;

    --secondary: #2EE6D6;
    --background: #05070D;
    --surface: #0C111A;
    --surface-elevated: #141A26;
    --surface-hover: #1B2333;
    --text: #EEF3F8;
    --text-secondary: #8B97A8;
    --border: rgba(46, 230, 214, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;

    --shadow: rgba(var(--primary-rgb, 46, 230, 214), 0.16);
    --shadow-lg: rgba(var(--primary-rgb, 46, 230, 214), 0.28);
    --neon-glow: 0 0 20px rgba(var(--primary-rgb, 46, 230, 214), 0.45), 0 0 40px rgba(var(--primary-rgb, 46, 230, 214), 0.22);
    --neon-glow-strong: 0 0 28px rgba(var(--primary-rgb, 46, 230, 214), 0.7), 0 0 56px rgba(var(--primary-rgb, 46, 230, 214), 0.35);
}

html, body {
    overscroll-behavior: none;
}

body {
    font-family: 'Unbounded', 'Ethnocentric', sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.55;
    letter-spacing: 0.02em;
    padding-bottom: 108px;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Скрываем скроллбар для WebKit браузеров */
body::-webkit-scrollbar {
    display: none;
}

html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100%;
    max-width: 100%;
}

html::-webkit-scrollbar {
    display: none;
}

/* Фон с фиолетовыми эффектами */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(var(--primary-rgb, 46, 230, 214), 0.14) 0%, transparent 42%),
        radial-gradient(circle at 88% 92%, rgba(212, 175, 119, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(12, 28, 48, 0.9) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

#app {
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
    background: var(--background);
    position: relative;
    z-index: 1;
}

.content {
    padding: 0;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

.scale-in {
    animation: scaleIn 0.2s ease-out;
}

/* Новогодние эффекты */
/* Снег отключён */
.snow-container,
.snowflake,
.loader-snow-container,
.loader-snowflake,
.modal-snow-container,
.modal-snowflake,
.celebration-snowflake {
    display: none !important;
}

/* Гирлянда */
.garland {
    position: relative;
    width: 100%;
    height: 12px;
    overflow: hidden;
    z-index: 99;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.garland-line {
    position: absolute;
    width: 130%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #FF1744 5%,
        #E91E63 8%,
        #9C27B0 11%,
        #673AB7 14%,
        #3F51B5 17%,
        #2196F3 20%,
        #00BCD4 23%,
        #009688 26%,
        #4CAF50 29%,
        #8BC34A 32%,
        #CDDC39 35%,
        #FFEB3B 38%,
        #FFC107 41%,
        #FF9800 44%,
        #FF5722 47%,
        #F44336 50%,
        #E91E63 53%,
        #9C27B0 56%,
        #00E676 59%,
        #00E5FF 62%,
        #2196F3 65%,
        #673AB7 68%,
        #FF1744 71%,
        #FFEB3B 74%,
        #4CAF50 77%,
        #9C27B0 80%,
        #FF9800 83%,
        #00BCD4 86%,
        #FF5722 89%,
        #8BC34A 92%,
        transparent 100%);
    animation: garlandMove 5s linear infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 
                0 0 16px rgba(255, 255, 255, 0.4);
    filter: blur(0.8px);
    border-radius: 1px;
}

.garland-line:nth-child(2) {
    top: 5px;
    animation-delay: -1.2s;
    animation-duration: 4.2s;
    opacity: 0.85;
}

@keyframes garlandMove {
    0% {
        transform: translateX(-30%);
    }
    100% {
        transform: translateX(0%);
    }
}

.garland-bulb {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: bulbBlink 1.4s ease-in-out infinite;
    box-shadow: 0 0 6px var(--bulb-color, currentColor), 
                0 0 12px var(--bulb-color, currentColor);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--bulb-color, currentColor);
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.garland-bulb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(255, 255, 255, 1);
}

@keyframes bulbBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1.2);
        box-shadow: 0 0 6px var(--bulb-color, currentColor), 
                    0 0 12px var(--bulb-color, currentColor);
    }
    25% {
        opacity: 0.7;
        transform: scale(0.9);
        filter: brightness(0.9);
        box-shadow: 0 0 4px var(--bulb-color, currentColor), 
                    0 0 8px var(--bulb-color, currentColor);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.85);
        filter: brightness(0.7);
        box-shadow: 0 0 3px var(--bulb-color, currentColor), 
                    0 0 6px var(--bulb-color, currentColor);
    }
    75% {
        opacity: 0.7;
        transform: scale(0.9);
        filter: brightness(0.9);
        box-shadow: 0 0 4px var(--bulb-color, currentColor), 
                    0 0 8px var(--bulb-color, currentColor);
    }
}

/* Главные промо-баннеры */
.home-promos {
    margin: 8px 12px 2px;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.promo-ticker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 14px;
    border: 1px solid rgba(var(--primary-rgb, 46, 230, 214), 0.28);
    background: linear-gradient(165deg, var(--surface-elevated) 0%, var(--surface) 100%);
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.22),
        0 0 20px rgba(var(--primary-rgb, 46, 230, 214), 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.promo-ticker-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb, 46, 230, 214), 0.1), transparent);
    animation: promoTickerGlow 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes promoTickerGlow {
    0%, 100% { transform: translateX(-70%); opacity: 0.35; }
    50% { transform: translateX(70%); opacity: 1; }
}

.promo-ticker-icon {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 8px rgba(var(--primary-rgb, 46, 230, 214), 0.8);
    animation: promoTickerPulse 1.8s ease-in-out infinite;
}

@keyframes promoTickerPulse {
    0%, 100% { opacity: 0.55; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

.promo-ticker-text {
    flex: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-ultra-light, #f3e8ff);
    transition: opacity 0.28s ease, transform 0.28s ease;
    line-height: 1.3;
}

.promo-ticker-text--out {
    opacity: 0;
    transform: translateY(3px);
}

.baster-promo-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(var(--primary-rgb, 46, 230, 214), 0.22);
    background:
        linear-gradient(165deg, var(--surface-elevated) 0%, var(--surface) 42%, #120d1c 100%);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 0 32px rgba(var(--primary-rgb, 46, 230, 214), 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}

.baster-promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb, 46, 230, 214), 0.45) 0%,
        rgba(var(--primary-rgb, 46, 230, 214), 0.08) 40%,
        rgba(var(--primary-light-rgb, 122, 240, 230), 0.2) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.baster-promo-banner:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.baster-promo-banner:active {
    transform: scale(0.985);
}

.baster-promo-banner--copied {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(16, 185, 129, 0.18);
}

.baster-promo-banner-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 140% at 8% 50%, rgba(var(--primary-rgb, 46, 230, 214), 0.22), transparent 58%),
        radial-gradient(ellipse 60% 100% at 92% 30%, rgba(var(--primary-dark-rgb, 124, 58, 237), 0.14), transparent 52%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.35), transparent 70%);
    pointer-events: none;
}

.baster-promo-banner-shine {
    position: absolute;
    inset: -50% -35%;
    background: linear-gradient(115deg, transparent 44%, rgba(var(--primary-light-rgb, 122, 240, 230), 0.07) 50%, transparent 56%);
    animation: basterPromoShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes basterPromoShine {
    0%, 100% { transform: translateX(-25%); opacity: 0.4; }
    50% { transform: translateX(25%); opacity: 0.9; }
}

.baster-promo-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    min-height: 72px;
}

.baster-promo-banner-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.baster-promo-banner-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.baster-promo-banner-code {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.24em;
    line-height: 1;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, var(--primary-ultra-light) 55%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(var(--primary-rgb, 46, 230, 214), 0.45));
}

.baster-promo-banner-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.baster-promo-banner-off {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    color: var(--newyear-dark, #1a0a2e);
    background: linear-gradient(135deg, var(--newyear-gold, #ffd700) 0%, #f59e0b 100%);
    box-shadow:
        0 2px 12px rgba(245, 158, 11, 0.35),
        0 0 16px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.baster-promo-banner-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: var(--primary-light);
    background: rgba(var(--primary-rgb, 46, 230, 214), 0.12);
    border: 1px solid rgba(var(--primary-rgb, 46, 230, 214), 0.28);
    font-size: 14px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.baster-promo-banner-copy svg {
    width: 16px;
    height: 16px;
}

.baster-promo-banner--copied .baster-promo-banner-copy {
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.1);
}

/* Карусель банеров */
.banners-carousel {
    position: relative;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
    cursor: grab;
}

.banners-carousel:active {
    cursor: grabbing;
}

.banners-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.promo-banner {
    min-width: 100%;
    flex-shrink: 0;
    border-radius: 18px;
    padding: 18px 16px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: default;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 138px;
    max-height: 138px;
    background: linear-gradient(135deg, var(--banner-color-start, var(--primary)) 0%, var(--banner-color-end, var(--primary-dark)) 100%);
    box-shadow: 
        0 8px 32px rgba(var(--banner-shadow-rgb, var(--primary-rgb, 46, 230, 214)), 0.35),
        0 0 60px rgba(var(--banner-shadow-rgb, var(--primary-rgb, 46, 230, 214)), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.promo-banner.velora-open-banner {
    margin: 0 auto;
    width: 100%;
    min-height: 86px;
    max-height: 86px;
    padding: 12px 16px;
    border-radius: 16px;
    pointer-events: none;
    cursor: default;
    border: 1px solid rgba(212, 175, 119, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(46, 230, 214, 0.12), transparent 28%, transparent 72%, rgba(212, 175, 119, 0.12)),
        linear-gradient(160deg, #071018 0%, #0c1a28 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.velora-open-banner .promo-banner-label {
    letter-spacing: 0.32em;
    padding-left: 0.32em;
    text-transform: uppercase;
    font-size: 9px;
    margin: 0;
    color: rgba(122, 240, 230, 0.9);
}

.velora-open-banner .promo-banner-title {
    font-size: 16px;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
    margin: 4px 0 0;
    text-shadow: none;
}

.velora-open-banner .promo-banner-description {
    color: rgba(238, 243, 248, 0.72);
    font-size: 11px;
    margin: 4px 0 0;
    letter-spacing: 0.04em;
}

.promo-banner:hover,
.promo-banner:active,
.promo-banner.velora-open-banner:hover,
.promo-banner.velora-open-banner:active {
    transform: none;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.32);
    cursor: default;
}

.newyear-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: bannerShine 4s linear infinite;
}

/* Эмодзи на промо баннере */
.promo-banner-emoji {
    position: absolute;
    font-size: 20px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
    animation: floatAround 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(var(--banner-shadow-rgb, var(--primary-rgb, 46, 230, 214)), 0.4));
}

.promo-banner-emoji:nth-of-type(1) {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.promo-banner-emoji:nth-of-type(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.promo-banner-emoji:nth-of-type(3) {
    bottom: 18%;
    left: 12%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.promo-banner-emoji:nth-of-type(4) {
    top: 32%;
    right: 18%;
    animation-delay: 1s;
    animation-duration: 11s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(40px, -25px) rotate(90deg) scale(1.15);
        opacity: 0.75;
    }
    50% {
        transform: translate(-30px, 35px) rotate(180deg) scale(0.95);
        opacity: 0.65;
    }
    75% {
        transform: translate(25px, 25px) rotate(270deg) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes promoBannerGlow {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(46, 230, 214, 0.35), 
            0 0 60px rgba(46, 230, 214, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 
            0 12px 40px rgba(46, 230, 214, 0.45), 
            0 0 80px rgba(46, 230, 214, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
}

@keyframes bannerShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.promo-banner-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
}

.promo-banner-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.3px;
    margin: 3px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    animation: promoTitlePulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
    color: transparent;
    line-height: 1.1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.55) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes promoTitlePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

.promo-banner-description {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
}

.promo-banner-bonus {
    font-size: 16px;
    font-weight: 900;
    margin-top: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    color: white;
    animation: bonusGlow 2s ease-in-out infinite;
    letter-spacing: 0.3px;
}

.promo-banner-code {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 6px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: codePulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
    color: white;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.promo-banner-contact {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-top: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    animation: contactGlow 2s ease-in-out infinite;
}

@keyframes contactGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }
}

@keyframes codePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

/* Точки навигации */
.banners-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.banners-dots .banner-dot {
    pointer-events: all;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.banner-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

@keyframes bonusGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Новогодние анимации */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/* Дополнительные новогодние анимации */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.newyear-shimmer {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    background-size: 1000px 100%;
    animation: shimmer 3s linear infinite;
}

/* Анимация для карточек товаров на новогоднюю тему */
.product-card.newyear-card {
    position: relative;
    overflow: hidden;
}

.product-card.newyear-card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    animation: twinkle 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Анимация пульсации для кнопок */
.btn.newyear-btn {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.btn.newyear-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 2s linear infinite;
    pointer-events: none;
}

.byn-ico {
    display: inline-block;
    width: 0.55em;
    height: 0.68em;
    vertical-align: -0.02em;
    background-color: currentColor;
    -webkit-mask: url('/assets/icons/byn.png') center / contain no-repeat;
    mask: url('/assets/icons/byn.png') center / contain no-repeat;
    flex-shrink: 0;
}

.byn-ico--sm {
    width: 0.5em;
    height: 0.62em;
    vertical-align: 0;
}
