body {
    background-color: #000; /* Black fallback */
    color: #00FF00; /* Lime Green */
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.draggable {
    position: absolute;
    top: 100px;
    left: 150px;
    z-index: 1;
    width: 800px;
    background-color: #000033;
    border: 5px ridge #00FFFF;
    box-shadow: 10px 10px 0px #000;
}

.title-bar {
    position: relative;
    background-color: #000080;
    color: #FFFFFF;
    padding: 5px;
    cursor: move;
    font-weight: bold;
    user-select: none;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.window-content {
    padding: 20px;
}

header h1 {
    color: #FFFF00; /* Yellow */
    text-align: center;
    font-size: 36px;
    text-shadow: 3px 3px 0px #00FFFF; /* Cyan */
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000033;
    border-bottom: 2px solid #00FFFF;
    text-align: center;
    padding: 10px;
    z-index: 100;
}

nav a {
    color: #FFFFFF;
    background-color: #002020; /* Very Dark Teal */
    padding: 5px 10px;
    margin: 0 10px;
    border: 2px outset #FFFFFF;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    background-color: #003030;
    color: #000000;
}

section {
    background-color: #000044;
    border: 2px dashed #00FF00; /* Lime Green */
    padding: 15px;
    margin-bottom: 20px;
}

h2 {
    color: #00FFFF; /* Cyan */
    font-size: 24px;
    border-bottom: 3px double #FFFF00; /* Yellow */
    display: flex;
    align-items: center;
}

h2 img {
    margin-right: 10px;
}

ul {
    list-style-image: url('https://gifcities.org/images/web/pages/3/2/32d8404284586940882747376c6691c2.gif'); /* Spinning star bullet */
}

a {
    color: #FFFF00; /* Yellow */
}

a:hover {
    color: #00FFFF; /* Cyan */
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
}

footer img {
    margin-top: 10px;
}

#dvd-logo {
    position: fixed;
    top: 50px;
    left: 50px;
    width: 150px;
    height: auto;
    z-index: -1;
}

#projects section {
    background-color: #000020;
    border: 1px solid #00FFFF;
    padding: 10px;
    margin-bottom: 15px;
}

#projects h4 {
    color: #FFFF00;
    margin-top: 0;
}

#terminal-window {
    top: 50px;
    left: 1000px;
    width: 400px;
    height: 250px;
    background-color: #000;
    border: 2px solid #00FF00;
}

#terminal-window .title-bar {
    background-color: #00FF00;
    color: #000;
}

#terminal-output {
    padding: 10px;
    color: #00FF00;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#terminal-output::after {
    content: '█';
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #00FF00;
    }
}

#projects-window {
    width: 1000px;
    top: 150px;
    left: 200px;
}

#projects-window .window-content {
    max-height: 500px; /* Adjust as needed */
    overflow-y: auto;
}

#system-monitor {
    top: 400px;
    left: 1000px;
    width: 420px;
    height: 220px;
    background-color: #000020;
    border: 2px solid #00BFFF;
}

#system-monitor .title-bar {
    background-color: #00BFFF;
    color: #000;
}

#system-monitor .window-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}

audio::-webkit-media-slider-runnable-track {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

audio::-webkit-media-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#system-monitor label {
    display: block;
    margin-bottom: 5px;
    color: #00BFFF;
}

#system-monitor canvas {
    background-color: #000;
    border: 1px solid #00BFFF;
    margin-bottom: 10px;
}

#audio-window {
    top: 600px;
    left: 50px;
    width: 350px;
    height: auto;
    background-color: #000033;
    border: 2px solid #00FFFF;
}

#audio-window .title-bar {
    background-color: #008080;
}

#player-container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#player-controls {
    display: flex;
    align-items: center;
    width: 100%;
}

#play-pause-btn {
    background-color: #002020;
    border: 2px outset #FFFFFF;
    color: #FFFFFF;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    width: 70px;
}

#seek-bar {
    flex-grow: 1;
    height: 10px;
    background-color: #002020;
    border: 1px solid #00FFFF;
    cursor: pointer;
}

#seek-bar-fill {
    height: 100%;
    width: 0;
    background-color: #00FFFF;
}

