:root {
    --christmas-red: #D42426;
    --christmas-green: #165B33;
    --christmas-gold: #FFD700;
    --snow-white: #FFFFFF;
}

body {
    background: linear-gradient(135deg, var(--christmas-green) 0%, #1a472a 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    color: var(--snow-white);
    overflow-x: hidden;
    position: relative;
}

.christmas-title {
    font-size: 3.5rem;
    color: var(--christmas-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    font-weight: bold;
}

.countdown-container {
    padding: 2rem;
    margin-top: 10vh;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.countdown-display {
    font-size: 2rem;
    margin: 2rem 0;
}

.number {
    color: var(--christmas-gold);
    font-size: 3rem;
    font-weight: bold;
}

.eve-text {
    color: var(--christmas-red);
    font-weight: bold;
}

.days-remaining {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.number {
    color: var(--christmas-gold);
    font-size: 3rem;
    font-weight: bold;
}

.eve-text-display {
    color: var(--christmas-red);
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 1rem;
}

.eve-text {
    color: var(--christmas-red);
    font-weight: bold;
}

.speak-button {
    background-color: var(--christmas-red);
    color: var(--snow-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    margin: 1.5rem auto 0;
}

.speak-button:hover {
    transform: scale(1.05);
    background-color: #b91e1e;
}

/* Snowflake Styles */
.snowflake {
    position: fixed;
    color: var(--snow-white);
    font-size: 1.5em;
    user-select: none;
    z-index: 1;
    pointer-events: none;
}

/* Christmas Lights */
.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: fixed;
    animation: twinkle 1.5s infinite alternate;
}

@keyframes twinkle {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .christmas-title {
        font-size: 2.5rem;
    }

    .countdown-display {
        font-size: 1.5rem;
    }

    .number {
        font-size: 2.5rem;
    }
}

/* Share Button Styles */
.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.share-button, .copy-button {
    background-color: var(--christmas-red);
    color: var(--snow-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.share-button:hover, .copy-button:hover {
    transform: scale(1.05);
    background-color: #b91e1e;
}

.modal-content {
    background: linear-gradient(135deg, var(--christmas-green) 0%, #1a472a 100%);
    color: var(--snow-white);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-share-buttons .btn {
    width: 200px;
}

.btn-close {
    filter: brightness(0) invert(1);
}