#confetti-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stayonpro-thank-you svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

@keyframes explode {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) rotate(var(--tr)); opacity: 0; }
}

.confetti {
    animation: explode 2s ease-out forwards;
}

#content-merci {
    position: relative;
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 600px;
}

.main-text {
    font-size: 5em;
    font-weight: bold;
    color: #333;
}

.sub-text {
    font-size: 1.2em;
    color: #666;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

.styled-button {
    background-color: #333;
    border: none;
    color: white;
    text-decoration: none !important;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.styled-button:hover {
    background-color: #FF4F5E;
    color: white;
}

.styled-button-2 {
    background-color: #FF4F5E;
    border: none;
    color: white;
    text-decoration: none !important;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.styled-button-2:hover {
    background-color: #333;
    color: white;
}

@media (max-width: 768px) {
    .main-text {
        font-size: 3em;
    }
    .sub-text {
        font-size: 1em;
    }
}
