        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes glow {
            0% { box-shadow: 0 0 20px rgba(88, 101, 242, 0.2); }
            50% { box-shadow: 0 0 40px rgba(88, 101, 242, 0.5); }
            100% { box-shadow: 0 0 20px rgba(88, 101, 242, 0.2); }
        }

        .verify-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 50px;
            background: #090a0f;
            background: radial-gradient(circle at top, rgba(88, 101, 242, 0.15), #090a0f 60%);
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .verify-section::before, .verify-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(88, 101, 242, 0.1);
            filter: blur(100px);
            border-radius: 50%;
            z-index: 0;
        }
        .verify-section::before { top: -100px; left: -100px; }
        .verify-section::after { bottom: -100px; right: -100px; background: rgba(255, 77, 77, 0.05); }

        .verify-glass-card {
            background: rgba(20, 22, 30, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 28px;
            padding: 45px 40px;
            max-width: 550px;
            width: 100%;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .verify-icon-wrapper {
            width: 90px; height: 90px;
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.05));
            border: 1px solid rgba(88, 101, 242, 0.3);
            color: #5865F2;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            margin: 0 auto 30px;
            animation: float 4s ease-in-out infinite, glow 3s infinite;
            transform-style: preserve-3d;
        }

        .verify-title {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffffff, #a0a5b5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .verify-desc {
            color: #9ca3af;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .requirements-box {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 20px;
            text-align: left;
            margin-bottom: 30px;
        }

        .requirements-title {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .requirements-title i {
            color: #f5c518;
        }

        .requirements-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .requirements-list li {
            font-size: 0.9rem;
            color: #d1d5db;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .requirements-list li i {
            color: #5865F2;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: rgba(88, 101, 242, 0.05);
            border-color: rgba(88, 101, 242, 0.2);
            transform: translateY(-2px);
        }

        .feature-item i { color: #5865F2; font-size: 1.5rem; }
        .feature-item span { font-size: 0.85rem; color: #e5e7eb; font-weight: 500; }

        .custom-checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            text-align: left;
            margin-bottom: 30px;
            cursor: pointer;
            padding: 15px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 16px;
            border: 1px solid transparent;
            transition: 0.3s;
        }
        
        .custom-checkbox-wrapper:hover { border-color: rgba(255, 255, 255, 0.1); }

        .custom-checkbox {
            appearance: none;
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            cursor: pointer;
            position: relative;
            transition: all 0.2s ease;
            margin-top: 2px;
        }

        .custom-checkbox:checked { background: #5865F2; border-color: #5865F2; }

        .custom-checkbox:checked::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: white;
            font-size: 12px;
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
        }

        .checkbox-text { color: #9ca3af; font-size: 0.85rem; line-height: 1.5; }
        .checkbox-text a { color: #5865F2; text-decoration: none; font-weight: 600; transition: 0.2s; }
        .checkbox-text a:hover { color: #7289da; text-decoration: underline; }

        .btn-discord {
            width: 100%; height: 60px;
            font-size: 1.1rem; font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            display: flex; align-items: center; justify-content: center; gap: 12px;
            border: none; border-radius: 16px;
            background: #5865F2; color: #fff;
            cursor: pointer; transition: all 0.3s ease;
            position: relative; overflow: hidden;
        }

        .btn-discord i { font-size: 1.4rem; }
        .btn-discord:hover:not(:disabled) {
            background: #4752c4; transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
        }
        .btn-discord:disabled {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.3);
            cursor: not-allowed;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        @media (max-width: 480px) {
            .features-grid { grid-template-columns: 1fr; }
            .verify-glass-card { padding: 30px 20px; }
            .verify-title { font-size: 1.8rem; }
        }