/* --- GLOBAL STYLES --- */
body {
    font-family: Frutiger, sans-serif;
    background: linear-gradient(135deg, #ff69b4 0%, #ffffff 70%, #a2d2ff 100%);
    background-attachment: fixed;
    color: #542C53;
    text-align: center;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    min-height: 100vh;
    position: relative;
}

/* --- THE WINDOW DESIGN (Shared) --- */
.window-base {
    background-color: rgba(192, 192, 192, 0.7); /* Greyish for Win95 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* This creates the Win95 3D border look */
    border: 3px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
    padding: 15px;
    text-align: left;
}

/* SIDE WINDOW STYLE */
.window-block {
    @extend .window-base; /* Note: If your editor doesn't support @extend, just copy the base styles below */
    position: absolute;
    right: 20px;
    top: 50px;
    max-width: 400px;
    z-index: 100;
}

/* MAIN WINDOW STYLE (Scrollable) */
.main-window {
    background-color: rgba(192, 192, 192, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 3px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;       /* Limits height so it doesn't go off screen */
    overflow-y: auto;        /* This makes it scrollable */
    text-align: left;
    border-radius: 0px;
}

/* --- TITLE BAR STYLE --- */
.title-bar {
    background: rgba(0, 0, 128, 0.9); 
    padding: 5px 10px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-left: 2px solid #808080;
    border-top: 2px solid #808080;
    margin-bottom: 15px;
    font-size: 0.9em;
    font-weight: bold;
    color: white;
    font-family: "Tahoma", sans-serif;
    display: flex;
    justify-content: space-between;
}

/* --- CONTENT STYLES --- */
.window-content h1, .window-content h2 {
    color: #000;
    text-align: center;
}

.window-content h3 {
    margin: 5px 0;
    color: #000;
}

.window-content p {
    line-height: 1.5;
    color: #000;
}

ul.main-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

ul.main-list li {
    display: inline-block;
    margin: 5px;
    background: rgba(255,255,255,0.3);
    padding: 2px 8px;
    border: 1px solid #808080;
}

.album-art {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 20px auto;
    border: 3px solid #808080;
    border-color: #ffffff #808080 #808080 #ffffff;
}

iframe {
    width: 100%;
    height: 350px;
    border: 3px solid #808080;
    border-color: #ffffff #808080 #808080 #ffffff;
    margin: 20px auto;
    display: block;
}

iframe {
    width: 100%;
    height: 350px;
    border: 3px solid #808080;
    border-color: #ffffff #808080 #808080 #ffffff;
    margin: 20px auto;
    display: block;
}

a {
    text-decoration: none;
    color: #0000EE; /* Classic Link Blue */
    font-weight: bold;
}

a:hover {
    color: #ff0000; /* Classic Link Red */
    text-decoration: underline;
}

@media (max-width: 768px) {
    .window-block {
        position: static;
        margin: 20px auto;
        right: auto;
        top: auto;
    }
}
