.elementor-14131 .elementor-element.elementor-element-1a8f5f6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-84cb9a4 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #111827;
            --accent-red: #dc2626;
            --accent-orange: #f97316;
            --accent-yellow: #fbbf24;
            --accent-green: #10b981;
            --accent-cyan: #06b6d4;
            --accent-purple: #7c3aed;
            --text-light: #e5e7eb;
            --text-muted: #9ca3af;
            --mbr-blue: #1d4ed8;
            --virus-red: #b91c1c;
        }

        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;
        }

        /* Animated Background */
        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(249, 115, 22, 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-red);
            border-radius: 50%;
            opacity: 0.4;
            animation: float-particle 18s infinite linear;
        }

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

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

        /* Header */
        .headerpage {
            padding: 60px 20px;
            text-align: center;
            position: relative;
        }

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

        .logo {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 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(220, 38, 38, 0.4);
        }

        @keyframes pulse-logo {
            0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(220, 38, 38, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(220, 38, 38, 0.6); }
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 50%, var(--accent-yellow) 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 Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Section Styling */
        .section {
            background: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(10, 14, 23, 0.95) 100%);
            border: 1px solid rgba(220, 38, 38, 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-red), var(--accent-orange), var(--accent-yellow));
        }

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

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

        /* Boot Sector Simulation */
        .simulation-container {
            background: #050508;
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            min-height: 520px;
            border: 2px solid rgba(220, 38, 38, 0.3);
        }

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

        /* Disk Visualization */
        .disk-container {
            display: flex;
            justify-content: center;
            margin: 20px 0;
            position: relative;
        }

        .disk {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(145deg, #1a1a2e, #0a0a15);
            border: 3px solid #2d2d4a;
            position: relative;
            box-shadow: 
                0 0 30px rgba(0, 0, 0, 0.5),
                inset 0 0 50px rgba(0, 0, 0, 0.3);
        }

        /* Disk Platters */
        .disk::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 60%;
            border-radius: 50%;
            border: 2px solid #3a3a5a;
            animation: disk-spin 4s linear infinite;
        }

        .disk::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 15%;
            height: 15%;
            border-radius: 50%;
            background: #2d2d4a;
            border: 2px solid #4a4a6a;
        }

        @keyframes disk-spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Boot Sector Highlight */
        .boot-sector {
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            height: 40px;
            background: linear-gradient(90deg, var(--mbr-blue), rgba(29, 78, 216, 0.5));
            border-radius: 40px 40px 0 0;
            border: 2px solid var(--mbr-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
            color: white;
            letter-spacing: 1px;
            transition: all 0.5s ease;
        }

        .boot-sector.infected {
            background: linear-gradient(90deg, var(--virus-red), rgba(185, 28, 28, 0.5));
            border-color: var(--virus-red);
            animation: infected-pulse 1s infinite;
        }

        @keyframes infected-pulse {
            0%, 100% { box-shadow: 0 0 10px var(--virus-red); }
            50% { box-shadow: 0 0 25px var(--virus-red); }
        }

        /* Boot Process Timeline */
        .boot-timeline {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding: 0 20px;
            position: relative;
        }

        .boot-timeline::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 60px;
            right: 60px;
            height: 3px;
            background: #2d2d4a;
        }

        .boot-stage {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1;
            width: 100px;
        }

        .stage-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            background: #1a1a2e;
            border: 2px solid #2d2d4a;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .stage-icon.active {
            border-color: var(--accent-green);
            box-shadow: 0 0 15px var(--accent-green);
        }

        .stage-icon.infected {
            border-color: var(--accent-red);
            box-shadow: 0 0 15px var(--accent-red);
            animation: stage-infected 0.5s ease;
        }

        @keyframes stage-infected {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

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

        /* Code Injection Animation */
        .code-injection {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(185, 28, 28, 0.2);
            border: 1px solid var(--accent-red);
            border-radius: 8px;
            padding: 10px 15px;
            font-family: monospace;
            font-size: 0.7rem;
            color: var(--accent-red);
            opacity: 0;
            animation: code-appear 8s forwards;
            animation-delay: 3s;
        }

        @keyframes code-appear {
            0%, 30% { opacity: 0; transform: translateY(-10px); }
            40%, 100% { opacity: 1; transform: translateY(0); }
        }

        .code-injection span {
            display: block;
            animation: code-typing 0.5s forwards;
            opacity: 0;
        }

        .code-injection span:nth-child(1) { animation-delay: 3.5s; }
        .code-injection span:nth-child(2) { animation-delay: 4s; }
        .code-injection span:nth-child(3) { animation-delay: 4.5s; }

        @keyframes code-typing {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Status Display */
        .boot-status {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .status-box {
            padding: 10px 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            text-align: center;
        }

        .status-label {
            font-size: 0.65rem;
            color: var(--text-muted);
            margin-bottom: 5px;
        }

        .status-value {
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .status-value.clean { color: var(--accent-green); }
        .status-value.infected { color: var(--accent-red); animation: status-blink 1s infinite; }

        @keyframes status-blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Warning Banner */
        .warning-banner {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
            padding: 12px;
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
            opacity: 0;
            animation: banner-appear 1s forwards;
            animation-delay: 6s;
        }

        @keyframes banner-appear {
            0% { opacity: 0; transform: translateY(100%); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Statistics Grid */
        .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(220, 38, 38, 0.1), rgba(249, 115, 22, 0.05));
            border: 1px solid rgba(220, 38, 38, 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(220, 38, 38, 0.2);
        }

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

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

        /* External Links */
        .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);
        }

        /* Key Terms Section */
        .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(220, 38, 38, 0.3);
            border-radius: 15px;
            padding: 30px;
        }

        .term-box h3 {
            color: var(--accent-orange);
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

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

        /* Scenario Section */
        .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(220, 38, 38, 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.infected::before {
            background: var(--accent-red);
            animation: pulse-danger 1s infinite;
        }

        .timeline-item.recovery::before {
            background: var(--accent-cyan);
        }

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

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

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

        .timeline-item.recovery h4 {
            color: var(--accent-cyan);
        }

        /* Step Guide */
        .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(220, 38, 38, 0.2);
            counter-increment: step-counter;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--accent-orange);
            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-red), var(--accent-orange));
            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-orange);
            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-green);
        }

        /* Mistakes &amp; Best Practices */
        .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(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
            border: 1px solid rgba(220, 38, 38, 0.3);
        }

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

        .mistakes-box h3, .practices-box h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .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;
        }

        /* Red vs Blue Team */
        .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(220, 38, 38, 0.15), rgba(220, 38, 38, 0.05));
            border: 2px solid rgba(220, 38, 38, 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;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .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 */
        .threat-hunter-box {
            background: linear-gradient(145deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
            border: 2px solid rgba(124, 58, 237, 0.4);
            border-radius: 15px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .threat-hunter-box::before {
            content: '🔍';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            opacity: 0.2;
        }

        .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 */
        .cta-section {
            text-align: center;
            padding: 50px;
            background: linear-gradient(145deg, rgba(220, 38, 38, 0.1), rgba(249, 115, 22, 0.1));
            border: 2px solid rgba(220, 38, 38, 0.3);
            border-radius: 20px;
        }

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

        .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-red), var(--accent-orange));
            color: white;
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 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 */
        footer {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 60px;
        }

        /* Related Posts Links */
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

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

        .related-link:hover {
            background: rgba(220, 38, 38, 0.2);
            border-color: var(--accent-orange);
        }

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

            .section {
                padding: 25px;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .simulation-container {
                min-height: 450px;
            }

            .boot-timeline {
                flex-wrap: wrap;
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }/* End custom CSS */