/* === Global Page Styling === */
body {
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 0;
    color: #212529;
    line-height: 1.6;
    background: url("logo.jpg") no-repeat center center fixed;
    background-size: cover;
}

/* === Main Content Wrapper === */
.content-wrapper {
    background-color: rgba(255, 255, 255, 0.88);
    padding: 2rem;
    margin: 2rem;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* === Headings and Links === */
h1, h2, h3 {
    color: #343a40;
    margin-top: 0;
}
a {
    color: #0d6efd;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

/* === Album Grid Layout === */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    justify-items: st
