        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(45deg, #000000, #000000, #000000);
            color: #ffffff;
            overflow-x: hidden;
        }



        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        @keyframes scroll {
            0% { transform: translateY(100%); }
            100% { transform: translateY(-100%); }
        }

        .bsod-header {
            background: #000000;
            border-bottom: 2px solid #ffffff;
            padding: 20px;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .bsod-title {
            font-size: 2rem;
            font-weight: bold;
            text-shadow: 2px 2px 0px #000000;
            margin-bottom: 10px;
        }

        .error-code {
            font-size: 0.9rem;
            color:red;
            opacity: 0.8;
            animation: fadeInOut 2s infinite;
        }

        .main-container {
            display: flex;
            min-height: calc(100vh - 140px);
            gap: 20px;
            padding: 20px;
        }

        .sidebar {
            flex: 0 0 250px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #ffffff;
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .sidebar h3 {
            border-bottom: 1px solid #ffffff;
            padding-bottom: 10px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .directory-tree {
            list-style: none;
            font-size: 0.9rem;
        }

        .directory-tree li {
            margin: 8px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 5px;
            border-radius: 3px;
        }

        .directory-tree li:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .directory-tree li:before {
            content: "[+] ";
            color: #ffff00;
        }

        .directory-tree li.file:before {
            content: "[-] ";
            color: #00ff00;
        }

        .content-area {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .navigation-tabs {
            display: flex;
            background: rgba(0, 0, 0, 0.9);
            border: 1px solid #ffffff;
            border-radius: 5px 5px 0 0;
        }

        .tab {
            flex: 1;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-right: 1px solid #ffffff;
            background: rgba(0, 0, 0, 0.5);
        }

        .tab:last-child {
            border-right: none;
        }

        .tab:hover, .tab.active {
            background: rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .content-panel {
            display: none;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid #ffffff;
            padding: 30px;
            border-radius: 0 0 5px 5px;
            min-height: 400px;
        }

        .content-panel.active {
            display: block;
        }

        .memory-dump {
            background: rgba(0, 0, 0, 0.5);
            border: 1px dashed #ffffff;
            padding: 20px;
            margin: 20px 0;
            font-family: 'Courier New', monospace;
            overflow-x: auto;
            animation: fadeInOut 4s infinite;
        }

        .process-list {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #ffffff;
            padding: 20px;
            margin: 20px 0;
            max-height: 300px;
            overflow-y: auto;
        }

        .process-item {
            display: flex;
            justify-content: space-between;
            padding: 8px;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .process-item:hover {
            background: rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }

        .gallery-item {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid #ffffff;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            background: rgba(0, 0, 0, 0.2);
            transform: scale(1.05);
        }

        .ascii-art {
            font-family: 'Courier New', monospace;
            font-size: 0.7rem;
            line-height: 1;
            white-space: pre;
            text-align: center;
            margin: 15px 0;
        }

        .collapsible {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #ffffff;
            margin: 15px 0;
            border-radius: 5px;
        }

        .collapsible-header {
            padding: 15px;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.8);
            transition: all 0.3s ease;
        }

        .collapsible-header:hover {
            background: rgba(0, 0, 0, 0.2);
        }

        .collapsible-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 15px;
        }

        .collapsible.open .collapsible-content {
            max-height: 500px;
            padding: 15px;
        }

        .scrolling-text {
            height: 100px;
            overflow: hidden;
            border: 1px solid #ffffff;
            background: rgba(0, 0, 0, 0.5);
            position: relative;
            margin: 20px 0;
        }

        .scrolling-content {
            position: absolute;
            width: 100%;
            animation: scroll 20s linear infinite;
            padding: 20px;
        }

        .right-sidebar {
            flex: 0 0 200px;
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #ffffff;
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .status-panel {
            margin-bottom: 20px;
        }

        .status-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 8px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 3px;
        }

        .footer {
            background: #000000;
            border-top: 2px solid #ffffff;
            padding: 30px 20px;
            text-align: center;
            margin-top: 40px;
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.95);
            border: 2px solid #ffffff;
            padding: 30px;
            border-radius: 10px;
            display: none;
            z-index: 1000;
            max-width: 500px;
            animation: glitch 0.5s ease;
        }

        .popup.show {
            display: block;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            z-index: 999;
        }

        .overlay.show {
            display: block;
        }

        .btn {
            background: rgba(0, 0, 100, 0.8);
            color: #ffffff;
            border: 1px solid #ffffff;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 5px;
            border-radius: 3px;
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
            }
            
            .sidebar, .right-sidebar {
                flex: none;
                position: static;
            }
            
            .navigation-tabs {
                flex-direction: column;
            }
            
            .bsod-title {
                font-size: 1.5rem;
            }
        }
