.elementor-14276 .elementor-element.elementor-element-73687c8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7a08aaf */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2a 50%, #0a1a2a 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* CSRF Animation Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .request-packet {
            position: absolute;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 5px;
            padding: 5px 10px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: #00d4ff;
            animation: flowRequest 15s linear infinite;
            white-space: nowrap;
        }

        .request-packet:nth-child(1) { top: 10%; animation-duration: 12s; }
        .request-packet:nth-child(2) { top: 25%; animation-duration: 14s; animation-delay: -3s; }
        .request-packet:nth-child(3) { top: 40%; animation-duration: 16s; animation-delay: -6s; }
        .request-packet:nth-child(4) { top: 55%; animation-duration: 13s; animation-delay: -9s; }
        .request-packet:nth-child(5) { top: 70%; animation-duration: 15s; animation-delay: -2s; }
        .request-packet:nth-child(6) { top: 85%; animation-duration: 11s; animation-delay: -5s; }

        @keyframes flowRequest {
            0% { left: -200px; opacity: 0; }
            10% { opacity: 0.8; }
            90% { opacity: 0.8; }
            100% { left: 110%; opacity: 0; }
        }

        .forged-packet {
            position: absolute;
            background: rgba(255, 51, 102, 0.2);
            border: 1px solid #ff3366;
            border-radius: 5px;
            padding: 5px 10px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: #ff3366;
            animation: flowForged 18s linear infinite;
            white-space: nowrap;
        }

        .forged-packet:nth-child(7) { top: 18%; animation-duration: 14s; animation-delay: -1s; }
        .forged-packet:nth-child(8) { top: 48%; animation-duration: 16s; animation-delay: -7s; }
        .forged-packet:nth-child(9) { top: 78%; animation-duration: 12s; animation-delay: -4s; }

        @keyframes flowForged {
            0% { left: -250px; opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { left: 110%; opacity: 0; }
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        /* Header */
        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        
        .header {
            text-align: center;
            padding: 60px 20px;
            position: relative;
        }

        .header h1 {
            font-size: 2.5rem;
            font-family: 'JetBrains Mono', monospace;
            background: linear-gradient(135deg, #00d4ff, #00ff88, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: titleShift 4s ease-in-out infinite;
        }

        @keyframes titleShift {
            0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5)); }
            33% { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5)); }
            66% { filter: drop-shadow(0 0 25px rgba(255, 204, 0, 0.5)); }
        }

        .header .subtitle {
            font-size: 1.2rem;
            color: #888;
            max-width: 600px;
            margin: 0 auto;
        }

        /* CSRF Simulation */
        .csrf-simulation {
            background: linear-gradient(145deg, #0a1a2a, #1a0a2a);
            border: 1px solid #333;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .attack-flow {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
            margin: 30px 0;
        }

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

        .flow-entity {
            text-align: center;
            padding: 25px 15px;
            border-radius: 12px;
            position: relative;
        }

        .flow-entity.victim {
            background: linear-gradient(135deg, #1a2a3a, #0a1a2a);
            border: 2px solid #00d4ff;
        }

        .flow-entity.attacker {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 2px solid #ff3366;
        }

        .flow-entity.server {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 2px solid #00ff88;
        }

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

        .victim .entity-icon { background: linear-gradient(135deg, #00d4ff, #0099cc); }
        .attacker .entity-icon { background: linear-gradient(135deg, #ff3366, #cc0044); }
        .server .entity-icon { background: linear-gradient(135deg, #00ff88, #00cc6a); }

        .entity-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .victim .entity-title { color: #00d4ff; }
        .attacker .entity-title { color: #ff3366; }
        .server .entity-title { color: #00ff88; }

        .entity-detail {
            font-size: 0.8rem;
            color: #888;
        }

        .connection-line {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #ffcc00;
            animation: pulseArrow 1.5s ease-in-out infinite;
        }

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

        .step-indicator {
            background: rgba(255, 204, 0, 0.1);
            border: 1px solid #ffcc00;
            border-radius: 8px;
            padding: 15px;
            margin-top: 25px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
        }

        .step-indicator .step {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 204, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .step-indicator .step:last-child {
            border-bottom: none;
        }

        .step-num {
            background: #ffcc00;
            color: #000;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .step-text {
            color: #e0e0e0;
        }

        .step-text .danger {
            color: #ff3366;
        }

        .simulation-label {
            text-align: center;
            font-family: 'JetBrains Mono', monospace;
            color: #666;
            margin-top: 20px;
            font-size: 0.85rem;
        }

        /* Sections */
        .section {
            background: linear-gradient(145deg, rgba(26, 10, 42, 0.8), rgba(10, 26, 42, 0.9));
            border: 1px solid #2a1a3e;
            border-radius: 15px;
            padding: 35px;
            margin: 30px 0;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
        }

        .section h2 {
            font-size: 1.8rem;
            color: #00d4ff;
            margin-bottom: 25px;
            font-family: 'JetBrains Mono', monospace;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section h2::before {
            content: '⟨CSRF⟩';
            color: #ff3366;
            font-size: 0.9rem;
        }

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

        .stat-card {
            background: linear-gradient(135deg, #1a0a3e, #0a1a2a);
            border: 1px solid #00d4ff;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: #ff3366;
            box-shadow: 0 0 30px rgba(255, 51, 102, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
            background: linear-gradient(135deg, #00d4ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #888;
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* Links */
        a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #00ff88;
            text-decoration: underline;
        }

        .external-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(0, 212, 255, 0.1);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.85rem;
        }

        .external-link::after {
            content: '↗';
            font-size: 0.8rem;
        }

        /* Definition Box */
        .definition-box {
            background: linear-gradient(135deg, #0a1a2a, #1a0a3e);
            border-left: 4px solid #00d4ff;
            padding: 25px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }

        .definition-box h3 {
            color: #00d4ff;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .analogy-box {
            background: linear-gradient(135deg, #2a1a3a, #1a0a2a);
            border-left: 4px solid #ffcc00;
            padding: 25px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }

        .analogy-box h3 {
            color: #ffcc00;
            margin-bottom: 10px;
        }

        /* Code Example */
        .code-example {
            background: #0a0a0f;
            border: 1px solid #333;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            overflow-x: auto;
        }

        .code-example .tag { color: #00d4ff; }
        .code-example .attr { color: #ffcc00; }
        .code-example .value { color: #00ff88; }
        .code-example .danger { color: #ff3366; background: rgba(255, 51, 102, 0.2); }
        .code-example .comment { color: #666; }

        /* Scenario Box */
        .scenario-box {
            background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
            border: 1px solid #333;
            border-radius: 12px;
            padding: 30px;
            margin: 25px 0;
        }

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

        .scenario-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff3366, #ff6600);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 25px;
        }

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

        .before-box, .after-box {
            padding: 20px;
            border-radius: 10px;
        }

        .before-box {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 1px solid #ff3366;
        }

        .after-box {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 1px solid #00ff88;
        }

        .before-box h4, .after-box h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .before-box h4 { color: #ff3366; }
        .after-box h4 { color: #00ff88; }

        /* Steps */
        .steps-list {
            counter-reset: step-counter;
        }

        .step-item {
            position: relative;
            padding: 25px 25px 25px 80px;
            margin: 20px 0;
            background: linear-gradient(135deg, #1a0a3e, #0a1a2a);
            border-radius: 10px;
            border: 1px solid #2a1a3e;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: #00d4ff;
            transform: translateX(5px);
        }

        .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, #00d4ff, #0099cc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: #fff;
            font-family: 'JetBrains Mono', monospace;
        }

        .step-item h4 {
            color: #ffcc00;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

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

        .step-item ul li {
            position: relative;
            padding-left: 25px;
            margin: 8px 0;
            color: #b0b0b0;
        }

        .step-item ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #00d4ff;
        }

        /* Mistakes &amp; Best Practices */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 25px;
        }

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

        .mistakes-box {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 1px solid #ff3366;
            border-radius: 12px;
            padding: 25px;
        }

        .mistakes-box h3 {
            color: #ff3366;
            margin-bottom: 20px;
        }

        .best-practices-box {
            background: linear-gradient(135deg, #1a2a1a, #0a1a0a);
            border: 1px solid #00ff88;
            border-radius: 12px;
            padding: 25px;
        }

        .best-practices-box h3 {
            color: #00ff88;
            margin-bottom: 20px;
        }

        .bullet-list {
            list-style: none;
            padding: 0;
        }

        .bullet-list li {
            padding: 12px 0 12px 30px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .mistakes-box .bullet-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ff3366;
            font-weight: bold;
        }

        .best-practices-box .bullet-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ff88;
            font-weight: bold;
        }

        /* Team Views */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-top: 25px;
        }

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

        .red-team {
            background: linear-gradient(135deg, #2a1a1a, #1a0a0a);
            border: 1px solid #ff3366;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .red-team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #ff3366, transparent);
            animation: scanLine 3s linear infinite;
        }

        @keyframes scanLine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .blue-team {
            background: linear-gradient(135deg, #1a1a3a, #0a0a2a);
            border: 1px solid #00d4ff;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .blue-team::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00d4ff, transparent);
            animation: scanLine 3s linear infinite;
        }

        .red-team h3, .blue-team h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .red-team h3 { color: #ff3366; }
        .blue-team h3 { color: #00d4ff; }

        /* Threat Hunter */
        .hunter-box {
            background: linear-gradient(135deg, #2a2a1a, #1a1a0a);
            border: 1px solid #ffcc00;
            border-radius: 12px;
            padding: 30px;
            margin-top: 25px;
            position: relative;
        }

        .hunter-box::after {
            content: '🎭';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            animation: maskPulse 3s ease-in-out infinite;
        }

        @keyframes maskPulse {
            0%, 100% { opacity: 0.5; transform: rotate(0deg); }
            50% { opacity: 1; transform: rotate(10deg); }
        }

        .hunter-box h3 {
            color: #ffcc00;
            margin-bottom: 15px;
        }

        /* CTA */
        .cta-box {
            background: linear-gradient(135deg, #1a2a3a, #0a1a2a);
            border: 2px solid #00d4ff;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }

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

        @keyframes ctaGlow {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        .cta-box h3 {
            font-size: 1.5rem;
            color: #00d4ff;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            color: #b0b0b0;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 40px 20px;
            color: #666;
            font-size: 0.85rem;
            border-top: 1px solid #2a1a3e;
            margin-top: 40px;
        }

        /* Internal Links */
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .internal-link {
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid #00d4ff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #00d4ff;
            transition: all 0.3s ease;
        }

        .internal-link:hover {
            background: rgba(0, 212, 255, 0.2);
            text-decoration: none;
        }/* End custom CSS */