.elementor-14280 .elementor-element.elementor-element-438edec{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9128906 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a1a0a 50%, #0f1a0a 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        
        /* Command Injection Animation Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .terminal-line {
            position: absolute;
            font-family: 'JetBrains Mono', monospace;
            font-size: 11px;
            color: #00ff88;
            opacity: 0.2;
            white-space: nowrap;
            animation: scrollUp 25s linear infinite;
        }

        .terminal-line:nth-child(1) { left: 5%; animation-duration: 20s; }
        .terminal-line:nth-child(2) { left: 20%; animation-duration: 22s; animation-delay: -5s; }
        .terminal-line:nth-child(3) { left: 35%; animation-duration: 18s; animation-delay: -10s; }
        .terminal-line:nth-child(4) { left: 50%; animation-duration: 24s; animation-delay: -3s; }
        .terminal-line:nth-child(5) { left: 65%; animation-duration: 21s; animation-delay: -8s; }
        .terminal-line:nth-child(6) { left: 80%; animation-duration: 19s; animation-delay: -15s; }

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

        /* Command Pulse Effect */
        .cmd-pulse {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ff3366;
            border-radius: 50%;
            animation: cmdGlow 3s ease-in-out infinite;
        }

        .cmd-pulse:nth-child(7) { top: 15%; left: 25%; animation-delay: 0s; }
        .cmd-pulse:nth-child(8) { top: 35%; left: 75%; animation-delay: 0.7s; }
        .cmd-pulse:nth-child(9) { top: 55%; left: 45%; animation-delay: 1.4s; }
        .cmd-pulse:nth-child(10) { top: 75%; left: 85%; animation-delay: 2.1s; }
        .cmd-pulse:nth-child(11) { top: 85%; left: 15%; animation-delay: 2.8s; }

        @keyframes cmdGlow {
            0%, 100% { transform: scale(1); box-shadow: 0 0 10px #ff3366; opacity: 0.3; }
            50% { transform: scale(2); box-shadow: 0 0 30px #ff3366, 0 0 50px #ff3366; opacity: 1; }
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        .header {
            text-align: center;
            padding: 60px 20px;
            position: relative;
        }

        .header h1 {
            font-size: 3rem;
            font-family: 'JetBrains Mono', monospace;
            background: linear-gradient(135deg, #00ff88, #ffcc00, #ff3366);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: titlePulse 3s ease-in-out infinite;
        }

        @keyframes titlePulse {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4)); }
            50% { filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.6)); }
        }

        .header .subtitle {
            font-size: 1.2rem;
            color: #888;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Command Injection Simulation */
        .cmd-simulation {
            background: linear-gradient(145deg, #0a1a0a, #1a1a0a);
            border: 1px solid #333;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .server-terminal {
            background: #0a0a0f;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .terminal-header {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            padding: 10px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .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-title {
            flex-grow: 1;
            text-align: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.8rem;
            color: #888;
        }

        .terminal-body {
            padding: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            min-height: 180px;
        }

        .cmd-prompt {
            color: #00ff88;
        }

        .cmd-input {
            color: #ffcc00;
            animation: typeCursor 1s step-end infinite;
        }

        @keyframes typeCursor {
            0%, 100% { border-right: 2px solid #ffcc00; }
            50% { border-right: 2px solid transparent; }
        }

        .cmd-output {
            color: #e0e0e0;
            margin: 5px 0;
        }

        .cmd-danger {
            color: #ff3366;
            background: rgba(255, 51, 102, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
            animation: dangerFlash 1s ease-in-out infinite;
        }

        @keyframes dangerFlash {
            0%, 100% { background: rgba(255, 51, 102, 0.1); }
            50% { background: rgba(255, 51, 102, 0.3); }
        }

        .injection-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .flow-box {
            padding: 15px 25px;
            border-radius: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            text-align: center;
        }

        .flow-box.input {
            background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
            border: 2px solid #ffcc00;
            color: #ffcc00;
        }

        .flow-box.vulnerable {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 2px dashed #ff3366;
            color: #ff3366;
            animation: vulnerablePulse 2s ease-in-out infinite;
        }

        @keyframes vulnerablePulse {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 51, 102, 0.3); }
            50% { box-shadow: 0 0 25px rgba(255, 51, 102, 0.6); }
        }

        .flow-box.exploited {
            background: linear-gradient(135deg, #ff3366, #cc0044);
            color: #fff;
        }

        .flow-box.protected {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 2px solid #00ff88;
            color: #00ff88;
        }

        .flow-arrow {
            font-size: 1.5rem;
            color: #00ff88;
            animation: arrowPulse 1s ease-in-out infinite;
        }

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

        .simulation-label {
            text-align: center;
            font-family: 'JetBrains Mono', monospace;
            color: #666;
            font-size: 0.85rem;
        }

        /* Sections */
        .section {
            background: linear-gradient(145deg, rgba(26, 26, 10, 0.8), rgba(10, 10, 15, 0.9));
            border: 1px solid #2a2a1e;
            border-radius: 15px;
            padding: 35px;
            margin: 30px 0;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
        }

        .section h2 {
            font-size: 1.8rem;
            color: #00ff88;
            margin-bottom: 25px;
            font-family: 'JetBrains Mono', monospace;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section h2::before {
            content: '$ ';
            color: #ffcc00;
        }

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

        .stat-card {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 1px solid #00ff88;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: #ffcc00;
            box-shadow: 0 0 30px rgba(255, 204, 0, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
            background: linear-gradient(135deg, #00ff88, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #888;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* Links */
        a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #00ff88;
            text-decoration: underline;
        }

        .external-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(0, 255, 136, 0.1);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.85rem;
        }

        .external-link::after {
            content: '↗';
            font-size: 0.8rem;
        }

        /* Definition Box */
        .definition-box {
            background: linear-gradient(135deg, #0a1a0a, #1a2a1a);
            border-left: 4px solid #00ff88;
            padding: 25px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }

        .definition-box h3 {
            color: #00ff88;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .analogy-box {
            background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
            border-left: 4px solid #ffcc00;
            padding: 25px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }

        .analogy-box h3 {
            color: #ffcc00;
            margin-bottom: 10px;
        }

        /* Code Example */
        .code-example {
            background: #0a0a0f;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            overflow-x: auto;
        }

        .code-example .prompt { color: #00ff88; }
        .code-example .command { color: #00d4ff; }
        .code-example .argument { color: #ffcc00; }
        .code-example .danger { color: #ff3366; background: rgba(255, 51, 102, 0.2); }
        .code-example .comment { color: #666; }

        /* Scenario Box */
        .scenario-box {
            background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
            border: 1px solid #333;
            border-radius: 12px;
            padding: 30px;
            margin: 25px 0;
        }

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

        .scenario-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00ff88, #ffcc00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 25px;
        }

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

        .before-box, .after-box {
            padding: 20px;
            border-radius: 10px;
        }

        .before-box {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 1px solid #ff3366;
        }

        .after-box {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 1px solid #00ff88;
        }

        .before-box h4, .after-box h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .before-box h4 { color: #ff3366; }
        .after-box h4 { color: #00ff88; }

        /* Steps */
        .steps-list {
            counter-reset: step-counter;
        }

        .step-item {
            position: relative;
            padding: 25px 25px 25px 80px;
            margin: 20px 0;
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border-radius: 10px;
            border: 1px solid #2a3a2a;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: #00ff88;
            transform: translateX(5px);
        }

        .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, #00ff88, #00cc6a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: #000;
            font-family: 'JetBrains Mono', monospace;
        }

        .step-item h4 {
            color: #ffcc00;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

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

        .step-item ul li {
            position: relative;
            padding-left: 25px;
            margin: 8px 0;
            color: #b0b0b0;
        }

        .step-item ul li::before {
            content: '&gt;';
            position: absolute;
            left: 0;
            color: #00ff88;
        }

        /* Mistakes &amp; Best Practices */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 25px;
        }

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

        .mistakes-box {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 1px solid #ff3366;
            border-radius: 12px;
            padding: 25px;
        }

        .mistakes-box h3 {
            color: #ff3366;
            margin-bottom: 20px;
        }

        .best-practices-box {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 1px solid #00ff88;
            border-radius: 12px;
            padding: 25px;
        }

        .best-practices-box h3 {
            color: #00ff88;
            margin-bottom: 20px;
        }

        .bullet-list {
            list-style: none;
            padding: 0;
        }

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

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

        .mistakes-box .bullet-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ff3366;
            font-weight: bold;
        }

        .best-practices-box .bullet-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ff88;
            font-weight: bold;
        }

        /* Team Views */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 25px;
        }

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

        .red-team {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 1px solid #ff3366;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .red-team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff3366, transparent);
            animation: scanLine 3s linear infinite;
        }

        @keyframes scanLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .blue-team {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 1px solid #00d4ff;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .blue-team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
            animation: scanLine 3s linear infinite;
        }

        .red-team h3, .blue-team h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .red-team h3 { color: #ff3366; }
        .blue-team h3 { color: #00d4ff; }

        /* Threat Hunter */
        .hunter-box {
            background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
            border: 1px solid #ffcc00;
            border-radius: 12px;
            padding: 30px;
            margin-top: 25px;
            position: relative;
        }

        .hunter-box::after {
            content: '⚡';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            animation: boltPulse 2s ease-in-out infinite;
        }

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

        .hunter-box h3 {
            color: #ffcc00;
            margin-bottom: 15px;
        }

        /* CTA */
        .cta-box {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 2px solid #00ff88;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

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

        @keyframes ctaGlow {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        .cta-box h3 {
            font-size: 1.5rem;
            color: #00ff88;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            color: #b0b0b0;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-size: 0.85rem;
            border-top: 1px solid #2a2a1e;
            margin-top: 40px;
        }

        /* Internal Links */
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .internal-link {
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid #00ff88;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #00ff88;
            transition: all 0.3s ease;
        }

        .internal-link:hover {
            background: rgba(0, 255, 136, 0.2);
            text-decoration: none;
        }/* End custom CSS */