/* Sanatçı Custom Styles */

/* Sanatçı profil resmi */
.sanatci-profil {
    width: 200px;
    height: 200px;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}

/* Albüm kartları */
.album-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.album-image {
    position: relative;
    overflow: hidden;
}

.album-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.album-image picture {
    display: block;
    width: 100%;
}

/* Platform ikonları - resmin üstünde */
.album-platforms {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.platform-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.5);
}

.platform-link:hover {
    transform: scale(1.1);
    color: white;
}

.platform-link.spotify {
    background: rgba(30, 215, 96, 0.9);
}

.platform-link.spotify:hover {
    background: #1DB954;
}

.platform-link.apple {
    background: rgba(0, 0, 0, 0.9);
}

.platform-link.apple:hover {
    background: #000;
}

.platform-link.amazon {
    background: rgba(255, 153, 0, 0.9);
}

.platform-link.amazon:hover {
    background: #FF9900;
}

.platform-link.youtube {
    background: rgba(255, 0, 0, 0.9);
}

.platform-link.youtube:hover {
    background: #FF0000;
}

/* Albüm içerik */
.album-content {
    padding: 20px;
}

.album-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.album-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.album-title a:hover {
    color: #007bff;
}

.album-meta {
    color: #666;
    font-size: 0.9rem;
}

.album-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.album-actions .btn {
    padding: 6px 12px;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.album-actions .btn i {
    margin-right: 4px;
}

/* Default album cover */
.default-album-cover {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: #ccc;
}

/* Hover efekti */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card {
    transition: all 0.3s ease;
}
