.elementor-14478 .elementor-element.elementor-element-063758f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d84f294 */:root {
            --sand-light: #c2b280;
            --sand-dark: #a08050;
            --desert-red: #8b4513;
            --desert-red-dark: #5c2e0a;
            --scorpion-black: #1a1408;
            --viper-green: #4a5d23;
            --viper-green-dark: #2d3a15;
            --bg-dark: #0d0a04;
            --bg-card: #15120a;
            --text-primary: #e8e0d0;
            --text-secondary: #a09080;
            --accent-gold: #d4a020;
            --border-color: #3a3020;
            --poison-purple: #4a2a4a;
        }

        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.6;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--desert-red);
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            animation: patternMove 30s linear infinite;
        }

        /* Sand Dunes Effect */
        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%230d0a04' d='M0,50 C150,100 350,0 500,50 C650,100 850,0 1000,50 C1150,100 1350,0 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E");
            background-size: cover;
        }

        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(60px) translateY(60px); }
        }

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

        h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 8px;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--desert-red), var(--sand-light), var(--viper-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

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

        .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .viper-icon {
            font-size: 5rem;
            margin-bottom: 20px;
            animation: viperPulse 3s ease-in-out infinite;
        }

        @keyframes viperPulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            25% { transform: scale(1.05) rotate(2deg); }
            75% { transform: scale(0.95) rotate(-2deg); }
        }

        /* Navigation */
        .nav {
            background: var(--bg-card);
            padding: 15px 20px;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-color);
        }

        .nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .nav a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav a:hover {
            background: var(--desert-red);
            color: white;
        }

        /* Main Container */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Section Styles */
		section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        .section {
            margin-bottom: 60px;
            background: var(--bg-card);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--desert-red), var(--viper-green), var(--sand-light));
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--text-primary);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--desert-red);
            display: inline-block;
        }

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

        h4 {
            font-size: 1.1rem;
            margin: 15px 0 10px;
            color: var(--desert-red);
        }

        p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        /* Simulation Section */
        #simulation {
            background: linear-gradient(135deg, var(--bg-card) 0%, #1a1508 100%);
            min-height: 700px;
        }

        .simulation-container {
            position: relative;
            height: 550px;
            background: radial-gradient(ellipse at center, #1a1508 0%, var(--bg-dark) 100%);
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid var(--border-color);
        }

        /* Sand Particles */
        .sand-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--sand-light);
            border-radius: 50%;
            animation: sandDrift 8s linear infinite;
            opacity: 0.4;
        }

        .sand-particle:nth-child(1) { left: 5%; animation-delay: 0s; }
        .sand-particle:nth-child(2) { left: 15%; animation-delay: 1s; }
        .sand-particle:nth-child(3) { left: 25%; animation-delay: 2s; }
        .sand-particle:nth-child(4) { left: 35%; animation-delay: 0.5s; }
        .sand-particle:nth-child(5) { left: 45%; animation-delay: 1.5s; }
        .sand-particle:nth-child(6) { left: 55%; animation-delay: 3s; }
        .sand-particle:nth-child(7) { left: 65%; animation-delay: 2.5s; }
        .sand-particle:nth-child(8) { left: 75%; animation-delay: 0.8s; }
        .sand-particle:nth-child(9) { left: 85%; animation-delay: 1.8s; }
        .sand-particle:nth-child(10) { left: 95%; animation-delay: 3.5s; }

        @keyframes sandDrift {
            0% { transform: translateX(0) translateY(0); opacity: 0; }
            20% { opacity: 0.4; }
            80% { opacity: 0.4; }
            100% { transform: translateX(100px) translateY(-50px); opacity: 0; }
        }
		
		/* Simulation Legend */
        .sim-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
			justify-content: center;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
		
        /* Viper Snake CSS Art */
        .viper-container {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 150px;
            height: 150px;
        }

        .viper-body {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .viper-head {
            position: absolute;
            width: 40px;
            height: 30px;
            background: linear-gradient(135deg, var(--viper-green), var(--viper-green-dark));
            border-radius: 50% 50% 40% 40%;
            top: 0px;
            left: 55px;
            animation: viperHead 2s ease-in-out infinite;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .viper-head::before {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ff0;
            border-radius: 50%;
            top: 8px;
            left: 8px;
            animation: eyeGlow 1s ease-in-out infinite;
        }

        .viper-head::after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: #ff0;
            border-radius: 50%;
            top: 8px;
            right: 8px;
            animation: eyeGlow 1s ease-in-out infinite 0.5s;
        }

        @keyframes eyeGlow {
            0%, 100% { box-shadow: 0 0 5px #ff0; }
            50% { box-shadow: 0 0 15px #ff0, 0 0 25px #ff0; }
        }

        @keyframes viperHead {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        .viper-tongue {
            position: absolute;
            top: 25px;
            left: 68px;
            width: 2px;
            height: 15px;
            background: #c00;
            animation: tongueDart 0.5s ease-in-out infinite;
            transform-origin: top;
        }

        @keyframes tongueDart {
            0%, 100% { height: 0; opacity: 0; }
            50% { height: 15px; opacity: 1; }
        }

        .viper-coil {
            position: absolute;
            width: 60px;
            height: 30px;
            border: 8px solid transparent;
            border-top-color: var(--viper-green);
            border-radius: 50%;
            animation: coilPulse 3s ease-in-out infinite;
        }

        .viper-coil:nth-child(4) { top: 40px; left: 20px; width: 80px; height: 40px; animation-delay: 0.5s; }
        .viper-coil:nth-child(5) { top: 60px; left: 30px; width: 60px; height: 30px; animation-delay: 1s; }
        .viper-coil:nth-child(6) { top: 80px; left: 40px; width: 40px; height: 20px; animation-delay: 1.5s; }

        @keyframes coilPulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        /* Mobile Phone CSS Art */
        .mobile-phone {
            position: absolute;
            width: 60px;
            height: 110px;
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            border-radius: 10px;
            border: 2px solid #444;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }

        .phone-screen {
            position: absolute;
            top: 15px;
            left: 5px;
            right: 5px;
            bottom: 20px;
            background: #0a0a0a;
            border-radius: 3px;
            overflow: hidden;
        }

        .phone-notch {
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 5px;
            background: #1a1a1a;
            border-radius: 2px;
        }

        .phone-home {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 8px;
            background: #333;
            border-radius: 2px;
        }

        /* Fake Apps on Phone Screen */
        .fake-app {
            position: absolute;
            width: 15px;
            height: 15px;
            background: var(--desert-red);
            border-radius: 3px;
            animation: appPulse 2s ease-in-out infinite;
        }

        .fake-app:nth-child(1) { top: 5px; left: 5px; animation-delay: 0s; }
        .fake-app:nth-child(2) { top: 5px; left: 25px; animation-delay: 0.3s; background: var(--viper-green); }
        .fake-app:nth-child(3) { top: 25px; left: 5px; animation-delay: 0.6s; background: var(--accent-gold); }
        .fake-app:nth-child(4) { top: 25px; left: 25px; animation-delay: 0.9s; }

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

        /* Spyware Animation */
        .spyware-dots {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .spy-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #f00;
            border-radius: 50%;
            animation: spyPulse 1s ease-in-out infinite;
        }

        .spy-dot:nth-child(1) { transform: translate(-10px, -10px); animation-delay: 0s; }
        .spy-dot:nth-child(2) { transform: translate(10px, -10px); animation-delay: 0.2s; }
        .spy-dot:nth-child(3) { transform: translate(-10px, 10px); animation-delay: 0.4s; }
        .spy-dot:nth-child(4) { transform: translate(10px, 10px); animation-delay: 0.6s; }

        @keyframes spyPulse {
            0%, 100% { opacity: 0.3; box-shadow: 0 0 0 rgba(255,0,0,0); }
            50% { opacity: 1; box-shadow: 0 0 10px rgba(255,0,0,0.8); }
        }

        /* Attack Flow Stages */
        .attack-stage {
            position: absolute;
            padding: 15px 20px;
            background: rgba(139, 69, 19, 0.8);
            border: 2px solid var(--desert-red);
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            opacity: 0;
            animation: stageAppear 2s ease-out forwards;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .stage-1 {
            top: 80px;
            left: 20px;
            animation-delay: 0s;
            background: rgba(74, 93, 35, 0.8);
            border-color: var(--viper-green);
        }

        .stage-2 {
            top: 180px;
            left: 240px;
            animation-delay: 2s;
            background: rgba(139, 69, 19, 0.8);
            border-color: var(--desert-red);
        }

        .stage-3 {
            top: 280px;
            left: 450px;
            animation-delay: 4s;
            background: rgba(74, 42, 74, 0.8);
            border-color: var(--poison-purple);
        }

        .stage-4 {
            top: 380px;
            left: 620px;
            animation-delay: 6s;
            background: rgba(212, 160, 32, 0.3);
            border-color: var(--accent-gold);
        }

        @keyframes stageAppear {
            0% { opacity: 0; transform: scale(0.5) translateY(20px); }
            50% { transform: scale(1.1) translateY(-5px); }
            100% { opacity: 1; transform: scale(1) translateY(0); }
        }

        /* Mobile Phones in Attack Flow */
        .phone-stage-1 {
            top: 100px;
            left: 700px;
        }

        .phone-stage-2 {
            top: 250px;
            left: 750px;
            transform: rotate(-10deg);
        }

        .phone-stage-3 {
            top: 400px;
            left: 700px;
            transform: rotate(10deg);
        }

        /* Data Exfiltration Animation */
        .data-stream {
            position: absolute;
            top: 200px;
            left: 820px;
            width: 100px;
            height: 200px;
        }

        .data-packet {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-gold);
            border-radius: 2px;
            animation: dataFloat 2s linear infinite;
        }

        .data-packet:nth-child(1) { left: 0; animation-delay: 0s; }
        .data-packet:nth-child(2) { left: 20px; animation-delay: 0.3s; }
        .data-packet:nth-child(3) { left: 40px; animation-delay: 0.6s; }
        .data-packet:nth-child(4) { left: 10px; animation-delay: 0.9s; }
        .data-packet:nth-child(5) { left: 30px; animation-delay: 1.2s; }

        @keyframes dataFloat {
            0% { top: 0; opacity: 0; }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { top: 200px; opacity: 0; }
        }

        /* Stage Icons */
        .stage-icon {
            display: block;
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        /* Fake Dating App Visual */
        .dating-app {
            position: absolute;
            top: 350px;
            left: 100px;
            padding: 15px;
            background: linear-gradient(135deg, rgba(255,100,150,0.2), rgba(200,50,100,0.1));
            border: 2px solid rgba(255,100,150,0.5);
            border-radius: 10px;
            animation: heartBeat 1s ease-in-out infinite;
        }

        .dating-app::before {
            content: '💕';
            font-size: 2rem;
            display: block;
            text-align: center;
        }

        .dating-app-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-top: 5px;
        }

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

        /* Warning Badge */
        .warning-badge {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            padding: 5px 15px;
            background: var(--desert-red);
            color: white;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 3px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 rgba(139, 69, 19, 0); }
            50% { box-shadow: 0 0 20px rgba(139, 69, 19, 0.5); }
        }

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

        .stat-card {
            background: linear-gradient(135deg, var(--desert-red-dark) 0%, var(--bg-dark) 100%);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* External Links */
        .external-links {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .ext-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--viper-green-dark), var(--viper-green));
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid var(--viper-green);
        }

        .ext-link:hover {
            background: linear-gradient(135deg, var(--desert-red-dark), var(--desert-red));
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
            border-color: var(--desert-red);
        }

        /* Definition Box */
        .definition-box {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(74, 93, 35, 0.1));
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--desert-red);
            margin: 20px 0;
        }

        .definition-box p {
            font-size: 1.1rem;
            color: var(--text-primary);
            font-style: italic;
        }

        /* Analogy Section */
        .analogy-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .analogy-card {
            background: var(--bg-dark);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .analogy-card h4 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        /* Scenario Section */
        .scenario-container {
            position: relative;
        }

        .scenario-header {
            background: linear-gradient(90deg, var(--desert-red), var(--desert-red-dark));
            padding: 15px 25px;
            border-radius: 8px 8px 0 0;
            margin: -40px -40px 30px -40px;
        }

        .scenario-header h3 {
            color: white;
            margin: 0;
        }

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

        .character-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--sand-light), var(--sand-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            border: 3px solid var(--accent-gold);
        }

        .character-info h4 {
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--viper-green), var(--desert-red), var(--accent-gold));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding: 20px;
            background: var(--bg-dark);
            border-radius: 8px;
            border-left: 3px solid var(--desert-red);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -26px;
            top: 25px;
            width: 12px;
            height: 12px;
            background: var(--desert-red);
            border-radius: 50%;
            border: 2px solid var(--bg-dark);
        }

        .timeline-item.before {
            border-left-color: var(--viper-green);
        }

        .timeline-item.before::before {
            background: var(--viper-green);
        }

        .timeline-label {
            display: inline-block;
            padding: 3px 10px;
            background: var(--desert-red);
            color: white;
            border-radius: 4px;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .timeline-item.before .timeline-label {
            background: var(--viper-green);
        }

        /* Steps Section */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .step-card {
            background: var(--bg-dark);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--desert-red), var(--desert-red-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            opacity: 0.3;
        }

        .step-card h4 {
            color: var(--text-primary);
            margin-bottom: 15px;
            padding-right: 40px;
        }

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

        .step-card li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

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

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

        .comparison-card {
            padding: 30px;
            border-radius: 8px;
        }

        .mistakes-card {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(139, 69, 19, 0.1));
            border: 1px solid var(--desert-red);
        }

        .best-practices-card {
            background: linear-gradient(135deg, rgba(74, 93, 35, 0.3), rgba(74, 93, 35, 0.1));
            border: 1px solid var(--viper-green);
        }

        .comparison-card h3 {
            margin-top: 0;
        }

        .comparison-card ul {
            list-style: none;
            padding: 0;
        }

        .comparison-card li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .comparison-card li:last-child {
            border-bottom: none;
        }

        .icon-x {
            color: var(--desert-red);
            font-weight: bold;
        }

        .icon-check {
            color: var(--viper-green);
            font-weight: bold;
        }

        /* Red Team vs Blue Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

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

        .red-team-card {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.4), var(--bg-dark));
            border: 2px solid var(--desert-red);
        }

        .blue-team-card {
            background: linear-gradient(135deg, rgba(74, 93, 35, 0.4), var(--bg-dark));
            border: 2px solid var(--viper-green);
        }

        .team-card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .team-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .red-badge {
            background: var(--desert-red);
            color: white;
        }

        .blue-badge {
            background: var(--viper-green);
            color: white;
        }

        .team-card ul {
            list-style: none;
            padding: 0;
        }

        .team-card li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: var(--text-secondary);
        }

        .team-card li::before {
            content: '◆';
            position: absolute;
            left: 0;
        }

        .red-team-card li::before {
            color: var(--desert-red);
        }

        .blue-team-card li::before {
            color: var(--viper-green);
        }

        /* Threat Hunter Section */
        .hunter-box {
            background: linear-gradient(135deg, rgba(212, 160, 32, 0.1), rgba(212, 160, 32, 0.05));
            border: 1px solid var(--accent-gold);
            border-radius: 8px;
            padding: 30px;
            position: relative;
        }

        .hunter-box::before {
            content: '👁️';
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 2rem;
            background: var(--bg-card);
            padding: 0 10px;
        }

        .intel-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: var(--bg-dark);
            border-radius: 6px;
            margin-bottom: 15px;
        }

        .intel-icon {
            font-size: 1.5rem;
        }

        /* CTA Section */
        #call-to-action {
            background: linear-gradient(135deg, var(--desert-red-dark), var(--viper-green-dark));
            text-align: center;
            border: 2px solid var(--desert-red);
        }

        #call-to-action::before {
            display: none;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            border-bottom: none;
            color: white;
        }

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

        .cta-btn {
            display: inline-block;
            padding: 15px 35px;
            background: transparent;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--text-primary);
        }

        .cta-btn:hover {
            background: var(--desert-red);
            border-color: var(--desert-red);
            transform: translateY(-3px);
        }

        .cta-btn.primary {
            background: var(--desert-red);
            border-color: var(--desert-red);
        }

        .cta-btn.primary:hover {
            background: var(--desert-red-dark);
        }

        /* Internal Links Section */
        .internal-links {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .internal-links h4 {
            margin-bottom: 15px;
        }

        .apt-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .apt-link {
            display: inline-block;
            padding: 8px 16px;
            background: var(--bg-dark);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .apt-link:hover {
            border-color: var(--desert-red);
            color: var(--accent-gold);
        }

        /* Footer */
        footer {
            background: var(--bg-card);
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid var(--desert-red);
            margin-top: 60px;
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 2rem;
            margin-bottom: 15px;
        }

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

        .footer-links {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                letter-spacing: 4px;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            section {
                padding: 25px;
            }

            .simulation-container {
                height: auto;
                min-height: 600px;
            }

            .attack-stage {
                position: relative;
                top: auto !important;
                left: auto !important;
                margin: 20px auto;
                max-width: 280px;
            }

            .connection-line {
                display: none;
            }

            .mobile-phone,
            .viper-container,
            .dating-app,
            .data-stream {
                display: none;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

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

        /* Additional Animations */
        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

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

        .float {
            animation: float 3s ease-in-out infinite;
        }

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

        /* Desert Wind Effect */
        .desert-wind {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .wind-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--sand-light), transparent);
            animation: windBlow 4s linear infinite;
            opacity: 0.3;
        }

        .wind-line:nth-child(1) { top: 20%; width: 100px; animation-delay: 0s; }
        .wind-line:nth-child(2) { top: 40%; width: 150px; animation-delay: 1s; }
        .wind-line:nth-child(3) { top: 60%; width: 120px; animation-delay: 2s; }
        .wind-line:nth-child(4) { top: 80%; width: 180px; animation-delay: 0.5s; }

        @keyframes windBlow {
            0% { left: -200px; }
            100% { left: 100%; }
        }/* End custom CSS */