.elementor-14436 .elementor-element.elementor-element-db5cb66{--display:flex;}/* Start custom CSS for html, class: .elementor-element-01ed9eb *//* ==================== RESET &amp; BASE ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-dark: #0a0a0f;
            --bg-card: #12121a;
            --bg-card-hover: #1a1a25;
            --neon-cyan: #00d4ff;
            --neon-blue: #0099ff;
            --neon-purple: #7b2cbf;
            --text-primary: #e8e8e8;
            --text-secondary: #a0a0a0;
            --accent-red: #ff4757;
            --accent-green: #2ed573;
            --accent-orange: #ffa502;
            --border-color: #2a2a3a;
        }

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

        /* ==================== HEADER ==================== */
        .header {
            
            padding: 60px 20px;
            text-align: center;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .header-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
            color: #000;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            animation: pulse-glow 2s infinite;
        }

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

        h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-cyan));
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s linear infinite;
        }

        @keyframes gradient-shift {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .aliases {
            margin-top: 25px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .alias-tag {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 0.85rem;
            color: var(--neon-cyan);
            transition: all 0.3s ease;
        }

        .alias-tag:hover {
            background: rgba(0, 212, 255, 0.2);
            transform: translateY(-2px);
        }

        /* ==================== CONTAINER ==================== */
        .container {
            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 {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
        }

        h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--neon-cyan);
            display: flex;
            align-items: center;
            gap: 15px;
        }

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

        h3 {
            font-size: 1.3rem;
            margin: 25px 0 15px;
            color: var(--text-primary);
        }

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

        /* ==================== SIMULATION SECTION ==================== */
        #simulation {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            border: 2px solid var(--neon-cyan);
        }

        .simulation-container {
            position: relative;
            height: 500px;
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
            border-radius: 12px;
            overflow: hidden;
            margin-top: 20px;
        }

        /* Target Nodes */
        .target-zone {
            position: absolute;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .target-zone:hover {
            transform: scale(1.05);
        }

        .maritime-target {
            top: 30px;
            left: 30px;
            background: rgba(0, 153, 255, 0.1);
            border: 2px solid var(--neon-blue);
            animation: target-pulse 3s infinite;
        }

        .gov-target {
            top: 30px;
            right: 60px;
            background: rgba(255, 71, 87, 0.1);
            border: 2px solid var(--accent-red);
            animation: target-pulse 3s infinite 0.5s;
        }

        .academic-target {
            top: 180px;
            left: 50px;
            background: rgba(46, 213, 115, 0.1);
            border: 2px solid var(--accent-green);
            animation: target-pulse 3s infinite 1s;
        }

        .defense-target {
            top: 180px;
            right: 50px;
            background: rgba(255, 165, 2, 0.1);
            border: 2px solid var(--accent-orange);
            animation: target-pulse 3s infinite 1.5s;
        }

        @keyframes target-pulse {
            0%, 100% { box-shadow: 0 0 10px currentColor; }
            50% { box-shadow: 0 0 30px currentColor; }
        }

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

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

        /* APT40 Core */
        .apt40-core {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
            border: 3px solid var(--neon-cyan);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: core-rotate 10s linear infinite;
        }

        @keyframes core-rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .apt40-core .inner {
            animation: core-rotate 10s linear infinite reverse;
        }

        .apt40-core span {
            font-weight: bold;
            font-size: 1rem;
            color: var(--neon-cyan);
        }

        /* Attack Paths */
        .attack-path {
            position: absolute;
            background: var(--neon-cyan);
            animation: data-flow 4s infinite;
        }

        .path-1 {
            top: 100px;
            left: 170px;
            width: 230px;
            height: 2px;
            transform: rotate(12deg);
            animation-delay: 0s;
        }

        .path-2 {
            top: 100px;
            right: 180px;
            width: 220px;
            height: 2px;
            transform: rotate(-12deg);
            animation-delay: 0.8s;
        }

        .path-3 {
            top: 220px;
            left: 170px;
            width: 230px;
            height: 2px;
            transform: rotate(-12deg);
            animation-delay: 1.6s;
        }

        .path-4 {
            top: 220px;
            right: 180px;
            width: 230px;
            height: 2px;
            transform: rotate(12deg);
            animation-delay: 2.4s;
        }

        @keyframes data-flow {
            0% { opacity: 0.2; box-shadow: none; }
            50% { opacity: 1; box-shadow: 0 0 20px var(--neon-cyan); }
            100% { opacity: 0.2; box-shadow: none; }
        }

        /* Data Packets */
        .data-packet {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--neon-cyan);
            border-radius: 50%;
            animation: packet-move 4s infinite;
        }

        .packet-1 { animation-delay: 0s; }
        .packet-2 { animation-delay: 1s; }
        .packet-3 { animation-delay: 2s; }
        .packet-4 { animation-delay: 3s; }

        @keyframes packet-move {
            0% { top: 80px; left: 140px; opacity: 0; }
            10% { opacity: 1; }
            50% { top: 240px; left: 50%; opacity: 1; }
            90% { opacity: 1; }
            100% { top: 400px; left: 50%; opacity: 0; }
        }

        /* Attack Phases */
        .attack-phases {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .phase {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid var(--neon-cyan);
            padding: 10px 30px;
            border-radius: 20px;
            font-size: 0.8rem;
            animation: phase-glow 2s infinite;
        }

        .phase:nth-child(1) { animation-delay: 0s; }
        .phase:nth-child(2) { animation-delay: 0.4s; }
        .phase:nth-child(3) { animation-delay: 0.8s; }
        .phase:nth-child(4) { animation-delay: 1.2s; }
        .phase:nth-child(5) { animation-delay: 1.6s; }

        @keyframes phase-glow {
            0%, 100% { background: rgba(0, 212, 255, 0.1); }
            50% { background: rgba(0, 212, 255, 0.3); }
        }

        /* Exfiltration Arrow */
        .exfil-arrow {
            position: absolute;
            bottom: 180px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            animation: exfil-pulse 1.5s infinite;
        }

        .exfil-arrow::before {
            content: '⬇';
            font-size: 2rem;
            color: var(--accent-red);
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        @keyframes exfil-pulse {
            0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
            50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
        }

        /* 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%;
        }

        /* ==================== WHY IT MATTERS ==================== */
        .matters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .matter-card {
            background: rgba(0, 212, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .matter-card:hover {
            border-color: var(--neon-cyan);
            background: rgba(0, 212, 255, 0.1);
        }

        .matter-card h4 {
            color: var(--neon-cyan);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .external-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
			justify-content: center;
        }

        .external-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
            color: #000;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .external-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* ==================== KEY TERMS ==================== */
        .terms-container {
            display: grid;
            gap: 25px;
        }

        .term-box {
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid var(--neon-cyan);
            padding: 25px;
            border-radius: 0 12px 12px 0;
        }

        .term-box h4 {
            color: var(--neon-cyan);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .analogy-box {
            background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 212, 255, 0.1));
            border: 1px dashed var(--neon-cyan);
            padding: 20px;
            border-radius: 12px;
            margin-top: 15px;
        }

        .analogy-box::before {
            content: '💡 Everyday Analogy';
            display: block;
            font-weight: bold;
            color: var(--neon-cyan);
            margin-bottom: 10px;
        }

        /* ==================== REAL-WORLD SCENARIO ==================== */
        .scenario-story {
            position: relative;
            padding: 30px;
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.05), rgba(255, 165, 2, 0.05));
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

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

        .character-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

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

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

        .timeline {
            display: grid;
            gap: 20px;
            margin-top: 25px;
        }

        .timeline-item {
            display: flex;
            gap: 20px;
            position: relative;
        }

        .timeline-marker {
            width: 40px;
            height: 40px;
            background: var(--bg-card);
            border: 2px solid var(--neon-cyan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.8rem;
            color: var(--neon-cyan);
        }

        .timeline-content {
            flex: 1;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .timeline-item:last-child .timeline-content {
            border-bottom: none;
        }

        .timeline-time {
            font-size: 0.85rem;
            color: var(--neon-cyan);
            margin-bottom: 5px;
        }

        .before-state, .after-state {
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }

        .before-state {
            background: rgba(255, 71, 87, 0.1);
            border: 1px solid rgba(255, 71, 87, 0.3);
        }

        .after-state {
            background: rgba(46, 213, 115, 0.1);
            border: 1px solid rgba(46, 213, 115, 0.3);
        }

        /* ==================== STEP-BY-STEP GUIDE ==================== */
        .steps-container {
            display: grid;
            gap: 20px;
        }

        .step-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(0, 212, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--neon-cyan);
            background: rgba(0, 212, 255, 0.08);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: #000;
            flex-shrink: 0;
        }

        .step-content h4 {
            color: var(--text-primary);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

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

        .step-content ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: var(--text-secondary);
        }

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

        .protection-badge {
            display: inline-block;
            background: rgba(46, 213, 115, 0.2);
            color: var(--accent-green);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            margin-top: 10px;
        }

        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
			justify-content: center;
        }

        .internal-link {
            background: rgba(0, 212, 255, 0.1);
            color: var(--neon-cyan);
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .internal-link:hover {
            background: rgba(0, 212, 255, 0.2);
            border-color: var(--neon-cyan);
        }

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

        .mistakes-section {
            background: rgba(255, 71, 87, 0.05);
            border: 1px solid rgba(255, 71, 87, 0.3);
            border-radius: 12px;
            padding: 25px;
        }

        .mistakes-section h3 {
            color: var(--accent-red);
        }

        .best-practices-section {
            background: rgba(46, 213, 115, 0.05);
            border: 1px solid rgba(46, 213, 115, 0.3);
            border-radius: 12px;
            padding: 25px;
        }

        .best-practices-section h3 {
            color: var(--accent-green);
        }

        .list-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

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

        .list-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mistakes-section .list-icon {
            background: rgba(255, 71, 87, 0.2);
            color: var(--accent-red);
        }

        .best-practices-section .list-icon {
            background: rgba(46, 213, 115, 0.2);
            color: var(--accent-green);
        }

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

        .red-team {
            background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 71, 87, 0.05));
            border: 2px solid var(--accent-red);
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .red-team::before {
            content: 'RED TEAM';
            position: absolute;
            top: 10px;
            right: -30px;
            background: var(--accent-red);
            color: #fff;
            padding: 5px 40px;
            font-size: 0.7rem;
            font-weight: bold;
            transform: rotate(45deg);
        }

        .blue-team {
            background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 153, 255, 0.05));
            border: 2px solid var(--neon-blue);
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .blue-team::before {
            content: 'BLUE TEAM';
            position: absolute;
            top: 10px;
            right: -30px;
            background: var(--neon-blue);
            color: #fff;
            padding: 5px 40px;
            font-size: 0.7rem;
            font-weight: bold;
            transform: rotate(45deg);
        }

        .team-section h3 {
            margin-top: 0;
        }

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

        .team-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

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

        .team-list .bullet {
            color: inherit;
            font-weight: bold;
        }

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

        /* ==================== THREAT HUNTER ==================== */
        .hunter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .indicator-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
        }

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

        .indicator-card h4 {
            color: var(--neon-cyan);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .indicator-card ul {
            list-style: none;
        }

        .indicator-card ul li {
            padding: 8px 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
            padding-left: 20px;
            position: relative;
        }

        .indicator-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--neon-cyan);
        }

        .safety-notice {
            background: linear-gradient(135deg, rgba(255, 165, 2, 0.1), rgba(255, 165, 2, 0.05));
            border: 1px solid var(--accent-orange);
            border-radius: 12px;
            padding: 20px;
            margin-top: 25px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

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

        /* ==================== CALL TO ACTION ==================== */
        #call-to-action {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
            border: 2px solid var(--neon-cyan);
            text-align: center;
        }

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

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

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn.primary {
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
            color: #000;
        }

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

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }

        .comment-prompt {
            margin-top: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
        }

        .comment-prompt p {
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: #050508;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

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

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

        .footer-links a:hover {
            color: var(--neon-cyan);
        }

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

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            section {
                padding: 25px;
            }

            .simulation-container {
                height: 400px;
            }

            .target-zone {
                padding: 10px;
                font-size: 0.8rem;
            }

            .maritime-target, .academic-target {
                left: 20px;
            }

            .gov-target, .defense-target {
                right: 20px;
            }

            .step-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .timeline-item {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }

            .aliases {
                gap: 5px;
            }

            .alias-tag {
                font-size: 0.75rem;
                padding: 4px 10px;
            }

            .attack-phases {
                gap: 8px;
            }

            .phase {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
        }/* End custom CSS */