:root {
            --primary-color: #000000;
            --secondary-color: #FFEB3B;
            --accent-color: #FFFFFF;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--primary-color);
            color: var(--accent-color);
            overflow-x: hidden;
        }
        
        /* Navbar */
        nav {
            background-color: var(--primary-color) !important;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        nav .brand-logo {
            display: flex;
            align-items: center;
        }
        
        /* Hero Section */
        .artist-hero {
            position: relative;
            height: 70vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .artist-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('/src/img/capak4uanz1n.png') center/cover no-repeat;
            z-index: 1;
        }
        
        .artist-info {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            max-width: 800px;
        }
        
        .artist-name {
            font-size: 4rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        .artist-bio {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .social-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            transition: all 0.3s;
        }
        
        .social-btn:hover {
            transform: translateY(-5px);
            background-color: var(--accent-color);
        }
        
        /* Content Sections */
        .section-title {
            text-align: center;
            margin: 3rem 0 2rem;
            font-size: 2.5rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            font-weight: bold;
        }
        
        /* Video Cards */
        .video-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
            margin-bottom: 20px;
            background: #1a1a1a;
            border: 1px solid rgba(255, 235, 59, 0.2);
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
        }
        
        .video-thumb {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .video-card:hover .video-thumb img {
            transform: scale(1.1);
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--secondary-color);
            font-size: 3rem;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .video-card:hover .play-icon {
            opacity: 1;
        }
        
        .video-info {
            padding: 15px;
        }
        
        .video-title {
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 5px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .video-date {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }
        
        /* Spotify Integration */
        .spotify-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            border: 1px solid rgba(255, 235, 59, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: #0c0c0c;
            padding: 30px 0;
            margin-top: 50px;
            border-top: 2px solid var(--secondary-color);
        }
        
        /* Loader */
        .loader {
            display: flex;
            justify-content: center;
            padding: 20px;
        }
        
        .progress {
            background-color: #333;
        }
        
        .progress .indeterminate {
            background-color: var(--secondary-color);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .artist-name {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 600px) {
            .artist-hero {
                height: 60vh;
            }
            
            .artist-name {
                font-size: 2.5rem;
            }
            
            .artist-bio {
                font-size: 1rem;
            }
        }