: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 */
        .hero-section {
            position: relative;
            height: 40vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://i.ytimg.com/vi/5PwTTolvcuA/hqdefault.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Artist Cards */
        .artist-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            background: #1a1a1a;
            border: 1px solid rgba(255, 235, 59, 0.2);
            height: 100%;
        }
        
        .artist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 235, 59, 0.2);
            border-color: var(--secondary-color);
        }
        
        .card-image {
            height: 250px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .artist-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 20px;
            text-align: center;
        }
        
        .card-content .card-title {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .card-action {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 20px;
            text-align: center;
            background: rgba(255, 235, 59, 0.05);
        }
        
        .btn-artist {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            border-radius: 30px;
            padding: 0 25px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
        }
        
        .btn-artist:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin: 3rem 0 2rem;
            font-size: 2.5rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            font-weight: bold;
        }
        
        /* Footer */
        footer {
            background-color: #0c0c0c;
            padding: 30px 0;
            margin-top: 50px;
            border-top: 2px solid var(--secondary-color);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 600px) {
            .hero-section {
                height: 30vh;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }