* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ec4899;
    --secondary-color: #f9a8d4;
    --accent-color: #f97316;
    --christmas-red: #dc2626;
    --christmas-green: #16a34a;
    --christmas-gold: #fbbf24;
    --bg-primary: #ffffff;
    --bg-secondary: #fef7f7;
    --bg-light: #fce7f3;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --gradient-pink: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 100%);
    --gradient-gold: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 50%, #fef3c7 100%);
    --gradient-christmas: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 30%, #fef3c7 60%, #fce7f3 100%);
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #fce7f3 0%, 
        #f9a8d4 20%, 
        #fef3c7 40%, 
        #fde68a 60%, 
        #fce7f3 80%, 
        #f9a8d4 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.95;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.35) 1.8px, transparent 1.8px),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.25) 1.2px, transparent 1.2px);
    background-size: 200px 200px, 250px 250px, 300px 300px, 180px 180px, 220px 220px;
    background-position: 0 0, 100px 100px, 200px 200px, 50px 50px, 150px 150px;
    animation: sparkleMove 20s linear infinite;
    opacity: 0.6;
}

.bg-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(249, 168, 212, 0.1) 0%, transparent 50%);
}

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

@keyframes sparkleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: sparkleFloat 4s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.sparkle-1 { left: 10%; top: 15%; animation-delay: 0s; font-size: 1.2rem; }
.sparkle-2 { left: 25%; top: 25%; animation-delay: 0.5s; font-size: 1.5rem; }
.sparkle-3 { left: 40%; top: 10%; animation-delay: 1s; font-size: 1.3rem; }
.sparkle-4 { left: 55%; top: 30%; animation-delay: 1.5s; font-size: 1.4rem; }
.sparkle-5 { left: 70%; top: 20%; animation-delay: 2s; font-size: 1.6rem; }
.sparkle-6 { left: 85%; top: 15%; animation-delay: 2.5s; font-size: 1.3rem; }
.sparkle-7 { left: 15%; top: 60%; animation-delay: 0.3s; font-size: 1.4rem; }
.sparkle-8 { left: 30%; top: 70%; animation-delay: 0.8s; font-size: 1.5rem; }
.sparkle-9 { left: 60%; top: 65%; animation-delay: 1.2s; font-size: 1.3rem; }
.sparkle-10 { left: 80%; top: 75%; animation-delay: 1.8s; font-size: 1.4rem; }

@keyframes sparkleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(10px, -15px) scale(1.2) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(-5px, -25px) scale(0.9) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(-10px, -10px) scale(1.1) rotate(270deg);
        opacity: 0.9;
    }
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 168, 212, 0.6) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 243, 199, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 2s;
}

.glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Logo Header */
.logo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.5rem 0 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(236, 72, 153, 0.15);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
}

.logo-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    gap: 0.3rem;
}

.logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 1rem 0.1rem 1rem;
    position: relative;
}

.main-nav::before {
    display: none;
}

.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    backdrop-filter: blur(10px);
    overflow: hidden;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.nav-link::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0;
    font-size: 0.7rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0);
    z-index: 1;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.25),
                0 0 20px rgba(236, 72, 153, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.nav-link:hover::before {
    width: 200px;
    height: 200px;
}

.nav-link:hover::after {
    opacity: 1;
    transform: scale(1) rotate(15deg);
}

.nav-link:active {
    transform: translateY(-1px) scale(1.02);
}

.nav-link.active {
    color: #ffffff;
    background: var(--gradient-pink);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4),
                0 0 30px rgba(236, 72, 153, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transform: translateY(-2px);
}

.nav-link.active::before {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 0;
}

.nav-link.active::after {
    opacity: 1;
    transform: scale(1);
}

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

@media (max-width: 768px) {
    .logo-header {
        padding: 1rem 0;
    }
    
    .logo {
        height: 35px;
    }
    
    .main-nav {
        gap: 0.3rem;
        padding: 0.2rem 0;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        gap: 0.25rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        letter-spacing: 0.2px;
    }
}

/* Christmas Decorations */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: snowfall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 11s; animation-delay: 2s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 13s; animation-delay: 0.5s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 10s; animation-delay: 1.5s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 12s; animation-delay: 0.8s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 11s; animation-delay: 2.5s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 13s; animation-delay: 1.2s; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 10s; animation-delay: 0.3s; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 12s; animation-delay: 1.8s; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 11s; animation-delay: 0.7s; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 13s; animation-delay: 2.2s; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 10s; animation-delay: 1.4s; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 12s; animation-delay: 0.6s; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 11s; animation-delay: 2.8s; }

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

.christmas-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 4;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.christmas-decoration.tree-left {
    left: 2%;
    top: 10%;
    font-size: 4rem;
    animation-delay: 0s;
}

.christmas-decoration.tree-right {
    right: 2%;
    top: 15%;
    font-size: 4rem;
    animation-delay: 1s;
}

.christmas-decoration.ornament-1 {
    left: 5%;
    top: 30%;
    font-size: 2rem;
    animation-delay: 0.5s;
}

.christmas-decoration.ornament-2 {
    right: 5%;
    top: 35%;
    font-size: 2rem;
    animation-delay: 1.5s;
}

.christmas-decoration.ornament-3 {
    left: 8%;
    top: 60%;
    font-size: 2rem;
    animation-delay: 2s;
}

.christmas-decoration.ornament-4 {
    right: 8%;
    top: 65%;
    font-size: 2rem;
    animation-delay: 0.8s;
}

.christmas-decoration.star-1 {
    left: 3%;
    top: 50%;
    font-size: 2.5rem;
    animation-delay: 1.2s;
}

.christmas-decoration.star-2 {
    right: 3%;
    top: 55%;
    font-size: 2.5rem;
    animation-delay: 0.3s;
}

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

@media (max-width: 768px) {
    .christmas-decoration {
        font-size: 2rem;
    }
    
    .christmas-decoration.tree-left,
    .christmas-decoration.tree-right {
        font-size: 2.5rem;
    }
    
    .snowflake {
        font-size: 1rem;
    }
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    padding: 140px 5% 60px;
    overflow: hidden;
    width: 100%;
    z-index: 10;
}

.hero-wrapper {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 0 2%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 150px 150px;
    opacity: 0.5;
    pointer-events: none;
}


.hero-content {
    z-index: 3;
    position: relative;
    text-align: center;
    min-width: 0;
}

.hero-image-left {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: fadeInLeft 1s ease 0.3s both;
    overflow: visible;
    margin-left: -8%;
}

.hero-image-right {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s both;
    overflow: visible;
    margin-right: -8%;
}

.hero-img {
    max-width: 150%;
    width: 700px;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    object-position: center;
}

.hero-img:hover {
    transform: scale(1.02);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
    animation: fadeInUp 1s ease 0.3s both;
}

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

/* Countdown */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.countdown-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 110px;
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item::before {
    content: '🎄';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    background: #ffffff;
    padding: 0 4px;
    z-index: 1;
}

.countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec4899;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgb(250, 201, 201);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: rgb(245, 186, 186);
}

.hero-btn-appointment {
    background: rgb(250, 201, 201);
}

.hero-btn-appointment:hover {
    background: rgb(245, 186, 186);
}

.hero-btn-certificate {
    background: rgb(250, 201, 201);
    color: #fff;
}

.hero-btn-certificate:hover {
    background: rgb(245, 186, 186);
}

/* Section Styles */
section {
    padding: 80px 5%;
    width: 100%;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

section:nth-child(even) {
    background: rgba(254, 247, 247, 0.8);
}

/* How to Get Prizes Section */
.how-to-get-prizes {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.how-to-get-prizes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(236, 72, 153, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(249, 168, 212, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
    opacity: 0.5;
    pointer-events: none;
}

.how-to-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1e3a8a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.how-to-title span {
    color: #f97316;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    padding: 0 2%;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-square {
    width: 150px;
    height: 150px;
    background: var(--gradient-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.step-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #374151;
    line-height: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 0.5rem;
}

.action-section {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.tg-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(90deg, #dc2626 0%, #ec4899 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tg-icon {
    font-size: 1.2rem;
    display: inline-block;
}

.tg-text {
    display: inline-block;
}

.tg-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    background: linear-gradient(90deg, #b91c1c 0%, #db2777 100%);
}

.tg-button:active {
    transform: translateY(-1px);
}

.action-note {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.note-icon {
    font-size: 1rem;
    display: inline-block;
}

/* Points Exchange Section */
.points-exchange {
    background: rgba(254, 247, 247, 0.85);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.points-exchange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(236, 72, 153, 0.05) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 80%, rgba(249, 168, 212, 0.05) 1.5px, transparent 1.5px);
    background-size: 200px 200px, 150px 150px;
    opacity: 0.5;
    pointer-events: none;
}

.points-exchange::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(139, 101, 8, 0.15) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.points-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    padding: 0 5%;
}

.points-content {
    flex: 1;
    min-width: 300px;
}

.points-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.points-title-white {
    display: block;
    color: var(--text-primary);
}

.points-title-orange {
    display: block;
    color: var(--accent-color);
}

.points-info-box {
    background: var(--bg-light);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
}

.points-info-text {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
}

.points-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    min-width: 250px;
}

.exchange-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--primary-color) 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.exchange-button::before {
    content: '🎁';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.exchange-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #db2777;
}

.exchange-button:active {
    transform: translateY(-1px);
}

.points-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 968px) {
    .points-container {
        flex-direction: column;
        text-align: center;
    }

    .points-action {
        align-items: center;
        width: 100%;
    }

    .points-title {
        font-size: 2.5rem;
    }

    .points-info-text {
        font-size: 1.1rem;
    }

    .exchange-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .points-title {
        font-size: 2rem;
    }

    .points-info-text {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .exchange-button {
        padding: 1.1rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .how-to-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

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

    .step-number-box {
        width: 100px;
        height: 100px;
    }

    .step-number {
        font-size: 3rem;
    }

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

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

    .tg-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Prizes Section */
.prizes {
    background: rgba(254, 247, 247, 0.85);
    backdrop-filter: blur(10px);
}

/* Partners Section */
.partners-section {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(236, 72, 153, 0.05) 1.5px, transparent 1.5px),
        radial-gradient(circle at 90% 80%, rgba(249, 168, 212, 0.05) 1.5px, transparent 1.5px);
    background-size: 200px 200px, 150px 150px;
    opacity: 0.5;
    pointer-events: none;
}

.partners-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.partners-title-white {
    display: block;
    color: var(--text-primary);
}

.partners-title-orange {
    display: block;
    color: var(--accent-color);
}

.partners-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    padding: 0 2%;
    align-items: stretch;
}

.partner-card-wrapper {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    height: 100%;
}

.partner-card-wrapper:hover {
    transform: translateY(-5px);
}

.partner-service-card {
    border-radius: 16px 16px 0 0;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-height: 240px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.partner-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-service-card:hover::before {
    opacity: 1;
}

.partner-card-wrapper:hover .partner-service-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.partner-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.partner-icon {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    display: inline-block;
}

.partner-card-wrapper:hover .partner-icon {
    transform: scale(1.1) rotate(5deg);
}

.partner-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.partner-service-card[style*="background: #fff"] .partner-name {
    color: #1e293b;
}

.partner-prize {
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.partner-service-card[style*="background: #fff"] .partner-prize {
    color: #475569;
}

.partner-info {
    text-align: center;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 16px 16px;
    margin-top: -1rem;
    padding-top: 1.5rem;
    transform: translateZ(0);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.partner-description {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 0 1rem;
}

.partner-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.partner-link-site {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(249, 168, 212, 0.15) 100%);
    color: var(--primary-color);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.15);
}

.partner-link-site:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(249, 168, 212, 0.25) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
    border-color: rgba(236, 72, 153, 0.4);
}

.partner-link-tg {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.partner-link-tg:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

.partners-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

@media (max-width: 768px) {
    .partners-title {
        font-size: 2.5rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partner-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .partner-link {
        width: 100%;
        text-align: center;
    }

    .partner-service-card {
        padding: 1.5rem 1rem;
        min-height: 180px;
    }

    .partner-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-name {
        font-size: 1.1rem;
    }

    .partner-prize {
        font-size: 0.85rem;
    }
}

.prizes-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 2%;
}

.prizes-header-icon {
    font-size: 2.5rem;
}

.prizes-header-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2%;
}

.prize-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.prize-card::after {
    content: '🎁';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.prize-card:hover::after {
    opacity: 0.7;
    transform: scale(1.2) rotate(15deg);
}

.prize-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.prize-card-header {
    height: 8px;
    width: 100%;
    background: var(--card-color, #6366f1);
}

.prize-card[data-color="blue"] .prize-card-header {
    background: #3b82f6;
}

.prize-card[data-color="purple"] .prize-card-header {
    background: #8b5cf6;
}

.prize-card[data-color="pink"] .prize-card-header {
    background: #ec4899;
}

.prize-card[data-color="gold"] .prize-card-header {
    background: #f59e0b;
}

.prize-card[data-color="rose"] .prize-card-header {
    background: #f43f5e;
}

.prize-card[data-color="green"] .prize-card-header {
    background: #10b981;
}

.prize-card[data-color="orange"] .prize-card-header {
    background: #f97316;
}

.prize-card[data-color="teal"] .prize-card-header {
    background: #14b8a6;
}

.prize-card[data-color="yellow"] .prize-card-header {
    background: #eab308;
}

.prize-card[data-color="cyan"] .prize-card-header {
    background: #06b6d4;
}

.prize-card[data-color="indigo"] .prize-card-header {
    background: #6366f1;
}

.prize-card[data-color="red"] .prize-card-header {
    background: #ef4444;
}

.prize-image {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    background: var(--bg-light);
    position: relative;
}

.prize-icon {
    font-size: 5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.prize-content {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.prize-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 600;
    line-height: 1.3;
}

.prize-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.prize-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.count-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.count-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}


/* How to Section */
.how-to {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2%;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

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

.step p {
    color: var(--text-secondary);
    font-weight: 400;
}

.conditions-box {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
    width: 90%;
}

.conditions-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.conditions-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Registration Section */
.registration {
    background: rgba(254, 247, 247, 0.85);
    backdrop-filter: blur(10px);
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    width: 90%;
}

.info-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 400;
}

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

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding: 4rem 5%;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    font-weight: 400;
    position: relative;
    z-index: 10;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-contacts {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.contact-label {
    font-size: 1rem;
    color: rgb(250, 201, 201);
    font-weight: 500;
    min-width: 120px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(250, 201, 201);
    margin-bottom: 1.5rem;
}

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

.footer-addresses li {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: rgb(250, 201, 201);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.footer-btn:hover {
    background: rgb(245, 186, 186);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #db2777 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #db2777 0%, var(--primary-color) 100%);
}

.footer-btn-appointment {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ea580c 100%);
}

.footer-btn-appointment:hover {
    background: linear-gradient(135deg, #ea580c 0%, var(--accent-color) 100%);
}

.footer-btn-certificate {
    background: linear-gradient(135deg, var(--christmas-gold) 0%, #f59e0b 100%);
    color: var(--text-primary);
}

.footer-btn-certificate:hover {
    background: linear-gradient(135deg, #f59e0b 0%, var(--christmas-gold) 100%);
}

.btn-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .footer {
        padding: 2rem 5%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .footer-intro {
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-intro {
        font-size: 1rem;
    }
    
    .contact-label {
        min-width: auto;
        width: 100%;
    }
    
    .footer-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-wrapper {
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .animated-background,
    .snow-container,
    .christmas-decoration {
        will-change: auto;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1.5rem;
        min-width: 100px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .prizes-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .prize-image {
        min-height: 100px;
    }

    .prize-icon {
        font-size: 4rem;
    }

    .prize-card h3 {
        font-size: 1.1rem;
    }

    .prizes-header-title {
        font-size: 2rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        position: relative;
    }

    .hero-image-left {
        display: none;
    }

    .hero-image-right {
        position: fixed;
        top: 50%;
        right: -15%;
        transform: translateY(-50%);
        width: 50%;
        height: auto;
        z-index: 0;
        opacity: 0.25;
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        will-change: transform;
    }

    .hero-image-right .hero-img {
        width: 100%;
        max-width: none;
        height: auto;
        filter: blur(6px);
        opacity: 0.3;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

