

        /* Animated Background */
        .background {
            position: fixed;
            /* width: 100%; */
            height: 100%;
            /* background: linear-gradient(to bottom, #0f0f23, #1a1a3e); */
        }

        .background::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(67, 97, 238, 0.3), transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(162, 89, 255, 0.2), transparent 50%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-50px, -50px); }
        }

        /* Confetti Canvas */
        #confettiCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 100;
        }

        /* Modal Overlay */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Modal Card */
        .modal-card {
            background: #fff;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            /* border: 1px solid rgba(255, 255, 255, 0.1); */
            border-radius: 24px;
            padding: 30px 20px;
            max-width: 475px;
            width: 75%;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transform: translateY(30px) scale(0.95);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-overlay.active .modal-card {
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        /* Icon Container */
        .icon-container {
            width: 79px;
            height: 80px;
            margin: 0 auto 32px;
            border: 1px solid #efefef;
            background: linear-gradient(135deg, #ffffff 0%, #ededed 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
            animation: iconPulse 2s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgb(141 141 141 / 40%);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 24px rgb(141 141 141 / 40%);
            }
        }

        .icon-container svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        /* Text Content */
        .modal-title {
            font-size: 23px;
            font-weight: 700;
            color: #005cb9;
            margin-bottom: 10px;
            text-align: center;
            letter-spacing: -0.5px;
        }

        .modal-subtitle {
            font-size: 16px;
            color: rgb(0 0 0);
            /* text-align: center; */
            line-height: 1.6;
            margin-bottom: 10px;
        }

        /* Button */
        .cta-button {
            width: 90%;
            padding: 13px;
            margin: auto 5%;
            background: linear-gradient(135deg, #4f5ea1 0%, #1b5dd5 100%);
            border: none;
            border-radius: 12px;
            color: white;
            text-align: center;
            font-size: 16px;
            /* font-weight: 600; */
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            /* box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4); */
            position: relative;
            overflow: hidden;
            font-family: 'Roboto-Regular';
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.6);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        /* Main Content */
        .main-content {
            position: relative;
            z-index: 10;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            padding: 20px;
        }

        .main-content h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #ffffff 0%, #a8b3ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .main-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        /* Test Reset Button */
        .reset-button {
            position: fixed;
            bottom: 24px;
            right: 24px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 50;
        }

        .reset-button:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .modal-card {
                padding: 40px 30px;
            }

            .modal-title {
                font-size: 23px;
            }

            .modal-subtitle {
                font-size: 15px;
            }

            .main-content h1 {
                font-size: 40px;
            }

            .main-content p {
                font-size: 18px;
            }
        }