* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #bbe1fa 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewport="0 0 40 40" style="fill:black;font-size:30px"><text y="32">🎄</text></svg>') 16 0, auto;
}

/* Snowfall background */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Menu Bar */
.menu-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 85, 48, 0.95);
    backdrop-filter: blur(10px);
    z-index: 15;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    border-bottom: 2px solid #d4af37;
    padding: 15px 0;
    height: 65px;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    position: relative;
}

.menu-logo {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-items {
    display: flex;
    list-style: none;
    gap: 20px;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewport="0 0 40 40" style="fill:black;font-size:30px"><text y="32">⭐</text></svg>') 16 0, pointer;
}

.menu-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.menu-link.active {
    background: linear-gradient(135deg, #d4af37, #f1c40f);
    color: #2c5530;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile dropdown menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(44, 85, 48, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-bottom: 2px solid #d4af37;
    display: none;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .menu-link {
    margin: 5px 20px;
    text-align: center;
    border-radius: 15px;
    padding: 12px 16px;
}

/* Animate hamburger menu */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Christmas lights - STAGGERED ANIMATIONS */
.christmas-lights {
    position: fixed;
    top: 65px; /* Exactly where menu ends */
    left: 0;
    width: 100%;
    height: 30px;
    display: flex !important;
    justify-content: space-evenly;
    align-items: center;
    background: rgba(44, 85, 48, 0.9);
    z-index: 12; /* Higher than content, lower than menu */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid #d4af37;
    padding: 5px 10px;
}

.light {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
    display: block !important;
    box-shadow: 0 0 15px currentColor !important;
    flex-shrink: 0;
}

/* Individual light animations with different timings */
.light:nth-child(1) { animation: twinkle1 1.8s infinite alternate !important; }
.light:nth-child(2) { animation: twinkle2 2.2s infinite alternate !important; }
.light:nth-child(3) { animation: twinkle3 1.5s infinite alternate !important; }
.light:nth-child(4) { animation: twinkle4 2.8s infinite alternate !important; }
.light:nth-child(5) { animation: twinkle5 1.9s infinite alternate !important; }
.light:nth-child(6) { animation: twinkle6 2.5s infinite alternate !important; }
.light:nth-child(7) { animation: twinkle7 1.7s infinite alternate !important; }
.light:nth-child(8) { animation: twinkle8 2.1s infinite alternate !important; }
.light:nth-child(9) { animation: twinkle9 1.6s infinite alternate !important; }
.light:nth-child(10) { animation: twinkle10 2.4s infinite alternate !important; }
.light:nth-child(11) { animation: twinkle11 2.0s infinite alternate !important; }
.light:nth-child(12) { animation: twinkle12 1.4s infinite alternate !important; }
.light:nth-child(13) { animation: twinkle13 2.7s infinite alternate !important; }
.light:nth-child(14) { animation: twinkle14 1.8s infinite alternate !important; }
.light:nth-child(15) { animation: twinkle15 2.3s infinite alternate !important; }
.light:nth-child(16) { animation: twinkle16 1.9s infinite alternate !important; }
.light:nth-child(17) { animation: twinkle17 2.6s infinite alternate !important; }
.light:nth-child(18) { animation: twinkle18 1.5s infinite alternate !important; }
.light:nth-child(19) { animation: twinkle19 2.2s infinite alternate !important; }
.light:nth-child(20) { animation: twinkle20 1.7s infinite alternate !important; }

.light.red { 
    background: #ff4757 !important;
    color: #ff4757;
}
.light.green { 
    background: #2ed573 !important;
    color: #2ed573;
}
.light.blue { 
    background: #3742fa !important;
    color: #3742fa;
}
.light.yellow { 
    background: #ffa502 !important;
    color: #ffa502;
}

/* Staggered twinkle animations - each light has its own timing */
@keyframes twinkle1 {
    0% { opacity: 0.2; transform: scale(0.6); box-shadow: 0 0 5px currentColor; }
    100% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 30px currentColor, 0 0 40px currentColor; }
}

@keyframes twinkle2 {
    0% { opacity: 0.3; transform: scale(0.7); box-shadow: 0 0 6px currentColor; }
    100% { opacity: 1; transform: scale(1.3); box-shadow: 0 0 28px currentColor, 0 0 38px currentColor; }
}

@keyframes twinkle3 {
    0% { opacity: 0.25; transform: scale(0.65); box-shadow: 0 0 7px currentColor; }
    100% { opacity: 1; transform: scale(1.35); box-shadow: 0 0 32px currentColor, 0 0 42px currentColor; }
}

@keyframes twinkle4 {
    0% { opacity: 0.15; transform: scale(0.5); box-shadow: 0 0 4px currentColor; }
    100% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 35px currentColor, 0 0 45px currentColor; }
}

@keyframes twinkle5 {
    0% { opacity: 0.35; transform: scale(0.75); box-shadow: 0 0 8px currentColor; }
    100% { opacity: 1; transform: scale(1.25); box-shadow: 0 0 25px currentColor, 0 0 35px currentColor; }
}

@keyframes twinkle6 {
    0% { opacity: 0.1; transform: scale(0.4); box-shadow: 0 0 3px currentColor; }
    100% { opacity: 1; transform: scale(1.6); box-shadow: 0 0 40px currentColor, 0 0 50px currentColor; }
}

@keyframes twinkle7 {
    0% { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 9px currentColor; }
    100% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 22px currentColor, 0 0 32px currentColor; }
}

@keyframes twinkle8 {
    0% { opacity: 0.28; transform: scale(0.68); box-shadow: 0 0 6px currentColor; }
    100% { opacity: 1; transform: scale(1.32); box-shadow: 0 0 29px currentColor, 0 0 39px currentColor; }
}

@keyframes twinkle9 {
    0% { opacity: 0.45; transform: scale(0.85); box-shadow: 0 0 10px currentColor; }
    100% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 20px currentColor, 0 0 30px currentColor; }
}

@keyframes twinkle10 {
    0% { opacity: 0.12; transform: scale(0.42); box-shadow: 0 0 3px currentColor; }
    100% { opacity: 1; transform: scale(1.58); box-shadow: 0 0 42px currentColor, 0 0 52px currentColor; }
}

@keyframes twinkle11 {
    0% { opacity: 0.32; transform: scale(0.72); box-shadow: 0 0 7px currentColor; }
    100% { opacity: 1; transform: scale(1.28); box-shadow: 0 0 27px currentColor, 0 0 37px currentColor; }
}

@keyframes twinkle12 {
    0% { opacity: 0.5; transform: scale(0.9); box-shadow: 0 0 11px currentColor; }
    100% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 18px currentColor, 0 0 28px currentColor; }
}

@keyframes twinkle13 {
    0% { opacity: 0.08; transform: scale(0.38); box-shadow: 0 0 2px currentColor; }
    100% { opacity: 1; transform: scale(1.62); box-shadow: 0 0 45px currentColor, 0 0 55px currentColor; }
}

@keyframes twinkle14 {
    0% { opacity: 0.38; transform: scale(0.78); box-shadow: 0 0 8px currentColor; }
    100% { opacity: 1; transform: scale(1.22); box-shadow: 0 0 24px currentColor, 0 0 34px currentColor; }
}

@keyframes twinkle15 {
    0% { opacity: 0.18; transform: scale(0.58); box-shadow: 0 0 4px currentColor; }
    100% { opacity: 1; transform: scale(1.42); box-shadow: 0 0 33px currentColor, 0 0 43px currentColor; }
}

@keyframes twinkle16 {
    0% { opacity: 0.42; transform: scale(0.82); box-shadow: 0 0 9px currentColor; }
    100% { opacity: 1; transform: scale(1.18); box-shadow: 0 0 21px currentColor, 0 0 31px currentColor; }
}

@keyframes twinkle17 {
    0% { opacity: 0.05; transform: scale(0.35); box-shadow: 0 0 2px currentColor; }
    100% { opacity: 1; transform: scale(1.65); box-shadow: 0 0 48px currentColor, 0 0 58px currentColor; }
}

@keyframes twinkle18 {
    0% { opacity: 0.48; transform: scale(0.88); box-shadow: 0 0 10px currentColor; }
    100% { opacity: 1; transform: scale(1.12); box-shadow: 0 0 19px currentColor, 0 0 29px currentColor; }
}

@keyframes twinkle19 {
    0% { opacity: 0.22; transform: scale(0.62); box-shadow: 0 0 5px currentColor; }
    100% { opacity: 1; transform: scale(1.38); box-shadow: 0 0 31px currentColor, 0 0 41px currentColor; }
}

@keyframes twinkle20 {
    0% { opacity: 0.36; transform: scale(0.76); box-shadow: 0 0 8px currentColor; }
    100% { opacity: 1; transform: scale(1.24); box-shadow: 0 0 26px currentColor, 0 0 36px currentColor; }
}

/* Main container - adjusted for menu + lights */
.container {
    position: relative;
    z-index: 5;
    padding: 125px 20px 20px; /* Top padding: menu (65px) + lights (30px) + space (30px) */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.christmas-spirit {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.christmas-spirit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Christmas tree decoration */
.christmas-tree {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 2.0rem;
    color: #c0392b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(192, 57, 43, 0.5); }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(192, 57, 43, 0.8); }
}

.subtitle {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 300;
    font-style: italic;
}

/* COUNTDOWN PAGE STYLES */
.countdown-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(39, 174, 96, 0.1));
    border-radius: 20px;
    border: 2px solid #d4af37;
}

.countdown-title h2 {
    font-family: 'Mountains of Christmas', cursive;
    font-size: 2rem;
    color: #c0392b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap; /* no wrapping */
    margin: 20px 0;
    max-width: 100%;
}

.countdown-item {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    padding: 10px 12px; /* reduced padding */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    min-width: 50px; /* smaller min width */
    flex-shrink: 1; /* allow shrinking */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2rem; /* slightly smaller */
    font-weight: bold;
    font-family: 'Fredoka One', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: numberGlow 3s infinite alternate;
    white-space: nowrap;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 1px;
    opacity: 0.9;
    white-space: nowrap;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: bold;
    color: #c0392b;
    animation: separatorBlink 2s infinite;
    user-select: none;
    padding: 0 5px;
    flex-shrink: 0;
}

@keyframes countdownPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes numberGlow {
    0% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 255, 255, 0.8); }
}

@keyframes separatorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.countdown-card {
    background: linear-gradient(135deg, #8e44ad, #9b59b6) !important;
}

.countdown-message {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: messageSparkle 2s infinite alternate;
}

@keyframes messageSparkle {
    0% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 255, 255, 0.8); }
}

.christmas-facts {
    background: rgba(39, 174, 96, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 2px dashed #27ae60;
    text-align: center;
}

.christmas-facts h3 {
    font-family: 'Fredoka One', cursive;
    color: #27ae60;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.fact-item {
    font-size: 1.1rem;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.5;
    animation: factFade 1s ease-in-out;
}

@keyframes factFade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Clausometer gauge container */
.clausometer-dial-container {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 0;
}

.clausometer-dial-container svg {
    width: 300px;
    height: 300px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    transition: filter 2s ease-in-out;
}

.spirit-label {
    font-size: 1.3em;
    color: #d32f2f;
    margin-top: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #fff;
    font-family: 'Mountains of Christmas', cursive;
    text-align: center;
}

/* Spirit cards */
.spirit-card {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewport="0 0 40 40" style="fill:black;font-size:30px"><text y="32">🎁</text></svg>') 16 0, pointer;
}

.spirit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.today-card {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
}

.year-card {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.spirit-card h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.count-display {
    font-size: 3rem;
    font-weight: 600;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.believers-label {
    font-size: 3rem !important;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: goldSparkle 1.5s infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes goldSparkle {
    0% { 
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255, 215, 0, 0.3);
    }
    25% { 
        color: #ffd700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
    50% { 
        color: #ffed4e;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 25px rgba(255, 237, 78, 1), 0 0 35px rgba(255, 215, 0, 0.8);
    }
    75% { 
        color: #ffd700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6);
    }
    100% { 
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255, 215, 0, 0.3);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.card-decoration {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Progress section */
.progress-section {
    margin: 30px 0;
    text-align: center;
}

.progress-section h3 {
    font-family: 'Fredoka One', cursive;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.progress-bar {
    background: #ecf0f1;
    border-radius: 25px;
    height: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    margin: 15px 0;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewport="0 0 40 40" style="fill:black;font-size:30px"><text y="32">⭐</text></svg>') 16 0, pointer;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #f39c12, #e67e22, #d35400);
    height: 100%;
    border-radius: 25px;
    transition: width 1s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: progressGlow 2s infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); }
    100% { box-shadow: 0 0 15px rgba(243, 156, 18, 0.8); }
}

.progress-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.progress-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #d4af37;
}

.footer p {
    color: #27ae60;
    font-style: italic;
    margin-bottom: 10px;
}

.holly {
    font-size: 1.5rem;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* RESPONSIVE 3-COLUMN LAYOUT */
.layout-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    gap: 2%;
    padding: 125px 2% 20px;
    align-items: flex-start;
    min-height: 100vh;
    justify-content: center;
}

.left-ad-column, .right-ad-column {
    flex: 0 0 15%; /* 15% width for ad columns */
    min-width: 160px;
    max-width: 200px;
    min-height: 600px;
}

.main-content-column {
    flex: 1; /* Takes remaining space */
    max-width: 800px;
    min-width: 300px;
}

/* Override the original container padding since layout-wrapper handles it now */
.main-content-column .container {
    padding: 0 20px 20px;
}

/* Ad banner styling - MORE VISIBLE */
.ad-banner {
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    min-height: 600px;
    position: sticky;
    top: 120px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ad-banner:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.ad-banner::before {
    content: "Advertisement";
    display: block;
    font-size: 12px;
    color: rgba(44, 85, 48, 0.8);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Fredoka One', cursive;
    font-weight: bold;
    position: absolute;
    top: 15px;
    background: rgba(212, 175, 55, 0.2);
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.ad-banner .adsbygoogle {
    display: block !important;
    width: 160px !important;
    height: 600px !important;
    margin: 0 auto !important;
}

/* Mobile Bottom Ad Container - Flows after content */
.mobile-bottom-ad {
    display: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.4); /* Match desktop ad-banner */
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 20px;
    padding: 18px 0 10px 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    text-align: center;
    margin: 30px 0 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-bottom-ad::before {
    content: "Advertisement";
    display: block;
    font-size: 12px;
    color: rgba(44, 85, 48, 0.8);
    text-align: center;
    margin-bottom: 6px;
    font-family: 'Fredoka One', cursive;
    font-weight: bold;
    background: rgba(212, 175, 55, 0.13);
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: static;
}

.mobile-bottom-ad .adsbygoogle {
    display: block !important;
    width: 320px !important;
    height: 100px !important;
    margin: 0 auto !important;
    max-width: 100vw;
}

/* Show mobile bottom ad only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-ad {
        display: block;
    }
}

/* Responsive ad size tweaks */
@media (max-width: 480px) {
    .mobile-bottom-ad .adsbygoogle {
        width: 300px !important;
        height: 100px !important;
    }
}
@media (max-width: 320px) {
    .mobile-bottom-ad .adsbygoogle {
        width: 250px !important;
        height: 100px !important;
    }
}

/* Responsive breakpoints - KEEP 3-COLUMN UNTIL MOBILE */
@media (max-width: 1400px) {
    .layout-wrapper {
        gap: 1.5%;
        padding: 125px 1.5% 20px;
    }
    
    .left-ad-column, .right-ad-column {
        flex: 0 0 14%;
        min-width: 150px;
        max-width: 180px;
    }
    
    .ad-banner .adsbygoogle {
        width: 150px !important;
    }
}

@media (max-width: 1200px) {
    .layout-wrapper {
        gap: 1%;
        padding: 125px 1% 20px;
    }
    
    .left-ad-column, .right-ad-column {
        flex: 0 0 13%;
        min-width: 140px;
        max-width: 160px;
    }
    
    .ad-banner {
        min-height: 500px;
        padding: 12px;
    }
    
    .ad-banner .adsbygoogle {
        width: 140px !important;
        height: 500px !important;
    }
}

@media (max-width: 900px) {
    .layout-wrapper {
        gap: 0.5%;
        padding: 125px 0.5% 20px;
    }
    
    .left-ad-column, .right-ad-column {
        flex: 0 0 12%;
        min-width: 120px;
        max-width: 140px;
    }
    
    .ad-banner {
        min-height: 400px;
        padding: 10px;
    }
    
    .ad-banner .adsbygoogle {
        width: 120px !important;
        height: 400px !important;
    }
}

/* MOBILE - HIDE SIDE ADS, SHOW INLINE BOTTOM AD, AND DROPDOWN MENU */
@media (max-width: 768px) {
    /* Mobile menu bar - keep fixed positioning but adjust snowfall */
    .menu-bar {
        position: fixed !important;
        top: 0 !important;
        z-index: 15;
    }
    
    /* Ensure snowfall stays behind menu on mobile */
    .snowfall {
        z-index: 1;
    }
    
    /* Hide Christmas lights on mobile */
    .christmas-lights {
        display: none !important;
    }
    
    .left-ad-column, .right-ad-column {
        display: none;
    }
    
    /* Adjust layout wrapper padding for fixed menu */
    .layout-wrapper {
        padding: 85px 10px 20px !important; /* Account for fixed menu height */
    }
    
    .main-content-column {
        max-width: 100%;
    }
    
    /* Show mobile menu toggle */
    .menu-toggle {
        display: flex;
    }
    
    /* Hide desktop menu */
    .menu-items {
        display: none;
    }
    
    /* Center clausometer on mobile */
    .clausometer-dial-container {
        padding: 0;
        margin: 20px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dial-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .menu-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 20px;
    }
    
    .menu-bar {
        height: 65px;
    }
    
    .mobile-menu .menu-link {
        font-size: 0.9rem;
        padding: 10px 12px;
        margin: 3px 15px;
    }
    
    .layout-wrapper {
        padding: 85px 10px 20px !important;
    }
    
    .main-content-column .container {
        padding: 0 10px 20px;
    }
    
    .christmas-spirit {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .count-display {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .believers-label {
        font-size: 2.5rem !important;
    }
    
    .christmas-tree {
        font-size: 2rem;
        top: -10px;
        right: 15px;
    }
    
    .clausometer-dial-container svg {
        width: 250px;
        height: 250px;
    }
    
    .spirit-label {
        font-size: 1.1em;
    }
    
    /* Countdown responsive */
    .countdown-display {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .countdown-display {
        flex-direction: column;
        gap: 20px;
        margin: 20px auto;
        max-width: 300px; /* or 100% with padding */
    }

    .countdown-separator {
        display: none; /* hide colons on mobile */
    }

    .countdown-item {
        min-width: auto;
        padding: 15px 20px;
        border-radius: 25px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        flex-shrink: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .countdown-number {
        font-size: 3rem;
    }

    .countdown-label {
        font-size: 1.1rem;
        margin-top: 8px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .spirit-card {
        padding: 20px;
    }
    
    .count-display {
        font-size: 2rem;
    }
    
    .believers-label {
        font-size: 2rem !important;
    }
    
    .clausometer-dial-container svg {
        width: 200px;
        height: 200px;
    }
    
    .spirit-label {
        font-size: 1em;
    }
    
    .menu-logo {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        padding: 12px;
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    .mobile-bottom-ad .adsbygoogle {
        width: 250px !important;
        height: 100px !important;
    }
}