:root {
    --primary-color: #00aa46;
    --secondary-color: #00d4aa;
    --dark-green-color: #009940;
    --light-green-color: #00ff88;
    --pale-green-color: #e6fff0;
    --dark-color: #222;
    --light-color: #fff;
    --gray-color: #666;
    --light-gray-color: #f8f9fa;
    --medium-gray-color: #e9ecef;
    --vk-color: #4a76a8;
    --gold-color: #ffd700;
}

/* Promo Landing Page - Подарочный БУМ! */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

body {
    background-color: #f7f7f7;
}

#promo-landing {
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Убираем подчеркивание у всех ссылок */
#promo-landing a {
    text-decoration: none;
}

#promo-landing a:hover {
    text-decoration: none;
}

/* Helper class for animations */
.promo-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 100;
    position: relative;
}

/* Section Styling */
.promo-section {
    padding: 80px 0;
    position: relative;
}

/* Wavy Background Shapes */
.wave-top, .wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1;
}

.wave-top {
    top: -1px; /* Overlap to prevent gaps */
}

.wave-bottom {
    bottom: -7px; /* Overlap to prevent gaps */
}

/* Hero Section - Праздничный дизайн */
.promo-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 25%, var(--primary-color) 50%, var(--dark-green-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: celebrationGradient 15s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

@keyframes celebrationGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Праздничные элементы фона */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Конфетти */
.confetti-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    transform-origin: center;
    animation: confettiFall linear;
}

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Праздничные ленты */
.ribbons-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ribbon {
    position: absolute;
    width: 200px;
    height: 20px;
    background: linear-gradient(45deg, var(--secondary-color) 0%, var(--light-green-color) 50%, var(--secondary-color) 100%);
    border-radius: 10px;
    opacity: 0.8;
    animation: ribbonFloat 8s ease-in-out infinite;
}

.ribbon-1 {
    top: 20%;
    left: -200px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.ribbon-2 {
    top: 50%;
    right: -200px;
    transform: rotate(-30deg);
    animation-delay: 2s;
}

.ribbon-3 {
    bottom: 30%;
    left: -200px;
    transform: rotate(60deg);
    animation-delay: 4s;
}

@keyframes ribbonFloat {
    0%, 100% {
        transform: translateX(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateX(calc(100vw + 400px)) rotate(calc(var(--rotation, 0deg) + 180deg));
    }
}

/* Текст ОКТЯБРЬ */
.celebration-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    pointer-events: none;
    animation: pulseText 4s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.05;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(15px) rotate(-3deg);
    }
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 0px 20px 40px 20px;
}

.hero-main-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Title */
.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--light-color), var(--light-green-color), var(--light-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shineText 3s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.title-sub {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 212, 170, 0.6);
    }
}

.badge-icon {
    font-size: 16px;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--light-color);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.subtitle-line1 {
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle-line2 {
    font-weight: 400;
    opacity: 0.9;
}

/* Hero CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-cta {
    background: var(--light-color);
    color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 70, 0.1), transparent);
    transition: left 0.5s;
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

/* Partners Logos */
.partners-logos {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.partners-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    align-items: center;
}

.partner-logo {
    background: rgb(0, 167, 96, .6);
    border-radius: 10px;
    padding: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    background: #00854c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* Секция Акция №1 */
.promo-action1 {
    background: var(--light-color);
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 10px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-header .emoji {
    font-size: 1.2em;
    margin-right: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Призы акции 1 */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.prize-card {
    background: var(--light-gray-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.prize-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prize-card.prize-main {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
}

.prize-image {
    position: relative;
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.prize-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prize-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.prize-main h4 {
    color: var(--light-color);
}

.prize-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.prize-main p {
    color: rgba(255, 255, 255, 0.9);
}

/* Кнопка смотреть товары */
.action-button {
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 170, 70, 0.3);
}

.btn-hint {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 10px;
}

/* Timer Section */
.hero-timer-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 20px 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.timer-container {
    text-align: center;
}


@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.timer-header {
    margin-bottom: 30px;
}

.timer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--light-color);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timer-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    color: #f0f8ff;
}

/* Countdown Display */
.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.countdown-block:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-color);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
    color: #f0f8ff;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Timer Progress */
.timer-progress {
    margin-top: 25px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    width: 0%;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

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

.progress-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Hero Bottom Section - Under Timer */
.hero-timer-section .hero-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.hero-timer-section .hero-bottom-section .hero-stats {
    justify-content: center;
    margin-bottom: 0;
}

.hero-timer-section .hero-bottom-section .hero-actions {
    justify-content: center;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    z-index: 3;
}


/* Products Section */
.promo-products-section {
    background-color: var(--light-color);
}

.promo-products-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

/* Participating Products Section */
.promo-participating-section {
    background: linear-gradient(135deg, var(--light-gray-color) 0%, var(--medium-gray-color) 100%);
    padding: 80px 0;
}

.promo-participating-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-participating-section .lead {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.participating-stats {
    background: var(--light-color);
    border-radius: 50px;
    padding: 20px 40px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-right: 15px;
}

.participating-count {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 15px;
    text-shadow: 0 2px 5px rgba(0, 170, 70, 0.2);
}

.participating-label {
    font-size: 18px;
    color: var(--gray-color);
    font-weight: 600;
}

.ui-btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    padding: 0 30px;
    height: 70px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    align-content: center;
}

.ui-btn--outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 170, 70, 0.4);
}

.promo-product-card {
    text-align: center;
    border: none;
    border-radius: 20px;
    background: var(--light-color);
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.promo-product-card .image {
    padding: 20px;
}

.promo-product-card img {
    max-width: 100%;
    height: auto;
}

.promo-product-card h4 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
}


/* CTA Section */
.promo-cta-section {
    text-align: center;
    background: var(--dark-color);
    color: var(--light-color);
    padding-bottom: 150px;
}

.promo-cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.promo-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.promo-cta-section .ui-btn {
     border-radius: 50px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 170, 70, 0.4);
    transition: transform 0.3s ease;
}

.promo-cta-section .ui-btn:hover {
    transform: translateY(-3px);
}

.promo-cta-section .terms-link {
    display: block;
    margin-top: 20px;
    color: #888;
    text-decoration: none;
}

.promo-cta-section .terms-link:hover {
    color: var(--light-color);
    text-decoration: none;
}

/* Swiper slider adjustments */
.swiper-container {
    padding-bottom: 50px;
}
.swiper-pagination-bullet-active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 170, 70, 0.5);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 170, 70, 0.3);
}

/* Steps Sections - Как участвовать */
.promo-steps-section {
    background: var(--light-gray-color);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.promo-steps-1 {
    background: var(--light-gray-color);
}

.promo-steps-2 {
    background: var(--light-color);
}

.promo-steps-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.promo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.promo-step {
    text-align: center;
    position: relative;
    background: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.promo-steps-2 .promo-step {
    background: var(--light-gray-color);
}

.promo-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.promo-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(0, 170, 70, 0.3);
    position: relative;
    z-index: 2;
}

.promo-step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--dark-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.promo-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-step p {
    color: var(--gray-color);
    font-size: 15px;
}

/* VK Subscribe Block */
.vk-subscribe {
    background: var(--vk-color);
    color: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vk-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.vk-info i {
    font-size: 2rem;
}

.btn-vk {
    background: var(--light-color);
    color: var(--vk-color);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-vk:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Promo Tip */
.promo-tip {
    background: var(--pale-green-color);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-tip i {
    font-size: 2rem;
    color: var(--primary-color);
}

.promo-tip p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Акция №2 */
.promo-action2 {
    background: linear-gradient(135deg, var(--light-gray-color) 0%, var(--medium-gray-color) 100%);
    padding: 100px 0;
}

@media (max-width: 768px) {
    .promo-action2 {
        padding: 0;
    }
    .promo-steps-section {
        padding: 40px 0;
    }
}
/* Главные призы */
.main-prizes {
    margin-bottom: 60px;
}

.prize-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.big-prize {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.big-prize:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.big-prize .prize-image {
    height: 250px;
    margin-bottom: 30px;
    position: relative;
}

.prize-badge-hot {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.prize-badge-new {
    background: linear-gradient(135deg, var(--dark-green-color) 0%, var(--primary-color) 100%);
}

.big-prize h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.big-prize p {
    font-size: 1rem;
    color: var(--gray-color);
}

/* Другие призы */
.other-prizes {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.other-prizes h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.prizes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: var(--medium-gray-color);
    transform: translateX(5px);
}

.prize-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.prize-item span {
    font-weight: 600;
    color: #333;
}

/* Сертификаты */
.certificates-section {
    margin-top: 60px;
}

.certificates-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.certificate-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.certificate-logo {
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.certificate-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.certificate-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.certificate-value {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* VK Communities Grid */
.vk-communities {
    background: var(--light-gray-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.vk-communities h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.community-card {
    background: var(--light-color);
    border: 2px solid var(--medium-gray-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.community-card:hover {
    border-color: var(--vk-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(74, 118, 168, 0.2);
}

.community-card i {
    font-size: 2rem;
    color: var(--vk-color);
}

.community-card span {
    font-weight: 700;
    color: var(--vk-color);
    word-break: break-all;
}

.community-card small {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Important Block */
.promo-important {
    background: linear-gradient(135deg, var(--pale-green-color) 0%, #ccffe0 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 170, 70, 0.1);
}

.promo-important i {
    font-size: 3rem;
    color: var(--primary-color);
}

.important-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.important-content p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Results Section */
.promo-results {
    background: var(--light-gray-color);
    padding: 40px 0;
}

.promo-results h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.results-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.result-item {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.result-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.8rem;
}

.result-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.result-content p {
    font-size: 1rem;
    color: var(--gray-color);
    margin: 0;
}

.result-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.link-vk {
    color: var(--vk-color);
    font-weight: 700;
    text-decoration: none;
}

.link-vk:hover {
    text-decoration: none;
}

/* Discounts Section */
.promo-discounts {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.discount-banner {
    position: relative;
    z-index: 2;
}

.discount-content {
    text-align: center;
    color: var(--light-color);
}

.discount-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.discount-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-discount {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-discount:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.discount-badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* FAQ Section */
.promo-faq-section {
    background: var(--light-color);
    padding: 80px 0;
}

.promo-faq-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.promo-faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    background: var(--light-gray-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f1f3;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 170, 70, 0.3);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-color);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Footer Section */
.promo-footer-section {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-info h3,
.footer-social h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-info i {
    width: 20px;
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-disclaimer {
    opacity: 0.6;
    margin: 0;
}

.btn-to-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-to-top:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Floating Decorations */
.floating-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.floating-shape.circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 170, 70, 0.3);
}

.floating-shape.square {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #7266F3 0%, #a26cf5 100%);
    border-radius: 20px;
    transform: rotate(45deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .title-main {
        font-size: 4rem;
    }
    
    .title-sub {
        font-size: 1.8rem;
    }
    
    .celebration-text {
        font-size: 8vw;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .discount-content h2 {
        font-size: 3rem;
    }
    
    .discount-badge {
        font-size: 6rem;
    }
}

@media (max-width: 1024px) {
    .promo-hero {
        min-height: auto;
        padding: 80px 0 120px;
    }
    .promo-bg-section {
        padding: 0px !important;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0px;
        text-align: center;
    }
    
    .hero-text-section {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-timer-section {
        gap: 35px;
    }
    
    .timer-container {
        max-width: 500px;
        margin: 0 auto;
    }
    .promo-action1,.promo-steps-section, .promo-steps-section{
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 60px 0 80px;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .celebration-text {
        font-size: 15vw;
    }
    
    .btn-cta {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .hero-timer-section {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .timer-title {
        font-size: 1.4rem;
    }
    
    .countdown-display {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .countdown-block {
        min-width: 60px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .partner-logo {
        height: 50px;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-row {
        grid-template-columns: 1fr;
    }
    
    .promo-steps {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .communities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vk-subscribe {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .promo-important {
        flex-direction: column;
        text-align: center;
    }
    
    .results-info {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .discount-content h2 {
        font-size: 2.5rem;
    }
    
    .discount-badge {
        font-size: 5rem;
        right: 5%;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .promo-hero {
        padding: 40px 0 60px;
    }
    
    .title-main {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .celebration-text {
        font-size: 20vw;
    }
    
    .btn-cta {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-timer-section {
        padding: 25px 15px;
    }
    
    .timer-title {
        font-size: 1.2rem;
    }
    
    .timer-subtitle {
        font-size: 0.9rem;
    }
    
    .countdown-display {
        gap: 5px;
    }
    
    .countdown-block {
        min-width: 50px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .promo-step-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .communities-grid {
        grid-template-columns: 1fr;
    }
    
    .discount-content h2 {
        font-size: 2rem;
    }
    
    .discount-content p {
        font-size: 1.1rem;
    }
    
    .discount-badge {
        font-size: 4rem;
    }
}

@media (max-width: 360px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .countdown-block {
        min-width: 45px;
        padding: 10px 6px;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
}

/* Background Image Section */
.promo-bg-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: none;
}

.bg-image-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40vw;
    max-height: 400px;
    min-height: 180px;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1200px) {
    .bg-image-container {
        max-width: 96vw;
        height: 48vw;
        max-height: 280px;
        border-radius: 22px;
    }
}

@media (max-width: 768px) {
    .bg-image-container {
        height: 54vw;
        max-height: 220px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .bg-image-container {
        height: 38vw;
        max-height: 120px;
        border-radius: 8px;
        min-height: 120px;
    }
}

.prize-star {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.9rem;
    color: #fb6868;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: box-shadow 0.2s, background 0.2s;
    outline: none;
}
.prize-star:hover, .prize-star:focus {
    background: #fffbe6;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.prize-tooltip {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    left: auto;
    min-width: 320px;
    max-width: 360px;
    background: var(--light-color);
    color: var(--dark-color);
    font-size: 0.95rem;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    line-height: 1.5;
    overflow-wrap: break-word;
    white-space: normal;
}
.prize-tooltip::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 18px;
    border-width: 0 8px 12px 8px;
    border-style: solid;
    border-color: transparent transparent var(--light-color) transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

/* Показ тултипа при наведении/фокусе на звезде */
.prize-card:has(.prize-star:hover) .prize-tooltip,
.prize-card:has(.prize-star:focus) .prize-tooltip {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 600px) {
    .prize-tooltip {
        min-width: 140px;
        max-width: 90vw;
        font-size: 0.85rem;
        padding: 10px 12px;
        top: 38px;
        right: 0;
        left: auto;
        border-radius: 8px;
    }
    .prize-tooltip::before {
        right: 12px;
        border-width: 0 6px 8px 6px;
        top: -8px;
    }
    .prize-star {
        top: 8px;
        right: 8px;
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }
}

/* Адаптация: если tooltip не помещается справа, показывать слева */
.prize-card.tooltip-left .prize-tooltip {
    left: 0;
    right: auto;
}
.prize-card .prize-tooltip::before {
    right: 18px;
    left: auto;
}
.prize-card.tooltip-left .prize-tooltip::before {
    left: 18px;
    right: auto;
}

/* Поднимаем карточку над соседними, когда виден tooltip */
.prize-card.tooltip-left,
.prize-card:has(.prize-star:hover),
.prize-card:has(.prize-star:focus) {
    z-index: 1000;
}

.prize-card.tooltip-open {
    z-index: 2000;
    overflow: visible;
}

