.elementor-14520 .elementor-element.elementor-element-e927950{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4a33135 *//* CSS Reset &amp; Base */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
            color: #e0e0e0;
            line-height: 1.8;
            min-height: 100vh;
        }

        /* Matrix Rain Animation Background */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
            opacity: 0.1;
        }

        .matrix-column {
            position: absolute;
            top: -100%;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: #00ff00;
            animation: matrix-fall linear infinite;
            text-shadow: 0 0 10px #00ff00;
        }

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

        /* Hero Section with Simulation */
        .hero {
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid #00ff00;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #00ff00;
            text-shadow: 0 0 20px rgba(0,255,0,0.5);
            animation: glow 2s ease-in-out infinite alternate;
            margin-bottom: 20px;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(0,255,0,0.5); }
            to { text-shadow: 0 0 40px rgba(0,255,0,0.8), 0 0 60px rgba(0,255,0,0.4); }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: #b0b0b0;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Simulation Section */
        .simulation-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 40px;
            background: rgba(0,30,0,0.5);
            border-radius: 20px;
            border: 2px solid #00ff00;
            position: relative;
        }

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

        .simulation-terminal {
            background: #0a0a0a;
            border-radius: 10px;
            padding: 20px;
            font-family: 'Courier New', monospace;
            position: relative;
            overflow: hidden;
        }

        .terminal-header {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }

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

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

        .terminal-content {
            color: #00ff00;
            min-height: 200px;
        }

        .terminal-line {
            margin: 10px 0;
            opacity: 0;
            animation: type-line 0.5s forwards;
        }

        .terminal-line:nth-child(1) { animation-delay: 0.5s; }
        .terminal-line:nth-child(2) { animation-delay: 1.5s; }
        .terminal-line:nth-child(3) { animation-delay: 2.5s; }
        .terminal-line:nth-child(4) { animation-delay: 3.5s; }
        .terminal-line:nth-child(5) { animation-delay: 4.5s; }
        .terminal-line:nth-child(6) { animation-delay: 5.5s; }

        @keyframes type-line {
            to { opacity: 1; }
        }

        .cursor-blink {
            display: inline-block;
            width: 10px;
            height: 18px;
            background: #00ff00;
            animation: blink 1s step-end infinite;
            vertical-align: middle;
            margin-left: 5px;
        }

        @keyframes blink {
            50% { opacity: 0; }
        }

        /* Shield Animation */
        .shield-animation {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 80px;
            height: 80px;
        }

        .shield {
            width: 100%;
            height: 100%;
            animation: shield-pulse 2s ease-in-out infinite;
        }

        @keyframes shield-pulse {
            0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px #00ff00); }
            50% { transform: scale(1.1); filter: drop-shadow(0 0 30px #00ff00); }
        }

        /* Content Sections */

        section {
            border-radius: 20px;
        }

        .section-title {
            font-size: 2.2rem;
            color: #00ff00;
            margin-bottom: 30px;
            padding-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 50%;
            height: 3px;
            animation: title-underline 2s ease-in-out infinite;
        }

        @keyframes title-underline {
            0%, 100% { width: 50%; }
            50% { width: 100%; }
        }

        /* Why It Matters */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .stat-card {
            background: linear-gradient(145deg, #1a1a2e 0%, #0a0a0a 100%);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #00ff00;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .stat-number {
            font-size: 2.5rem;
            color: #00ff00;
            font-weight: bold;
        }

        .stat-label {
            color: #b0b0b0;
            margin-top: 10px;
        }

        .external-links {
            margin-top: 30px;
            padding: 20px;
            background: rgba(0,255,0,0.05);
            border-radius: 10px;
            border-left: 4px solid #00ff00;
        }

        .external-links a {
            color: #00ff00;
            text-decoration: none;
            transition: color 0.3s;
        }

        .external-links a:hover {
            color: #00cc00;
            text-decoration: underline;
        }

        /* Key Terms &amp; Concepts */
        .concept-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .concept-card {
            background: linear-gradient(145deg, #1e1e1e 0%, #0a0a0a 100%);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #444;
            transition: border-color 0.3s;
        }

        .concept-card:hover {
            border-color: #00ff00;
        }

        .concept-card h3 {
            color: #00ff00;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* Real-World Scenario */
        .scenario-story {
            background: linear-gradient(145deg, #1a1a2e 0%, #0a0a0a 100%);
            padding: 40px;
            border-radius: 20px;
            border-left: 5px solid #00ff00;
            margin-top: 30px;
        }

        .character-name {
            color: #00ff00;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .scenario-before,
        .scenario-after {
            padding: 25px;
            margin: 20px 0;
            border-radius: 10px;
        }

        .scenario-before {
            background: rgba(255,0,0,0.1);
            border-left: 4px solid #ff4444;
        }

        .scenario-after {
            background: rgba(0,255,0,0.1);
            border-left: 4px solid #00ff00;
        }

        /* Step-by-Step Guide */
        .steps-container {
            margin-top: 30px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: linear-gradient(145deg, #1e1e1e 0%, #0a0a0a 100%);
            border-radius: 15px;
            border-left: 4px solid #00ff00;
            transition: transform 0.3s;
        }

        .step-item:hover {
            transform: translateX(10px);
        }

        .step-number {
            min-width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #0a0a0a;
        }

        .step-content h4 {
            color: #00ff00;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .step-content ul {
            margin-left: 20px;
            color: #b0b0b0;
        }

        .step-content li {
            margin: 8px 0;
        }

        .internal-links {
            margin-top: 30px;
            padding: 20px;
            background: rgba(0,255,0,0.05);
            border-radius: 10px;
        }

        .internal-links a {
            color: #00ff00;
            margin-right: 20px;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .internal-links a:hover {
            opacity: 0.7;
        }

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

        .mistakes-section {
            background: linear-gradient(145deg, #2a1a1a 0%, #0a0a0a 100%);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #ff4444;
        }

        .mistakes-section h3 {
            color: #ff4444;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .best-practices-section {
            background: linear-gradient(145deg, #1a2a1a 0%, #0a0a0a 100%);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #00ff00;
        }

        .best-practices-section h3 {
            color: #00ff00;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .mistakes-section ul,
        .best-practices-section ul {
            list-style: none;
        }

        .mistakes-section li,
        .best-practices-section li {
            padding: 12px 0;
            border-bottom: 1px solid #333;
            padding-left: 25px;
            position: relative;
        }

        .mistakes-section li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ff4444;
        }

        .best-practices-section li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ff00;
        }

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

        .red-team-box {
            background: linear-gradient(145deg, #2a1a1a 0%, #0a0a0a 100%);
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #ff4444;
        }

        .blue-team-box {
            background: linear-gradient(145deg, #1a1a2a 0%, #0a0a0a 100%);
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #4444ff;
        }

        .red-team-box h3 {
            color: #ff4444;
            margin-bottom: 15px;
        }

        .blue-team-box h3 {
            color: #4444ff;
            margin-bottom: 15px;
        }

        /* Threat Hunter's Eye */
        .threat-hunter {
            background: linear-gradient(145deg, #2a2a1a 0%, #0a0a0a 100%);
            padding: 40px;
            border-radius: 20px;
            border: 2px solid #ffaa00;
            margin-top: 30px;
        }

        .threat-hunter h3 {
            color: #ffaa00;
            margin-bottom: 20px;
        }

        /* Call to Action */
        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(180deg, transparent 0%, rgba(0,255,0,0.1) 100%);
        }

        .cta-box {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: linear-gradient(145deg, #1a1a2e 0%, #0a0a0a 100%);
            border-radius: 20px;
            border: 2px solid #00ff00;
        }

        .cta-box h3 {
            color: #00ff00;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
            color: #0a0a0a;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0,255,0,0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .team-comparison {
                grid-template-columns: 1fr;
            }
            
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            
            .step-item {
                flex-direction: column;
            }
        }

        /* Glowing Lines Animation */
        .glowing-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, #00ff00, transparent);
            animation: glow-move 3s linear infinite;
        }

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

        /* Floating Icons */
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }/* End custom CSS */