* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fbbf24 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Christmas Ornaments */
.christmas-ornaments {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ornament {
    position: absolute;
    animation: swing 3s ease-in-out infinite;
}

.red-ball {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #ef4444, #dc2626);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset -5px -5px 10px rgba(0, 0, 0, 0.2);
}

.red-ball::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50% 50% 0 0;
}

.blue-ball {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 30% 30%, #60a5fa, #3b82f6);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    animation-delay: 1s;
}

.blue-ball::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50% 50% 0 0;
}

.star-deco {
    font-size: 35px;
    animation: twinkle 2s ease-in-out infinite;
}

.lights-string {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #dc2626 0%, #fbbf24 10%, 
        #3b82f6 20%, #dc2626 30%,
        #fbbf24 40%, #3b82f6 50%,
        #dc2626 60%, #fbbf24 70%,
        #3b82f6 80%, #dc2626 90%,
        #fbbf24 100%);
}

/* Reindeers */
.reindeer {
    position: absolute;
    font-size: 100px;
    filter: drop-shadow(0 8px 20px rgba(185, 28, 28, 0.4));
    animation: reindeerJump 3s ease-in-out infinite;
    z-index: 2;
}

.reindeer-left {
    left: 3%;
    bottom: 15%;
    font-size: 120px;
}

.reindeer-right {
    right: 3%;
    bottom: 15%;
    font-size: 120px;
    transform: scaleX(-1);
}

.reindeer-mini {
    font-size: 60px;
    animation: reindeerJump 3s ease-in-out infinite, float 4s ease-in-out infinite;
}

@keyframes reindeerJump {
    0%, 100% { 
        transform: translateY(0);
        filter: drop-shadow(0 8px 20px rgba(185, 28, 28, 0.4));
    }
    50% { 
        transform: translateY(-20px);
        filter: drop-shadow(0 15px 30px rgba(185, 28, 28, 0.6)) 
                drop-shadow(0 0 20px rgba(251, 191, 36, 0.6));
    }
}

@keyframes swing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Container */
.container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    min-height: 100vh;
    z-index: 10;
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo img {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

/* Hero Landing */
.hero-landing {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 243, 199, 0.8) 100%);
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #fbbf24, #3b82f6, #dc2626);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Cute Santa Character */
.santa-cute {
    position: relative;
    width: 180px;
    height: 220px;
    animation: bounce 2s ease-in-out infinite;
}

.santa-hat-cute {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 80px solid #dc2626;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.santa-hat-cute::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -55px;
    width: 110px;
    height: 15px;
    background: white;
    border-radius: 8px;
}

.santa-hat-cute::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
}

.santa-face-cute {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #fdb8b8;
    border-radius: 50%;
    z-index: 2;
}

.eyes-cute {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    display: flex;
    justify-content: space-between;
}

.eye-cute {
    width: 12px;
    height: 12px;
    background: #2c3e50;
    border-radius: 50%;
    animation: blink 4s infinite;
}

.eye-cute::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

@keyframes blink {
    0%, 48%, 52%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.smile-cute {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    border: 3px solid #2c3e50;
    border-top: none;
    border-radius: 0 0 40px 40px;
}

.cheeks-cute {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.cheek {
    width: 18px;
    height: 18px;
    background: #ff9999;
    border-radius: 50%;
    opacity: 0.7;
}

.santa-beard-cute {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 60px;
    background: white;
    border-radius: 0 0 50px 50px;
    z-index: 1;
}

.santa-body-cute {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 80px;
    background: #dc2626;
    border-radius: 15px 15px 0 0;
}

.santa-body-cute::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 15px;
    background: #2c3e50;
}

.santa-body-cute::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: #fbbf24;
    border-radius: 5px;
}

.santa-arms-cute {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.arm-left, .arm-right {
    position: absolute;
    width: 35px;
    height: 70px;
    background: #dc2626;
    border-radius: 20px;
}

.arm-left {
    left: -10px;
    transform: rotate(-20deg);
}

.arm-right {
    right: -10px;
    transform: rotate(20deg);
}

.arm-left.raised {
    transform: rotate(-45deg) translateY(-20px);
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(-45deg) translateY(-20px); }
    50% { transform: rotate(-30deg) translateY(-25px); }
}

/* English Learning Props */
.english-book {
    font-size: 50px;
    position: absolute;
    bottom: -30px;
    left: -20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 10px 15px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.candy-cane {
    font-size: 70px;
    position: absolute;
    top: -20px;
    right: -30px;
    animation: swing 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    transform-origin: top center;
}

.gift-bag {
    font-size: 80px;
    position: absolute;
    bottom: -30px;
    right: -30px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(220, 38, 38, 0.4));
}

.english-stars {
    position: absolute;
    bottom: 20px;
    left: -50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 35px;
    font-weight: 700;
    animation: twinkle 2s ease-in-out infinite;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.english-stars span:nth-child(2) {
    font-size: 28px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.4);
}

/* Arm animations for holding items */
.arm-left.waving {
    animation: wave 2s ease-in-out infinite;
}

.arm-right.holding-candy {
    transform: rotate(-20deg) translateY(-10px);
}

.arm-right.holding-bag {
    transform: rotate(20deg) translateY(5px);
}

@keyframes wave {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(-35deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Hero Center Content */
.hero-center {
    text-align: center;
    padding: 0 30px;
}

.celebration-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.main-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.title-line1 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.title-line2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line3 {
    font-size: 2.5rem;
    color: #dc2626;
    font-weight: 700;
}

.hero-description {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-description strong {
    color: #dc2626;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: #2c3e50;
    color: white;
}

.btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(44, 62, 80, 0.4);
}

.event-quick-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #2c3e50;
}

.info-item i {
    font-size: 1.2rem;
    color: #dc2626;
}

/* Content Wrapper */
.content-wrapper {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.countdown-section {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #dc2626;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 600;
}

/* Benefits Section - Schedule Timeline */
.benefits-section {
    margin: 60px 0;
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 3px solid #fde68a;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #dc2626 0%, #fbbf24 100%);
}

.schedule-item:hover {
    transform: translateX(10px);
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.schedule-number {
    font-size: 2rem;
    font-weight: 700;
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    flex-shrink: 0;
    color: white;
    border: 4px solid white;
}

.schedule-content {
    flex: 1;
    padding-left: 5px;
}

.schedule-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.schedule-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Photo Gallery Section */
.gallery-section {
    margin: 80px 0;
    padding: 60px 30px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    font-style: italic;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.95), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Features Section Improvements */
.features-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 30px;
    margin-top: -20px;
}

/* Achievements Section */
.achievements-section {
    margin: 80px 0;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
}

.achievements-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    margin-top: -10px;
    font-style: italic;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.achievement-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.3);
}

.achievement-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.15);
}

.achievement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.8); }
}

.achievement-content {
    padding: 25px;
    text-align: center;
}

.achievement-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.achievement-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

.achievements-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.achievements-cta p {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-achievement {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.btn-achievement:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #fbb6ce;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    color: #5a6c7d;
    line-height: 1.5;
}

/* Features Grid */
.features-preview {
    margin: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #fde68a;
    transition: all 0.3s ease;
}

.christmas-feature:hover {
    transform: translateY(-10px);
    border-color: #dc2626;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

/* Characters */
.christmas-characters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.character {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #dc2626;
    transition: transform 0.3s ease;
}

.character:hover {
    transform: scale(1.15) rotate(-5deg);
}

.character-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.character span:last-child {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Register Section */
.register-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 50px;
    border-radius: 30px;
    color: white;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '🎄🎅🎁🦌';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
}

.event-details {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.detail-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row i {
    font-size: 1.3rem;
    min-width: 25px;
    margin-top: 3px;
}

.detail-row strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.register-links {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.btn-link {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 12px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin: 0 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-link i {
    margin-right: 8px;
}

.register-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.register-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.spots-counter {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.register-note {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    border-left: 5px solid white;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.notify-form input {
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    color: #2c3e50;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

.cta-button {
    padding: 20px;
    background: white;
    color: #dc2626;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-message {
    margin-top: 20px;
    background: rgba(16, 185, 129, 0.2);
    color: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid white;
    display: none;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Links */
.social-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.social-links p {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-fb:hover { background: #1877f2; color: white; }
.social-ig:hover { background: linear-gradient(45deg, #f09433, #dc2743); color: white; }
.social-yt:hover { background: #ff0000; color: white; }
.social-tt:hover { background: #000; color: white; }

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: #2c3e50;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 20px 15px;
    }
    
    .hero-landing {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 25px;
        gap: 30px;
    }
    
    .santa-left, .santa-right {
        display: none;
    }
    
    .hero-center {
        padding: 0;
    }
    
    .title-line1 {
        font-size: 1.6rem;
    }
    
    .title-line2 {
        font-size: 2.8rem;
    }
    
    .title-line3 {
        font-size: 2rem;
    }
    
    .reindeer {
        font-size: 60px;
    }
    
    .reindeer-left, .reindeer-right {
        font-size: 80px;
    }
    
    .content-wrapper {
        padding: 40px 25px;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .schedule-number {
        min-width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 15px 12px;
    }
    
    .logo img {
        max-width: 220px;
    }
    
    .hero-landing {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .celebration-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .title-line1 {
        font-size: 1.3rem;
    }
    
    .title-line2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .title-line3 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-description strong {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .event-quick-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    .content-wrapper {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .countdown {
        gap: 12px;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .schedule-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .schedule-number {
        font-size: 1.4rem;
        min-width: 50px;
        height: 50px;
    }
    
    .schedule-content h3 {
        font-size: 1.1rem;
    }
    
    .schedule-content p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-section {
        padding: 30px 15px;
        margin: 40px 0;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievements-section {
        padding: 30px 15px;
        margin: 40px 0;
    }
    
    .achievements-subtitle {
        font-size: 1rem;
    }
    
    .achievement-content h3 {
        font-size: 1.2rem;
    }
    
    .achievement-content p {
        font-size: 0.95rem;
    }
    
    .achievements-cta {
        padding: 25px 15px;
    }
    
    .achievements-cta p {
        font-size: 1rem;
    }
    
    .btn-achievement {
        font-size: 1rem;
        padding: 14px 25px;
        width: 100%;
    }
    
    .register-section {
        padding: 25px 15px;
    }
    
    .register-section h2 {
        font-size: 1.6rem;
    }
    
    .register-header {
        flex-direction: column;
        text-align: center;
    }
    
    .spots-counter {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .register-note {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .event-details {
        padding: 20px 15px;
    }
    
    .detail-row {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .detail-row i {
        font-size: 1.5rem;
    }
    
    .register-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-link {
        width: 100%;
        padding: 12px 20px;
        margin: 0;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .reindeer {
        font-size: 50px;
    }
    
    .reindeer-left, .reindeer-right {
        font-size: 60px;
        bottom: 10%;
    }
    
    .reindeer-mini {
        font-size: 40px;
    }
    
    .ornament {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 10px 10px;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .hero-landing {
        padding: 20px 15px;
        margin-bottom: 30px;
        border-radius: 20px;
    }
    
    .celebration-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .title-line1 {
        font-size: 1.1rem;
    }
    
    .title-line2 {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }
    
    .title-line3 {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-description strong {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
    
    .content-wrapper {
        padding: 25px 12px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 15px;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 1.6rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .schedule-item {
        padding: 15px;
    }
    
    .schedule-number {
        font-size: 1.2rem;
        min-width: 45px;
        height: 45px;
    }
    
    .schedule-content h3 {
        font-size: 1rem;
    }
    
    .schedule-content p {
        font-size: 0.9rem;
    }
    
    .gallery-section {
        padding: 25px 12px;
        margin: 30px 0;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
    }
    
    .achievements-section {
        padding: 25px 12px;
        margin: 30px 0;
    }
    
    .achievements-subtitle {
        font-size: 0.9rem;
    }
    
    .achievement-card {
        border-radius: 15px;
    }
    
    .achievement-content {
        padding: 20px;
    }
    
    .achievement-content h3 {
        font-size: 1.1rem;
    }
    
    .achievement-content p {
        font-size: 0.9rem;
    }
    
    .achievements-cta {
        padding: 20px 12px;
    }
    
    .achievements-cta p {
        font-size: 0.95rem;
    }
    
    .btn-achievement {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-item i {
        font-size: 2.5rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .register-section {
        padding: 20px 12px;
        border-radius: 20px;
    }
    
    .register-section h2 {
        font-size: 1.4rem;
    }
    
    .spots-counter {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .register-note {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .event-details {
        padding: 15px 12px;
    }
    
    .detail-row {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .detail-row strong {
        font-size: 0.95rem;
    }
    
    .btn-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 20px 15px;
        font-size: 0.85rem;
    }
    
    .reindeer-left, .reindeer-right {
        font-size: 50px;
        bottom: 8%;
    }
    
    .reindeer-mini {
        font-size: 35px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
}
