        /* 1. RESET & BODY */
        body, html {
            margin: 0;
            padding: 0;
            background-color: #6F88A3;
            background-image: url("https://www.transparenttextures.com/patterns/nice-snow.png");
            font-family: 'Courier New', Courier, monospace;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 100vh;
        }

        /* 2. BRANDING HEADER */
        .site-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 40px 0;
        }

        .header-icon {
            width: 60px;
            height: 60px;
            image-rendering: pixelated;
            filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.1));
        }

        .header-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-style: italic;
            color: #A22633;
            margin: 0;
			filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.1))
        }

        /* 3. WORKSPACE GRID */
        .workspace {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 25px;
            width: 90vw;
            max-width: 1100px;
            margin-bottom: 80px;
            align-items: start;
        }

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .window {
            background: #DFB593;
            border: 3px solid #1F314D;
            box-shadow: 8px 8px 0px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }

        .window-header {
            background: #A22633;
            color: #DFB593;
            padding: 8px 12px;
            font-size: 0.8rem;
			font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .window-content {
            padding: 20px;
        }

		.window-content a:link{
			color:#1F314D;
		}

		.window-content a:hover{
			color: #A22633;
		}

        .directory-list, .todo-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .directory-list li, .todo-list li {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .directory-list a {
            text-decoration: none;
            color: #333;
            padding: 2px 4px;
        }

        .directory-list a:hover {
            background: #1F314D;
            color: #fffefc;
        }

        .editor-text p {
            line-height: 1.6;
            margin-top: 0;
        }

        /* 6. STATUS BAR */
        .status-bar {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #1F314D;
            color: #fffefc;
            padding: 6px 20px;
            font-size: 0.7rem;
            display: flex;
            justify-content: space-between;
            box-sizing: border-box;
        }

        @media (max-width: 800px) {
            .workspace { grid-template-columns: 1fr; }
            .header-title { font-size: 2.5rem; }
        }