:root {
    --brand-blue: #2e3192;
    --brand-red: #ee1d24;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(46,49,146,0.85), rgba(238,29,36,0.85));
}

.thank-you-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.thank-you-card .checkmark {
    font-size: 4rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
    animation: popIn 0.5s ease forwards;
}

.thank-you-card h1 {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.thank-you-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.thank-you-card .redirect-msg {
    font-size: 1rem;
    color: #888;
}

.thank-you-card a {
    text-decoration: none;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s;
}

.thank-you-card a:hover {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-blue));
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Confetti canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}