/* Albümler Liste Sayfası */
.albums-wrapper {
    width: 100%;
    background: #fff;
    min-height: 100vh;
}

.albums-container {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.album-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-decoration: none;
}

.album-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-cover {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: #f0f0f0;
    overflow: hidden;
}

.album-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-no-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 60px;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay i {
    font-size: 60px;
    color: #fff;
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.album-artist {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.album-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.album-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Müzik Platformları */
.music-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none;
}

.platform-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.platform-link.spotify {
    background: #1DB954;
}

.platform-link.apple {
    background: #FA243C;
}

.platform-link.youtube {
    background: #FF0000;
}

.platform-link.deezer {
    background: #FF6600;
}

.album-description-text {
    margin: 10px 0 15px 0;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .albums-header-content h1 {
        font-size: 32px;
    }
    
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .album-info {
        padding: 15px;
    }
    
    .platform-link {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
