body {
    background-color: #f0e4f7; /* Lavender */
    font-family: 'Press Start 2P', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
    overflow: hidden; /* Hide overflow for confetti */
}

.container {
    text-align: center;
    position: relative; /* For positioning decorations */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Slight white overlay */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.pixel-text {
    font-size: 5rem; /* Large pixel text */
    color: #ffc0cb; /* Pink */
    text-shadow: 
        4px 4px 0px #98fb98, /* Mint green shadow */
        -4px -4px 0px #add8e6; /* Baby blue shadow */
    margin-bottom: 20px;
    animation: bounce 1.5s infinite ease-in-out;
    line-height: 1.2;
}

.container p {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem; /* Adjust size as needed */
    color: #98fb98; /* Mint green, matching countdown */
    margin-bottom: 15px; /* Add some space below */
    text-shadow: 1px 1px 0px #333; /* Subtle shadow */
}

.decorations {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.heart, .star {
    width: 20px;
    height: 20px;
    /* Basic placeholder styles - could use SVG or background images for real pixel art */
    background-color: #ffc0cb; /* Pink */
    position: relative;
    animation: pulse 1.8s infinite ease-in-out alternate;
}

.heart {
    background-color: #ff69b4; /* Hot Pink for heart */
    transform: rotate(-45deg);
}

.heart::before, .heart::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #ff69b4;
    border-radius: 50%;
    position: absolute;
}

.heart::before {
    top: -10px;
    left: 0;
}

.heart::after {
    top: 0;
    left: 10px;
}

.star {
    background-color: #fffacd; /* Lemon Chiffon for star */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation-delay: 0.3s; /* Offset animation */
}

#countdown {
    font-size: 1.5rem;
    color: #98fb98; /* Mint green */
    margin-top: 20px;
}

/* Animation Keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pixel-text {
        font-size: 3.5rem;
        text-shadow: 
            3px 3px 0px #98fb98,
            -3px -3px 0px #add8e6;
    }
    .decorations {
        top: -20px;
        gap: 15px;
    }
    .heart, .star {
        width: 15px;
        height: 15px;
    }
    .heart::before {
        top: -7px;
    }
    .heart::after {
        left: 7px;
    }
    #countdown {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pixel-text {
        font-size: 2.5rem;
        text-shadow: 
            2px 2px 0px #98fb98,
            -2px -2px 0px #add8e6;
    }
    .decorations {
        top: -15px;
        gap: 10px;
    }
     .heart, .star {
        width: 10px;
        height: 10px;
    }
    .heart::before {
        top: -5px;
    }
    .heart::after {
        left: 5px;
    }
    #countdown {
        font-size: 1rem;
    }
}

/* Ensure crisp edges for pixel art if using images */
img {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}