body {
    font-family: 'Jost', Arial, sans-serif;
    background: #f7f7fa;
    margin: 0;
    padding: 0;
    text-align: center;
}
h1 {
    margin-top: 32px;
    color: #333;
}
.album-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 48px 0;
}
.album-folder {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 16px 24px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    min-width: 120px;
}
.album-folder:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    background: #f0e6ff;
}
.folder-icon {
    width: 64px;
    height: 48px;
    margin: 0 auto 12px auto;
    background: linear-gradient(120deg, #b993ff 60%, #f7c1ff 100%);
    border-radius: 8px 8px 16px 16px;
    box-shadow: 0 2px 8px rgba(100,0,200,0.10);
}
.album-folder.active {
    border: 2px solid #a259ff;
    background: #f7eaff;
}
.album-folder span {
    word-break: break-all;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    min-width: 320px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    position: relative;
}
.close {
    position: absolute;
    top: 16px; right: 24px;
    font-size: 32px;
    color: #a259ff;
    cursor: pointer;
}
#slideshow-images {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
#slideshow-images img {
    max-height: 320px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: opacity 0.5s;
}
.music-select {
    margin-top: 16px;
}

/* Mobil uyumluluk */
@media (max-width: 700px) {
    .album-list {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin: 24px 0;
    }
    .album-folder {
        min-width: 0;
        width: 92vw;
        max-width: 98vw;
        padding: 18px 6vw 12px 6vw;
        font-size: 1.1em;
    }
    .folder-icon {
        width: 48px;
        height: 36px;
    }
    .modal-content {
        padding: 10px;
        min-width: 0;
        max-width: 99vw;
        max-height: 98vh;
    }
    #slideshow-images img {
        max-width: 95vw;
        max-height: 60vh;
    }
}
