/* ===========================================
   PAYKAR - NEW YEAR 2025 EDITION
   =========================================== */

/* Base Colors (constant across themes) */
:root {
    --primary: #00c30a;
    --primary-dark: #079300;
    --primary-light: #33d43a;
    --gold: #ffd700;
    --gold-dark: #e6c200;
    --red: #ff3b3b;
    --font: 'Inter', sans-serif;
}

/* Dark Theme (default) */
:root,
[data-theme="dark"] {
    --bg-primary: rgb(22, 161, 55);
    --bg-secondary: rgb(18, 140, 48);
    --bg-tertiary: rgb(25, 180, 62);
    --bg-card: rgba(255, 255, 255, 0.1);
    --bg-card-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.2);
    --border-hover: rgba(255, 255, 255, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --glow-primary: rgba(255, 255, 255, 0.2);
    --glow-gold: rgba(255, 215, 0, 0.3);
    --header-bg: rgba(22, 161, 55, 0.5);
    --header-scrolled: rgba(18, 140, 48, 0.95);
    --snowflake-color: rgba(255, 255, 255, 0.8);
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Bootstrap Icons Base Styles */
.bi { display: inline-block; vertical-align: middle; }
.btn-icon { margin-right: 8px; font-size: 1.1em; }

/* ===========================================
   SNOWFLAKES ANIMATION
   =========================================== */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -50px;
    color: var(--snowflake-color);
    font-size: 1.5rem;
    animation: snowfall linear infinite;
    text-shadow: 0 0 10px var(--glow-primary);
    transition: color 0.3s ease;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; font-size: 1rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 1.5rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 10s; animation-delay: 2s; font-size: 1.2rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 0.5s; font-size: 2rem; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: 3s; font-size: 1rem; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: 1.5s; font-size: 1.8rem; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.3rem; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 8s; animation-delay: 4s; font-size: 1.6rem; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 10s; animation-delay: 0.8s; font-size: 1.1rem; }
.snowflake:nth-child(10) { left: 92%; animation-duration: 15s; animation-delay: 2s; font-size: 1.4rem; }
.snowflake:nth-child(11) { left: 10%; animation-duration: 11s; animation-delay: 3.5s; font-size: 1.7rem; }
.snowflake:nth-child(12) { left: 60%; animation-duration: 9s; animation-delay: 1.2s; font-size: 1.2rem; }

@keyframes snowfall {
    0% { transform: translateY(-50px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0.3; }
}

/* ===========================================
   CHRISTMAS LIGHTS
   =========================================== */
.christmas-lights {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    z-index: 10;
}

.light {
    width: 15px;
    height: 25px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: glow 1.5s ease-in-out infinite alternate;
}

.light.red { background: #ff3b3b; box-shadow: 0 0 20px #ff3b3b, 0 0 40px #ff3b3b; animation-delay: 0s; }
.light.gold { background: #ffd700; box-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700; animation-delay: 0.3s; }
.light.green { background: #00c30a; box-shadow: 0 0 20px #00c30a, 0 0 40px #00c30a; animation-delay: 0.6s; }
.light.blue { background: #00bfff; box-shadow: 0 0 20px #00bfff, 0 0 40px #00bfff; animation-delay: 0.9s; }

@keyframes glow {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}

/* ===========================================
   HEADER
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    background: var(--header-scrolled);
    box-shadow: 0 4px 30px var(--glow-primary);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav { display: flex; gap: 32px; }

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--gold); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: 0.3s;
}

.nav-link:hover::after { width: 100%; }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle Button */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
    transform: scale(1.05);
}

.theme-toggle i {
    font-size: 18px;
    position: absolute;
    transition: all 0.4s ease;
}

.theme-icon-light {
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px) rotate(-90deg);
}

.theme-icon-dark {
    color: var(--gold);
    opacity: 1;
    transform: translateY(0) rotate(0);
}


.menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.menu-btn.active {
    background: rgba(0, 195, 10, 0.2);
    border-color: var(--primary);
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary);
}

.menu-btn.active span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(22, 161, 55, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0 20px;
    z-index: 999;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mobile-menu.active {
    max-height: 400px;
    opacity: 1;
    padding: 20px;
    gap: 12px;
    pointer-events: all;
}

.mobile-link {
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateX(-20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }

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

.mobile-link:hover::before {
    left: 100%;
}

.mobile-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 195, 10, 0.3);
}

.mobile-link:active {
    transform: scale(0.98);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    /* background: radial-gradient(ellipse at top, #1a1a2e 0%, #0a0a12 50%, #000 100%); */
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/1920x1080.jpg") no-repeat center center/cover;
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.new-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(0, 190, 2, 0.2));
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    animation: shimmer 2s ease-in-out infinite;
}

.sparkle { animation: sparkle 1s ease-in-out infinite; }

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

@keyframes shimmer {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line { display: block; }

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, #4cd94e 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

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

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-subtitle .amount {
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 190, 2, 0.4);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 190, 2, 0.5);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-large { padding: 20px 40px; font-size: 18px; }

/* Countdown */
.countdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    min-width: 80px;
}

.time-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.time-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.time-sep {
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 100px;
}

.car-showcase {
    position: relative;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 2px solid rgba(0, 195, 10, 0.3);
    animation: ring-pulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 215, 0, 0.2);
    animation-delay: 0.5s;
}

@keyframes ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.car-image { position: relative; z-index: 2; }

.car-hero-img {
    width: 150%;
    max-width: 900px;
    filter: drop-shadow(0 20px 50px rgba(0, 195, 10, 0.4));
}

/* Hero Prizes Image */
.hero-prizes-img {
    margin-top: -30px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.prizes-preview-img {
    max-width: 100%;
    width: 500px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    border-radius: 16px;
}

/* .prizes-preview-img:hover {
    transform: scale(1.03);
} */

.car-svg {
    width: 100%;
    max-width: 450px;
    filter: drop-shadow(0 20px 50px rgba(0, 195, 10, 0.4));
    animation: car-float 4s ease-in-out infinite;
}

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

.gift-tag {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--red), #cc0000);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    animation: tag-bounce 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes tag-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* Ornaments */
.ornament {
    position: absolute;
    font-size: 40px;
    animation: ornament-float 5s ease-in-out infinite;
}

.ornament-1 { top: 10%; right: 10%; animation-delay: 0s; color: var(--primary); }
.ornament-2 { top: 30%; right: 5%; animation-delay: 1s; color: var(--gold); }
.ornament-3 { bottom: 20%; right: 15%; animation-delay: 2s; color: var(--red); }
.ornament-4 { bottom: 10%; left: 10%; animation-delay: 1.5s; color: var(--gold); }

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

/* ===========================================
   SECTIONS
   =========================================== */
.section { padding: 100px 0; }

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

.section-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    color: var(--gold);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* ===========================================
   WAVE DIVIDER
   =========================================== */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    color: var(--bg-secondary);
}

.wave-divider svg path {
    fill: currentColor;
}

.wave-divider.wave-bottom {
    bottom: 0;
}

.wave-divider.wave-style-2 svg {
    height: 100px;
    color: var(--bg-tertiary);
}

.wave-divider.wave-style-3 svg {
    height: 90px;
    color: var(--bg-primary);
}

.wave-divider.wave-style-4 svg {
    height: 80px;
    color: var(--bg-secondary);
}

.wave-divider.wave-style-5 svg {
    height: 70px;
    color: var(--bg-tertiary);
}

/* ===========================================
   RULES
   =========================================== */
.rules {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    padding-bottom: 100px;
}

.rules-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 20% 50%, var(--glow-primary) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, var(--glow-gold) 0%, transparent 50%);
}

.steps-container {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-card-new {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.step-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0;
    transition: 0.4s;
}

.step-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px var(--glow-primary);
}

.step-card-new:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-number span {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--border-color), var(--bg-card));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-visual {
    position: relative;
    margin-bottom: 24px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 195, 10, 0.15), rgba(0, 195, 10, 0.05));
    border: 2px solid rgba(0, 195, 10, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: 0.4s;
}

.step-icon-wrapper.success {
    background: linear-gradient(135deg, rgba(0, 195, 10, 0.3), rgba(0, 195, 10, 0.1));
    border-color: var(--primary);
}

.step-card-new:hover .step-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 195, 10, 0.3);
}

.step-glow {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 195, 10, 0.2), transparent 70%);
    opacity: 0;
    transition: 0.4s;
}

.step-card-new:hover .step-glow {
    opacity: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-content .highlight {
    color: var(--gold);
    font-weight: 700;
}

.step-content strong {
    color: var(--primary);
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--black);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    z-index: 10;
}

.rules-note {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.rules-note i {
    color: var(--gold);
    font-size: 20px;
}

.rules-note span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===========================================
   PRIZES
   =========================================== */
.prizes {
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.prizes-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.prizes-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.prizes-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 195, 10, 0.1);
    top: 0;
    right: -200px;
}

.prizes-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 215, 0, 0.08);
    bottom: 0;
    left: -150px;
}

/* Main Prize Section */
.main-prize-section {
    margin-bottom: 60px;
}

.main-prize-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.main-prize-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 80% 50%, rgba(0, 195, 10, 0.15), transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1), transparent 40%);
}

.main-prize-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.main-prize-left {
    padding-right: 20px;
}

.prize-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
}

.prize-label i {
    font-size: 16px;
}

.main-prize-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.main-prize-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.main-prize-count {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.count-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 40px rgba(0, 195, 10, 0.5);
}

.count-text {
    display: flex;
    flex-direction: column;
}

.count-text span {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.count-text small {
    font-size: 13px;
    color: var(--text-muted);
}

.main-prize-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.feature i {
    color: var(--primary);
}

.main-prize-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-display {
    position: relative;
    top: 55px;
    right: 120px;
}

.car-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 195, 10, 0.3), transparent 70%);
    border-radius: 50%;
    animation: car-pulse 3s ease-in-out infinite;
}

@keyframes car-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.main-car-img {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 150%;
    filter: drop-shadow(0 20px 40px rgba(0, 195, 10, 0.3));
}

/* Other Prizes Section */
.other-prizes-section {
    position: relative;
    z-index: 1;
}

.other-prizes-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.other-prizes-title i {
    color: var(--gold);
}

.prizes-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.prize-card-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.prize-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    opacity: 0;
    transition: 0.4s;
}

.prize-card-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent
    );
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.prize-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow:
            0 25px 60px rgba(0, 0, 0, 0.25),
            0 0 30px rgba(0, 195, 10, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.prize-card-new:hover::before {
    opacity: 1;
    animation: gradient-flow 2s linear infinite;
}

.prize-card-new:hover::after {
    opacity: 1;
    left: 100%;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.prize-card-new.featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    box-shadow:
            0 15px 45px rgba(255, 215, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.prize-card-new.featured::before {
    opacity: 1;
    animation: gradient-flow 2s linear infinite;
}

.prize-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.prize-card-new:hover .prize-card-glow {
    opacity: 1;
}

.prize-card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.prize-card-new:hover .prize-card-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.prize-card-img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.prize-card-new:hover .prize-card-img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.prize-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.prize-card-new:hover .prize-card-info h4 {
    color: var(--gold);
}

.prize-card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(0, 195, 10, 0.2), rgba(0, 195, 10, 0.1));
    border: 1px solid rgba(0, 195, 10, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prizes-note {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.prizes-note i {
    color: var(--gold);
    font-size: 20px;
}

.prizes-note span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===========================================
   PRODUCTS CAROUSEL
   =========================================== */
.products {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    overflow: hidden;
    position: relative;
    padding-bottom: 120px;
}

.products-carousel {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.products-carousel::before,
.products-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.products-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--black), transparent);
}

.products-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--black), transparent);
}

.products-track {
    display: flex;
    gap: 30px;
    animation: scroll-products 30s linear infinite;
    width: max-content;
}

.product-slide {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 10px;
    transition: 0.3s;
}

.product-slide:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.05);
}

.product-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll-products {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================================
   DATES
   =========================================== */
.dates {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    padding-bottom: 100px;
}

/* Dates Decorations */
.dates-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
}

.dates-decor-left {
    left: 5%;
}

.dates-decor-right {
    right: 5%;
}

.decor-item {
    font-size: 48px;
    opacity: 0.15;
    animation: decor-float 4s ease-in-out infinite;
}

.dates-decor-left .decor-item:nth-child(1) { color: var(--red); animation-delay: 0s; }
.dates-decor-left .decor-item:nth-child(2) { color: var(--gold); animation-delay: 0.5s; }
.dates-decor-left .decor-item:nth-child(3) { color: var(--primary); animation-delay: 1s; }

.dates-decor-right .decor-item:nth-child(1) { color: var(--primary); animation-delay: 0.3s; }
.dates-decor-right .decor-item:nth-child(2) { color: var(--gold); animation-delay: 0.8s; }
.dates-decor-right .decor-item:nth-child(3) { color: var(--red); animation-delay: 1.3s; }

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

/* Horizontal Timeline */
.timeline-horizontal {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
    z-index: 2;
}

.timeline-h-item {
    flex: 1;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.timeline-h-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: 0.4s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.timeline-h-item:hover .timeline-h-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.timeline-h-item.highlight .timeline-h-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 0 40px rgba(0, 195, 10, 0.5);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 195, 10, 0.5); }
    50% { box-shadow: 0 0 60px rgba(0, 195, 10, 0.8); }
}

.timeline-h-line {
    position: absolute;
    top: 35px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 215, 0, 0.2));
}

.timeline-h-item:last-child .timeline-h-line {
    display: none;
}

.timeline-h-content {
    padding: 0 10px;
}

.timeline-h-date {
    font-size: 14px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.timeline-h-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-h-item.highlight .timeline-h-date {
    font-size: 16px;
    color: var(--primary);
}

.timeline-h-item.highlight h4 {
    font-size: 20px;
    color: var(--text-primary);
}

/* Prize Distribution */
.prize-distribution {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.distribution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 60px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.distribution-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.distribution-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.distribution-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.distribution-time {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

/* ===========================================
   CTA
   =========================================== */
.cta {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 195, 10, 0.15);
    top: -100px;
    left: -100px;
    animation: glow-float 8s ease-in-out infinite;
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.1);
    bottom: -50px;
    right: -50px;
    animation: glow-float 8s ease-in-out infinite 2s;
}

@keyframes glow-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.cta-side-decor {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.floating-prize {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: float-prize 4s ease-in-out infinite;
}

.cta-side-decor.left .floating-prize:nth-child(1) { color: var(--red); animation-delay: 0s; }
.cta-side-decor.left .floating-prize:nth-child(2) { color: var(--gold); animation-delay: 0.5s; }
.cta-side-decor.right .floating-prize:nth-child(1) { color: var(--primary); animation-delay: 0.3s; }
.cta-side-decor.right .floating-prize:nth-child(2) { color: var(--white); animation-delay: 0.8s; }

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

.cta-content {
    text-align: center;
    max-width: 600px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.cta-badge i {
    color: var(--gold);
    font-size: 18px;
}

.cta-badge span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.cta-title-new {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-subtitle strong {
    color: var(--primary);
}

.cta-prizes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.cta-prize-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: 0.3s;
}

.cta-prize-item:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-3px);
}

.cta-prize-item i {
    font-size: 20px;
    color: var(--gold);
}

.cta-prize-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 195, 10, 0.4);
    transition: 0.3s;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 195, 10, 0.5);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: 0.3s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
}

.cta-stores {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.cta-stores i {
    color: var(--primary);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: linear-gradient(180deg, #0a0a12 0%, #050508 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.footer-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 195, 10, 0.08);
    top: -100px;
    left: -100px;
}

.footer-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.06);
    bottom: -50px;
    right: -50px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
    align-self: flex-start;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.footer-partner span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Footer Nav */
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav h4 i,
.footer-contact h4 i,
.footer-social h4 i {
    color: var(--primary);
    font-size: 16px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: 0.3s;
}

.footer-nav a i {
    font-size: 10px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-nav a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
}

.contact-item span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer Social */
.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-secondary);
    transition: 0.3s;
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-link:nth-child(1):hover {
    background: #1877f2;
    border-color: #1877f2;
    color: var(--white);
}

.social-link:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: var(--white);
}

.social-link:nth-child(3):hover {
    background: #0088cc;
    border-color: #0088cc;
    color: var(--white);
}

.social-link:nth-child(4):hover {
    background: #ff0000;
    border-color: #ff0000;
    color: var(--white);
}

.footer-app span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-secondary);
    transition: 0.3s;
}

.app-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Divider */
.footer-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-left p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom-center .footer-wish {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 195, 10, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
}

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

.footer-wish span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.footer-bottom-right a {
    color: var(--text-muted);
    font-size: 13px;
    transition: 0.3s;
}

.footer-bottom-right a:hover {
    color: var(--primary);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; margin-bottom: 40px; top: 50px; }
    .hero-title { font-size: 44px; }
    .hero-buttons { justify-content: center; }
    .countdown { align-items: center; }
    .prizes-grid { grid-template-columns: repeat(3, 1fr); }
    /* Wave dividers */
    .wave-divider svg { height: 60px; }
    /* Section padding */
    .section { padding: 60px 0; }
    .hero { padding-bottom: 80px; }
    .rules, .prizes, .products, .dates, .cta { padding-bottom: 80px; }
    /* Footer */
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; text-align: center; align-items: center; }
    .footer-logo-img { align-self: center; }
    .footer-partner { justify-content: center; }
    .social-links { justify-content: center; }
    .cta-side-decor { display: none; }
    .cta-wrapper { padding: 40px 30px; }
    .cta-title-new { font-size: 36px; }
    /* Prizes Section */
    .main-prize-content { grid-template-columns: 1fr; text-align: center; }
    .main-prize-left { padding-right: 0; }
    .main-prize-right { order: -1; margin-bottom: 20px; }
    .car-display { top: 0; right: 0; }
    .main-prize-features { justify-content: center; }
    .main-prize-count { justify-content: center; }
    .prizes-grid-new { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .menu-btn { display: flex; }
    .theme-toggle { width: 40px; height: 40px; border-radius: 10px; }
    .theme-toggle i { font-size: 16px; }
    .hero { min-height: auto; padding-top: 100px; }
    .hero-visual { top: 30px; margin-bottom: 30px; }
    .hero-title { font-size: 32px; line-height: 1.2; }
    .hero-subtitle { font-size: 16px; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 15px; }
    .section { padding: 50px 0; }
    /* Wave dividers */
    .wave-divider svg { height: 50px; }
    .hero, .rules, .prizes, .products, .dates, .cta { padding-bottom: 70px; }
    /* Steps */
    .steps-container { flex-direction: column; gap: 16px; }
    .step-card-new {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }
    .step-visual {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .step-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .step-number {
        position: static;
        margin-bottom: 8px;
        opacity: 0.6;
    }
    .step-number span { font-size: 24px; }
    .step-content h3 { font-size: 16px; margin-bottom: 6px; }
    .step-content p { font-size: 13px; line-height: 1.5; }
    .step-content .highlight { font-weight: 600; }
    .step-arrow { display: none; }
    .step-glow { display: none; }
    .prizes-grid { grid-template-columns: repeat(2, 1fr); }
    .prize-card { padding: 30px; }
    .christmas-lights { display: none; }
    .distribution-card { padding: 30px 20px; }
    .dates-decor { display: none; }
    .product-slide { width: 140px; height: 140px; }
    /* Timeline */
    .timeline-horizontal { flex-direction: column; align-items: center; gap: 25px; }
    .timeline-h-line { display: none; }
    .timeline-h-item { max-width: 100%; }
    .timeline-h-item.highlight .timeline-h-icon { width: 80px; height: 80px; }
    /* CTA */
    .cta-wrapper { padding: 30px 20px; border-radius: 24px; }
    .cta-title-new { font-size: 28px; }
    .cta-subtitle { font-size: 14px; }
    .cta-prizes { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .cta-prize-item { padding: 12px 16px; }
    .cta-actions { flex-direction: column; gap: 12px; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; }
    /* Prizes Section */
    .main-prize-card { padding: 25px 20px; border-radius: 20px; }
    .main-prize-right { order: -1; margin-bottom: 15px; }
    .car-display { top: 0; right: 0; }
    .main-prize-title { font-size: 28px; }
    .main-prize-desc { font-size: 14px; }
    .count-number { font-size: 44px; }
    .main-car-img { max-width: 250px; }
    .car-glow-effect { width: 250px; height: 250px; }
    .prizes-grid-new { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .prize-card-new { padding: 20px 15px; }
    .prize-card-img { height: 80px; }
    .other-prizes-title { font-size: 18px; margin-bottom: 25px; }
    /* Footer */
    .footer { padding: 50px 0 0; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-nav h4, .footer-contact h4, .footer-social h4 { justify-content: center; }
    .footer-nav a { justify-content: center; }
    .footer-nav a:hover { transform: none; }
    .contact-item { justify-content: center; }
    .footer-social { align-items: center; }
    .app-buttons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-divider { display: none; }
    /* New Year Badge */
    .new-year-badge { font-size: 13px; padding: 10px 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .logo-img { height: 32px; }
    .header { height: 70px; }
    .theme-toggle { width: 36px; height: 36px; border-radius: 8px; }
    .theme-toggle i { font-size: 14px; }
    .header-actions { gap: 8px; }
    /* Hero */
    .hero { padding-top: 90px; padding-bottom: 60px; }
    .hero-visual { top: 20px; margin-bottom: 20px; }
    .hero-title { font-size: 24px; line-height: 1.3; }
    .hero-subtitle { font-size: 14px; line-height: 1.6; }
    .hero-subtitle br { display: none; }
    .new-year-badge { font-size: 11px; padding: 8px 16px; }
    .new-year-badge .sparkle { display: none; }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    .hero-buttons { gap: 12px; }
    .car-hero-img { max-width: 280px; }
    .hero-prizes-img { margin-top: -15px; }
    .prizes-preview-img { width: 280px; }
    /* Countdown */
    .countdown { gap: 8px; }
    .countdown-label { font-size: 12px; }
    .time-block { padding: 8px 12px; min-width: 55px; }
    .time-num { font-size: 22px; }
    .time-label { font-size: 10px; }
    .time-sep { font-size: 20px; }
    /* Sections */
    .section { padding: 40px 0; }
    .section-title { font-size: 24px; }
    .section-subtitle { font-size: 14px; }
    .section-icon { font-size: 28px; margin-bottom: 12px; }
    /* Wave dividers */
    .wave-divider svg { height: 40px; }
    .hero, .rules, .prizes, .products, .dates, .cta { padding-bottom: 60px; }
    /* Steps */
    .step-card-new {
        padding: 16px;
        flex-direction: row;
        text-align: left;
        gap: 14px;
        border-radius: 14px;
    }
    .step-visual { margin-bottom: 0; }
    .step-icon-wrapper { width: 44px; height: 44px; font-size: 20px; }
    .step-number { display: none; }
    .step-content h3 { font-size: 15px; margin-bottom: 4px; }
    .step-content p { font-size: 12px; line-height: 1.4; }
    .rules-note {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 13px;
        gap: 8px;
    }
    /* Products */
    .product-slide { width: 120px; height: 120px; }
    /* Prizes */
    .prizes-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .prize-item { padding: 14px 10px; }
    .prize-item-icon { font-size: 24px; }
    .main-prize-section { margin-bottom: 30px; }
    .main-prize-card { padding: 18px 15px; border-radius: 18px; }
    .prize-label { font-size: 12px; padding: 6px 12px; }
    .main-prize-title { font-size: 22px; }
    .main-prize-desc { font-size: 13px; }
    .main-prize-count { flex-direction: column; gap: 5px; }
    .count-number { font-size: 36px; }
    .count-text span { font-size: 14px; }
    .count-text small { font-size: 11px; }
    .main-prize-features { gap: 6px; flex-wrap: wrap; justify-content: center; }
    .feature { padding: 5px 10px; font-size: 11px; }
    .main-car-img { max-width: 200px; }
    .car-glow-effect { width: 200px; height: 200px; }
    .other-prizes-title { font-size: 16px; margin-bottom: 20px; }
    .prizes-grid-new { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .prize-card-new { padding: 15px 10px; border-radius: 14px; }
    .prize-card-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 8px;
        right: 8px;
        border-radius: 8px;
    }
    .prize-card-img { height: 55px; margin-bottom: 10px; }
    .prize-card-info h4 { font-size: 12px; }
    .prize-card-tag { font-size: 9px; padding: 3px 8px; }
    .prizes-note { font-size: 12px; padding: 12px 15px; }
    /* Timeline */
    .timeline-horizontal { gap: 20px; }
    .timeline-h-icon { width: 55px; height: 55px; font-size: 22px; }
    .timeline-h-item.highlight .timeline-h-icon { width: 65px; height: 65px; font-size: 26px; }
    .timeline-h-date { font-size: 13px; }
    .timeline-h-content h4 { font-size: 14px; }
    /* Distribution */
    .distribution-card { padding: 20px 15px; }
    .distribution-icon { font-size: 36px; }
    .distribution-card h4 { font-size: 16px; }
    .distribution-card p { font-size: 13px; }
    .distribution-time { font-size: 13px; padding: 8px 16px; }
    /* CTA */
    .cta-wrapper { padding: 25px 15px; border-radius: 20px; }
    .cta-badge { font-size: 11px; padding: 8px 14px; }
    .cta-title-new { font-size: 22px; }
    .cta-subtitle { font-size: 13px; }
    .cta-subtitle br { display: none; }
    .cta-prizes { gap: 8px; }
    .cta-prize-item { padding: 8px 12px; }
    .cta-prize-item i { font-size: 16px; }
    .cta-prize-item span { font-size: 11px; }
    .cta-actions { gap: 10px; }
    .cta-btn-primary, .cta-btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    .cta-stores {
        flex-direction: column;
        text-align: center;
        font-size: 12px;
        gap: 6px;
    }
    /* Footer */
    .footer { padding: 35px 0 0; }
    .footer-main { gap: 25px; }
    .footer-logo-img { height: 40px; }
    .footer-tagline { font-size: 12px; }
    .footer-partner { padding: 10px 14px; flex-direction: column; gap: 6px; font-size: 11px; }
    .partner-logo { height: 20px; }
    .footer-nav h4, .footer-contact h4, .footer-social h4 { font-size: 12px; margin-bottom: 14px; }
    .footer-nav a { font-size: 12px; padding: 6px 0; }
    .contact-item { font-size: 12px; margin-bottom: 10px; }
    .contact-item i { font-size: 14px; }
    .social-link { width: 38px; height: 38px; font-size: 15px; }
    .app-btn { width: 38px; height: 38px; font-size: 16px; }
    .footer-app span { font-size: 11px; }
    .footer-bottom { padding: 18px 0; }
    .footer-wish span { font-size: 12px; }
    .footer-bottom-left p, .footer-bottom-right a { font-size: 11px; }
    /* Snowflakes */
    .snowflakes .snowflake { font-size: 14px; }
}

@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero-visual { top: 10px; margin-bottom: 15px; }
    .hero-title { font-size: 22px; }
    .hero-subtitle { font-size: 13px; }
    .btn-primary, .btn-secondary { padding: 12px 16px; font-size: 13px; }
    .section-title { font-size: 22px; }
    .step-icon-wrapper { width: 50px; height: 50px; font-size: 22px; }
    .step-content h3 { font-size: 15px; }
    .step-content p { font-size: 12px; }
    .prizes-grid-new { grid-template-columns: 1fr; gap: 12px; }
    .prize-card-new { padding: 20px 15px; }
    .prize-card-img { height: 70px; }
    .prize-card-info h4 { font-size: 14px; }
    .main-prize-title { font-size: 20px; }
    .main-car-img { max-width: 180px; }
    .cta-title-new { font-size: 20px; }
    .cta-prize-item { padding: 6px 10px; }
    .countdown-timer { flex-wrap: wrap; justify-content: center; }
}
