/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal {
    width: 320px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    display: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    transition: all 0.3s ease;
    z-index: 1002;
}

.modal-heart {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    color: #de93ac;
    animation: heartBeat 1.5s ease-in-out infinite;
}

.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 24px;
}

.modal-content .h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.modal-content .text {
    font-size: 16px;
    color: #666;
    margin: 12px 0 0;
}

.modal-button {
    display: inline-block;
    padding: 12px 24px;
    background: #de93ac;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 24px;
}

.modal-button:hover {
    background: #c97e96;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Debug button styles */
.debug-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    padding: 4px;
    background-color: #de93ac;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.debug-button:hover {
    transform: scale(1.1);
}

#canvas-confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1001;
} 