/* Albüm Detay Sayfası */
.album-detail-wrapper {
    width: 100%;
    background: #f8f9fa;
    min-height: 100vh;
}

.album-hero {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px 60px;
    color: #fff;
}

.album-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.album-hero-cover {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.album-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-no-cover-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #fff;
}

.album-hero-info {
    flex: 1;
}

.album-type {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.album-hero-info h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0 15px;
}

.album-artist-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.album-artist-info a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.album-artist-info a:hover {
    text-decoration: underline;
}

.album-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Platform Butonları */
.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.platform-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.platform-btn.spotify {
    background: #1DB954;
}

.platform-btn.apple {
    background: #000;
}

.platform-btn.youtube {
    background: #FF0000;
}

.platform-btn.deezer {
    background: #FF6600;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Şarkı Listesi */
.tracklist {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.tracklist h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.track-item:hover {
    background: #f8f9fa;
}

.track-number {
    width: 30px;
    text-align: center;
    color: #999;
    font-weight: 600;
}

.track-info {
    flex: 1;
}

.track-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.track-artist {
    font-size: 14px;
    color: #666;
}

.track-actions {
    display: flex;
    gap: 10px;
}

.track-btn {
    width: auto;
    min-width: 35px;
    height: 35px;
    padding: 0 15px;
    border-radius: 20px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.track-btn i {
    font-size: 16px;
}

.track-btn span {
    display: none;
}

.track-btn.youtube-btn {
    background: #FF0000;
    color: #fff;
}

.track-btn.youtube-btn:hover {
    background: #cc0000;
}

.track-btn.youtube-btn span {
    display: inline;
}

.track-btn.video-btn {
    background: #000;
    color: #fff;
}

.track-btn.video-btn:hover {
    background: #333;
}

.track-btn.video-btn span {
    display: inline;
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.track-duration {
    color: #999;
    font-size: 14px;
}

/* Açıklama */
.album-description {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.album-description h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.album-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .album-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .album-hero-cover {
        width: 200px;
        height: 200px;
    }
    
    .album-hero-info h1 {
        font-size: 32px;
    }
    
    .platform-buttons {
        flex-direction: column;
    }
    
    .platform-btn {
        justify-content: center;
    }
    
    .track-item {
        flex-wrap: wrap;
    }
    
    .track-actions {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }
}
