.elementor-13941 .elementor-element.elementor-element-7826f7b{--display:flex;}.elementor-13941 .elementor-element.elementor-element-7826f7b.e-con{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-9a1729f *//* ========== CSS RESET &amp; BASE ========== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #121a2e;
            --accent-cyan: #00f5ff;
            --accent-green: #00ff88;
            --accent-purple: #8b5cf6;
            --accent-orange: #ff6b35;
            --accent-red: #ff3366;
            --text-primary: #e8f0ff;
            --text-secondary: #8892a8;
            --border-glow: rgba(0, 245, 255, 0.3);
            --card-bg: rgba(18, 26, 46, 0.85);
            --glass-bg: rgba(10, 14, 23, 0.7);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0f 0%, #0d1a25 50%, #0a0f1a 100%);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* ========== ANIMATED BACKGROUND ========== */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(0, 245, 255, 0.02) 50%, 
                transparent 100%);
        }

        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-cyan);
            animation: float 15s infinite;
            opacity: 0.6;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
        .particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
        .particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
        .particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
        .particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
        .particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
        .particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 15s; }
        .particle:nth-child(8) { left: 80%; animation-delay: 0.5s; animation-duration: 19s; }
        .particle:nth-child(9) { left: 90%; animation-delay: 3.5s; animation-duration: 11s; }
        .particle:nth-child(10) { left: 15%; animation-delay: 1.5s; animation-duration: 20s; }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
                transform: translateY(90vh) scale(1);
            }
            90% {
                opacity: 0.6;
                transform: translateY(10vh) scale(1);
            }
            100% {
                transform: translateY(-10vh) scale(0);
                opacity: 0;
            }
        }

        /* Data Streams */
        .data-stream {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(180deg, transparent, var(--accent-cyan), transparent);
            animation: dataFlow 8s linear infinite;
            opacity: 0.4;
        }

        .data-stream:nth-child(11) { left: 5%; animation-delay: 0s; }
        .data-stream:nth-child(12) { left: 25%; animation-delay: 2s; }
        .data-stream:nth-child(13) { left: 45%; animation-delay: 4s; }
        .data-stream:nth-child(14) { left: 65%; animation-delay: 1s; }
        .data-stream:nth-child(15) { left: 85%; animation-delay: 3s; }

        @keyframes dataFlow {
            0% { transform: translateY(-100px); }
            100% { transform: translateY(100vh); }
        }

        /* ========== HEADER ========== */
        .headerpage {
            position: relative;
            padding: 80px 100px 80px;
            text-align: center;
            border-bottom: 1px solid var(--border-glow);
        }

        /* AAA Letters Animation */
        .aaa-title {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .aaa-letter {
            display: inline-block;
            animation: letterFloat 2s ease-in-out infinite;
        }

        .aaa-letter:nth-child(1) {
            color: var(--accent-cyan);
            text-shadow: 0 0 30px var(--accent-cyan);
            animation-delay: 0s;
        }

        .aaa-letter:nth-child(2) {
            color: var(--accent-green);
            text-shadow: 0 0 30px var(--accent-green);
            animation-delay: 0.3s;
        }

        .aaa-letter:nth-child(3) {
            color: var(--accent-purple);
            text-shadow: 0 0 30px var(--accent-purple);
            animation-delay: 0.6s;
        }

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

        .subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .subtitle span {
            color: var(--accent-cyan);
            font-weight: 600;
        }

        /* Navigation */
        .nav-pills {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 40px;
        }

        .nav-pill {
            padding: 12px 25px;
            background: var(--glass-bg);
            border: 1px solid var(--border-glow);
            border-radius: 50px;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .nav-pill:hover::before {
            left: 100%;
        }

        .nav-pill:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
            transform: translateY(-3px);
        }

        /* ========== MAIN CONTENT ========== */
        main {
            padding: 20px 0px;
        }

        /* Section Styling */
        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        
        .sectionbloc {
            margin-bottom: 30px;
            padding: 20px;
            background: var(--card-bg);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .sectionbloc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green), var(--accent-purple));
            animation: borderGlow 3s linear infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--border-glow);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        h2 .icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 12px;
            font-size: 1.5rem;
        }

        h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--accent-cyan);
        }

        p {
            margin-bottom: 20px;
            color: var(--text-primary);
            font-size: 1.05rem;
        }

        /* ========== WHY IT MATTERS ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .stat-card {
            background: var(--glass-bg);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-glow);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .stat-card:hover::after {
            transform: scaleX(1);
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            animation: numberPulse 2s ease-in-out infinite;
        }

        @keyframes numberPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 10px;
        }

        /* External Links */
        .external-links {
            margin-top: 30px;
            padding: 25px;
            background: rgba(0, 245, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid var(--accent-cyan);
        }

        .external-links h4 {
            color: var(--accent-cyan);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .external-links a {
            color: var(--accent-green);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 5px 10px 5px 0;
        }

        .external-links a:hover {
            color: var(--accent-cyan);
            text-shadow: 0 0 10px var(--accent-cyan);
        }

        .external-links a::before {
            content: '🔗';
        }

        /* ========== KEY TERMS &amp; CONCEPTS ========== */
        .concept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .concept-card {
            padding: 30px;
            background: var(--glass-bg);
            border-radius: 15px;
            border: 1px solid var(--border-glow);
            position: relative;
            overflow: hidden;
        }

        .concept-card.authentication { border-left: 4px solid var(--accent-cyan); }
        .concept-card.authorization { border-left: 4px solid var(--accent-green); }
        .concept-card.accounting { border-left: 4px solid var(--accent-purple); }

        .concept-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .concept-card.authentication h4 { color: var(--accent-cyan); }
        .concept-card.authorization h4 { color: var(--accent-green); }
        .concept-card.accounting h4 { color: var(--accent-purple); }

        .concept-number {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
            font-size: 1rem;
        }

        .authentication .concept-number { background: var(--accent-cyan); color: var(--primary-dark); }
        .authorization .concept-number { background: var(--accent-green); color: var(--primary-dark); }
        .accounting .concept-number { background: var(--accent-purple); color: var(--primary-dark); }

        /* Analogy Box */
        .analogy-box {
            margin-top: 40px;
            padding: 40px;
            background: linear-gradient(135deg, 
                rgba(0, 245, 255, 0.08) 0%, 
                rgba(139, 92, 246, 0.08) 100%);
            border-radius: 20px;
            border: 1px solid var(--border-glow);
            position: relative;
        }

        .analogy-box::before {
            content: '💡';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 40px;
            animation: iconBounce 2s ease-in-out infinite;
        }

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

        .analogy-box h3 {
            margin-top: 0;
            padding-top: 10px;
        }

        .analogy-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }

        .analogy-item {
            padding: 20px;
            background: var(--glass-bg);
            border-radius: 12px;
            text-align: center;
        }

        .analogy-item .emoji {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .analogy-item strong {
            display: block;
            color: var(--accent-cyan);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        /* ========== REAL-WORLD SCENARIO ========== */
        .scenario-container {
            position: relative;
        }

        .character-intro {
            display: flex;
            align-items: center;
            gap: 25px;
            padding: 25px;
            background: var(--glass-bg);
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .character-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            flex-shrink: 0;
            animation: avatarPulse 3s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
            50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6); }
        }

        .character-info h4 {
            font-size: 1.3rem;
            color: var(--accent-cyan);
            margin-bottom: 5px;
        }

        .character-info p {
            margin: 0;
            color: var(--text-secondary);
        }

        .story-section {
            margin: 30px 0;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 25px;
        }

        .before-box, .after-box {
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }

        .before-box {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 53, 0.1));
            border: 1px solid rgba(255, 51, 102, 0.3);
        }

        .after-box {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 245, 255, 0.1));
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .before-box h4 {
            color: var(--accent-red);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .after-box h4 {
            color: var(--accent-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 8px;
        }

        .before-box .timeline-dot { background: var(--accent-red); }
        .after-box .timeline-dot { background: var(--accent-green); }

        /* ========== STEP-BY-STEP GUIDE ========== */
        .steps-container {
            position: relative;
        }

        .step-item {
            display: flex;
            gap: 25px;
            margin-bottom: 35px;
            padding: 25px;
            background: var(--glass-bg);
            border-radius: 15px;
            border: 1px solid var(--border-glow);
            position: relative;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 5px 30px rgba(0, 245, 255, 0.1);
            transform: translateX(10px);
        }

        .step-number {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--primary-dark);
            flex-shrink: 0;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--accent-cyan);
            animation: stepPulse 2s ease-in-out infinite;
        }

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

        .step-content h4 {
            font-size: 1.3rem;
            color: var(--accent-cyan);
            margin-bottom: 15px;
        }

        .step-content ul {
            list-style: none;
            margin-top: 15px;
        }

        .step-content li {
            padding: 10px 0 10px 25px;
            position: relative;
            color: var(--text-primary);
        }

        .step-content li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--accent-green);
        }

        .protection-tag {
            display: inline-block;
            padding: 3px 10px;
            background: rgba(0, 255, 136, 0.15);
            color: var(--accent-green);
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 5px;
        }

        /* Internal Links */
        .internal-links {
            margin-top: 40px;
            padding: 25px;
            background: var(--glass-bg);
            border-radius: 15px;
            border: 1px solid var(--border-glow);
        }

        .internal-links h4 {
            color: var(--accent-cyan);
            margin-bottom: 15px;
        }

        .internal-links a {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background: rgba(0, 245, 255, 0.1);
            color: var(--accent-cyan);
            text-decoration: none;
            border-radius: 8px;
            border: 1px solid var(--border-glow);
            transition: all 0.3s ease;
        }

        .internal-links a:hover {
            background: rgba(0, 245, 255, 0.2);
            transform: translateY(-2px);
        }

        /* ========== COMMON MISTAKES &amp; BEST PRACTICES ========== */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .mistakes-section, .practices-section {
            padding: 30px;
            border-radius: 15px;
        }

        .mistakes-section {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.08), rgba(255, 107, 53, 0.05));
            border: 1px solid rgba(255, 51, 102, 0.3);
        }

        .practices-section {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 245, 255, 0.05));
            border: 1px solid rgba(0, 255, 136, 0.3);
        }

        .mistakes-section h3 {
            color: var(--accent-red);
        }

        .practices-section h3 {
            color: var(--accent-green);
        }

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

        .check-list li {
            padding: 15px 0 15px 35px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .check-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 18px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }

        .mistakes-section .check-list li::before {
            background: rgba(255, 51, 102, 0.2);
            border: 2px solid var(--accent-red);
        }

        .practices-section .check-list li::before {
            background: rgba(0, 255, 136, 0.2);
            border: 2px solid var(--accent-green);
        }

        /* ========== RED TEAM vs BLUE TEAM ========== */
        .team-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

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

        .red-team {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(255, 107, 53, 0.1));
            border: 1px solid rgba(255, 51, 102, 0.4);
        }

        .blue-team {
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(0, 255, 136, 0.1));
            border: 1px solid rgba(0, 245, 255, 0.4);
        }

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

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

        .red-team .team-icon {
            background: var(--accent-red);
        }

        .blue-team .team-icon {
            background: var(--accent-cyan);
        }

        .team-card h3 {
            margin: 0;
            padding: 0;
            border: none;
        }

        .red-team h3 { color: var(--accent-red); }
        .blue-team h3 { color: var(--accent-cyan); }

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

        .tactic-list li {
            padding: 12px 0 12px 25px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .red-team .tactic-list li::before {
            content: '⚔';
            position: absolute;
            left: 0;
        }

        .blue-team .tactic-list li::before {
            content: '🛡';
            position: absolute;
            left: 0;
        }

        /* ========== THREAT HUNTER'S EYE ========== */
        .threat-section {
            background: linear-gradient(135deg, 
                rgba(139, 92, 246, 0.1) 0%, 
                rgba(255, 51, 102, 0.08) 100%);
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        .threat-section h2 .icon {
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
        }

        .threat-scenario {
            padding: 30px;
            background: var(--glass-bg);
            border-radius: 15px;
            margin-top: 20px;
            border-left: 4px solid var(--accent-purple);
        }

        .threat-scenario h4 {
            color: var(--accent-purple);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .attack-flow {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 15px;
            margin: 25px 0;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        .flow-item {
            padding: 15px 20px;
            background: var(--card-bg);
            border-radius: 10px;
            border: 1px solid var(--border-glow);
            text-align: center;
            font-size: 0.95rem;
        }

        .flow-arrow {
            color: var(--accent-purple);
            font-size: 1.5rem;
            animation: arrowPulse 1s ease-in-out infinite;
        }

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

        /* ========== CALL TO ACTION ========== */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, 
                rgba(0, 245, 255, 0.1) 0%, 
                rgba(139, 92, 246, 0.1) 50%,
                rgba(0, 255, 136, 0.1) 100%);
            border: 1px solid var(--border-glow);
        }

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

        .cta-button {
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button.primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            color: var(--primary-dark);
            border: none;
        }

        .cta-button.secondary {
            background: transparent;
            color: var(--accent-cyan);
            border: 2px solid var(--accent-cyan);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
        }

        .engagement-box {
            margin-top: 40px;
            padding: 30px;
            background: var(--glass-bg);
            border-radius: 15px;
            display: inline-block;
        }

        .engagement-box p {
            margin: 0;
            color: var(--text-secondary);
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            border: 1px solid var(--border-glow);
            border-radius: 50%;
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent-cyan);
            transform: translateY(-5px);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {
            .aaa-title {
                font-size: 2.5rem;
                flex-direction: column;
                gap: 5px;
            }

            h2 {
                font-size: 1.6rem;
                flex-direction: column;
                text-align: center;
            }

            section {
                padding: 30px 20px;
            }

            .step-item {
                flex-direction: column;
                text-align: center;
            }

            .step-number {
                margin: 0 auto;
            }

            .character-intro {
                flex-direction: column;
                text-align: center;
            }

            .nav-pills {
                flex-direction: column;
                align-items: center;
            }

            .attack-flow {
                flex-direction: column;
            }

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

        /* ========== ANIMATION SIMULATION ========== */
        .simulation-container {
            margin: 40px 0;
            padding: 40px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 1px solid var(--border-glow);
            position: relative;
            overflow: hidden;
        }

        .simulation-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--accent-cyan);
            font-size: 1.3rem;
        }

        .simulation-flow {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .sim-step {
            text-align: center;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px solid var(--border-glow);
            min-width: 150px;
            position: relative;
        }

        .sim-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -25px;
            width: 30px;
            height: 2px;
            background: var(--accent-cyan);
            animation: flowLine 1.5s ease-in-out infinite;
        }

        .sim-step:last-child::after {
            display: none;
        }

        @keyframes flowLine {
            0%, 100% { width: 30px; opacity: 1; }
            50% { width: 15px; opacity: 0.5; }
        }

        .sim-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .sim-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .sim-step.active {
            border-color: var(--accent-green);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        }

        .sim-step.active .sim-icon {
            animation: iconPulse 1s ease-in-out infinite;
        }

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

        .access-granted {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
            color: var(--primary-dark);
            border-radius: 25px;
            font-weight: bold;
            animation: grantedPulse 2s ease-in-out infinite;
        }

        @keyframes grantedPulse {
            0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
            50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.8); }
        }

        .access-denied {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
            color: var(--text-primary);
            border-radius: 25px;
            font-weight: bold;
            animation: deniedShake 0.5s ease-in-out;
        }

        @keyframes deniedShake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Terminal Animation */
        .terminal {
            background: #000;
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            font-family: 'Courier New', monospace;
            border: 1px solid var(--border-glow);
        }

        .terminal-header {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .terminal-dot.red { background: #ff5f56; }
        .terminal-dot.yellow { background: #ffbd2e; }
        .terminal-dot.green { background: #27ca40; }

        .terminal-content {
            color: var(--accent-green);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .terminal-line {
            margin: 5px 0;
        }

        .terminal-prompt {
            color: var(--accent-cyan);
        }

        .typing-effect {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 3s steps(40) infinite;
        }

        @keyframes typing {
            0%, 100% { width: 0; }
            50%, 90% { width: 100%; }
        }

        .cursor-blink {
            display: inline-block;
            width: 10px;
            height: 18px;
            background: var(--accent-green);
            animation: blink 1s step-end infinite;
            vertical-align: middle;
            margin-left: 2px;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }/* End custom CSS */