
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        :root {
            --primary-color: #0f0f0f;
            --secondary-color: #1f1f1f;
            --accent-color: #ff4d4d;
            --accent-hover: #ff3333;
            --text-color: #f1f1f1;
            --text-secondary: #b3b3b3;
            --glass-color: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --error-color: #ff6b6b;
            --success-color: #6bcf7f;
            --info-color: #4d9de0;
        }

        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            height: 100vh;
            overflow: hidden;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            margin: 0;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,77,77,0.1) 0%, rgba(255,77,77,0) 70%);
            animation: float 15s infinite linear;
            opacity: 0.3;
        }

        .bg-sparkle {
            position: absolute;
            width: 3px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: sparkle 2s infinite alternate;
            opacity: 0;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        @keyframes sparkle {
            0% {
                transform: scale(0.5);
                opacity: 0;
            }
            100% {
                transform: scale(1.5);
                opacity: 0.8;
            }
        }

        /* Verification Container */
        .verify-container {
            background: rgba(31, 31, 31, 0.95);
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            padding: 2.5rem;
            width: 100%;
            max-width: 500px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 77, 77, 0.2);
            animation: fadeIn 0.5s ease forwards;
            margin: 1rem;
            text-align: center;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .verify-logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--accent-color), #ff9999);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 5s ease infinite;
            background-size: 200% 200%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .verify-logo .logo-icon {
            font-size: 1.8rem;
        }

        .verify-status {
            margin: 1.5rem 0;
            padding: 1.5rem;
            border-radius: 10px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .status-error {
            background-color: rgba(255, 107, 107, 0.1);
            border: 1px solid var(--error-color);
            color: var(--error-color);
        }

        .status-success {
            background-color: rgba(107, 207, 127, 0.1);
            border: 1px solid var(--success-color);
            color: var(--success-color);
        }

        .status-info {
            background-color: rgba(77, 157, 224, 0.1);
            border: 1px solid var(--info-color);
            color: var(--info-color);
        }

        .verify-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .user-email {
            font-weight: 600;
            color: var(--accent-color);
            word-break: break-all;
        }

        .action-btn {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.8rem 1.5rem;
            background-color: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
        }

        .action-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
        }

        /* Responsive Styles */
        @media (max-width: 480px) {
            .verify-container {
                padding: 1.5rem;
                margin: 0.5rem;
            }
            
            .verify-logo {
                font-size: 1.8rem;
            }
            
            .verify-status {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }