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

:root {
    --christmas-red: #d42426;
    --christmas-red-dark: #a01d1f;
    --christmas-green: #0f7d40;
    --christmas-green-dark: #0a5c30;
    --christmas-gold: #ffd700;
    --christmas-silver: #c0c0c0;
    --snow-white: #ffffff;
    --dark-bg: #0a1929;
    --light-text: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
    background-attachment: fixed;
    color: var(--light-text);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Global snowfall container */
.global-snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.global-snowflake {
    position: absolute;
    top: -10%;
    color: var(--snow-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    animation: globalFall linear infinite;
    user-select: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

@keyframes globalFall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Christmas Lights */
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10000;
    pointer-events: none;
}

.light-wire {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 20px;
}

.light {
    position: absolute;
    width: 12px;
    height: 18px;
    border-radius: 0 0 50% 50%;
    top: 22px;
    animation: twinkle-light 1.5s infinite;
}

.light::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.light::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid inherit;
    opacity: 0.3;
    filter: blur(4px);
}

.light.red {
    background: #ff0000;
    box-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000;
}

.light.green {
    background: #00ff00;
    box-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
}

.light.blue {
    background: #0066ff;
    box-shadow: 0 0 20px #0066ff, 0 0 30px #0066ff;
}

.light.yellow {
    background: #ffff00;
    box-shadow: 0 0 20px #ffff00, 0 0 30px #ffff00;
}

.light.purple {
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff;
}

.light.orange {
    background: #ff6600;
    box-shadow: 0 0 20px #ff6600, 0 0 30px #ff6600;
}

@keyframes twinkle-light {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.9);
    }
}

/* Animated background stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

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

/* Aurora Borealis Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(0, 255, 170, 0.1) 25%,
        rgba(0, 170, 255, 0.1) 50%,
        rgba(170, 0, 255, 0.1) 75%,
        transparent 100%);
    background-size: 400% 400%;
    animation: aurora 15s ease infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

@keyframes aurora {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.6;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#languageSelect {
    padding: 12px 20px;
    border: 2px solid var(--christmas-gold);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9), rgba(212, 36, 38, 0.9));
    color: var(--snow-white);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

#languageSelect:hover {
    background: linear-gradient(135deg, rgba(212, 36, 38, 1), rgba(196, 30, 58, 1));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

#languageSelect option {
    background: var(--dark-bg);
    color: var(--snow-white);
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    margin-bottom: 30px;
    position: relative;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--christmas-gold), #fff4a3, var(--christmas-gold));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    margin-bottom: 15px;
    animation: shimmer 3s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

header p {
    font-size: 1.6rem;
    color: var(--snow-white);
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Personalization Box */
.personalization-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#nameInput {
    padding: 12px 20px;
    border: 2px solid var(--christmas-gold);
    background: rgba(255, 255, 255, 0.1);
    color: var(--snow-white);
    border-radius: 25px;
    font-size: 16px;
    min-width: 250px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#nameInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#nameInput:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

#setNameBtn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-red-dark));
    color: var(--snow-white);
    border: 2px solid var(--christmas-gold);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 36, 38, 0.4);
}

#setNameBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 36, 38, 0.6);
}

.personal-message {
    font-size: 1.8rem;
    color: var(--christmas-gold);
    margin-top: 15px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header Controls (Sound & Share) */
.header-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.control-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 2px solid var(--christmas-gold);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px var(--christmas-gold);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    padding: 12px;
    border: 2px solid white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.share-btn.facebook {
    background: #1877f2;
    border-color: #1877f2;
}

.share-btn.twitter {
    background: #000000;
    border-color: #000000;
}

.share-btn.whatsapp {
    background: #25d366;
    border-color: #25d366;
}

.share-btn.copy {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Main Layout */
main {
    display: grid;
    grid-template-columns: 160px 1fr 160px;
    gap: 20px;
    margin-bottom: 40px;
}

/* Countdown Section */
.countdown-section {
    position: relative;
    background: linear-gradient(145deg,
        rgba(212, 36, 38, 0.15) 0%,
        rgba(15, 125, 64, 0.15) 50%,
        rgba(212, 36, 38, 0.15) 100%);
    border-radius: 25px;
    padding: 70px 50px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(255, 215, 0, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--christmas-red),
        var(--christmas-gold),
        var(--christmas-green),
        var(--christmas-gold),
        var(--christmas-red));
    background-size: 400% 400%;
    border-radius: 25px;
    z-index: -1;
    animation: borderGlow 6s ease infinite;
}

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

.countdown-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 2;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.05));
    padding: 40px 25px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
    opacity: 0;
}

.countdown-item:hover::before {
    opacity: 1;
    top: -25%;
    left: -25%;
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: var(--christmas-gold);
}

.countdown-value {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--christmas-gold) 0%, #fff 50%, var(--christmas-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.8));
    transition: all 0.3s ease;
    line-height: 1;
    margin-bottom: 15px;
}

.countdown-item:hover .countdown-value {
    transform: scale(1.15);
}

.countdown-label {
    font-size: 1.3rem;
    color: var(--snow-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.christmas-message {
    display: none;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold), var(--christmas-green), var(--christmas-gold), var(--christmas-red));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 50px;
    padding: 30px;
    background-color: rgba(212, 36, 38, 0.2);
    border-radius: 20px;
    animation: celebrationPulse 1.5s ease-in-out infinite, shimmer 3s linear infinite;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

@keyframes celebrationPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* Local Snowflakes Animation (for countdown section) */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: var(--snow-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    animation: fall linear infinite;
    user-select: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Christmas Tree in Corner */
.christmas-tree {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    font-size: 80px;
    filter: drop-shadow(0 5px 20px rgba(0, 255, 0, 0.5));
    animation: treeGlow 2s ease-in-out infinite;
}

@keyframes treeGlow {
    0%, 100% {
        filter: drop-shadow(0 5px 20px rgba(0, 255, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 5px 30px rgba(255, 215, 0, 0.8));
    }
}

.tree-ornaments {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.ornament {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: ornamentTwinkle 1.5s infinite;
}

.ornament:nth-child(1) {
    background: #ff0000;
    top: 10px;
    left: -15px;
    animation-delay: 0s;
}

.ornament:nth-child(2) {
    background: #ffd700;
    top: 25px;
    left: 5px;
    animation-delay: 0.3s;
}

.ornament:nth-child(3) {
    background: #0066ff;
    top: 40px;
    left: -10px;
    animation-delay: 0.6s;
}

@keyframes ornamentTwinkle {
    0%, 100% {
        box-shadow: 0 0 5px currentColor;
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 20px currentColor;
        opacity: 0.6;
    }
}

/* Snow Accumulation at Bottom */
.snow-ground {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 9996;
    pointer-events: none;
    overflow: visible;
}

.snow-pile {
    position: absolute;
    bottom: 0;
    background: radial-gradient(ellipse at center bottom,
        #ffffff 0%,
        #f8fbff 25%,
        #f0f8ff 45%,
        rgba(240, 248, 255, 0.8) 65%,
        rgba(230, 240, 255, 0.4) 85%,
        transparent 100%);
    border-radius: 50% 50% 0 0 / 60% 60% 0 0;
    box-shadow:
        inset 0 -3px 8px rgba(200, 220, 255, 0.3),
        inset 2px 2px 6px rgba(255, 255, 255, 0.9),
        0 2px 8px rgba(180, 200, 230, 0.2);
    filter: blur(0.3px);
}

/* Add highlight to top of snow mound */
.snow-pile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 50%;
    height: 40%;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.6) 0%,
        transparent 70%);
    border-radius: 50%;
}

/* Add shadow on the side */
.snow-pile::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 30%;
    height: 50%;
    background: radial-gradient(ellipse at center,
        rgba(180, 200, 230, 0.15) 0%,
        transparent 60%);
    border-radius: 50%;
}

@keyframes snowPileGrow {
    from {
        transform: translateY(30px) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(5px) scale(1.05);
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.snow-sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(135, 206, 250, 0.8);
    animation: sparkle 2s ease-in-out infinite;
}

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

/* Floating Gift Boxes - Drop from Santa */
.gift-box {
    position: fixed;
    font-size: 40px;
    animation: dropGift 3s ease-in forwards;
    pointer-events: none;
    z-index: 9997;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

@keyframes dropGift {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(50vh) rotate(180deg) scale(1.1);
    }
    100% {
        opacity: 0.3;
        transform: translateY(110vh) rotate(360deg) scale(0.8);
    }
}

/* Milestone Banner */
.milestone-banner {
    display: none;
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: milestonePop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.milestone-banner.show {
    display: block;
}

@keyframes milestonePop {
    0% {
        transform: scale(0) rotate(-10deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Christmas Fact Box */
.christmas-fact {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 20px 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.christmas-fact h3 {
    color: var(--christmas-gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-align: center;
}

.christmas-fact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

/* 3D Ornament Decorations */
.countdown-item::after {
    content: '🎄';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 30px;
    animation: rotateOrnament 4s linear infinite;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

@keyframes rotateOrnament {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Ad Containers */
.ad-container,
.ad-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ad-header,
.ad-footer {
    width: 100%;
    min-height: 90px;
    margin: 20px 0;
}

.ad-content {
    min-height: 250px;
    margin: 40px 0;
}

.ad-sidebar {
    min-height: 600px;
}

/* Content Section */
.content-section {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.content-section article {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.content-section h2 {
    background: linear-gradient(135deg, var(--christmas-gold), #fff4a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.3));
}

.content-section p {
    font-size: 1.15rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

footer p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

footer nav a {
    color: var(--christmas-gold);
    text-decoration: none;
    margin: 0 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

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

footer nav a:hover {
    color: var(--snow-white);
    text-shadow: 0 0 10px var(--christmas-gold);
}

footer nav a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    main {
        grid-template-columns: 1fr;
    }

    .ad-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .christmas-lights {
        height: 40px;
    }

    .light {
        width: 10px;
        height: 14px;
        top: 16px;
    }

    .light::before {
        width: 6px;
        height: 3px;
    }

    h1 {
        font-size: 2.8rem;
    }

    header p {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .countdown-display {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .countdown-value {
        font-size: 3.5rem;
    }

    .countdown-label {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .countdown-section {
        padding: 50px 30px;
    }

    .countdown-item {
        padding: 30px 20px;
    }

    .content-section {
        padding: 30px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section p {
        font-size: 1.05rem;
    }

    .language-selector {
        top: 10px;
        right: 10px;
    }

    #languageSelect {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1.1rem;
    }

    .countdown-display {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .countdown-value {
        font-size: 3rem;
    }

    .countdown-item {
        padding: 25px 15px;
    }

    .christmas-message {
        font-size: 2rem;
        padding: 20px;
    }

    .content-section {
        padding: 25px;
    }
}

/* Blog Teaser Section */
.blog-teaser-section {
    background: white;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.blog-teaser-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 36, 38, 0.15);
    border-color: var(--christmas-red);
}

.blog-teaser-icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.blog-teaser-card h3 {
    color: var(--christmas-green);
    font-size: 1.4em;
    margin-bottom: 15px;
}

.blog-teaser-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-teaser-link {
    display: inline-block;
    color: var(--christmas-red);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 25px;
    border: 2px solid var(--christmas-red);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.blog-teaser-link:hover {
    background: var(--christmas-red);
    color: white;
}

.blog-view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--christmas-green-dark) 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 125, 64, 0.3);
}

.blog-view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 125, 64, 0.4);
}

@media (max-width: 768px) {
    .blog-teaser-section {
        padding: 40px 20px;
    }

    .blog-teaser-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles for better sharing */
@media print {
    .ad-container,
    .ad-sidebar,
    .language-selector {
        display: none;
    }

    body::before {
        display: none;
    }
}
