.elementor-14228 .elementor-element.elementor-element-5779b1e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1e1fdd0 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Header */
        .header {
            padding: 40px 20px;
            text-align: center;
            border-bottom: 3px solid #ff3366;
            position: relative;
            overflow: hidden;
        }

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

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

        .header h1 {
            font-size: 3rem;
            color: #ff3366;
            text-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
            position: relative;
            z-index: 1;
        }

        .header p {
            color: #a0a0c0;
            margin-top: 10px;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        .nav {
            background: #0d0d1f;
            padding: 15px;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #2a2a4a;
        }

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

        .nav a {
            color: #ff3366;
            text-decoration: none;
            padding: 8px 16px;
            border: 1px solid #ff3366;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav a:hover {
            background: #ff3366;
            color: #0a0a1a;
            box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
		
		section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
		
        .section {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid #2a2a4a;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #ff3366, #ff6b35, #ffbe0b);
        }

        .section h2 {
            color: #ff3366;
            font-size: 2rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section h2::before {
            content: '⚠️';
            font-size: 1.5rem;
        }

        .section h3 {
            color: #ff6b35;
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }

        .section p {
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Account Takeover Simulation */
        .simulation-container {
            background: #0a0a15;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 2px solid #1a1a3a;
            position: relative;
            min-height: 600px;
            overflow: hidden;
        }

        .simulation-title {
            text-align: center;
            color: #ff3366;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* Attack Timeline */
        .attack-timeline {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #ff3366, #ff6b35, #ffbe0b, #00ff88);
            animation: lineGrow 8s linear infinite;
        }

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

        /* Attack Phases */
        .attack-phase {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            position: relative;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .attack-phase:hover {
            background: rgba(255, 51, 102, 0.05);
        }

        .phase-marker {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .attack-phase:nth-child(1) .phase-marker {
            background: linear-gradient(135deg, #ff3366, #cc0044);
            animation: markerPulse 2s ease-in-out infinite;
        }

        .attack-phase:nth-child(2) .phase-marker {
            background: linear-gradient(135deg, #ff6b35, #cc4400);
            animation: markerPulse 2s ease-in-out infinite 0.5s;
        }

        .attack-phase:nth-child(3) .phase-marker {
            background: linear-gradient(135deg, #ffbe0b, #cc9900);
            animation: markerPulse 2s ease-in-out infinite 1s;
        }

        .attack-phase:nth-child(4) .phase-marker {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            animation: markerPulse 2s ease-in-out infinite 1.5s;
        }

        @keyframes markerPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 10px currentColor; }
            50% { transform: scale(1.1); box-shadow: 0 0 20px currentColor; }
        }

        .phase-content {
            flex: 1;
        }

        .phase-title {
            color: #ff6b35;
            font-size: 1.1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .phase-status {
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 10px;
            text-transform: uppercase;
        }

        .phase-status.active {
            background: rgba(255, 51, 102, 0.3);
            color: #ff3366;
            animation: statusBlink 1s ease-in-out infinite;
        }

        .phase-status.complete {
            background: rgba(0, 255, 136, 0.3);
            color: #00ff88;
        }

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

        .phase-description {
            color: #a0a0c0;
            font-size: 0.9rem;
        }

        /* Attack Visualization */
        .attack-viz {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 53, 0.1));
            border-radius: 15px;
            padding: 25px;
            margin-top: 20px;
            border: 1px solid #2a2a4a;
        }

        .viz-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        /* User Account Display */
        .user-account {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            background: rgba(30, 30, 60, 0.6);
            border-radius: 12px;
            border: 2px solid #2a2a4a;
            position: relative;
            transition: all 0.5s ease;
        }

        .user-account.compromised {
            border-color: #ff3366;
            box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
            animation: compromisedPulse 1.5s ease-in-out infinite;
        }

        @keyframes compromisedPulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 51, 102, 0.3); }
            50% { box-shadow: 0 0 40px rgba(255, 51, 102, 0.6); }
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00aaff, #0066cc);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            position: relative;
        }

        .user-account.compromised .user-avatar {
            background: linear-gradient(135deg, #ff3366, #cc0044);
        }

        .user-avatar::after {
            content: '';
            position: absolute;
            top: -3px;
            right: -3px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #00ff88;
            border: 2px solid #1a1a2e;
        }

        .user-account.compromised .user-avatar::after {
            background: #ff3366;
            animation: statusBlink 0.5s ease-in-out infinite;
        }

        .user-info h4 {
            color: #e0e0e0;
            font-size: 1rem;
        }

        .user-info p {
            color: #606080;
            font-size: 0.8rem;
            margin: 0;
        }

        /* Attack Flow Animation */
        .attack-flow-viz {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 20px;
            position: relative;
        }

        .flow-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .node-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            position: relative;
        }

        .node-icon.attacker {
            background: linear-gradient(135deg, #ff3366, #cc0044);
            animation: attackerGlow 2s ease-in-out infinite;
        }

        .node-icon.credentials {
            background: linear-gradient(135deg, #ff6b35, #cc4400);
            animation: credentialFloat 3s ease-in-out infinite;
        }

        .node-icon.session {
            background: linear-gradient(135deg, #ffbe0b, #cc9900);
            animation: sessionPulse 2s ease-in-out infinite;
        }

        .node-icon.account {
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            border: 2px solid #00ff88;
        }

        @keyframes attackerGlow {
            0%, 100% { box-shadow: 0 0 15px rgba(255, 51, 102, 0.5); }
            50% { box-shadow: 0 0 30px rgba(255, 51, 102, 0.8); }
        }

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

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

        .node-label {
            font-size: 0.8rem;
            color: #a0a0c0;
            text-align: center;
        }

        /* Flow Arrows */
        .flow-arrow {
            display: flex;
            align-items: center;
            color: #ff3366;
            font-size: 1.5rem;
        }

        .flow-arrow span {
            animation: arrowMove 1s ease-in-out infinite;
        }

        @keyframes arrowMove {
            0%, 100% { transform: translateX(0); opacity: 0.5; }
            50% { transform: translateX(5px); opacity: 1; }
        }

        /* Data Stream Animation */
        .data-stream {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .stream-packet {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #ff3366;
            border-radius: 50%;
            animation: streamFlow 4s linear infinite;
            box-shadow: 0 0 10px #ff3366;
        }

        .stream-packet:nth-child(1) { animation-delay: 0s; top: 20%; }
        .stream-packet:nth-child(2) { animation-delay: 1s; top: 40%; }
        .stream-packet:nth-child(3) { animation-delay: 2s; top: 60%; }
        .stream-packet:nth-child(4) { animation-delay: 3s; top: 80%; }

        @keyframes streamFlow {
            0% {
                left: 0;
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                left: 100%;
                opacity: 0;
            }
        }

        /* Warning Banner */
        .warning-banner {
            background: linear-gradient(90deg, rgba(255, 51, 102, 0.2), rgba(255, 107, 53, 0.2));
            border: 1px solid #ff3366;
            border-radius: 10px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            animation: warningPulse 2s ease-in-out infinite;
        }

        @keyframes warningPulse {
            0%, 100% { border-color: #ff3366; }
            50% { border-color: #ff6b35; }
        }

        .warning-icon {
            font-size: 2rem;
            animation: warningBounce 1s ease-in-out infinite;
        }

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

        .warning-text {
            color: #ff6b35;
            font-weight: bold;
        }

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

        .stat-card {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 53, 0.1));
            border: 1px solid #2a2a4a;
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff3366;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #a0a0c0;
            font-size: 1rem;
        }

        .stat-source {
            font-size: 0.8rem;
            color: #606080;
            margin-top: 10px;
        }

        .stat-source a {
            color: #ff6b35;
            text-decoration: none;
        }

        .stat-source a:hover {
            text-decoration: underline;
        }

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

        .term-card {
            background: rgba(30, 30, 60, 0.5);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid #2a2a4a;
            transition: all 0.3s ease;
        }

        .term-card:hover {
            border-color: #ff3366;
            transform: scale(1.02);
        }

        .term-title {
            color: #ff6b35;
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .term-content {
            color: #c0c0e0;
        }

        /* Story Section */
        .story-container {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 53, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border-left: 4px solid #ff3366;
        }

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

        .character-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ff3366, #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .character-info h4 {
            color: #ff3366;
            font-size: 1.3rem;
        }

        .character-info p {
            color: #a0a0c0;
            font-size: 0.9rem;
        }

        .story-timeline {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .timeline-item {
            flex: 1;
            min-width: 200px;
            background: rgba(20, 20, 40, 0.8);
            border-radius: 10px;
            padding: 20px;
            position: relative;
        }

        .timeline-item.before {
            border-top: 3px solid #ff3366;
        }

        .timeline-item.after {
            border-top: 3px solid #00ff88;
        }

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

        .timeline-item.before .timeline-label {
            color: #ff3366;
        }

        .timeline-item.after .timeline-label {
            color: #00ff88;
        }

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

        .step-item {
            background: rgba(25, 25, 50, 0.6);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 4px solid #ff3366;
            position: relative;
            padding-left: 80px;
        }

        .step-item::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #ff3366, #ff6b35);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            color: #0a0a1a;
        }

        .step-title {
            color: #ff3366;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

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

        .step-content li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #c0c0e0;
        }

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

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

        .comparison-card {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 25px;
        }

        .comparison-card.mistakes {
            border-top: 3px solid #ff3366;
        }

        .comparison-card.best-practices {
            border-top: 3px solid #00ff88;
        }

        .comparison-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .comparison-card.mistakes .comparison-title {
            color: #ff3366;
        }

        .comparison-card.best-practices .comparison-title {
            color: #00ff88;
        }

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

        .comparison-list li {
            padding: 12px 0;
            border-bottom: 1px solid #2a2a4a;
            padding-left: 30px;
            position: relative;
            color: #c0c0e0;
        }

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

        .comparison-list li::before {
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        .comparison-card.mistakes .comparison-list li::before {
            content: '✗';
            color: #ff3366;
        }

        .comparison-card.best-practices .comparison-list li::before {
            content: '✓';
            color: #00ff88;
        }

        /* Red Team vs Blue Team */
        .team-battle {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 25px 0;
        }

        @media (max-width: 768px) {
            .team-battle {
                grid-template-columns: 1fr;
            }
        }

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

        .team-card.red-team {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(100, 0, 50, 0.3));
            border: 2px solid #ff3366;
        }

        .team-card.blue-team {
            background: linear-gradient(135deg, rgba(0, 100, 255, 0.2), rgba(0, 50, 150, 0.3));
            border: 2px solid #00aaff;
        }

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

        .team-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .team-card.red-team .team-icon {
            background: rgba(255, 51, 102, 0.3);
        }

        .team-card.blue-team .team-icon {
            background: rgba(0, 170, 255, 0.3);
        }

        .team-title {
            font-size: 1.4rem;
        }

        .team-card.red-team .team-title {
            color: #ff3366;
        }

        .team-card.blue-team .team-title {
            color: #00aaff;
        }

        .team-content {
            color: #c0c0e0;
        }

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

        .team-content li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
        }

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

        .team-card.red-team .team-content li::before {
            color: #ff3366;
        }

        .team-card.blue-team .team-content li::before {
            color: #00aaff;
        }

        /* Threat Hunter */
        .threat-hunter {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 190, 11, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            border: 2px solid #ff6b35;
            position: relative;
        }

        .threat-hunter::before {
            content: '👁️';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 2rem;
            background: #1a1a2e;
            padding: 0 10px;
        }

        .hunter-title {
            color: #ff6b35;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        .hunter-content {
            color: #c0c0e0;
        }

        .attack-scenario {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border-left: 3px solid #ff6b35;
        }

        .scenario-title {
            color: #ff6b35;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 107, 53, 0.1));
            border-radius: 20px;
            padding: 50px;
            text-align: center;
            border: 2px solid #ff3366;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 51, 102, 0.1), 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-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            color: #ff3366;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-text {
            color: #c0c0e0;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cta-button.primary {
            background: #ff3366;
            color: #0a0a1a;
            border: 2px solid #ff3366;
        }

        .cta-button.primary:hover {
            background: transparent;
            color: #ff3366;
            box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
        }

        .cta-button.secondary {
            background: transparent;
            color: #ff6b35;
            border: 2px solid #ff6b35;
        }

        .cta-button.secondary:hover {
            background: #ff6b35;
            color: #0a0a1a;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        }

        /* Footer */
        .footer {
            background: #0a0a15;
            padding: 30px 20px;
            text-align: center;
            border-top: 1px solid #2a2a4a;
            margin-top: 60px;
        }

        .footer p {
            color: #606080;
            font-size: 0.9rem;
        }

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

            .section {
                padding: 25px;
            }

            .attack-flow-viz {
                flex-direction: column;
                gap: 15px;
            }

            .flow-arrow {
                transform: rotate(90deg);
            }

            .step-item {
                padding-left: 25px;
                padding-top: 70px;
            }

            .step-item::before {
                left: 50%;
                top: 20px;
                transform: translateX(-50%);
            }

            .viz-row {
                flex-direction: column;
            }
        }/* End custom CSS */