.elementor-14336 .elementor-element.elementor-element-6fcb916{--display:flex;}/* Start custom CSS for html, class: .elementor-element-99295ec *//* ===== CSS RESET &amp; BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
        }

        /* ===== ANIMATED BACKGROUND ===== */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(255, 51, 51, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        /* ===== HEADER ===== */
        .header {
            border-bottom: 2px solid #ff3333;
            padding: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            animation: headerGlow 3s ease-in-out infinite;
        }

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

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .threat-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff3333, #cc0000);
            color: #fff;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 51, 51, 0.5); }
            50% { box-shadow: 0 0 25px rgba(255, 51, 51, 0.8); }
        }

        .h1 {
            font-size: 3rem;
            color: #fff;
            text-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
            margin-bottom: 0.5rem;
        }

        .h1 span {
            color: #ff3333;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #ffd700;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border: 1px solid transparent;
        }

        .nav-links a:hover {
            color: #ffd700;
            border-color: #ffd700;
        }

        /* ===== MAIN CONTENT ===== */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        
        /* ===== SECTION CARDS ===== */
        .section-card {
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            border: 1px solid #333;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff3333, #ffd700, #ff3333);
        }

        .section-card:hover {
            border-color: #ff3333;
            box-shadow: 0 0 30px rgba(255, 51, 51, 0.1);
            transition: all 0.3s ease;
        }

        .h2 {
            color: #ff3333;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .h2::before {
            content: '◆';
            color: #ffd700;
            font-size: 1rem;
        }

        .h3 {
            color: #ffd700;
            font-size: 1.3rem;
            margin: 1.5rem 0 1rem;
        }

        .h4 {
            color: #ff6666;
            font-size: 1.1rem;
            margin: 1rem 0 0.5rem;
        }

        p {
            margin-bottom: 1rem;
            color: #ccc;
        }

        /* ===== SIMULATION SECTION ===== */
        #simulation {
            background: linear-gradient(145deg, #0a0a0a 0%, #150505 100%);
        }

        .simulation-container {
            position: relative;
            height: 400px;
            background: linear-gradient(180deg, #0d0d0d 0%, #1a0a0a 100%);
            border-radius: 10px;
            border: 1px solid #333;
            overflow: hidden;
            margin-top: 1rem;
        }

        /* Attack Flow Labels */
        .attack-stage {
            position: absolute;
            text-align: center;
            font-size: 0.75rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stage-1 { top: 20px; left: 50px; }
        .stage-2 { top: 20px; left: 280px; }
        .stage-3 { top: 20px; left: 510px; }
        .stage-4 { top: 20px; left: 740px; }

        .stage-label {
            display: block;
            color: #ffd700;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }

        /* Attacker Terminal */
        .attacker-box {
            position: absolute;
            left: 30px;
            top: 70px;
            width: 140px;
            height: 100px;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 2px solid #ff3333;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: glowPulse 2s ease-in-out infinite;
        }

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

        .attacker-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .attacker-label {
            font-size: 0.7rem;
            color: #ff3333;
            text-transform: uppercase;
        }

        /* Email/Phishing Animation */
        .email-container {
            position: absolute;
            left: 180px;
            top: 80px;
            width: 100px;
            height: 80px;
        }

        .email {
            position: absolute;
            width: 30px;
            height: 20px;
            background: linear-gradient(145deg, #ffd700, #cc9900);
            border-radius: 3px;
            animation: emailFloat 4s ease-in-out infinite;
        }

        .email:nth-child(1) { animation-delay: 0s; }
        .email:nth-child(2) { animation-delay: 0.5s; top: 25px; }
        .email:nth-child(3) { animation-delay: 1s; top: 50px; }

        @keyframes emailFloat {
            0% { 
                transform: translateX(0); 
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { 
                transform: translateX(70px); 
                opacity: 0;
            }
        }

        /* Target System */
        .target-box {
            position: absolute;
            left: 290px;
            top: 70px;
            width: 140px;
            height: 100px;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 2px solid #ffd700;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .target-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .target-label {
            font-size: 0.7rem;
            color: #ffd700;
            text-transform: uppercase;
        }

        /* Malware Infection */
        .malware-dots {
            position: absolute;
            left: 320px;
            top: 100px;
        }

        .malware-dot {
            width: 8px;
            height: 8px;
            background: #ff3333;
            border-radius: 50%;
            position: absolute;
            animation: malwareSpread 3s ease-in-out infinite;
        }

        .malware-dot:nth-child(1) { animation-delay: 0s; }
        .malware-dot:nth-child(2) { animation-delay: 0.3s; left: 10px; }
        .malware-dot:nth-child(3) { animation-delay: 0.6s; left: 20px; }

        @keyframes malwareSpread {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.5;
            }
            50% { 
                transform: scale(1.5);
                opacity: 1;
                box-shadow: 0 0 10px #ff3333;
            }
        }

        /* C2 Server */
        .c2-box {
            position: absolute;
            left: 520px;
            top: 70px;
            width: 140px;
            height: 100px;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 2px solid #ff6666;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .c2-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .c2-label {
            font-size: 0.7rem;
            color: #ff6666;
            text-transform: uppercase;
        }

        /* Communication Lines */
        .comm-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, #ff3333, #ffd700);
            animation: dataFlow 2s linear infinite;
        }

        .line-1 {
            left: 170px;
            top: 120px;
            width: 120px;
        }

        .line-2 {
            left: 430px;
            top: 120px;
            width: 90px;
        }

        .line-3 {
            left: 660px;
            top: 120px;
            width: 100px;
        }

        @keyframes dataFlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        /* Data Packets */
        .data-packet {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ffd700;
            border-radius: 50%;
            animation: packetMove 2s linear infinite;
        }

        .packet-1 { top: 119px; animation-name: packetMove1; }
        .packet-2 { top: 119px; animation-name: packetMove2; }
        .packet-3 { top: 119px; animation-name: packetMove3; }

        @keyframes packetMove1 {
            0% { left: 170px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 290px; opacity: 0; }
        }

        @keyframes packetMove2 {
            0% { left: 430px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 520px; opacity: 0; }
        }

        @keyframes packetMove3 {
            0% { left: 660px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 760px; opacity: 0; }
        }

        /* Data Exfiltration */
        .exfil-box {
            position: absolute;
            left: 750px;
            top: 70px;
            width: 140px;
            height: 100px;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 2px solid #cc0000;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: exfilPulse 1.5s ease-in-out infinite;
        }

        @keyframes exfilPulse {
            0%, 100% { border-color: #cc0000; }
            50% { border-color: #ff3333; }
        }

        .exfil-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            animation: exfilBounce 1s ease-in-out infinite;
        }

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

        .exfil-label {
            font-size: 0.7rem;
            color: #cc0000;
            text-transform: uppercase;
        }

        /* Data Stream Animation */
        .data-stream {
            position: absolute;
            left: 770px;
            top: 200px;
            width: 100px;
            height: 150px;
            overflow: hidden;
        }

        .stream-line {
            position: absolute;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 10px,
                rgba(255, 215, 0, 0.1) 10px,
                rgba(255, 215, 0, 0.1) 12px
            );
            animation: streamFlow 1s linear infinite;
        }

        @keyframes streamFlow {
            0% { transform: translateY(0); }
            100% { transform: translateY(12px); }
        }

        /* Binary Rain Effect */
        .binary-rain {
            position: absolute;
            right: 50px;
            top: 50px;
            font-family: monospace;
            font-size: 0.6rem;
            color: rgba(255, 51, 51, 0.3);
            animation: binaryFall 10s linear infinite;
            line-height: 1.2;
        }

        @keyframes binaryFall {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(300%); }
        }

        /* Attack Timeline */
        .attack-timeline {
            position: absolute;
            bottom: 30px;
            left: 50px;
            right: 50px;
            height: 50px;
            border-top: 1px solid #333;
            display: flex;
            justify-content: space-between;
            padding-top: 10px;
        }

        .timeline-item {
            text-align: center;
            position: relative;
        }

        .timeline-dot {
            width: 12px;
            height: 12px;
            background: #ff3333;
            border-radius: 50%;
            margin: 0 auto 5px;
            animation: timelinePulse 2s ease-in-out infinite;
        }

        .timeline-item:nth-child(2) .timeline-dot { animation-delay: 0.5s; }
        .timeline-item:nth-child(3) .timeline-dot { animation-delay: 1s; }
        .timeline-item:nth-child(4) .timeline-dot { animation-delay: 1.5s; }

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

        .timeline-text {
            font-size: 0.65rem;
            color: #888;
        }

        /* ===== STATISTICS BOX ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .stat-box {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            border-color: #ff3333;
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff3333;
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== LINKS ===== */
        .resource-links {
            margin: 1.5rem 0;
        }

        .resource-link {
            display: inline-block;
            background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
            border: 1px solid #ff3333;
            color: #ffd700;
            padding: 0.75rem 1.5rem;
            margin: 0.5rem 0.5rem 0.5rem 0;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .resource-link:hover {
            background: linear-gradient(135deg, #ff3333, #cc0000);
            color: #fff;
            box-shadow: 0 0 20px rgba(255, 51, 51, 0.4);
        }

        /* ===== DEFINITION BOX ===== */
        .definition-box {
            background: linear-gradient(145deg, #1a0a0a, #0d0d0d);
            border-left: 4px solid #ffd700;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        .definition-box p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin: 0;
        }

        /* ===== ANALOGY BOX ===== */
        .analogy-box {
            background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
            border: 1px solid #ffd700;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .analogy-title {
            color: #ffd700;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* ===== SCENARIO BOX ===== */
        .scenario-box {
            background: linear-gradient(145deg, #0a0a0a, #151515);
            border: 1px solid #333;
            border-radius: 15px;
            padding: 2rem;
            margin: 1.5rem 0;
        }

        .character-intro {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .character-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #333, #1a1a1a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 2px solid #ffd700;
        }

        .character-info h4 {
            margin: 0;
            color: #fff;
        }

        .character-info span {
            color: #888;
            font-size: 0.9rem;
        }

        .timeline-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .timeline-before, .timeline-after {
            padding: 1.5rem;
            border-radius: 10px;
        }

        .timeline-before {
            background: linear-gradient(145deg, #0a1a0a, #0d0d0d);
            border: 1px solid #33aa33;
        }

        .timeline-after {
            background: linear-gradient(145deg, #1a0a0a, #0d0d0d);
            border: 1px solid #ff3333;
        }

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

        .timeline-before .timeline-label { color: #33aa33; }
        .timeline-after .timeline-label { color: #ff3333; }

        /* ===== STEPS GUIDE ===== */
        .steps-container {
            counter-reset: step-counter;
        }

        .step-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid #333;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: #ff3333;
        }

        .step-number {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff3333, #cc0000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
        }

        .step-content h4 {
            color: #ffd700;
            margin: 0 0 0.5rem 0;
        }

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

        .step-content li {
            position: relative;
            padding-left: 1.5rem;
            margin: 0.5rem 0;
            color: #aaa;
        }

        .step-content li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #ff3333;
        }

        /* ===== MISTAKES &amp; PRACTICES ===== */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .mistakes-box, .practices-box {
            padding: 1.5rem;
            border-radius: 10px;
        }

        .mistakes-box {
            background: linear-gradient(145deg, #1a0a0a, #0d0d0d);
            border: 1px solid #ff3333;
        }

        .practices-box {
            background: linear-gradient(145deg, #0a1a0a, #0d0d0d);
            border: 1px solid #33aa33;
        }

        .mistakes-box h3 { color: #ff3333; }
        .practices-box h3 { color: #33aa33; }

        .mistakes-box ul, .practices-box ul {
            list-style: none;
            padding: 0;
        }

        .mistakes-box li, .practices-box li {
            position: relative;
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }

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

        .practices-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #33aa33;
        }

        /* ===== RED VS BLUE TEAM ===== */
        .team-comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .red-team, .blue-team {
            padding: 1.5rem;
            border-radius: 10px;
        }

        .red-team {
            background: linear-gradient(145deg, #1a0505, #0d0d0d);
            border: 1px solid #ff3333;
        }

        .blue-team {
            background: linear-gradient(145deg, #050515, #0d0d0d);
            border: 1px solid #3366ff;
        }

        .red-team h3 { color: #ff3333; }
        .blue-team h3 { color: #3366ff; }

        .team-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* ===== THREAT HUNTER ===== */
        .hunter-box {
            background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
            border: 1px solid #ffd700;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .hunter-icon {
            font-size: 1.5rem;
            color: #ffd700;
            margin-right: 0.5rem;
        }

        .tool-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .tool-item {
            background: rgba(255, 51, 51, 0.1);
            border: 1px solid #333;
            border-radius: 5px;
            padding: 0.75rem;
            text-align: center;
            font-size: 0.85rem;
        }

        /* ===== CALL TO ACTION ===== */
        .cta-section {
            background: linear-gradient(145deg, #1a0a0a, #0d0d0d);
            border: 2px solid #ff3333;
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

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

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

        .cta-section h2 {
            justify-content: center;
        }

        .cta-section p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff3333, #cc0000);
            color: #fff;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #ff4444, #dd0000);
            box-shadow: 0 0 30px rgba(255, 51, 51, 0.5);
            transform: translateY(-3px);
        }

        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
            border-top: 1px solid #333;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        .copyright {
            color: #555;
            font-size: 0.85rem;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            
            .simulation-container { height: 500px; }
            
            .timeline-split,
            .comparison-grid,
            .team-comparison {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .step-item {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin: 0 auto;
            }
        }/* End custom CSS */