        .success-hero-full {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 4rem 0;
        }

        .success-hero-full::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            pointer-events: none;
            opacity: 0.6;
        }

        .success-hero-full::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        .success-hero-full .container {
            position: relative;
            z-index: 1;
        }

        .success-hero-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: pulse 2s ease-in-out infinite;
        }

        .success-hero-icon i {
            font-size: 3rem;
            color: white;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .min-vh-100 {
            min-height: 100vh;
        }

        @media (max-width: 991.98px) {
            .success-hero-full {
                min-height: 90vh;
                padding: 3rem 0;
            }

            .success-hero-icon {
                width: 80px;
                height: 80px;
            }

            .success-hero-icon i {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .success-hero-full {
                min-height: 85vh;
                padding: 2rem 0;
            }

            .success-hero-icon {
                width: 70px;
                height: 70px;
            }

            .success-hero-icon i {
                font-size: 2rem;
            }
        }