/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Winter Color Palette */
    --primary-red: #d32f2f;
    --gold: #ffd700;
    --warm-white: #fefefe;
    --cream: #f5f5dc;
    --winter-blue: #1e3a8a;
    --ice-blue: #bfdbfe;
    --chocolate: #8b4513;
    --dark-chocolate: #3c1810;
    --snow: #ffffff;
    --warm-gray: #64748b;
    --cozy-orange: #f97316;
    --midnight: #0f172a;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-decorative: 'Dancing Script', cursive;
    
    /* Spacing */
    --container-padding: 2rem;
    --section-spacing: 5rem;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--midnight);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
    position: relative;
}

/* Snowflakes Animation */
.snowflakes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: var(--snow);
    font-size: 1rem;
    animation: fall linear infinite;
    opacity: 0.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.rabbit-emoji {
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.festival-text {
    font-family: var(--font-decorative);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--warm-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--warm-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.9) 0%, 
        rgba(139, 69, 19, 0.8) 50%, 
        rgba(211, 47, 47, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.chinese-text {
    display: block;
    font-family: var(--font-decorative);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--warm-white);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.year-text {
    display: block;
    font-size: 1.2rem;
    color: var(--ice-blue);
    margin-top: 0.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--cozy-orange));
    color: var(--warm-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--gold), #ffed4e);
    color: var(--midnight);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Hero Visual Elements */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.moon-container {
    position: relative;
    margin-bottom: 2rem;
}

.moon {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.5),
        inset -20px -20px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: moonGlow 3s ease-in-out infinite alternate;
}

@keyframes moonGlow {
    0% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.5),
            inset -20px -20px 0 rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 0 80px rgba(255, 215, 0, 0.8),
            inset -20px -20px 0 rgba(255, 255, 255, 0.3);
    }
}

.moon-crater {
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.moon-crater:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 30%;
    left: 40%;
}

.crater-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 25% !important;
}

.crater-3 {
    width: 12px;
    height: 12px;
    top: 45%;
    left: 70% !important;
}

.stars {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
}

.star {
    position: absolute;
    color: var(--warm-white);
    font-size: 1.5rem;
    animation: twinkle 2s infinite;
}

.star::before {
    content: '✨';
}

.star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { top: 10%; right: 20%; animation-delay: 0.5s; }
.star-3 { bottom: 20%; left: 15%; animation-delay: 1s; }
.star-4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.star-5 { top: 40%; right: 5%; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.floating-rabbits {
    display: flex;
    gap: 2rem;
}

.rabbit {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.rabbit-1 {
    animation-delay: 0s;
}

.rabbit-2 {
    animation-delay: 1.5s;
}

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

/* Section Styling */
section {
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--midnight);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    font-style: italic;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: var(--warm-gray);
    line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
    background: linear-gradient(135deg, var(--winter-blue) 0%, var(--primary-red) 100%);
    color: var(--warm-white);
}

.highlights-section .section-header h2,
.highlights-section .section-subtitle {
    color: var(--warm-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: var(--midnight);
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fortune-card .card-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cocoa-card .card-image {
    background: linear-gradient(135deg, var(--chocolate) 0%, var(--dark-chocolate) 100%);
}

.story-card .card-image {
    background: linear-gradient(135deg, var(--winter-blue) 0%, var(--primary-red) 100%);
}

/* Crystal Ball Animation */
.crystal-ball {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.2), transparent);
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.5),
        inset -20px -20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: crystalFloat 3s ease-in-out infinite;
}

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

.crystal-shine {
    position: absolute;
    top: 20%;
    left: 25%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.mystical-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: mysticalPulse 4s ease-in-out infinite;
}

@keyframes mysticalPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Cocoa Cup Animation */
.cocoa-cup {
    width: 100px;
    height: 120px;
    background: var(--chocolate);
    border-radius: 10px 10px 20px 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cocoa-cup::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -25px;
    width: 30px;
    height: 40px;
    border: 8px solid var(--chocolate);
    border-left: none;
    border-radius: 0 50px 50px 0;
}

.cocoa-steam {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    border-radius: 2px;
    animation: steam 2s ease-in-out infinite;
}

.cocoa-steam::before,
.cocoa-steam::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    border-radius: 2px;
}

.cocoa-steam::before {
    left: -8px;
    animation: steam 2s ease-in-out infinite 0.5s;
}

.cocoa-steam::after {
    right: -8px;
    animation: steam 2s ease-in-out infinite 1s;
}

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

.marshmallow {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 15px;
    height: 10px;
    background: var(--warm-white);
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.marshmallow-2 {
    left: 50px;
    top: 15px;
    width: 12px;
    height: 8px;
}

.trophy {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    animation: trophyBounce 2s ease-in-out infinite;
}

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

/* Story Book Animation */
.story-book {
    width: 120px;
    height: 90px;
    background: var(--chocolate);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: bookFloat 3s ease-in-out infinite;
}

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

.book-pages {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: var(--warm-white);
    border-radius: 5px;
}

.book-pages::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--warm-gray);
    box-shadow: 0 8px 0 var(--warm-gray), 0 16px 0 var(--warm-gray);
}

.magical-sparkles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
}

.sparkle {
    position: absolute;
    color: var(--gold);
    font-size: 1.5rem;
    animation: sparkleAnim 2s ease-in-out infinite;
}

.sparkle::before {
    content: '✨';
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: 10%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 1.4s;
}

@keyframes sparkleAnim {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--midnight);
    font-weight: 600;
}

.card-content p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features,
.story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--ice-blue);
    color: var(--midnight);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cocoa-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.card-btn {
    background: linear-gradient(45deg, var(--primary-red), var(--cozy-orange));
    color: var(--warm-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--winter-blue) 100%);
    color: var(--warm-white);
    text-align: center;
}

.countdown-section h2 {
    color: var(--warm-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.countdown-subtitle {
    font-size: 1.3rem;
    color: var(--ice-blue);
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.time-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.time-label {
    display: block;
    font-size: 1rem;
    color: var(--ice-blue);
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.next-year-info {
    margin-top: 2rem;
}

.horse-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: horseGallop 2s ease-in-out infinite;
}

@keyframes horseGallop {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

.horse-traits {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--midnight);
    color: var(--warm-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--ice-blue);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    color: var(--ice-blue);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-section li::before {
    content: '❄️';
    position: absolute;
    left: 0;
}

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

.social-links span {
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-links span:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ice-blue);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--warm-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--warm-gray);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-red);
}

.modal h2 {
    color: var(--midnight);
    text-align: center;
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.results-content {
    color: var(--midnight);
}

.winner-announcement {
    text-align: center;
    background: linear-gradient(135deg, var(--gold), #ffed4e);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.winner-announcement h3 {
    color: var(--midnight);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.results-section {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 15px;
}

.results-section h4 {
    color: var(--midnight);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 0.5rem;
}

.match-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.winner {
    font-weight: 700;
    color: var(--primary-red);
}

.runner-up {
    color: var(--warm-gray);
}

.votes {
    font-weight: 600;
    color: var(--midnight);
}

.vs {
    text-align: center;
    color: var(--warm-gray);
    font-style: italic;
    margin: 0.5rem 0;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--warm-gray);
}

.stat-value {
    font-weight: 600;
    color: var(--midnight);
}

.recipe-scores {
    background: var(--ice-blue);
    padding: 1.5rem;
    border-radius: 15px;
}

.recipe-scores h4 {
    color: var(--midnight);
    margin-bottom: 1rem;
    text-align: center;
}

.score-card h5 {
    color: var(--midnight);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

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

.score-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--warm-white);
    border-radius: 8px;
}

.score {
    font-weight: 600;
    color: var(--midnight);
}

.perfect {
    color: var(--primary-red);
    font-weight: 700;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-spacing: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .chinese-text {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .moon {
        width: 150px;
        height: 150px;
    }
    
    .rabbit {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 1.5rem 1rem;
        min-width: 80px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-separator {
        display: none;
    }
    
    .countdown-section h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .scores {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .time-unit {
        padding: 1rem 0.8rem;
        min-width: 70px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        justify-content: center;
        gap: 0.3rem;
    }
    
    .cocoa-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

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

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

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Focus Styles */
.btn:focus,
.nav-menu a:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .snowflakes-container,
    .navbar,
    .hero-visual,
    .modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
    }
}
