/**
 * Пятерочка - Лендинг акции "5 Элемент"
 * CSS стили
 * 
 * Основные возможности:
 * - Адаптивный дизайн для всех устройств
 * - Фирменные цвета Пятерочки
 * - Современные CSS возможности с fallback
 * - Анимации и переходы
 * - Интерактивные элементы
 */

/* ============================================================================
   ANIMATIONS AND SCROLL EFFECTS
   ============================================================================ */

/* Smooth scroll behavior for the entire page */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Enhanced animation keyframes for scroll-triggered elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ============================================================================
   SCROLL BEHAVIOR
   ============================================================================ */

/**
 * Отступ для якорной прокрутки к секции шагов
 * Учитывает высоту фиксированной шапки
 */
#participation-steps { 
    scroll-margin-top: 90px; 
}

@media (max-width: 768px) {
    #participation-steps { 
        scroll-margin-top: 72px; 
    }
}

/* ============================================================================
   RESET AND BASE STYLES
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fallback for older browsers */
html {
    font-size: 16px;
}

/* Fallback for browsers that don't support CSS Grid */
.no-grid .banner-content,
.no-grid .steps-grid,
.no-grid .partners-grid,
.no-grid .partners-banner-content {
    display: block;
}

.no-grid .banner-visual {
    display: inline-block;
    width: 48%;
    vertical-align: top;
    margin-right: 2%;
}

.no-grid .step-item,
.no-grid .partner-card {
    display: inline-block;
    width: 23%;
    margin-right: 2%;
    margin-bottom: 2rem;
}

/* Fallback for browsers that don't support Flexbox */
.no-flexbox .banner-content,
.no-flexbox .btn-participate,
.no-flexbox .btn-halva {
    display: block;
}

.no-flexbox .banner-visual {
    display: block;
    width: 100%;
}

/* Fallback for browsers that don't support CSS transforms */
.no-transform .card-visual,
.no-transform .btn-participate:hover,
.no-transform .btn-halva:hover {
    transform: none;
}

/* Fallback for browsers that don't support CSS animations */
.no-animation .card-visual,
.no-animation .floating-icon,
.no-animation .element-content,
.no-animation .step-item,
.no-animation .info-content,
.no-animation .prizes-banner-content,
.no-animation .clubs-content,
.no-animation .club-item,
.no-animation .clubs-illustration,
.no-animation .partner-card,
.no-animation .cta-button-content {
    animation: none;
    opacity: 1;
    transform: none;
}

/* Fallback colors for browsers that don't support CSS variables */
body {
    color: #292929;
    background-color: #ffffff;
}

/* CSS Variables with fallbacks */
:root {
    /* Фирменная цветовая палитра Пятёрочки */
    --primary-color: #e31e24;
    --primary-light: #ff4757;
    --primary-dark: #c41e3a;
    --secondary-color: #fff5f5;
    --secondary-light: #fff9f9;
    --secondary-dark: #ffe6e6;
    
    --text-primary: #292929;
    --text-secondary: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-800: #333333;
    --gray-900: #1A1A1A;
    
    /* Legacy colors for compatibility */
    --primary-orange: var(--primary-color);
    --primary-orange-light: var(--primary-light);
    --primary-orange-dark: var(--primary-dark);
    --secondary-blue: var(--primary-color);
    --secondary-blue-light: var(--primary-light);
    --accent-gold: var(--primary-color);
    --accent-gold-light: var(--secondary-color);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #e31e24 0%, #ff4757 100%);
    --gradient-secondary: linear-gradient(135deg, #fff5f5 0%, #fff9f9 100%);
    --gradient-accent: linear-gradient(135deg, #e31e24 0%, #c41e3a 100%);
    --gradient-bg: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    
    /* Тени - многослойные для glass-morphism эффекта */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.25);
    
    /* Современные многослойные тени */
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1), 
                    0 2px 8px rgba(0, 0, 0, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.15),
                       0 8px 24px rgba(0, 0, 0, 0.1),
                       0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-glow-red: 0 8px 32px rgba(227, 30, 36, 0.25),
                       0 4px 16px rgba(227, 30, 36, 0.15);
    
    /* Радиусы */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Header */
.header {
    position: static;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 12px 0;
}

.header-logo img {
    height: 32px;
    width: auto;
    display: block;
}


/* Apply button – styled similar to halvacard.ru CTA */
.header-cta .btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #ff7a00 0%, #e31e24 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.25);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-cta .btn-apply:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(227, 30, 36, 0.35);
    color: var(--white);
    filter: brightness(1.05);
}

.header-cta .btn-apply i {
    transition: transform 0.2s ease;
}

.header-cta .btn-apply:hover i { transform: translateX(4px); }
.header-cta .btn-apply:active { transform: translateY(0); box-shadow: 0 6px 16px rgba(227, 30, 36, 0.3); }
.header-cta .btn-apply:focus { outline: none; }
.header-cta .btn-apply:focus-visible { box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2), 0 8px 20px rgba(227, 30, 36, 0.25); }

@media (max-width: 480px) {
    .header-content { padding: 10px 0; }
    .header-logo img { height: 28px; }
    .header-cta .btn-apply { padding: 0.625rem 1rem; font-size: 0.95rem; border-radius: 9999px; }
}



/* Banner Section */
.banner {
    padding: 20px 0 40px;
    background: #ffffff;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 146, 58, 1);
    background-size: cover;
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-elevated);
    border: none;
    overflow: hidden;
    position: relative;
    min-height: 460px;
    /* Glass-morphism эффект для границы */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated), 0 0 40px rgba(0, 146, 58, 0.15);
}

.banner-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    padding: 3.1rem 3.7rem 0;
    position: relative;
    min-height: 460px;
}

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 45%;
    padding-bottom: 2rem;
}

.banner-logo img {
    height: 47px;
    width: auto;
    display: block;
}
.banner-logo { margin-bottom: 0.75rem; }

.banner-headline {
    font-size: 3.48rem;
    font-weight: 700;
    line-height: 1.05;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
    /* Gradient text эффект */
    background: linear-gradient(135deg, #ffffff 0%, #ffe6e6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

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

.banner-coin {
    height: 58px;
    width: auto;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top: -0.15rem;
    display: none;
}

.banner-subtitle-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.banner-subtitle-icon {
    width: 85px;
    flex-shrink: 0;
    margin-top: -2.3rem;
}

.banner-subtitle { 
    font-size: 1.25rem; 
    color: rgba(255,255,255,0.98); 
    line-height: 1;
    font-weight: 400;
    margin: 0;
}

.banner-cta {
    position: relative;
    z-index: 2;
    padding: 0 3.7rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    top: 15px;
}

.banner-bullets {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    color: var(--text-primary);
}

.banner-bullets li {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0.25rem 0;
}

.banner-right { 
    position: absolute; 
    right: 25px; 
    bottom: 0; 
    top: 90px;
    display: flex; 
    align-items: flex-end; 
    justify-content: flex-end; 
    width: 62%;
    height: 100%; 
    z-index: 1;
    pointer-events: none;
}

.banner-visual-image { 
    width: 600px; 
    max-width: none; 
    height: auto;
    display: block; 
    object-fit: contain; 
    object-position: bottom right;
    position: relative;
    z-index: 2;
    /* Parallax эффект */
    animation: floatImage 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(3px); }
}

.banner-ellipse {
    position: absolute;
    bottom: 20px;
    right: 35px;
    width: auto;
    height: auto;
    max-width: 800px;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
    /* Subtle rotation animation */
    animation: rotateEllipse 20s linear infinite;
}

.banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
}

.banner-footer-license {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.3;
    position: absolute;
    right: 30px;
    top: 20px;
}

.banner-footer-care {
    position: absolute;
    top: 33px;
    right: 30px;
}

.banner-footer-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

@keyframes rotateEllipse {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .banner-content { min-height: 400px; }
    .banner-left { max-width: 55%; gap: 1.25rem; }
    .banner-inner { padding: 2rem 2rem 0; min-height: 320px; }
    .banner-headline { font-size: 3.25rem; line-height: 0.9; }
    .banner-logo img { height: 32px; }
    .banner-logo { margin-bottom: 0.5rem; }
    .banner-subtitle-wrapper { gap: 0.625rem; }
    .banner-subtitle-icon { width: 40px; height: 40px; margin-top: 0.1rem; }
    .banner-subtitle { font-size: 1.125rem; line-height: 1.4; }
    .banner-visual-image { max-height: 110%; width: 105%; }
    .banner-right { width: 60%; top: 30px; right: 55px; }
    .banner-ellipse { max-width: 600px; bottom: -100px; right: -80px; }
    .banner-cta { padding: 0 2rem 2rem; }
}

@media (max-width: 768px) {
    .banner-content { min-height: auto; }
    .banner-inner { padding: 1.5rem 1.5rem 0; }
    .banner-left { max-width: 100%; margin-bottom: 1.25rem; padding-bottom: 1.25rem; gap: 1.25rem; }
    .banner-headline { font-size: 2.25rem; line-height: 0.9; padding-left: 2rem; }
    .banner-logo img { height: 30px; }
    .banner-logo { margin-bottom: 0.5rem; }
    .banner-subtitle-wrapper { gap: 0.625rem; padding-left: 2rem; }
    .banner-subtitle-icon { width: 36px; height: 36px; margin-top: 0.05rem; }
    .banner-subtitle { font-size: 1rem; line-height: 1.4; }
    .banner-visual-image { width: 100%; max-width: 100%; height: auto; max-height: 350px; object-position: center; }
    .banner-right { position: static; justify-content: center; height: auto; width: 100%; right: 0; }
    .banner-ellipse { max-width: 400px; bottom: -50px; right: 50%; transform: translateX(50%); }
    .banner-cta { padding: 0 1.5rem 1.5rem; justify-content: center; top: -20px; margin-bottom: 35px; }
    .banner-cta a { padding-left: 3.25rem; padding-right: 3.25rem; margin-top: 0; }
    .banner-footer { font-size: 0.7rem; height: 60px; }
    .banner-footer-license { display: none; }
    .banner-footer-care { max-width: 90%; top: 10px; }
}

@media (max-width: 480px) {
    .banner-content { min-height: auto; }
    .banner-inner { padding: 1.125rem 1.125rem 0; }
    .banner-left { margin-bottom: 1rem; padding-bottom: 1rem; gap: 1rem; }
    .banner-headline { font-size: 1.8rem; line-height: 0.9; }
    .banner-logo { margin-bottom: 0.25rem; }
    .banner-logo img { height: 28px; }
    .banner-subtitle-wrapper { gap: 0.5rem; }
    .banner-subtitle-icon { width: 32px; height: 32px; margin-top: 0; }
    .banner-subtitle { font-size: 0.9rem; line-height: 1.4; }
    .banner-visual-image { max-height: 280px; width: 100%; }
    .banner-ellipse { max-width: 300px; bottom: -30px; }
    .banner-cta { padding: 0 1.125rem 1.125rem; }
    .banner-footer-license,
    .banner-footer-care { font-size: 0.65rem; }
}



.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
    display: inline-block;
}

.prize-amount {
    color: var(--primary-color);
    font-size: 1.3em;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(227, 30, 36, 0.2);
    display: inline-block;
    margin: 0.2em 0;
}

.prize-details {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.1em;
}

.banner-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
    text-align: center;
}


.btn-participate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffffff;
    border: 2px solid rgba(0, 146, 58, 1);
    border-radius: var(--radius-lg);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-elevated);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-participate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-participate:hover::before {
    width: 300px;
    height: 300px;
}

.btn-participate:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow-red), 0 0 30px rgba(227, 30, 36, 0.4);
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-participate:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-participate:visited {
    color: #000000;
}

.btn-participate:visited:hover {
    color: #ffffff;
}

.btn-participate i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.btn-participate:hover i {
    transform: translateX(6px) rotate(15deg);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(6px) rotate(15deg); }
    50% { transform: translateX(10px) rotate(15deg); }
}

/* Banner Visual */
.banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.banner-image-container:hover {
    transform: scale(1.02);
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: filter 0.3s ease;
}

.banner-image:hover {
    filter: brightness(1.05);
}

.banner-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.banner-image-container:hover {
    transform: scale(1.02);
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: filter 0.3s ease;
}

.banner-image:hover {
    filter: brightness(1.05);
}

.card-visual {
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(3deg); }
}

.card {
    width: 280px;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    padding: 16px;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-xl);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.card-chip {
    width: 28px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 3px;
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.card-number {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.number-group {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.card-holder,
.card-expiry {
    color: var(--white);
}

.label {
    display: block;
    font-size: 8px;
    opacity: 0.8;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.name,
.date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon i {
    color: var(--primary-color);
    font-size: 14px;
}

.icon-1 {
    top: 15%;
    left: -15px;
    animation-delay: 0s;
}

.icon-2 {
    top: 65%;
    right: -15px;
    animation-delay: 1s;
}

.icon-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 5 Element Section */
.element-section {
    padding: 40px 0;
    background: #ffffff;
}

.element-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.element-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.element-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineGrow 1s ease forwards;
}

@keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}


.element-text {
    text-align: left;
    padding: 1rem 0;
}

.element-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.element-text p:last-child {
    margin-bottom: 0;
}

.element-highlight {
    padding: 1rem 0;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0;
}

.element-note {
    padding: 1rem;
    margin-top: 1rem;
}

.element-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.element-note p:last-child {
    margin-bottom: 0;
}

/* Participation Steps Section */
.participation-steps {
    padding: 48px 0;
    background: #ffffff;
}

.steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-align: left;
    position: relative;
}

.steps-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #00a651;
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

#participation-steps .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    min-height: 240px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.step-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(227, 30, 36, 0.2);
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #e8d5ff;
    color: #6b46c1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.2);
}

.step-item:hover::before {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

/* Hide step-number badge only inside the partners description steps */
#participation-steps .step-item::before { content: none; box-shadow: none; }
#participation-steps .step-item:hover::before { content: none; }

/* Специфичные стили для блока how-to-participate */
#how-to-participate .step-item:hover {
    background: rgba(0, 146, 58, 1);
    border-color: rgba(0, 146, 58, 1);
}

#how-to-participate .step-item:hover .step-text h3,
#how-to-participate .step-item:hover .step-text p {
    color: #ffffff;
}

#how-to-participate .step-item:hover::before {
    background: #ffffff;
    color: rgba(0, 146, 58, 1);
}

.step-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number { display: none; }
.step-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}

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

.step-number::after { content: none; }

.step-text {
    flex: 1;
    width: 100%;
    text-align: left;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.step-text h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
    display: inline;
}

/* Arrows between steps: disabled */
.step-item::after { content: none; }

/* Tablet Medium (1024px) */
@media (max-width: 1024px) {
    .steps-grid,
    #participation-steps .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step-item {
        min-height: auto;
        padding: 1.5rem;
    }
    .step-item::before {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .step-text h3 {
        font-size: 1rem;
    }
    .step-text p {
        font-size: 0.9rem;
    }
}

/* Tablet Small (768px) */
@media (max-width: 768px) {
    .steps-grid,
    #participation-steps .steps-grid { 
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .step-item { 
        padding: 1.25rem;
    }
    .step-item::before {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: -12px;
    }
    .step-text {
        margin-top: 1.25rem;
        padding: 0 0.25rem;
    }
    .step-text h3 { 
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    .step-text p { 
        font-size: 0.85rem;
    }
}

/* Mobile Large (600px) */
@media (max-width: 600px) {
    .steps-grid,
    #participation-steps .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step-item {
        padding: 1.5rem 1.25rem;
    }
    .step-item::before {
        top: -15px;
    }
    .step-text {
        margin-top: 1.5rem;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .steps-grid,
    #participation-steps .steps-grid { 
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .step-item { 
        padding: 1.25rem 1rem;
    }
    .step-item::before {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: -12px;
    }
    .step-text {
        margin-top: 1.25rem;
        padding: 0;
    }
    .step-text h3 { 
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    .step-text p { 
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Info Section */
.info-section {
    padding: 40px 0;
    background: var(--gray-50);
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-main {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-subtitle {
    font-size: 1.375rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Prizes Banner Section */
.prizes-banner {
    padding: 40px 1rem;
    background: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.prizes-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prizes-banner-content {
    background: #b8f803;
    border-radius: var(--radius-xl);
    padding: 30px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 300px;
}

.prizes-banner-text {
    text-align: left;
}

.prizes-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.prizes-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.prizes-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #000000;
    border-radius: 2px;
}

.prizes-main {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-align: center;
}

.prizes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.prizes-list li {
    font-size: 1.0625rem;
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.prizes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.25rem;
}

.prizes-list li strong {
    font-weight: 700;
    color: #000000;
}

.prizes-additional {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin: 1.5rem 0;
    font-style: italic;
}

.prizes-note {
    font-size: 0.9rem;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Prizes Visual - Monopoly Character */
.million-visual {
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(3deg); }
}

.monopoly-character {
    position: relative;
    z-index: 10;
    transform: perspective(1000px) rotateX(15deg) rotateY(-15deg);
}

.character-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.character-head {
    position: relative;
    width: 60px;
    height: 60px;
    background: #ffdbac;
    border: 3px solid #000000;
    border-radius: 50%;
    margin-bottom: 10px;
    z-index: 5;
}

.character-face {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
}

.eyes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.eye {
    width: 6px;
    height: 6px;
    background: #000000;
    border-radius: 50%;
}

.mouth {
    width: 12px;
    height: 6px;
    background: #000000;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
}

.character-hat {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

.hat-top {
    width: 25px;
    height: 20px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 50% 50% 0 0;
    margin: 0 auto;
}

.hat-brim {
    width: 35px;
    height: 8px;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 50%;
    margin-top: -5px;
}

.character-torso {
    width: 50px;
    height: 80px;
    background: #4a90e2;
    border: 3px solid #000000;
    border-radius: 25px;
    position: relative;
    z-index: 4;
}

.character-arms {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: space-between;
}

.arm {
    width: 15px;
    height: 40px;
    background: #ffdbac;
    border: 2px solid #000000;
    border-radius: 8px;
    position: relative;
}

.arm-left {
    transform: rotate(-20deg);
}

.arm-right {
    transform: rotate(20deg);
}

.hand {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ffdbac;
    border: 2px solid #000000;
    border-radius: 50%;
}

.money-stack {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.money-bill {
    width: 25px;
    height: 15px;
    background: #b8f803;
    border: 2px solid #000000;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #000000;
    animation: moneyFloat 2s ease-in-out infinite;
}

.bill-1 { animation-delay: 0s; }
.bill-2 { animation-delay: 0.2s; }
.bill-3 { animation-delay: 0.4s; }
.bill-4 { animation-delay: 0.1s; }
.bill-5 { animation-delay: 0.3s; }
.bill-6 { animation-delay: 0.5s; }

@keyframes moneyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

.character-legs {
    display: flex;
    gap: 10px;
    margin-top: -5px;
    z-index: 3;
}

.leg {
    width: 20px;
    height: 50px;
    background: #2c5aa0;
    border: 2px solid #000000;
    border-radius: 10px;
}

.leg-left {
    transform: rotate(-5deg);
}

.leg-right {
    transform: rotate(5deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coin-3d {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: #000000;
    animation: floatCoin3D 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

.coin-1 { top: 10%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 20%; right: 10%; animation-delay: 1s; }
.coin-3 { bottom: 20%; left: 10%; animation-delay: 2s; }

@keyframes floatCoin3D {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateX(180deg) rotateY(180deg); }
}

.sparkle {
    position: absolute;
    font-size: 1.2rem;
    color: #000000;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 50%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.sparkle-4 { bottom: 15%; right: 30%; animation-delay: 1.5s; }

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

.lightning {
    position: absolute;
    bottom: 10%;
    right: 15%;
    font-size: 1.5rem;
    color: #000000;
    animation: lightning 3s ease-in-out infinite;
}

@keyframes lightning {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.million-text {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 15;
}

.million-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #000000;
    line-height: 1;
    text-shadow: 2px 2px 0px #000000;
    margin-bottom: 0.5rem;
}

.million-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
}

/* Secondary Banner Section */
.secondary-banner {
    padding: 40px 1rem;
    background: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.secondary-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.secondary-banner-content {
    position: relative;
    background: rgba(0, 146, 58, 1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 300px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary-banner-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated), 0 0 40px rgba(0, 146, 58, 0.3);
}

/* Prize Visual Section */
.prize-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 1rem 0;
    order: 1;
}

.prize-image {
    width: 391px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    /* Floating animation with 3D effect */
    animation: prizeFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

.prize-image:hover {
    transform: scale(1.05) rotateY(5deg);
}

@keyframes prizeFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    25% { transform: translateY(-15px) rotateZ(1deg); }
    50% { transform: translateY(-8px) rotateZ(-1deg); }
    75% { transform: translateY(-12px) rotateZ(0.5deg); }
}

.phone-illustration {
    position: relative;
    width: 200px;
    height: 220px;
}

.phone-body {
    position: relative;
    width: 120px;
    height: 160px;
    background: #2a2a2a;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
}

.phone-screen {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    bottom: 15px;
    background: #b8f803;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
}

.prize-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #000000;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
    text-shadow: 2px 2px 0px #000000;
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    margin-top: 1rem;
}

.floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8f803;
    font-weight: bold;
    font-size: 1rem;
    animation: float 3s ease-in-out infinite;
}

.coin-1 {
    top: 20%;
    left: -10px;
    animation-delay: 0s;
}

.coin-2 {
    top: 40%;
    right: -15px;
    animation-delay: 0.5s;
}

.coin-3 {
    bottom: 30%;
    left: -5px;
    animation-delay: 1s;
}

.coin-4 {
    bottom: 10%;
    right: -10px;
    animation-delay: 1.5s;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.icon {
    position: absolute;
    color: #2a2a2a;
    font-size: 1.2rem;
    animation: float 2s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    right: 20%;
    animation-delay: 0.3s;
}

.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: 0.8s;
}

.icon-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.2s;
}

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

.secondary-banner-text {
    position: relative;
    z-index: 2;
    max-width: 100%;
    order: 2;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.text-block {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.secondary-banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: left;
    margin-top: 0;
}

.secondary-banner-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.secondary-banner-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.secondary-banner-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.secondary-banner-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.prize-list {
    margin-bottom: 1.5rem;
    text-align: left;
}

.prize-item {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.4;
    font-weight: 400;
    padding-left: 1.5rem;
    position: relative;
}

.prize-item::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
}

.prize-item:last-child {
    margin-bottom: 0;
}

.secondary-banner-note {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
}


.btn-questions {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-questions:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--white);
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
}

.partners-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.clubs-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.clubs-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.clubs-button i {
    transition: transform 0.3s ease;
}

.clubs-button:hover i {
    transform: translateX(4px);
}

/* Partners Banner Section */
.partners-banner {
    padding: 40px 1rem;
    background: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.partners-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-banner-content {
    /* background: var(--secondary-color);
    border-radius: var(--radius-xl); */
    padding: 30px 40px;
    /* box-shadow: var(--shadow-lg); */
    /* border: 1px solid var(--secondary-dark); */
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 200px;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
}

/* Removed partners tabs/panels styles */

.partner-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.partner-item.active .partner-number {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-shadow: 2px 2px 4px rgba(227, 30, 36, 0.3);
}

.partner-item.active .partner-text h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.partner-number {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.partner-text {
    flex: 1;
    text-align: left;
}

.partner-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.partner-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Clubs Visual */
/* Removed partners slider styles */

/* Kids Scene */
.kids-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.child-figure {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 60px;
}

.child-head {
    width: 20px;
    height: 20px;
    background: #ffdbac;
    border: 2px solid #000000;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.child-body {
    width: 25px;
    height: 25px;
    background: #4a90e2;
    border: 2px solid #000000;
    border-radius: 5px;
    margin: 0 auto;
}

.child-arms {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    display: flex;
    justify-content: space-between;
}

.arm {
    width: 8px;
    height: 20px;
    background: #ffdbac;
    border: 1px solid #000000;
    border-radius: 4px;
}

.child-legs {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    display: flex;
    justify-content: space-between;
}

.leg {
    width: 10px;
    height: 20px;
    background: #2c5aa0;
    border: 1px solid #000000;
    border-radius: 5px;
}

.toy-ball {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 15px;
    height: 15px;
    background: #ff6b6b;
    border: 2px solid #000000;
    border-radius: 50%;
}

.toy-block {
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 20px;
    height: 15px;
    background: #4ecdc4;
    border: 2px solid #000000;
    border-radius: 3px;
}

/* Pets Scene */
.pets-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cat-figure {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 40px;
}

.cat-head {
    width: 20px;
    height: 15px;
    background: #ffa500;
    border: 2px solid #000000;
    border-radius: 50% 50% 0 0;
    margin: 0 auto 5px;
}

.cat-body {
    width: 25px;
    height: 20px;
    background: #ffa500;
    border: 2px solid #000000;
    border-radius: 0 0 50% 50%;
    margin: 0 auto;
}

.cat-tail {
    position: absolute;
    top: 35px;
    right: -10px;
    width: 15px;
    height: 3px;
    background: #ffa500;
    border: 1px solid #000000;
    border-radius: 0 50% 50% 0;
    transform: rotate(45deg);
}

.cat-ears {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    display: flex;
    justify-content: space-between;
}

.ear {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid #ffa500;
}

.dog-figure {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 45px;
}

.dog-head {
    width: 25px;
    height: 20px;
    background: #8b4513;
    border: 2px solid #000000;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.dog-body {
    width: 30px;
    height: 25px;
    background: #8b4513;
    border: 2px solid #000000;
    border-radius: 0 0 50% 50%;
    margin: 0 auto;
}

.dog-tail {
    position: absolute;
    top: 30px;
    left: -15px;
    width: 20px;
    height: 4px;
    background: #8b4513;
    border: 1px solid #000000;
    border-radius: 50% 0 0 50%;
    transform: rotate(-30deg);
}

/* Wine Scene */
.wine-scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wine-bottle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20px;
    height: 60px;
}

.bottle-body {
    width: 15px;
    height: 40px;
    background: #2c3e50;
    border: 2px solid #000000;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

.bottle-neck {
    width: 8px;
    height: 15px;
    background: #2c3e50;
    border: 1px solid #000000;
    border-radius: 0 0 4px 4px;
    margin: 0 auto;
}

.bottle-cork {
    width: 10px;
    height: 8px;
    background: #8b4513;
    border: 1px solid #000000;
    border-radius: 4px;
    margin: 0 auto;
}

.wine-glass {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 15px;
    height: 40px;
}

.glass-bowl {
    width: 15px;
    height: 20px;
    background: #e74c3c;
    border: 2px solid #000000;
    border-radius: 0 0 50% 50%;
    margin: 0 auto;
}

.glass-stem {
    width: 2px;
    height: 15px;
    background: #000000;
    margin: 0 auto;
}

.glass-base {
    width: 8px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
    margin: 0 auto;
}

.grapes {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.grape-cluster {
    position: relative;
    width: 30px;
    height: 25px;
}

.grape {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8e44ad;
    border: 1px solid #000000;
    border-radius: 50%;
}

.grape-1 { top: 0; left: 5px; }
.grape-2 { top: 5px; left: 0; }
.grape-3 { top: 5px; right: 0; }
.grape-4 { bottom: 0; left: 50%; transform: translateX(-50%); }

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}


/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-header {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.partners-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-header a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.partners-header a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    width: 100%;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

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

/* CTA Button Section */
.cta-button-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.cta-button-content {
    max-width: 1200px;
    margin: 0 auto;
}

.btn-halva {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(90deg, #ff7a00 0%, #e31e24 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.25);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-halva:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(227, 30, 36, 0.35);
    color: var(--white);
    filter: brightness(1.05);
}

.btn-halva:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(227, 30, 36, 0.3);
}

.btn-halva:focus { outline: none; }
.btn-halva:focus-visible { box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2), 0 8px 20px rgba(227, 30, 36, 0.25); }

.btn-halva i { transition: transform 0.2s ease; }
.btn-halva:hover i { transform: translateX(4px); }


/* Responsive Design */
@media (max-width: 768px) {

    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-container {
        gap: 1.5rem;
    }


    .banner-content {
        margin: 0 1rem;
    }


    .secondary-banner-content {
        margin: 0 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .secondary-banner-text {
        position: static;
        transform: none;
        max-width: 100%;
        text-align: left;
    }

    .phone-illustration {
        width: 150px;
        height: 160px;
    }

    .phone-body {
        width: 90px;
        height: 120px;
    }

    .prize-amount {
        font-size: 1rem;
    }

    .text-block {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .secondary-banner-title {
        font-size: 1.1rem;
    }

    .secondary-banner-main {
        font-size: 1rem;
    }

    .secondary-banner-list li {
        font-size: 0.9rem;
    }

    .btn-participate {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    
    .btn-participate {
        padding: 14px 28px;
        font-size: 15px;
        margin-top: 16px;
    }
    
    .card {
        width: 240px;
        height: 150px;
        padding: 12px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .form-input {
        width: 100%;
        min-width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .element-title {
        font-size: 1.8rem;
    }

    .element-text {
        padding: 0.5rem 0;
    }

    .element-highlight {
        padding: 0.75rem 0;
        margin: 0.75rem 0;
    }

    .element-note {
        padding: 0.75rem;
        margin-top: 0.75rem;
    }

    .steps-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-item {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .info-main {
        font-size: 1rem;
    }

    .info-subtitle {
        font-size: 1.25rem;
    }

    .prizes-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .prizes-banner-content {
        padding: 25px 20px;
        margin: 0 1rem;
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        min-height: auto;
    }

    .prizes-banner-text {
        text-align: center;
    }

    .million-number {
        font-size: 1.8rem;
    }

    .monopoly-character {
        transform: perspective(800px) rotateX(15deg) rotateY(-15deg);
    }

    .character-head {
        width: 50px;
        height: 50px;
    }

    .character-torso {
        width: 40px;
        height: 65px;
    }

    .character-arms {
        width: 100px;
        height: 35px;
    }

    .money-bill {
        width: 20px;
        height: 12px;
        font-size: 0.7rem;
    }

    .coin-3d {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .sparkle {
        font-size: 1rem;
    }

    .lightning {
        font-size: 1.2rem;
    }

    .prizes-main {
        font-size: 1.125rem;
    }

    .prizes-list li {
        font-size: 1rem;
    }

    .prizes-additional {
        font-size: 1rem;
    }

    .clubs-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .clubs-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .partners-banner-content {
        padding: 25px 20px;
        margin: 0 1rem;
        gap: 20px;
        min-height: auto;
    }

    /* Removed responsive styles for tabs/slider */

    .partners-list {
        gap: 1.25rem;
    }

    .partner-item {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .partner-number {
        font-size: 1.75rem;
    }

    .partners-header h2 {
        font-size: 2rem;
    }

    .partners-header p {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-card {
        padding: 0.5rem;
    }

    .partner-logo {
        height: 50px;
    }

    .cta-button-section {
        padding: 40px 0;
    }

    .btn-halva {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

}

@media (max-width: 480px) {


    .banner-title {
        font-size: 2rem;
    }
    
    .banner-container {
        gap: 1rem;
    }


    .banner-content {
        margin: 0 0.5rem;
    }


    .secondary-banner-content {
        margin: 0 0.5rem;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .secondary-banner-text {
        position: static;
        transform: none;
        max-width: 100%;
        text-align: left;
    }

    .phone-illustration {
        width: 120px;
        height: 140px;
    }

    .phone-body {
        width: 80px;
        height: 100px;
    }

    .prize-amount {
        font-size: 0.9rem;
    }

    .coin {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .icon {
        font-size: 1rem;
    }

    .text-block {
        padding: 1rem;
        border-radius: 12px;
    }

    .secondary-banner-title {
        font-size: 1rem;
    }

    .secondary-banner-main {
        font-size: 0.95rem;
    }

    .secondary-banner-list li {
        font-size: 0.85rem;
    }

    .btn-participate {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .banner {
        padding: 30px 0.5rem;
    }
    
    .card {
        width: 220px;
        height: 140px;
        padding: 10px;
    }
    
    .number-group {
        font-size: 12px;
    }
    
    .floating-icon {
        width: 24px;
        height: 24px;
    }
    
    .floating-icon i {
        font-size: 10px;
    }
    
    .btn-participate {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 14px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .element-title {
        font-size: 1.5rem;
    }

    .element-text {
        padding: 0.5rem 0;
    }

    .element-text p {
        font-size: 0.9rem;
    }

    .element-highlight {
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }

    .element-note {
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    .element-note p {
        font-size: 0.8rem;
    }

    .steps-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .step-item {
        padding: 1.75rem 1.25rem;
        min-height: 220px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-text h3 {
        font-size: 1.25rem;
    }

    .step-text p {
        font-size: 1rem;
    }

    .info-main {
        font-size: 0.9rem;
    }

    .info-subtitle {
        font-size: 1.125rem;
    }

    .prizes-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .prizes-banner {
        padding: 30px 0.5rem;
    }

    .prizes-banner-content {
        padding: 20px 15px;
        margin: 0 0.5rem;
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }

    .million-number {
        font-size: 1.5rem;
    }

    .monopoly-character {
        transform: perspective(600px) rotateX(15deg) rotateY(-15deg);
    }

    .character-head {
        width: 40px;
        height: 40px;
    }

    .character-torso {
        width: 35px;
        height: 55px;
    }

    .character-arms {
        width: 80px;
        height: 30px;
    }

    .money-bill {
        width: 18px;
        height: 10px;
        font-size: 0.6rem;
    }

    .coin-3d {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .sparkle {
        font-size: 0.8rem;
    }

    .lightning {
        font-size: 1rem;
    }

    .prizes-main {
        font-size: 1rem;
    }

    .prizes-list li {
        font-size: 0.9rem;
    }

    .prizes-additional {
        font-size: 0.9rem;
    }

    .prizes-note {
        font-size: 0.8rem;
    }

    .clubs-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .clubs-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .partners-banner {
        padding: 30px 0.5rem;
    }

    .partners-banner-content {
        padding: 20px 15px;
        margin: 0 0.5rem;
        gap: 15px;
        min-height: auto;
    }

    /* Removed responsive styles for tabs/slider */

    .partner-item {
        padding: 0.5rem 0;
        gap: 0.75rem;
    }

    .partner-number {
        font-size: 1.5rem;
    }

    .partner-text h3 {
        font-size: 1.125rem;
    }

    .partner-text p {
        font-size: 0.9rem;
    }

    .partners-header h2 {
        font-size: 1.75rem;
    }

    .partners-header p {
        font-size: 0.9rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .partner-card {
        padding: 0.5rem;
    }

    .partner-logo {
        height: 40px;
    }

    .cta-button-section {
        padding: 30px 0;
    }

    .btn-halva {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.element-content,
.step-item,
.info-content,
.prizes-banner-content,
.clubs-content,
.club-item,
.clubs-illustration,
.partner-card,
.cta-button-content {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(2) {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) {
    animation-delay: 0.3s;
}

.step-item:nth-child(4) {
    animation-delay: 0.4s;
}

.club-item:nth-child(1) {
    animation-delay: 0.1s;
}

.club-item:nth-child(2) {
    animation-delay: 0.2s;
}

.club-item:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-card:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-card:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-card:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-card:nth-child(4) {
    animation-delay: 0.4s;
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating button animation */
@keyframes floatButton {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--gray-50);
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(224, 224, 224, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
}

.faq-item:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateX(8px);
    border-color: rgba(227, 30, 36, 0.3);
}

.faq-item.active {
    box-shadow: var(--shadow-glow-red);
    border-color: rgba(227, 30, 36, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) scale(1.2);
}

.faq-item:hover .faq-question i {
    transform: scale(1.15);
    animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.3); }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Align FAQ lists with paragraph text */
.faq-answer ul,
.faq-answer ol {
    margin: 0.5rem 0 0;
    padding-left: 0;
    list-style-position: inside;
}

.faq-answer li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0.25rem 0 0 0;
}

/* Space between list and following paragraph */
.faq-answer ul + p,
.faq-answer ol + p {
    margin-top: 0.5rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 40px 0;
    background: transparent;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.disclaimer-text {
    font-size: 0.7rem;
    line-height: 1.5;
    color: var(--gray-400);
}

.disclaimer-text p {
    margin-bottom: 1rem;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.disclaimer-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.disclaimer-note {
    font-size: 0.65rem;
    color: var(--gray-400);
    font-style: italic;
    margin-top: 1.5rem;
}

/* Responsive Disclaimer */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 30px 0;
    }
    
    .disclaimer-content {
        padding: 0 0.5rem;
    }
    
    .disclaimer-text {
        font-size: 0.65rem;
    }
    
    .disclaimer-note {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        padding: 20px 0;
    }
    
    .disclaimer-text {
        font-size: 0.6rem;
        line-height: 1.4;
    }
    
    .disclaimer-note {
        font-size: 0.55rem;
    }
}
