/* Artist Section Styles */
.artist-section {
    padding: 50px 0;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.artist-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.artist-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 0, 50, 0.5), rgba(50, 0, 100, 0.5));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), 0 0 50px rgba(255, 0, 255, 0.2);
}

.artist-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1571330735066-03aaa9429d89?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    overflow: hidden;
}

.artist-hologram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    animation: hologram 8s ease infinite;
}

@keyframes hologram {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.6;
    }
}

.artist-hologram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: hologram-scan 8s ease-in-out infinite;
}

@keyframes hologram-scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.artist-info {
    flex: 2;
    padding: 40px;
    text-align: left;
}

.artist-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.artist-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.artist-location, .artist-genre {
    font-size: 1rem;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.artist-bio p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.artist-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.artist-link {
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.artist-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.artist-link.apple:hover {
    border-color: #A2AAAD;
}

.artist-link.unitedmasters:hover {
    border-color: #FF6B00;
}

.artist-link.lastfm:hover {
    border-color: #D51007;
}

@media (max-width: 768px) {
    .artist-container {
        flex-direction: column;
    }
    
    .artist-image {
        min-height: 250px;
    }
    
    .artist-info {
        padding: 30px;
    }
    
    .artist-info h3 {
        font-size: 2rem;
    }
    
    .artist-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .artist-location, .artist-genre {
        display: inline-block;
    }
    
    .artist-links {
        flex-wrap: wrap;
    }
}
