  .album-list {
        display: flex;
        flex-wrap: wrap;
        gap: 88px;
    }

    .album-card {
        width: 250px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
        transition: transform 0.3s;
    }

    .album-card:hover {
        transform: scale(1.05);
    }

    .album-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .album-card h3 {
        margin: 10px;
        font-size: 18px;
    }

    a {
        text-decoration: none;
        color: inherit;
    }