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

/* ============================================================================
   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: #00a651;
    --primary-light: #00c853;
    --primary-dark: #007a3d;
    --secondary-color: #f1f8e9;
    --secondary-light: #f8fdf5;
    --secondary-dark: #e8f5e8;
    
    --text-primary: #1b5e20;
    --text-secondary: #2e7d32;
    --text-light: #4caf50;
    --white: #FFFFFF;
    --gray-50: #f8fdf5;
    --gray-100: #f1f8e9;
    --gray-200: #e8f5e8;
    --gray-300: #c8e6c9;
    --gray-800: #2e7d32;
    --gray-900: #1b5e20;
    
    /* 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, #00a651 0%, #00c853 100%);
    --gradient-secondary: linear-gradient(135deg, #f1f8e9 0%, #f8fdf5 100%);
    --gradient-accent: linear-gradient(135deg, #00a651 0%, #007a3d 100%);
    --gradient-bg: linear-gradient(135deg, #f8fdf5 0%, #ffffff 100%);
    
    /* Тени */
    --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);
    
    /* Радиусы */
    --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(--white);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

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



/* Banner Section */
.banner {
    padding: 20px 0 40px;
    background: var(--primary-color);
}

#home {
    background: var(--white);
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--secondary-color);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--secondary-dark);
    overflow: hidden;
}

.banner-bg-image {
    width: 100%;
    height: auto;
    display: block;
}



.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: 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;
}

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

.btn-participate:visited {
    color: var(--white);
}

.btn-participate i {
    transition: transform 0.3s ease;
}

.btn-participate:hover i {
    transform: translateX(4px);
}

/* 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: var(--white);
}

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

.element-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
}


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

.element-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 1rem;
}

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

.element-highlight {
    padding: 1rem 0;
    font-weight: 600;
    color: #000000;
    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: var(--primary-color);
}

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

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

.steps-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-light);
    position: relative;
    min-height: 240px;
    transition: all 0.3s ease;
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #e31e24;
    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(0, 166, 81, 0.2);
}

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

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

.step-number { display: none; }

.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: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-text p {
    font-size: 0.85rem;
    color: #000000;
    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 {
        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 { 
        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 {
        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 { 
        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: #e31e24;
}

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

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

.info-subtitle {
    font-size: 1.375rem;
    color: var(--white);
    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: var(--white);
    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: #66bb6a;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #4caf50;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 300px;
}

/* 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);
}

.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: var(--white);
    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: var(--white);
    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: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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


.btn-questions {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--white);
    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: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 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;
}

/* Tabs */
.partners-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.tab-btn {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    box-shadow: var(--shadow-sm);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}


.partners-panels {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.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 */
.partners-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.partners-slider {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.slide-content {
    padding: 2rem;
    text-align: left;
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* 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: 4rem;
}

.partners-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.partners-header p {
    font-size: 1.125rem;
    color: #000000;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-header a {
    color: #e31e24;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.partners-header a:hover {
    color: #c41e3a;
    text-decoration: underline;
}

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

.partner-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.1);
}

.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(--primary-color);
    text-align: center;
}

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

.btn-halva {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #e31e24;
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-halva:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
    background: #c41e3a;
}

.btn-halva:visited {
    color: var(--white);
}

.btn-halva i {
    transition: transform 0.3s 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;
    }

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

    .tab-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .slide-content {
        padding: 1.5rem;
        text-align: center;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .partners-slider {
        width: 150px;
        height: 150px;
    }

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

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

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .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(3, 1fr);
        gap: 1rem;
    }

    .partner-card {
        padding: 0.75rem;
    }

    .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;
    }

    .partners-tabs {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .tab-btn {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .slide-content {
        padding: 1rem;
        text-align: center;
    }

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

    .slide-description {
        font-size: 0.9rem;
    }

    .partners-slider {
        width: 120px;
        height: 120px;
    }

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

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

    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .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;
}

.partner-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* 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(--primary-color);
}

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

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    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-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.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: #000000;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #000000;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

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

.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-primary);
    margin: 0;
}

/* 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(--white);
    text-decoration: underline;
}

.disclaimer-text a:hover {
    color: var(--white);
    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;
    }
}
