.elementor-14230 .elementor-element.elementor-element-6bce7f7{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a377d88 */body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f0a23 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
        }

        /* Header */
        .header {
            padding: 40px 20px;
            text-align: center;
            border-bottom: 3px solid #3b82f6;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            animation: headerScan 4s linear infinite;
        }

        @keyframes headerScan {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }

        .header h1 {
            font-size: 3rem;
            color: #3b82f6;
            text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
            position: relative;
            z-index: 1;
        }

        .header p {
            color: #a0a0c0;
            margin-top: 10px;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        .nav {
            background: #0d0d1f;
            padding: 15px;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #2a2a4a;
        }

        .nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nav a {
            color: #3b82f6;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #3b82f6;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav a:hover {
            background: #3b82f6;
            color: #0a0a1a;
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
		
		section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
		
        .section {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid #2a2a4a;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #3b82f6, #22c55e, #f59e0b);
        }

        .section h2 {
            color: #3b82f6;
            font-size: 2rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section h2::before {
            content: '🔐';
            font-size: 1.5rem;
        }

        .section h3 {
            color: #22c55e;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }

        .section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Authentication Simulation */
        .simulation-container {
            background: #0a0a15;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #1a1a3a;
            position: relative;
            min-height: 650px;
            overflow: hidden;
        }

        .simulation-title {
            text-align: center;
            color: #3b82f6;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* Authentication Gate */
        .auth-gate {
            display: flex;
            flex-direction: column;
            gap: 25px;
            position: relative;
        }

        /* User Section */
        .user-section {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .user-entity {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .user-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            animation: userPulse 2s ease-in-out infinite;
            position: relative;
        }

        .user-icon-large::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #3b82f6;
            animation: userRipple 2s ease-out infinite;
        }

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

        @keyframes userRipple {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .user-label {
            color: #a0a0c0;
            font-size: 0.9rem;
        }

        /* Authentication Factors */
        .auth-factors {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .factor-card {
            background: linear-gradient(135deg, rgba(30, 30, 60, 0.8), rgba(20, 20, 40, 0.8));
            border-radius: 15px;
            padding: 20px;
            width: 180px;
            text-align: center;
            border: 2px solid #2a2a4a;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .factor-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
        }

        .factor-card.knowledge::before { background: #f59e0b; }
        .factor-card.possession::before { background: #22c55e; }
        .factor-card.inherence::before { background: #8b5cf6; }

        .factor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .factor-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            animation: factorFloat 3s ease-in-out infinite;
        }

        .factor-card:nth-child(1) .factor-icon { animation-delay: 0s; }
        .factor-card:nth-child(2) .factor-icon { animation-delay: 0.5s; }
        .factor-card:nth-child(3) .factor-icon { animation-delay: 1s; }

        @keyframes factorFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .factor-title {
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .factor-card.knowledge .factor-title { color: #f59e0b; }
        .factor-card.possession .factor-title { color: #22c55e; }
        .factor-card.inherence .factor-title { color: #8b5cf6; }

        .factor-desc {
            font-size: 0.75rem;
            color: #606080;
        }

        /* Gate Visualization */
        .gate-visualization {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.1));
            border: 2px solid #3b82f6;
            border-radius: 20px;
            padding: 30px;
            position: relative;
        }

        .gate-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .gate-title {
            color: #3b82f6;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .gate-icon {
            font-size: 1.5rem;
            animation: gatePulse 1.5s ease-in-out infinite;
        }

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

        /* Authentication Steps */
        .auth-steps {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .auth-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .step-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            position: relative;
            animation: stepGlow 2s ease-in-out infinite;
        }

        .step-circle.request { 
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            animation-delay: 0s;
        }
        .step-circle.verify { 
            background: linear-gradient(135deg, #f59e0b, #d97706);
            animation-delay: 0.5s;
        }
        .step-circle.validate { 
            background: linear-gradient(135deg, #22c55e, #16a34a);
            animation-delay: 1s;
        }
        .step-circle.grant { 
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            animation-delay: 1.5s;
        }

        @keyframes stepGlow {
            0%, 100% { box-shadow: 0 0 15px currentColor; }
            50% { box-shadow: 0 0 30px currentColor; }
        }

        .step-label {
            font-size: 0.8rem;
            color: #a0a0c0;
            text-align: center;
        }

        .step-arrow {
            color: #3b82f6;
            font-size: 1.5rem;
            animation: arrowMove 1s ease-in-out infinite;
        }

        @keyframes arrowMove {
            0%, 100% { transform: translateX(0); opacity: 0.5; }
            50% { transform: translateX(5px); opacity: 1; }
        }

        /* Result Display */
        .auth-result {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }

        .result-badge {
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: resultPulse 1.5s ease-in-out infinite;
        }

        .result-badge.success {
            background: rgba(34, 197, 94, 0.2);
            border: 2px solid #22c55e;
            color: #22c55e;
        }

        .result-badge.fail {
            background: rgba(239, 68, 68, 0.2);
            border: 2px solid #ef4444;
            color: #ef4444;
        }

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

        /* MFA Strength Meter */
        .mfa-meter {
            background: rgba(30, 30, 60, 0.6);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .meter-title {
            text-align: center;
            color: #a0a0c0;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .meter-bars {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .meter-bar {
            width: 30px;
            height: 60px;
            background: #2a2a4a;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

        .meter-fill {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: linear-gradient(180deg, #22c55e, #16a34a);
            animation: meterFill 3s ease-in-out infinite;
        }

        .meter-bar:nth-child(1) .meter-fill { animation-delay: 0s; height: 33%; }
        .meter-bar:nth-child(2) .meter-fill { animation-delay: 0.3s; height: 66%; background: linear-gradient(180deg, #f59e0b, #d97706); }
        .meter-bar:nth-child(3) .meter-fill { animation-delay: 0.6s; height: 100%; }

        @keyframes meterFill {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .meter-labels {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }

        .meter-label {
            font-size: 0.7rem;
            color: #606080;
        }

        /* Data Flow Particles */
        .auth-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .auth-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #3b82f6;
            border-radius: 50%;
            animation: authFlow 4s linear infinite;
            box-shadow: 0 0 10px #3b82f6;
        }

        .auth-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .auth-particle:nth-child(2) { left: 30%; animation-delay: 1s; }
        .auth-particle:nth-child(3) { left: 50%; animation-delay: 2s; }
        .auth-particle:nth-child(4) { left: 70%; animation-delay: 3s; }
        .auth-particle:nth-child(5) { left: 90%; animation-delay: 4s; }

        @keyframes authFlow {
            0% {
                top: 0;
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* Statistics Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.1));
            border: 1px solid #2a2a4a;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #3b82f6;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #a0a0c0;
            font-size: 1rem;
        }

        .stat-source {
            font-size: 0.8rem;
            color: #606080;
            margin-top: 10px;
        }

        .stat-source a {
            color: #22c55e;
            text-decoration: none;
        }

        .stat-source a:hover {
            text-decoration: underline;
        }

        /* Key Terms */
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .term-card {
            background: rgba(30, 30, 60, 0.5);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #2a2a4a;
            transition: all 0.3s ease;
        }

        .term-card:hover {
            border-color: #3b82f6;
            transform: scale(1.02);
        }

        .term-title {
            color: #22c55e;
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .term-content {
            color: #c0c0e0;
        }

        /* Story Section */
        .story-container {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border-left: 4px solid #3b82f6;
        }

        .story-character {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .character-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3b82f6, #22c55e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .character-info h4 {
            color: #3b82f6;
            font-size: 1.3rem;
        }

        .character-info p {
            color: #a0a0c0;
            font-size: 0.9rem;
        }

        .story-timeline {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .timeline-item {
            flex: 1;
            min-width: 200px;
            background: rgba(20, 20, 40, 0.8);
            border-radius: 10px;
            padding: 20px;
            position: relative;
        }

        .timeline-item.before {
            border-top: 3px solid #ef4444;
        }

        .timeline-item.after {
            border-top: 3px solid #22c55e;
        }

        .timeline-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .timeline-item.before .timeline-label {
            color: #ef4444;
        }

        .timeline-item.after .timeline-label {
            color: #22c55e;
        }

        /* Step Guide */
        .steps-container {
            counter-reset: step-counter;
        }

        .step-item {
            background: rgba(25, 25, 50, 0.6);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 4px solid #3b82f6;
            position: relative;
            padding-left: 80px;
        }

        .step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3b82f6, #22c55e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            color: #0a0a1a;
        }

        .step-title {
            color: #3b82f6;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .step-content ul {
            list-style: none;
            padding-left: 0;
        }

        .step-content li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #c0c0e0;
        }

        .step-content li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #22c55e;
        }

        /* Mistakes &amp; Best Practices */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }

        .comparison-card {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 25px;
        }

        .comparison-card.mistakes {
            border-top: 3px solid #ef4444;
        }

        .comparison-card.best-practices {
            border-top: 3px solid #22c55e;
        }

        .comparison-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comparison-card.mistakes .comparison-title {
            color: #ef4444;
        }

        .comparison-card.best-practices .comparison-title {
            color: #22c55e;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            padding: 12px 0;
            border-bottom: 1px solid #2a2a4a;
            padding-left: 30px;
            position: relative;
            color: #c0c0e0;
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .comparison-list li::before {
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .comparison-card.mistakes .comparison-list li::before {
            content: '✗';
            color: #ef4444;
        }

        .comparison-card.best-practices .comparison-list li::before {
            content: '✓';
            color: #22c55e;
        }

        /* Red Team vs Blue Team */
        .team-battle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 25px 0;
        }

        @media (max-width: 768px) {
            .team-battle {
                grid-template-columns: 1fr;
            }
        }

        .team-card {
            border-radius: 15px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .team-card.red-team {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(185, 28, 28, 0.3));
            border: 2px solid #ef4444;
        }

        .team-card.blue-team {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3));
            border: 2px solid #3b82f6;
        }

        .team-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .team-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .team-card.red-team .team-icon {
            background: rgba(239, 68, 68, 0.3);
        }

        .team-card.blue-team .team-icon {
            background: rgba(59, 130, 246, 0.3);
        }

        .team-title {
            font-size: 1.4rem;
        }

        .team-card.red-team .team-title {
            color: #ef4444;
        }

        .team-card.blue-team .team-title {
            color: #3b82f6;
        }

        .team-content {
            color: #c0c0e0;
        }

        .team-content ul {
            list-style: none;
            padding: 0;
        }

        .team-content li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }

        .team-content li::before {
            content: '◆';
            position: absolute;
            left: 0;
        }

        .team-card.red-team .team-content li::before {
            color: #ef4444;
        }

        .team-card.blue-team .team-content li::before {
            color: #3b82f6;
        }

        /* Threat Hunter */
        .threat-hunter {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border: 2px solid #f59e0b;
            position: relative;
        }

        .threat-hunter::before {
            content: '👁️';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 2rem;
            background: #1a1a2e;
            padding: 0 10px;
        }

        .hunter-title {
            color: #f59e0b;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .hunter-content {
            color: #c0c0e0;
        }

        .attack-scenario {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border-left: 3px solid #f59e0b;
        }

        .scenario-title {
            color: #f59e0b;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.1));
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            border: 2px solid #3b82f6;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 50%);
            animation: ctaGlow 5s ease-in-out infinite;
        }

        @keyframes ctaGlow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            color: #3b82f6;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-text {
            color: #c0c0e0;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-button.primary {
            background: #3b82f6;
            color: #0a0a1a;
            border: 2px solid #3b82f6;
        }

        .cta-button.primary:hover {
            background: transparent;
            color: #3b82f6;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            color: #22c55e;
            border: 2px solid #22c55e;
        }

        .cta-button.secondary:hover {
            background: #22c55e;
            color: #0a0a1a;
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
        }

        /* Footer */
        .footer {
            background: #0a0a15;
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid #2a2a4a;
            margin-top: 60px;
        }

        .footer p {
            color: #606080;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .section {
                padding: 25px;
            }

            .auth-steps {
                flex-direction: column;
            }

            .step-arrow {
                transform: rotate(90deg);
            }

            .step-item {
                padding-left: 25px;
                padding-top: 70px;
            }

            .step-item::before {
                left: 50%;
                top: 20px;
                transform: translateX(-50%);
            }
        }/* End custom CSS */