.elementor-14465 .elementor-element.elementor-element-2ac7aaa{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e43865b */:root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #121212;
            --bg-card: #1a1a2e;
            --neon-purple: #9d4edd;
            --neon-magenta: #ff006e;
            --neon-pink: #f72585;
            --text-primary: #ffffff;
            --text-secondary: #b0b0b0;
            --accent-blue: #4cc9f0;
            --accent-gold: #ffd700;
            --glow-purple: 0 0 20px rgba(157, 78, 221, 0.6);
            --glow-magenta: 0 0 20px rgba(255, 0, 110, 0.6);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            padding: 2rem;
            text-align: center;
            border-bottom: 2px solid var(--neon-purple);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            animation: headerSweep 4s ease-in-out infinite;
        }

        @keyframes headerSweep {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(50%); }
        }

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

        h1 {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: var(--glow-purple);
            animation: titlePulse 3s ease-in-out infinite;
        }

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

        .subtitle {
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        .aka-names {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .aka-tag {
            background: rgba(157, 78, 221, 0.2);
            border: 1px solid var(--neon-purple);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--neon-purple);
            animation: tagFloat 3s ease-in-out infinite;
        }

        .aka-tag:nth-child(2) { animation-delay: 0.5s; }
        .aka-tag:nth-child(3) { animation-delay: 1s; }
        .aka-tag:nth-child(4) { animation-delay: 1.5s; }

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

        /* Navigation */
        .nav {
            background: var(--bg-secondary);
            padding: 1rem;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(157, 78, 221, 0.3);
        }

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

        .nav a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav a:hover {
            color: var(--neon-purple);
            background: rgba(157, 78, 221, 0.1);
            box-shadow: var(--glow-purple);
        }

        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Section Styling */
		section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        .section {
            margin-bottom: 3rem;
            background: var(--bg-card);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(157, 78, 221, 0.2);
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--neon-purple), var(--neon-magenta));
        }

        h2 {
            font-size: 1.8rem;
            color: var(--neon-purple);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(157, 78, 221, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        h2 .icon {
            font-size: 1.5rem;
            animation: iconSpin 4s linear infinite;
        }

        @keyframes iconSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

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

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

        /* Network Grid Background */
        .network-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(157, 78, 221, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(157, 78, 221, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridPulse 4s ease-in-out infinite;
        }

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

        /* Attack Flow Nodes */
        .attack-node {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            border: 3px solid;
            animation: nodeGlow 2s ease-in-out infinite;
        }

        .node-apt41 {
            top: 50%;
            left: 50px;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta));
            border-color: var(--neon-purple);
            box-shadow: var(--glow-purple);
        }

        .node-supply-chain {
            top: 20%;
            left: 130px;
            background: rgba(255, 215, 0, 0.2);
            border-color: var(--accent-gold);
            animation-delay: 0.3s;
        }

        .node-victim {
            top: 50%;
            left: 350px;
            transform: translateY(-50%);
            background: rgba(76, 201, 240, 0.2);
            border-color: var(--accent-blue);
            animation-delay: 0.6s;
        }

        .node-malware {
            top: 65%;
            left: 130px;
            background: rgba(255, 0, 110, 0.2);
            border-color: var(--neon-magenta);
            animation-delay: 0.9s;
        }

        .node-c2 {
            top: 50%;
            right: 250px;
            transform: translateY(-50%);
            background: rgba(157, 78, 221, 0.3);
            border-color: var(--neon-purple);
            animation-delay: 1.2s;
        }

        .node-exfil {
            top: 50%;
            right: 100px;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-pink));
            border-color: var(--neon-magenta);
            animation-delay: 1.5s;
        }

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

        /* Data Flow Lines */
        .flow-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-purple), var(--neon-magenta));
            transform-origin: left center;
        }

        .line-1 {
            top: 50%;
            left: 130px;
            width: 70px;
        }

        .line-2 {
            top: 35%;
            left: 195px;
            width: 100px;
            transform: rotate(-30deg);
        }

        .line-3 {
            top: 65%;
            left: 195px;
            width: 100px;
            transform: rotate(30deg);
        }

        .line-4 {
            top: 50%;
            left: 430px;
            width: 180px;
        }

        .line-5 {
            top: 50%;
            right: 130px;
            width: 70px;
        }

        /* Moving Data Packets */
        .data-packet {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--neon-magenta);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--neon-magenta);
        }

        .packet-1 {
            top: 50%;
            left: 130px;
            animation: packetMove1 3s linear infinite;
        }

        .packet-2 {
            top: 35%;
            left: 195px;
            animation: packetMove2 3s linear infinite 0.5s;
        }

        .packet-3 {
            top: 65%;
            left: 195px;
            animation: packetMove3 3s linear infinite 1s;
        }

        .packet-4 {
            top: 50%;
            left: 430px;
            animation: packetMove4 3s linear infinite 1.5s;
        }

        .packet-5 {
            top: 50%;
            right: 330px;
            animation: packetMove5 3s linear infinite 2s;
        }

        @keyframes packetMove1 {
            0% { left: 130px; opacity: 1; }
            100% { left: 280px; opacity: 0; }
        }

        @keyframes packetMove2 {
            0% { left: 195px; top: 35%; opacity: 1; }
            100% { left: 350px; top: 50%; opacity: 0; }
        }

        @keyframes packetMove3 {
            0% { left: 195px; top: 65%; opacity: 1; }
            100% { left: 350px; top: 50%; opacity: 0; }
        }

        @keyframes packetMove4 {
            0% { left: 430px; opacity: 1; }
            100% { left: 680px; opacity: 0; }
        }

        @keyframes packetMove5 {
            0% { right: 130px; opacity: 1; }
            100% { right: 50px; opacity: 0; }
        }

        /* Dual Nature Indicators */
        .dual-nature {
            position: absolute;
            bottom: 20px;
            left: 60%;
            transform: translateX(-50%);
            display: flex;
            gap: 2rem;
        }

        .nature-box {
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            text-align: center;
            animation: naturePulse 2s ease-in-out infinite;
        }

        .espionage {
            background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(157, 78, 221, 0.1));
            border: 2px solid var(--neon-purple);
        }

        .financial {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(255, 0, 110, 0.1));
            border: 2px solid var(--neon-magenta);
        }

        .nature-box h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .nature-box p {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

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

        /* Labels */
        .sim-label {
            position: absolute;
            color: var(--text-secondary);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .label-apt41 { top: 60%; left: 70px; }
        .label-supply { top: 37%; left: 135px; }
        .label-victim { top: 60%; left: 365px; }
        .label-malware { top: 82%; left: 135px; }
        .label-c2 { top: 60%; right: 255px; }
        .label-exfil { top: 60%; right: 100px; }

        /* Simulation Title */
        .sim-title {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(157, 78, 221, 0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            border: 1px solid var(--neon-purple);
            font-size: 0.9rem;
            animation: titleFloat 3s ease-in-out infinite;
        }

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

        /* Why It Matters */
        .matters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .matter-card {
            background: rgba(157, 78, 221, 0.1);
            border: 1px solid rgba(157, 78, 221, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .matter-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-purple);
            border-color: var(--neon-purple);
        }

        .matter-card h3 {
            color: var(--neon-purple);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .matter-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .matter-card .highlight {
            color: var(--neon-magenta);
            font-weight: bold;
        }

        .external-link {
            display: inline-block;
            color: var(--accent-blue);
            text-decoration: none;
            border-bottom: 1px dashed var(--accent-blue);
            transition: all 0.3s ease;
        }

        .external-link:hover {
            color: var(--neon-purple);
            border-color: var(--neon-purple);
        }

        /* Key Terms */
        .terms-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .term-box {
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
            border-radius: 10px;
            padding: 1.5rem;
            border-left: 4px solid var(--neon-purple);
        }

        .term-box h3 {
            color: var(--neon-magenta);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .term-box p {
            color: var(--text-secondary);
        }

        .analogy-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
            border-left: 4px solid var(--accent-gold);
        }

        .analogy-box h3 {
            color: var(--accent-gold);
        }

        /* Real World Scenario */
        .scenario-story {
            position: relative;
        }

        .story-intro {
            background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(157, 78, 221, 0.05));
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--neon-purple);
        }

        .character-name {
            color: var(--neon-magenta);
            font-weight: bold;
        }

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

        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--neon-purple), var(--neon-magenta));
        }

        .timeline-event {
            position: relative;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: 8px;
            border: 1px solid rgba(157, 78, 221, 0.2);
        }

        .timeline-event::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: var(--neon-purple);
            border-radius: 50%;
            box-shadow: var(--glow-purple);
            animation: eventPulse 2s ease-in-out infinite;
        }

        @keyframes eventPulse {
            0%, 100% { box-shadow: 0 0 5px var(--neon-purple); }
            50% { box-shadow: 0 0 15px var(--neon-purple), 0 0 25px var(--neon-purple); }
        }

        .timeline-event.before {
            border-color: var(--accent-blue);
        }

        .timeline-event.before::before {
            background: var(--accent-blue);
            box-shadow: 0 0 10px var(--accent-blue);
        }

        .timeline-event.during {
            border-color: var(--neon-magenta);
        }

        .timeline-event.during::before {
            background: var(--neon-magenta);
            box-shadow: 0 0 10px var(--neon-magenta);
        }

        .timeline-event.after {
            border-color: var(--accent-gold);
        }

        .timeline-event.after::before {
            background: var(--accent-gold);
            box-shadow: 0 0 10px var(--accent-gold);
        }

        .event-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.3rem;
        }

        .event-label.before-label { color: var(--accent-blue); }
        .event-label.during-label { color: var(--neon-magenta); }
        .event-label.after-label { color: var(--accent-gold); }

        /* Step by Step Guide */
        .steps-container {
            counter-reset: step;
        }

        .step-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: var(--bg-secondary);
            border-radius: 10px;
            border: 1px solid rgba(157, 78, 221, 0.2);
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--neon-purple);
            box-shadow: var(--glow-purple);
        }

        .step-number {
            counter-increment: step;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-magenta));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
            animation: stepPulse 2s ease-in-out infinite;
        }

        .step-number::before {
            content: counter(step);
        }

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

        .step-content h3 {
            color: var(--neon-purple);
            margin-bottom: 0.5rem;
        }

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

        .step-content li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.3rem;
            color: var(--text-secondary);
        }

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

        .internal-link {
            color: var(--accent-blue);
            text-decoration: none;
            border-bottom: 1px dashed var(--accent-blue);
        }

        .internal-link:hover {
            color: var(--neon-purple);
        }

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

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

        .mistakes-section {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(255, 0, 110, 0.05));
            border: 1px solid rgba(255, 0, 110, 0.3);
        }

        .practices-section {
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(76, 201, 240, 0.05));
            border: 1px solid rgba(76, 201, 240, 0.3);
        }

        .mistakes-section h3 {
            color: var(--neon-magenta);
            margin-bottom: 1rem;
        }

        .practices-section h3 {
            color: var(--accent-blue);
            margin-bottom: 1rem;
        }

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

        .item-list li {
            position: relative;
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 5px;
            padding-left: 2rem;
        }

        .mistakes-section .item-list li::before {
            content: '✕';
            position: absolute;
            left: 0.8rem;
            color: var(--neon-magenta);
        }

        .practices-section .item-list li::before {
            content: '✓';
            position: absolute;
            left: 0.8rem;
            color: var(--accent-blue);
        }

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

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

        .red-team {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(255, 0, 110, 0.05));
            border: 1px solid rgba(255, 0, 110, 0.3);
        }

        .blue-team {
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.15), rgba(76, 201, 240, 0.05));
            border: 1px solid rgba(76, 201, 240, 0.3);
        }

        .team-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .red-team .team-header {
            color: var(--neon-magenta);
        }

        .blue-team .team-header {
            color: var(--accent-blue);
        }

        .team-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            animation: iconBounce 2s ease-in-out infinite;
        }

        .red-team .team-icon {
            background: var(--neon-magenta);
        }

        .blue-team .team-icon {
            background: var(--accent-blue);
        }

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

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

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

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

        .tactic-icon {
            font-size: 0.9rem;
        }

        .red-team .tactic-icon {
            color: var(--neon-magenta);
        }

        .blue-team .tactic-icon {
            color: var(--accent-blue);
        }

        /* Threat Hunter's Eye */
        .hunter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .indicator-card {
            background: var(--bg-secondary);
            border: 1px solid rgba(157, 78, 221, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .indicator-card:hover {
            border-color: var(--neon-purple);
            transform: scale(1.02);
        }

        .indicator-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            animation: indicatorFloat 3s ease-in-out infinite;
        }

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

        .indicator-card h4 {
            color: var(--neon-purple);
            margin-bottom: 0.5rem;
        }

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

        .safe-badge {
            display: inline-block;
            background: rgba(76, 201, 240, 0.2);
            color: var(--accent-blue);
            padding: 0.2rem 0.6rem;
            border-radius: 10px;
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }

        /* Call to Action */
        #cta {
            background: linear-gradient(135deg, var(--bg-card), rgba(157, 78, 221, 0.2));
            text-align: center;
        }

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

        .cta-icon {
            font-size: 4rem;
            animation: ctaPulse 2s ease-in-out infinite;
        }

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

        .cta-content h3 {
            font-size: 1.5rem;
            color: var(--neon-purple);
            margin: 1rem 0;
        }

        .cta-content p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .discussion-topics {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .topic-tag {
            background: rgba(157, 78, 221, 0.2);
            border: 1px solid var(--neon-purple);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--neon-purple);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .topic-tag:hover {
            background: var(--neon-purple);
            color: var(--bg-primary);
            box-shadow: var(--glow-purple);
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            padding: 2rem;
            text-align: center;
            border-top: 2px solid var(--neon-purple);
        }

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

        .disclaimer {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(157, 78, 221, 0.1);
            border-radius: 5px;
        }

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

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

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

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

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

            section {
                padding: 1.5rem;
            }

            .simulation-container {
                height: 400px;
            }

            .attack-node {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

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

            .dual-nature {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        /* Animated Warning Banner */

        @keyframes bannerPulse {
            0%, 100% { background: linear-gradient(90deg, rgba(255, 0, 110, 0.2), rgba(157, 78, 221, 0.2)); }
            50% { background: linear-gradient(90deg, rgba(255, 0, 110, 0.3), rgba(157, 78, 221, 0.3)); }
        }

        .warning-icon {
            display: inline-block;
            animation: warningBlink 1s ease-in-out infinite;
        }

        @keyframes warningBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }/* End custom CSS */