

uix-donate-form-celebration {
    & {
        #starfield {
            position: fixed;
            z-index: 20;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
    
        .card {
            position: relative;
            z-index: 1;
            width: 380px;
            height: 500px;
            padding: 40px 32px;
            background-color: #111111;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            text-align: center;
            color: #fff;
            transition: opacity 400ms ease-in-out;
        }
    
        .card.fading {
            opacity: 0;
        }
    
        .card div {
            display: flex;
            flex-direction: column;
            align-items: start;
        }
    
        .card h2 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }
    
        .card p {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 8px;
            padding-left: 4px;
        }
    
        .card button {
            width: 100%;
            margin-top: 8px;
            padding: 10px 24px;
            background: white;
            color: #111111;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 400ms ease-in-out;
        }
    
        .card button:disabled {
            opacity: 0;
            cursor: default;
        }
    
        .celebration-container {
            width: 100%;
            display: flex;
            justify-content: center;
        }
    
        .thank-you-card {
            position: absolute;
            top: 20px;
            max-width: 1200px;
            min-height: 240px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            opacity: 1;
            z-index: 13;
            transition: opacity 450ms ease-in-out;
            background-color: var(--unyt-bg-secondary);
            border: 1px solid var(--unyt-border-primary);
            border-radius: 8px;
    
            > div {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 20px;
                margin: 0 20px;
                padding: 24px clamp(0.75rem, 20vw - 3.375rem, 2.5rem);
    
                p {
                    border: none;
                    border-radius: 16px;
                    margin: 0;
                    font-weight: 600;
                    font-size: larger;
                    text-align: center;
                    text-wrap: balance;
                }
            }
        }
    
        .hidden {
            opacity: 0;
        }
    }
    
}
