.elementor-14130 .elementor-element.elementor-element-c88b09c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ea3979c */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #111827;
            --accent-cyan: #00d4ff;
            --accent-green: #00ff88;
            --accent-red: #ff4757;
            --accent-orange: #ff9f43;
            --accent-purple: #a855f7;
            --accent-yellow: #fbbf24;
            --text-light: #e5e7eb;
            --text-muted: #9ca3af;
        }

        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;
        }
        
        section {
            border-radius: 20px;
            border: 1px solid rgba(0, 245, 255, 0.3);
        }
        
        /* 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(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(255, 71, 87, 0.1) 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-purple);
            border-radius: 50%;
            opacity: 0.4;
            animation: float-particle 25s 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: 21s; }
        .particle:nth-child(6) { left: 55%; animation-delay: 5s; animation-duration: 19s; }
        .particle:nth-child(7) { left: 65%; animation-delay: 2s; animation-duration: 23s; }
        .particle:nth-child(8) { left: 75%; animation-delay: 4s; animation-duration: 20s; }
        .particle:nth-child(9) { left: 85%; animation-delay: 1s; animation-duration: 22s; }
        .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-purple) 0%, var(--accent-red) 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(168, 85, 247, 0.4);
        }

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

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-red) 50%, var(--accent-orange) 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(168, 85, 247, 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-purple), var(--accent-red), var(--accent-orange));
        }

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

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

        /* Backdoor Simulation */
        .simulation-container {
            background: #0d0d1a;
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            border: 2px solid rgba(168, 85, 247, 0.3);
        }

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

        .building-container {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            height: 380px;
            position: relative;
        }

        /* Building */
        .building {
            width: 300px;
            height: 280px;
            background: linear-gradient(180deg, #1a1a3a 0%, #0f0f2a 100%);
            border: 2px solid #2a2a5a;
            border-radius: 5px 5px 0 0;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .building::before {
            content: 'SECURE SYSTEM';
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--accent-green);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
        }

        /* Windows Grid */
        .windows-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 30px 20px;
        }

        .window {
            width: 60px;
            height: 50px;
            background: linear-gradient(180deg, #2a2a5a, #1a1a3a);
            border: 1px solid #3a3a6a;
            border-radius: 3px;
            position: relative;
        }

        .window::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #3a3a6a;
        }

        .window.lit {
            background: linear-gradient(180deg, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.1));
            animation: window-flicker 4s infinite;
        }

        @keyframes window-flicker {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Front Door */
        .front-door-container {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }

        .front-door {
            width: 50px;
            height: 80px;
            background: linear-gradient(180deg, #3a3a6a, #2a2a5a);
            border: 2px solid var(--accent-green);
            border-radius: 3px 3px 0 0;
            position: relative;
            margin: 0 auto;
        }

        .front-door::before {
            content: '';
            position: absolute;
            right: 8px;
            top: 50%;
            width: 6px;
            height: 6px;
            background: var(--accent-green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-green);
        }

        .door-label {
            font-size: 0.65rem;
            color: var(--accent-green);
            margin-top: 5px;
            font-weight: 600;
        }

        /* Backdoor (Hidden) */
        .backdoor-container {
            position: absolute;
            right: 10px;
            bottom: 0;
            text-align: center;
        }

        .backdoor {
            width: 40px;
            height: 60px;
            background: linear-gradient(180deg, #2a2a4a, #1a1a3a);
            border: 1px dashed rgba(255, 71, 87, 0.5);
            border-radius: 2px 2px 0 0;
            position: relative;
            animation: backdoor-reveal 8s forwards;
        }

        @keyframes backdoor-reveal {
            0%, 60% { 
                border-color: transparent;
                background: linear-gradient(180deg, #1a1a3a, #1a1a3a);
            }
            70%, 100% {
                border-color: rgba(255, 71, 87, 0.8);
                background: linear-gradient(180deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1));
            }
        }

        .backdoor::before {
            content: '';
            position: absolute;
            right: 5px;
            top: 50%;
            width: 5px;
            height: 5px;
            background: var(--accent-red);
            border-radius: 50%;
            animation: backdoor-indicator 8s forwards;
        }

        @keyframes backdoor-indicator {
            0%, 60% { opacity: 0; box-shadow: none; }
            70%, 100% { opacity: 1; box-shadow: 0 0 10px var(--accent-red); }
        }

        .backdoor-label {
            font-size: 0.6rem;
            color: var(--accent-red);
            margin-top: 5px;
            font-weight: 600;
            opacity: 0;
            animation: label-appear 8s forwards;
        }

        @keyframes label-appear {
            0%, 60% { opacity: 0; }
            70%, 100% { opacity: 1; }
        }

        /* Attacker Figure */
        .attacker {
            position: absolute;
            right: -60px;
            bottom: 20px;
            width: 30px;
            height: 50px;
            animation: attacker-move 12s forwards;
            animation-delay: 8s;
            opacity: 0;
        }

        @keyframes attacker-move {
            0% { 
                opacity: 0;
                right: -60px;
            }
            10% {
                opacity: 1;
            }
            30% {
                right: 60px;
                opacity: 1;
            }
            50% {
                right: 60px;
                opacity: 1;
            }
            60% {
                right: 60px;
                opacity: 0.5;
            }
            100% {
                right: 60px;
                opacity: 0;
            }
        }

        .attacker-body {
            width: 20px;
            height: 25px;
            background: var(--accent-red);
            border-radius: 5px 5px 0 0;
            margin: 0 auto;
            position: relative;
        }

        .attacker-head {
            width: 15px;
            height: 15px;
            background: var(--accent-red);
            border-radius: 50%;
            margin: 0 auto 2px;
        }

        .attacker-mask {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8px;
        }

        /* Data Exfiltration */
        .data-stream {
            position: absolute;
            right: 50px;
            bottom: 100px;
            opacity: 0;
            animation: data-exfil 12s forwards;
            animation-delay: 10s;
        }

        @keyframes data-exfil {
            0%, 10% { opacity: 0; }
            20%, 80% { opacity: 1; }
            90%, 100% { opacity: 0; }
        }

        .data-packet {
            display: flex;
            align-items: center;
            margin: 3px 0;
            animation: packet-flow 2s infinite;
        }

        .data-packet:nth-child(2) { animation-delay: 0.3s; }
        .data-packet:nth-child(3) { animation-delay: 0.6s; }

        @keyframes packet-flow {
            0% { transform: translateX(0); opacity: 1; }
            100% { transform: translateX(80px); opacity: 0; }
        }

        .packet-icon {
            width: 12px;
            height: 12px;
            background: var(--accent-orange);
            border-radius: 2px;
            margin-right: 5px;
        }

        .packet-text {
            font-size: 0.6rem;
            color: var(--accent-orange);
            font-family: monospace;
        }

        /* Security Alert */
        .security-alert {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 71, 87, 0.9);
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
            opacity: 0;
            animation: alert-appear 1s forwards;
            animation-delay: 18s;
        }

        @keyframes alert-appear {
            0% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
            100% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        /* Ground */
        .ground {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 20px;
            background: linear-gradient(180deg, #1a1a2a, #0f0f1f);
        }

        /* Legend */
        .simulation-legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .legend-dot.green { background: var(--accent-green); }
        .legend-dot.red { background: var(--accent-red); }
        .legend-dot.orange { background: var(--accent-orange); }

        /* 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(168, 85, 247, 0.1), rgba(255, 71, 87, 0.05));
            border: 1px solid rgba(168, 85, 247, 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(168, 85, 247, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-purple);
            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(168, 85, 247, 0.3);
            border-radius: 15px;
            padding: 30px;
        }

        .term-box h3 {
            color: var(--accent-purple);
            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(0, 255, 136, 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.breach::before {
            background: var(--accent-red);
            animation: pulse-danger 1s infinite;
        }

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

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

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

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

        .timeline-item.response 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(168, 85, 247, 0.2);
            counter-increment: step-counter;
            transition: all 0.3s ease;
        }

        .step-item:hover {
            border-color: var(--accent-purple);
            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-purple), var(--accent-red));
            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-purple);
            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(255, 71, 87, 0.1), rgba(255, 71, 87, 0.05));
            border: 1px solid rgba(255, 71, 87, 0.3);
        }

        .practices-box {
            background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
            border: 1px solid rgba(0, 255, 136, 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(255, 71, 87, 0.15), rgba(255, 71, 87, 0.05));
            border: 2px solid rgba(255, 71, 87, 0.4);
        }

        .blue-team-box {
            background: linear-gradient(145deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
            border: 2px solid rgba(0, 212, 255, 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(168, 85, 247, 0.15), rgba(168, 85, 247, 0.05));
            border: 2px solid rgba(168, 85, 247, 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(168, 85, 247, 0.1), rgba(255, 71, 87, 0.1));
            border: 2px solid rgba(168, 85, 247, 0.3);
            border-radius: 20px;
        }

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

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

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 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(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            padding: 8px 15px;
            border-radius: 20px;
            color: var(--accent-purple);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .related-link:hover {
            background: rgba(168, 85, 247, 0.2);
            border-color: var(--accent-purple);
        }

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

            .section {
                padding: 25px;
            }

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

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

            .building {
                width: 220px;
                height: 200px;
            }

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