body {
    background-color: #fdfdfd;
    color: #333;
    font-family: sans-serif;
    margin: 0;
    padding: 40px;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
a {
    text-decoration: none;
    font-size: 32px;
    opacity: 0.7;
    transition: opacity 0.1s ease;
}
a:hover {
    opacity: 0.7;
}
.track-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.track {
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s ease;
    font-size: 14px;
    width: max-content;
}
.track:hover {
    opacity: 0.7;
}
.track.active {
    opacity: 1;
}
.logo img {
    opacity: 0.5;
    transition: opacity 0.2s ease;
    display: block;
}
.logo img:hover {
    opacity: 1;
}
#audio-player {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    outline: none;
}
#audio-player.show {
    opacity: 1;
    pointer-events: auto;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}
.gallery img, img.no-lightbox {
    max-width: 500px; 
    height: auto;
    opacity: 0.9; 
    border-radius: 0px; 
    cursor: pointer;
    transition: transform 0.6s ease-out, opacity 0.3s ease; 
}
.gallery img:hover, img.no-lightbox:hover {
    opacity: 1; 
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 253, 253, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease; 
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}