body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    /* Festive font */
    line-height: 1.6;
    margin: 0;
    background-color: #ffeff4;
    /* Light pink background */
    color: #5b2c6f;
    /* Deep purple text */
}

header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.5em;
}

main {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.birthday-message {
    margin-bottom: 20px;
}

.emoji {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    margin: 0 10px;
}

button {
    padding: 15px 25px;
    background-color: #ff69b4;
    /* Hot pink */
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1em;
    transition: transform 0.2s ease-in-out;
}

button:hover {
    background-color: #ff1493;
    /* Deep pink */
    transform: scale(1.05);
}

#message {
    margin-top: 15px;
    font-weight: bold;
    color: #2ecc71;
    /* Green */
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #888;
}

#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Make canvas click-through */
    z-index: 9999;
}

.debug-arrow {
    position: fixed;
    color: #ff69b4;
    font-size: 18px;
    font-weight: bold;
    z-index: 1000;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    border: 2px dashed #ff69b4;
    animation: bounce 2s infinite;
}

.arrow-bottom {
    bottom: 120px;
    /* Sitting above the anchor ad */
    left: 50%;
    transform: translateX(-50%);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(0);
    }

    40% {
        transform: translateY(-10px) translateX(-5px);
    }

    60% {
        transform: translateY(-5px) translateX(0);
    }
}

/* Basic Modal Styles */
#modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 8px;
}

.button-style {
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.button-style:hover {
    background-color: #e0e0e0;
}