/* --- THE VOID (Background) --- */
body {
    background-color: #000000;
    background-image: url('starsky.gif');
    color: #000000;
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 20px;
}

/* --- MAIN LAYOUT (3-Column Grid) --- */
#wrapper {
    display: grid;
    grid-template-columns: 200px 1fr 250px; /* Left Sidebar, Main, Right Sidebar */
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- THE WIN95 WINDOWS (Containers) --- */
.window {
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    padding: 10px;
}

.window-content {
    background-color: #ffffff;
    border: 2px inset #ffffff;
    padding: 10px;
    height: calc(100% - 24px); /* Adjusts for padding */
}

/* --- TYPOGRAPHY & HEADINGS --- */
h2, h3 {
    font-family: "MS Sans Serif", Arial, sans-serif;
    color: #000080;
    background: #c0c0c0;
    margin: -10px -10px 10px -10px;
    padding: 2px 5px;
    border-bottom: 2px solid #808080;
    font-size: 1rem;
}

h1.title {
    font-size: 2.5em;
    color: #ffff00;
    text-shadow: 2px 2px #ff0000;
    text-align: center;
    margin: 10px 0;
    font-family: "Comic Sans MS", cursive, sans-serif; /* A necessary evil for the aesthetic */
}

/* --- NAVIGATION & LISTS --- */
ul.retro-list {
    list-style-type: square;
    padding-left: 20px;
    margin: 0;
}

ul.retro-list li {
    margin-bottom: 5px;
}

ul.retro-list a {
    color: #0000ee;
    text-decoration: underline;
}

ul.retro-list a:visited {
    color: #551a8b;
}

/* --- WIDGETS & MEDIA --- */
.widget {
    border: 1px dashed #808080;
    padding: 5px;
    margin-bottom: 10px;
    background: #e8e8e8;
    text-align: center;
}

.gif-cluster img {
    max-width: 100%;
    margin: 5px 0;
}

button.retro-btn {
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    cursor: pointer;
    font-family: "MS Sans Serif", Arial, sans-serif;
    padding: 5px 10px;
    font-weight: bold;
}
button.retro-btn:active {
    border: 2px inset #ffffff;
}
