.elementor-14078 .elementor-element.elementor-element-c1ff644{--display:flex;}/* Start custom CSS for html, class: .elementor-element-32a9fd4 *//* ========== CSS RESET &amp; BASE ========== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0b1015;
            --secondary-dark: #121a20;
            --accent-cyan: #00d4aa;
            --accent-blue: #0099ff;
            --accent-purple: #9b59b6;
            --accent-orange: #f39c12;
            --accent-red: #e74c3c;
            --accent-green: #27ae60;
            --text-primary: #ecf0f1;
            --text-secondary: #95a5a6;
            --border-glow: rgba(0, 212, 170, 0.3);
            --card-bg: rgba(18, 26, 32, 0.95);
            --glass-bg: rgba(11, 16, 21, 0.8);
        }

        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);
            line-height: 1.8;
            overflow-x: hidden;
        }

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

        /* Circuit Board Pattern */
        .circuit-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* Data Packets Animation */
        .packet-container {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .data-packet {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-cyan);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--accent-cyan);
            animation: packetFlow 6s linear infinite;
        }

        .data-packet:nth-child(1) { top: 10%; animation-delay: 0s; }
        .data-packet:nth-child(2) { top: 25%; animation-delay: 1s; }
        .data-packet:nth-child(3) { top: 40%; animation-delay: 2s; }
        .data-packet:nth-child(4) { top: 55%; animation-delay: 0.5s; }
        .data-packet:nth-child(5) { top: 70%; animation-delay: 1.5s; }
        .data-packet:nth-child(6) { top: 85%; animation-delay: 2.5s; }
        .data-packet:nth-child(7) { top: 15%; animation-delay: 3s; }
        .data-packet:nth-child(8) { top: 60%; animation-delay: 3.5s; }

        @keyframes packetFlow {
            0% { left: -20px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 100%; opacity: 0; }
        }

        /* Blocked Packets */
        .blocked-packet {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--accent-red);
            border-radius: 2px;
            animation: blockedFlow 8s linear infinite;
        }

        .blocked-packet:nth-child(9) { top: 30%; animation-delay: 0.5s; }
        .blocked-packet:nth-child(10) { top: 75%; animation-delay: 2s; }

        @keyframes blockedFlow {
            0% { left: -20px; opacity: 0; }
            10% { opacity: 1; }
            45% { opacity: 1; }
            50% { opacity: 0; transform: scale(1.5); }
            51% { opacity: 0; }
            100% { opacity: 0; left: 50%; }
        }

        /* Gateway Lines */
        .gateway-line {
            position: absolute;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, 
                transparent, 
                rgba(0, 212, 170, 0.5), 
                transparent);
            left: 50%;
            animation: gatewayPulse 2s ease-in-out infinite;
        }

        @keyframes gatewayPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

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

        /* ACL Gateway Logo */
        .logo-container {
            margin-bottom: 30px;
            position: relative;
            width: 160px;
            height: 160px;
            margin: 0 auto 30px;
        }

        .acl-gateway {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .gateway-outer {
            position: absolute;
            width: 160px;
            height: 160px;
            border: 3px solid var(--accent-cyan);
            border-radius: 15px;
            box-shadow: 
                0 0 30px rgba(0, 212, 170, 0.4),
                inset 0 0 30px rgba(0, 212, 170, 0.1);
            animation: gatewayRotate 20s linear infinite;
        }

        @keyframes gatewayRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .gateway-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: innerPulse 2s ease-in-out infinite;
        }

        @keyframes innerPulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.5); }
            50% { box-shadow: 0 0 40px rgba(0, 212, 170, 0.8); }
        }

        .gateway-inner .acl-text {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary-dark);
        }

        .gateway-inner .acl-sub {
            font-size: 0.6rem;
            color: var(--primary-dark);
            letter-spacing: 2px;
        }

        /* Rule indicators around gateway */
        .rule-indicator {
            position: absolute;
            padding: 5px 10px;
            background: var(--glass-bg);
            border: 1px solid var(--border-glow);
            border-radius: 15px;
            font-size: 0.65rem;
            color: var(--accent-cyan);
        }

        .rule-indicator.r1 { top: -5px; left: 45px; animation: ruleFade 3s ease-in-out infinite; }
        .rule-indicator.r2 { top: 43%; right: -40px; animation: ruleFade 3s ease-in-out infinite 0.5s; }
        .rule-indicator.r3 { bottom: -5px; left: 45px; animation: ruleFade 3s ease-in-out infinite 1s; }
        .rule-indicator.r4 { top: 43%; left: -45px; animation: ruleFade 3s ease-in-out infinite 1.5s; }

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

        /* Title Styling */
        .main-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

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

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

        .description {
            max-width: 750px;
            margin: 0 auto;
            color: var(--text-secondary);
            font-size: 1rem;
        }

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

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

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

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

        .nav-pill:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 212, 170, 0.3);
            transform: translateY(-2px);
        }

        /* ========== MAIN CONTENT ========== */
        main {
            max-width: 1200px;
            margin: 0 auto;
            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);
            border-radius: 20px;
            border: 1px solid var(--border-glow);
            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-blue), var(--accent-purple));
            animation: borderFlow 3s linear infinite;
        }

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

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

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

        h3 {
            font-size: 1.25rem;
            margin: 22px 0 12px;
            color: var(--accent-cyan);
        }

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

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

        .stat-card {
            background: var(--glass-bg);
            padding: 22px;
            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-blue));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

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

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

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

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

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

        .external-links a::before {
            content: '🔗';
            font-size: 0.8rem;
        }

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

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

        /* Packet Filtering Visualization */
        .filtering-flow {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 20px;
            margin-bottom: 25px;
        }

        .filter-component {
            padding: 18px 22px;
            background: var(--card-bg);
            border-radius: 12px;
            border: 1px solid var(--border-glow);
            text-align: center;
            min-width: 120px;
            position: relative;
            transition: all 0.3s ease;
        }

        .filter-component:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
        }

        .filter-component.incoming {
            border-color: var(--accent-blue);
        }

        .filter-component.acl-check {
            border-color: var(--accent-purple);
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), transparent);
        }

        .filter-component.permitted {
            border-color: var(--accent-green);
        }

        .filter-component.denied {
            border-color: var(--accent-red);
        }

        .filter-icon {
            font-size: 1.6rem;
            margin-bottom: 8px;
            display: block;
        }

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

        .filter-component.incoming .filter-label { color: var(--accent-blue); font-weight: 600; }
        .filter-component.acl-check .filter-label { color: var(--accent-purple); font-weight: 600; }
        .filter-component.permitted .filter-label { color: var(--accent-green); font-weight: 600; }
        .filter-component.denied .filter-label { color: var(--accent-red); font-weight: 600; }

        .flow-arrow {
            color: var(--accent-cyan);
            font-size: 1.3rem;
            animation: arrowMove 1s ease-in-out infinite;
        }

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

        /* ACL Rules Table */
        .acl-rules-display {
            background: #0a0e12;
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid var(--border-glow);
            overflow-x: auto;
        }

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

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

        .rules-dot.red { background: #e74c3c; }
        .rules-dot.yellow { background: #f39c12; }
        .rules-dot.green { background: #27ae60; }

        .rules-table {
            width: 100%;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            border-collapse: collapse;
            color: #2BCFE3;
        }

        .rules-table th {
            text-align: left;
            padding: 10px 12px;
            background: rgba(0, 212, 170, 0.1);
            color: var(--accent-cyan);
            border-bottom: 1px solid var(--border-glow);
        }

        .rules-table td {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .rules-table tr:hover {
            background: rgba(0, 212, 170, 0.05);
        }

        .rule-permit {
            color: var(--accent-green);
            font-weight: 600;
        }

        .rule-deny {
            color: var(--accent-red);
            font-weight: 600;
        }

        .rule-match {
            background: rgba(0, 212, 170, 0.2);
            animation: rowHighlight 2s ease-in-out infinite;
        }

        @keyframes rowHighlight {
            0%, 100% { background: rgba(0, 212, 170, 0.2); }
            50% { background: rgba(0, 212, 170, 0.35); }
        }

        /* Decision Output */
        .decision-output {
            margin-top: 20px;
            padding: 18px;
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.15), rgba(0, 212, 170, 0.1));
            border-radius: 12px;
            border: 1px solid var(--accent-green);
            text-align: center;
        }

        .decision-output .decision {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent-green);
            animation: decisionFlash 1.5s ease-in-out infinite;
        }

        @keyframes decisionFlash {
            0%, 100% { text-shadow: 0 0 10px rgba(39, 174, 96, 0.5); }
            50% { text-shadow: 0 0 25px rgba(39, 174, 96, 0.8); }
        }

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

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

        .concept-card:hover {
            border-color: var(--accent-cyan);
            transform: translateY(-3px);
        }

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

        .concept-card.standard::before { background: var(--accent-blue); }
        .concept-card.extended::before { background: var(--accent-purple); }
        .concept-card.named::before { background: var(--accent-orange); }
        .concept-card.filesystem::before { background: var(--accent-green); }

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

        .concept-card.standard h4 { color: var(--accent-blue); }
        .concept-card.extended h4 { color: var(--accent-purple); }
        .concept-card.named h4 { color: var(--accent-orange); }
        .concept-card.filesystem h4 { color: var(--accent-green); }

        .concept-emoji {
            font-size: 1.3rem;
        }

        /* Analogy Box */
        .analogy-box {
            margin-top: 35px;
            padding: 30px;
            background: linear-gradient(135deg, 
                rgba(0, 212, 170, 0.08) 0%, 
                rgba(155, 89, 182, 0.08) 100%);
            border-radius: 20px;
            border: 1px solid var(--border-glow);
            position: relative;
        }

        .analogy-box::before {
            content: '🎫';
            position: absolute;
            top: -12px;
            left: 25px;
            font-size: 25px;
            animation: iconBounce 2s ease-in-out infinite;
        }

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

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

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

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

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

        .analogy-item strong {
            display: block;
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        .analogy-item:nth-child(1) strong { color: var(--accent-blue); }
        .analogy-item:nth-child(2) strong { color: var(--accent-purple); }
        .analogy-item:nth-child(3) strong { color: var(--accent-green); }

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

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

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

        @keyframes avatarPulse {
            0%, 100% { box-shadow: 0 0 15px rgba(243, 156, 18, 0.4); }
            50% { box-shadow: 0 0 30px rgba(231, 76, 60, 0.6); }
        }

        .character-info h4 {
            font-size: 1.15rem;
            color: var(--accent-orange);
            margin-bottom: 4px;
        }

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

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

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

        .before-box, .after-box {
            padding: 22px;
            border-radius: 15px;
        }

        .before-box {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(243, 156, 18, 0.08));
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        .after-box {
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(0, 212, 170, 0.08));
            border: 1px solid rgba(39, 174, 96, 0.3);
        }

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

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

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

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

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

        .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: 22px;
            margin-bottom: 25px;
            padding: 22px;
            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 22px rgba(0, 212, 170, 0.1);
            transform: translateX(8px);
        }

        .step-number {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
            border-radius: 50%;
            font-size: 1.2rem;
            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: stepRing 2s ease-out infinite;
        }

        @keyframes stepRing {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.4); opacity: 0; }
        }

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

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

        .step-content li {
            padding: 7px 0 7px 20px;
            position: relative;
            color: var(--text-primary);
            font-size: 0.92rem;
        }

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

        .protection-tag {
            display: inline-block;
            padding: 2px 7px;
            background: rgba(39, 174, 96, 0.15);
            color: var(--accent-green);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 4px;
        }

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

        .internal-links h4 {
            color: var(--accent-cyan);
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .internal-links a {
            display: inline-block;
            padding: 7px 14px;
            margin: 3px;
            background: rgba(0, 212, 170, 0.1);
            color: var(--accent-cyan);
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid var(--border-glow);
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

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

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

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

        .mistakes-section {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(243, 156, 18, 0.05));
            border: 1px solid rgba(231, 76, 60, 0.3);
        }

        .practices-section {
            background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(0, 212, 170, 0.05));
            border: 1px solid rgba(39, 174, 96, 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: 10px 0 10px 28px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

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

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

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

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

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

        .team-card {
            padding: 22px;
            border-radius: 15px;
        }

        .red-team {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.12), rgba(243, 156, 18, 0.08));
            border: 1px solid rgba(231, 76, 60, 0.4);
        }

        .blue-team {
            background: linear-gradient(135deg, rgba(0, 153, 255, 0.12), rgba(0, 212, 170, 0.08));
            border: 1px solid rgba(0, 153, 255, 0.4);
        }

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

        .team-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

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

        .team-card h3 {
            margin: 0;
            padding: 0;
            border: none;
            font-size: 1.05rem;
        }

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

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

        .tactic-list li {
            padding: 9px 0 9px 20px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.88rem;
        }

        .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(155, 89, 182, 0.1) 0%, 
                rgba(231, 76, 60, 0.08) 100%);
            border: 1px solid rgba(155, 89, 182, 0.3);
        }

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

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

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

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

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

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

        @keyframes flowPulse {
            0%, 100% { opacity: 0.4; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(3px); }
        }

        /* ========== CALL TO ACTION ========== */
        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, 
                rgba(0, 212, 170, 0.1) 0%, 
                rgba(155, 89, 182, 0.1) 50%,
                rgba(39, 174, 96, 0.1) 100%);
            border: 1px solid var(--border-glow);
        }

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

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

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

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

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 22px rgba(0, 212, 170, 0.3);
        }

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

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

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

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

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

        /* ========== FOOTER ========== */
        footer {
            text-align: center;
            padding: 30px 20px;
            background: var(--secondary-dark);
            border-top: 1px solid var(--border-glow);
        }

        footer p {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.2rem;
            }

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

            section {
                padding: 25px 15px;
            }

            .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;
            }

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

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

            .attack-flow {
                flex-direction: column;
            }
        }/* End custom CSS */