.elementor-14133 .elementor-element.elementor-element-1a6016b{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e726ced */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #111827;
            --accent-green: #10b981;
            --accent-red: #ef4444;
            --accent-orange: #f97316;
            --accent-purple: #8b5cf6;
            --accent-cyan: #06b6d4;
            --text-light: #e5e7eb;
            --text-muted: #9ca3af;
            --bot-green: #22c55e;
            --c2-red: #dc2626;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
        }

        .floating-particles {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--accent-green);
            border-radius: 50%;
            opacity: 0.4;
            animation: float-particle 20s infinite linear;
        }

        .particle:nth-child(1) { left: 5%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 15%; animation-delay: 2s; }
        .particle:nth-child(3) { left: 25%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 35%; animation-delay: 1s; }
        .particle:nth-child(5) { left: 45%; animation-delay: 3s; }
        .particle:nth-child(6) { left: 55%; animation-delay: 5s; }
        .particle:nth-child(7) { left: 65%; animation-delay: 2s; }
        .particle:nth-child(8) { left: 75%; animation-delay: 4s; }
        .particle:nth-child(9) { left: 85%; animation-delay: 1s; }
        .particle:nth-child(10) { left: 95%; animation-delay: 6s; }

        @keyframes float-particle {
            0% { transform: translateY(100vh); opacity: 0; }
            10% { opacity: 0.4; }
            90% { opacity: 0.4; }
            100% { transform: translateY(-100vh); opacity: 0; }
        }

        .headerpage {
            padding: 60px 20px;
            text-align: center;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-purple) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            animation: pulse-logo 3s ease-in-out infinite;
            box-shadow: 0 0 40px rgba(34, 197, 94, 0.4);
        }

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

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .subtitle {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

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

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-title::before {
            content: '';
            width: 5px;
            height: 30px;
            background: linear-gradient(180deg, var(--accent-green), var(--accent-purple));
            border-radius: 3px;
        }

        /* Botnet Simulation */
        .simulation-container {
            background: #050810;
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            min-height: 480px;
            border: 2px solid rgba(34, 197, 94, 0.3);
        }

        .simulation-title {
            text-align: center;
            color: var(--accent-green);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        /* C2 Server */
        .c2-server {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, #450a0a, #1c0505);
            border: 3px solid var(--c2-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            z-index: 10;
            animation: c2-pulse 2s ease-in-out infinite;
        }

        @keyframes c2-pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(220, 38, 38, 0.4); }
            50% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.8); }
        }

        .c2-label {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 60px);
            color: var(--accent-red);
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Bot Nodes */
        .bot {
            position: absolute;
            width: 35px;
            height: 35px;
            background: linear-gradient(145deg, #052e16, #022c22);
            border: 2px solid var(--bot-green);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            animation: bot-pulse 1.5s ease-in-out infinite;
        }

        .bot::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            animation: bot-signal 3s linear infinite;
        }

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

        @keyframes bot-signal {
            0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
            100% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
        }

        .bot-1 { top: 15%; left: 20%; animation-delay: 0s; }
        .bot-2 { top: 15%; left: 50%; animation-delay: 0.2s; }
        .bot-3 { top: 15%; left: 80%; animation-delay: 0.4s; }
        .bot-4 { top: 40%; left: 10%; animation-delay: 0.1s; }
        .bot-5 { top: 40%; left: 90%; animation-delay: 0.3s; }
        .bot-6 { top: 70%; left: 15%; animation-delay: 0.5s; }
        .bot-7 { top: 70%; left: 50%; animation-delay: 0.15s; }
        .bot-8 { top: 70%; left: 85%; animation-delay: 0.25s; }

        /* Connection Lines */
        .connection-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--bot-green), transparent);
            transform-origin: left center;
            opacity: 0.6;
            animation: line-pulse 2s ease-in-out infinite;
        }

        @keyframes line-pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Data Packets */
        .data-packet {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--accent-green);
            border-radius: 50%;
            animation: packet-flow 3s linear infinite;
        }

        @keyframes packet-flow {
            0% { opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* Stats Display */
        .botnet-stats {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
            background: rgba(0, 0, 0, 0.5);
            padding: 15px 30px;
            border-radius: 10px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-green);
        }

        .stat-value.red { color: var(--accent-red); }

        .stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

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

        .stat-card {
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(139, 92, 246, 0.05));
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-green);
            margin-bottom: 10px;
        }

        .stat-label-card {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

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

        .external-link:hover {
            color: var(--accent-green);
            border-bottom-color: var(--accent-green);
        }

        .terms-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

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

        .term-box {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(10, 14, 23, 0.9));
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 15px;
            padding: 30px;
        }

        .term-box h3 {
            color: var(--accent-green);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .term-box p {
            color: var(--text-light);
            line-height: 1.8;
        }

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

        .scenario-timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent-green), var(--accent-red));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding: 20px;
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.8), rgba(10, 14, 23, 0.9));
            border-radius: 15px;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 25px;
            width: 14px;
            height: 14px;
            background: var(--accent-green);
            border-radius: 50%;
            border: 3px solid var(--primary-dark);
        }

        .timeline-item.attack::before {
            background: var(--accent-red);
            animation: pulse-danger 1s infinite;
        }

        @keyframes pulse-danger {
            0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
            50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
        }

        .timeline-item h4 {
            color: var(--accent-green);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .timeline-item.attack h4 {
            color: var(--accent-red);
        }

        .step-list {
            counter-reset: step-counter;
        }

        .step-item {
            position: relative;
            padding: 25px;
            padding-left: 80px;
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.6), rgba(10, 14, 23, 0.8));
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid rgba(34, 197, 94, 0.2);
            counter-increment: step-counter;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--accent-green);
            transform: translateX(5px);
        }

        .step-item::before {
            content: counter(step-counter);
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: white;
        }

        .step-item h4 {
            color: var(--accent-green);
            margin-bottom: 10px;
            font-size: 1.15rem;
        }

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

        .step-item li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .step-item li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
        }

        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .related-link {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            padding: 8px 15px;
            border-radius: 20px;
            color: var(--accent-green);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .related-link:hover {
            background: rgba(34, 197, 94, 0.2);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

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

        .mistakes-box, .practices-box {
            padding: 30px;
            border-radius: 15px;
        }

        .mistakes-box {
            background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .practices-box {
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .mistakes-box h3, .practices-box h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .mistakes-box h3 { color: var(--accent-red); }
        .practices-box h3 { color: var(--accent-green); }

        .mistakes-box ul, .practices-box ul {
            list-style: none;
        }

        .mistakes-box li, .practices-box li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mistakes-box li:last-child, .practices-box li:last-child {
            border-bottom: none;
        }

        .mistakes-box li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: var(--accent-red);
            font-weight: bold;
        }

        .practices-box li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
        }

        .team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

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

        .red-team-box, .blue-team-box {
            padding: 30px;
            border-radius: 15px;
        }

        .red-team-box {
            background: linear-gradient(145deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
            border: 2px solid rgba(239, 68, 68, 0.4);
        }

        .blue-team-box {
            background: linear-gradient(145deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
            border: 2px solid rgba(6, 182, 212, 0.4);
        }

        .red-team-box h3 { color: var(--accent-red); }
        .blue-team-box h3 { color: var(--accent-cyan); }

        .team-box h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

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

        .team-box li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: var(--text-light);
        }

        .red-team-box li::before { content: '⚔'; position: absolute; left: 0; }
        .blue-team-box li::before { content: '🛡'; position: absolute; left: 0; }

        .threat-hunter-box {
            background: linear-gradient(145deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 15px;
            padding: 30px;
            position: relative;
        }

        .threat-hunter-box h3 {
            color: var(--accent-purple);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .threat-hunter-box ul {
            list-style: none;
        }

        .threat-hunter-box li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-light);
        }

        .threat-hunter-box li::before {
            content: '👁';
            position: absolute;
            left: 0;
        }

        .cta-section {
            text-align: center;
            padding: 50px;
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.1), rgba(139, 92, 246, 0.1));
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 20px;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--accent-green);
        }

        .cta-section p {
            color: var(--text-muted);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }

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

        .cta-btn {
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-purple));
            color: white;
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
        }

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

        .cta-btn-secondary:hover {
            background: var(--accent-cyan);
            color: var(--primary-dark);
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .section { padding: 25px; }
            .section-title { font-size: 1.5rem; }
            .simulation-container { min-height: 400px; }
        }/* End custom CSS */