/* Artist Profile Page Styles - ULTRA MODERN DESIGN */

/* Hero Section */
.artist-hero {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.artist-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.artist-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 50%, rgba(245, 158, 11, 0.05) 100%);
}

/* Artist Profile Header */
.artist-profile-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-avatar {
    position: relative;
    flex-shrink: 0;
}

.artist-avatar img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 199, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 199, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.artist-avatar:hover img {
    transform: scale(1.05) rotate(2deg);
    border-color: rgba(255, 199, 0, 0.6);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(255, 199, 0, 0.2);
}

.rank-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc700 0%, #ffd700 100%);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 199, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Artist Info */
.artist-info {
    flex: 1;
}

.artist-name {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffc700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    animation: slideInLeft 1s ease-out;
}

.artist-bio {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin: 0 0 3rem 0;
    max-width: 700px;
    font-weight: 400;
    animation: slideInLeft 1s ease-out 0.2s both;
}

/* Artist Stats Grid */
.artist-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 199, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffc700;
    filter: drop-shadow(0 2px 4px rgba(255, 199, 0, 0.3));
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Artist Links */
.artist-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    color: #ffcccc;
}

.social-link.spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: #1ed760;
    color: #a7f3a7;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(64, 93, 230, 0.2));
    border-color: #e1306c;
    color: #ffb3d1;
}

/* Artist Tracks Section */
.artist-tracks {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    position: relative;
}

.artist-tracks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.section-title i {
    color: #ffc700;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 199, 0, 0.3));
}

/* Tracks Grid */
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.track-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.track-card:hover::before {
    left: 100%;
}

.track-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 199, 0, 0.3);
}

.track-artwork {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.track-card:hover .track-artwork img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 199, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.75rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.track-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.track-info {
    padding: 2rem;
    color: white;
}

.track-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.track-artist {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0 0 1.5rem 0;
    font-weight: 500;
}

.track-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.track-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.track-actions {
    display: flex;
    gap: 1rem;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-action:hover {
    background: rgba(255, 199, 0, 0.2);
    color: #ffc700;
    border-color: rgba(255, 199, 0, 0.4);
    transform: translateY(-2px);
}

/* Rank Information Section */
.rank-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.rank-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 199, 0, 0.05) 0%, transparent 70%);
}

.artist-rank {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.artist-rank:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 199, 0, 0.3);
    transform: translateY(-5px);
}

.rank-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rank-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.rank-details h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.rank-details p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

/* Back Button */
.back-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn-back:hover::before {
    left: 100%;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 199, 0, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes glow {
    0% { box-shadow: 0 8px 20px rgba(255, 199, 0, 0.4); }
    100% { box-shadow: 0 8px 20px rgba(255, 199, 0, 0.6), 0 0 30px rgba(255, 199, 0, 0.3); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artist-profile-header {
        gap: 3rem;
        padding: 1.5rem 0;
    }
    
    .artist-avatar img {
        width: 200px;
        height: 200px;
    }
    
    .artist-name {
        font-size: 3rem;
    }
    
    .tracks-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .artist-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .artist-avatar img {
        width: 180px;
        height: 180px;
    }
    
    .artist-name {
        font-size: 2.5rem;
    }
    
    .artist-bio {
        font-size: 1.1rem;
    }
    
    .artist-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .artist-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .rank-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rank-icon {
        font-size: 3rem;
    }
    
    .rank-details h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .artist-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-name {
        font-size: 2rem;
    }
    
    .artist-bio {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .track-card {
        margin: 0 1rem;
    }
} 