.elementor-14501 .elementor-element.elementor-element-46bd48f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-14a3773 */:root {
            --deep-purple: #4a1c6b;
            --gold: #d4af37;
            --dark-blue: #1a1a3e;
            --midnight: #0d0d24;
            --evidence-tan: #c4a35a;
            --shadow-purple: #2d1040;
            --light-gold: #f0d88a;
            --danger-red: #8b2942;
            --safe-green: #2a6b4a;
            --card-bg: rgba(26, 26, 62, 0.9);
            --text-light: #e8e4f0;
            --text-muted: #9a93a8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--midnight) 0%, var(--dark-blue) 50%, var(--deep-purple) 100%);
            color: var(--text-light);
            min-height: 100vh;
            line-height: 1.7;
        }

        /* Animated Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, var(--midnight) 0%, transparent 100%);
            padding: 2rem;
            pointer-events: none;
            z-index: -1;
            animation: backgroundPulse 20s ease-in-out infinite;
        }

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

        /* Header */
		section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
		
        .header {
            text-align: center;
            border-bottom: 2px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 2px;
            animation: scanLine 4s linear infinite;
        }

        @keyframes scanLine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .header-badge {
            display: inline-block;
            background: var(--deep-purple);
            border: 1px solid var(--gold);
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            animation: badgePulse 3s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
        }

        h1 {
            font-size: 3rem;
            color: var(--gold);
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        h1 span {
            color: var(--text-light);
            font-weight: 300;
        }

        .tagline {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

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

        /* Card Style */
        .card {
            background: var(--card-bg);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(74, 28, 107, 0.3);
        }

        h2 {
            color: var(--gold);
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        h2 .icon {
            width: 32px;
            height: 32px;
            background: var(--deep-purple);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            animation: iconRotate 10s linear infinite;
        }

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

        h3 {
            color: var(--light-gold);
            font-size: 1.2rem;
            margin: 1.5rem 0 1rem;
            padding-left: 1rem;
            border-left: 3px solid var(--gold);
        }

        /* SIMULATION SECTION */
        .simulation-container {
            background: linear-gradient(135deg, rgba(13, 13, 36, 0.95) 0%, rgba(45, 16, 64, 0.95) 100%);
            border: 2px solid var(--gold);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .simulation-title {
            text-align: center;
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .evidence-board {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            position: relative;
            padding: 2rem 0;
        }

        .evidence-node {
            background: rgba(74, 28, 107, 0.5);
            border: 2px solid var(--evidence-tan);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            position: relative;
            animation: nodeFloat 3s ease-in-out infinite;
        }

        .evidence-node:nth-child(1) { animation-delay: 0s; }
        .evidence-node:nth-child(2) { animation-delay: 0.5s; }
        .evidence-node:nth-child(3) { animation-delay: 1s; }
        .evidence-node:nth-child(4) { animation-delay: 1.5s; }
        .evidence-node:nth-child(5) { animation-delay: 2s; }

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

        .node-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .node-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .node-value {
            color: var(--gold);
            font-weight: bold;
            margin-top: 0.3rem;
        }

        /* Connecting Lines */
        .connection-lines {
            position: absolute;
            top: 50%;
            left: 18%;
            width: 15%;
            height: 4px;
            z-index: 0;
        }

        .connection-lines::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, 
                var(--gold) 0%, 
                var(--gold) 20%, 
                transparent 20%, 
                transparent 25%,
                var(--gold) 25%,
                var(--gold) 45%,
                transparent 45%,
                transparent 50%,
                var(--gold) 50%,
                var(--gold) 70%,
                transparent 70%,
                transparent 75%,
                var(--gold) 75%,
                var(--gold) 100%
            );
            top: 50%;
            animation: lineGlow 2s ease-in-out infinite;
        }

        @keyframes lineGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Animated Magnifying Glass */
        .magnifying-glass {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 80px;
            height: 80px;
            border: 4px solid var(--gold);
            border-radius: 50%;
            animation: magnifyMove 8s ease-in-out infinite;
        }

        .magnifying-glass::before {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -10px;
            width: 8px;
            height: 40px;
            background: var(--gold);
            transform: rotate(-45deg);
            border-radius: 4px;
        }

        .magnifying-glass::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            width: 40px;
            height: 40px;
            border: 2px dashed rgba(212, 175, 55, 0.5);
            border-radius: 50%;
            animation: magnifyInner 4s linear infinite;
        }

        @keyframes magnifyMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-30px, 20px) rotate(15deg); }
            50% { transform: translate(-50px, 0) rotate(0deg); }
            75% { transform: translate(-20px, -20px) rotate(-15deg); }
        }

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

        /* Confidence Meter */
        .confidence-meter {
            margin-top: 2rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 1.5rem;
        }

        .meter-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .meter-bar {
            height: 20px;
            background: rgba(74, 28, 107, 0.5);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--danger-red), var(--evidence-tan), var(--safe-green));
            border-radius: 10px;
            width: 0%;
            animation: meterFill 5s ease-out forwards;
        }

        @keyframes meterFill {
            0% { width: 0%; }
            100% { width: 78%; }
        }

        .meter-markers {
            display: flex;
            justify-content: space-between;
            margin-top: 0.5rem;
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* False Flag Alert */
        .false-flag-alert {
            margin-top: 1.5rem;
            background: rgba(139, 41, 66, 0.2);
            border: 1px dashed var(--danger-red);
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            animation: alertPulse 2s ease-in-out infinite;
        }

        @keyframes alertPulse {
            0%, 100% { border-color: var(--danger-red); }
            50% { border-color: var(--gold); }
        }

        .alert-icon {
            font-size: 1.5rem;
            animation: alertShake 0.5s ease-in-out infinite;
        }

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

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

        .stat-item {
            background: rgba(74, 28, 107, 0.3);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

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

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Links Section */
        .resource-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .resource-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(74, 28, 107, 0.5);
            border: 1px solid var(--gold);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            color: var(--light-gold);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .resource-link:hover {
            background: var(--gold);
            color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }

        .resource-link::before {
            content: '🔗';
        }

        /* Definition Box */
        .definition-box {
            background: linear-gradient(135deg, rgba(74, 28, 107, 0.3) 0%, rgba(26, 26, 62, 0.5) 100%);
            border-left: 4px solid var(--gold);
            border-radius: 0 8px 8px 0;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .analogy-box {
            background: rgba(42, 107, 74, 0.2);
            border: 1px solid var(--safe-green);
            border-radius: 8px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        .analogy-title {
            color: var(--safe-green);
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Story Section */
        .story-container {
            position: relative;
            padding-left: 2rem;
        }

        .story-container::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: linear-gradient(180deg, var(--gold), var(--deep-purple), var(--gold));
            animation: storyLine 3s linear infinite;
        }

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

        .story-chapter {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .story-chapter::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0;
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            animation: chapterPulse 2s ease-in-out infinite;
        }

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

        .chapter-title {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .character-intro {
            background: rgba(212, 175, 55, 0.1);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .character-avatar {
            width: 60px;
            height: 60px;
            background: var(--deep-purple);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            animation: avatarFloat 4s ease-in-out infinite;
        }

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

        /* Steps Guide */
        .steps-container {
            display: grid;
            gap: 1rem;
        }

        .step-card {
            background: rgba(74, 28, 107, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            padding: 1.5rem;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1.5rem;
            align-items: start;
            transition: all 0.3s;
        }

        .step-card:hover {
            background: rgba(74, 28, 107, 0.4);
            border-color: var(--gold);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--evidence-tan));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--dark-blue);
            position: relative;
            animation: stepPulse 3s ease-in-out infinite;
        }

        .step-card:nth-child(1) .step-number { animation-delay: 0s; }
        .step-card:nth-child(2) .step-number { animation-delay: 0.3s; }
        .step-card:nth-child(3) .step-number { animation-delay: 0.6s; }
        .step-card:nth-child(4) .step-number { animation-delay: 0.9s; }
        .step-card:nth-child(5) .step-number { animation-delay: 1.2s; }
        .step-card:nth-child(6) .step-number { animation-delay: 1.5s; }
        .step-card:nth-child(7) .step-number { animation-delay: 1.8s; }

        @keyframes stepPulse {
            0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
            50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
        }

        .step-title {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .step-content {
            color: var(--text-light);
        }

        .step-content ul {
            list-style: none;
            margin-top: 0.5rem;
        }

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

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

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

        .mistakes-card {
            background: rgba(139, 41, 66, 0.2);
            border: 1px solid var(--danger-red);
            border-radius: 8px;
            padding: 1.5rem;
        }

        .mistakes-card h3 {
            border-left-color: var(--danger-red);
            color: #e8748f;
        }

        .practices-card {
            background: rgba(42, 107, 74, 0.2);
            border: 1px solid var(--safe-green);
            border-radius: 8px;
            padding: 1.5rem;
        }

        .practices-card h3 {
            border-left-color: var(--safe-green);
            color: #5fd89d;
        }

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

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

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

        .item-icon {
            font-size: 1.2rem;
            flex-shrink: 0;
        }

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

        .team-card {
            background: rgba(26, 26, 62, 0.8);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .team-header {
            padding: 1.5rem;
            text-align: center;
            position: relative;
        }

        .red-team .team-header {
            background: linear-gradient(135deg, rgba(139, 41, 66, 0.5), transparent);
            border-bottom: 2px solid var(--danger-red);
        }

        .blue-team .team-header {
            background: linear-gradient(135deg, rgba(42, 107, 74, 0.5), transparent);
            border-bottom: 2px solid var(--safe-green);
        }

        .team-name {
            font-size: 1.3rem;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .red-team .team-name { color: #e8748f; }
        .blue-team .team-name { color: #5fd89d; }

        .team-body {
            padding: 1.5rem;
        }

        .team-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .team-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Threat Hunter Box */
        .threat-hunter-box {
            background: linear-gradient(135deg, rgba(74, 28, 107, 0.4), rgba(13, 13, 36, 0.8));
            border: 2px solid var(--deep-purple);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .threat-hunter-box::before {
            content: '🎯';
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 3rem;
            opacity: 0.2;
            animation: targetRotate 10s linear infinite;
        }

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

        .hunter-content {
            display: grid;
            gap: 1.5rem;
        }

        .hunter-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            transition: transform 0.3s;
        }

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

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

        .hunter-text h4 {
            color: var(--gold);
            margin-bottom: 0.3rem;
        }

        .hunter-text p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Call to Action */
        .cta-section {
            background: linear-gradient(135deg, var(--deep-purple), var(--dark-blue));
            border: 2px solid var(--gold);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

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

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

        .cta-title {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-text {
            max-width: 600px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
            position: relative;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
        }

        .cta-btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .cta-btn-primary {
            background: var(--gold);
            color: var(--dark-blue);
            border: 2px solid var(--gold);
        }

        .cta-btn-primary:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .cta-btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-muted);
        }

        .cta-btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Footer */
        footer {
            background: var(--midnight);
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

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

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

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

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

        /* Fingerprint Background */
        .fingerprint-bg {
            position: absolute;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 15rem;
            opacity: 0.03;
            pointer-events: none;
        }

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

            .evidence-board {
                grid-template-columns: repeat(2, 1fr);
            }

            .evidence-node:nth-child(5) {
                grid-column: span 2;
            }

            .step-card {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .step-number {
                margin: 0 auto;
            }

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

            .resource-links {
                flex-direction: column;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }/* End custom CSS */