.hero-content h1 {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content h2 {
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

#successMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;

    background: #8b5cf6;
    color: #fff;
    padding: 20px 28px;
    border-radius: 12px;
    font-size: 1.25rem;
    text-align: center;

    opacity: 0;
    transition: opacity 0.4s ease;
}

#successMessage.show {
    opacity: 1;
}

