
        :root {
            --primary-bg: #121212;
            --secondary-bg: #181818;
            --tertiary-bg: #282828;
            --accent-color: #1DB954; /* Changed from green to yellow */
            --accent-hover: #1ed760; /* Lighter yellow for hover */
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-tertiary: #535353;
            --border-radius: 8px;
            --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
            --grid-gap: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            width: 100%;
        }

        /* Header Styles */
        header {
            background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            transition: background 0.3s;
        }

        header.scrolled {
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .nav-left, .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .logo img {
            height: 40px;
            width: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .logo h2 {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 1.2rem;
        }

        /* Updated Search Container - Red with white background */
        .search-container {
            position: relative;
            width: 120px;
        }

        .search-input {
            width: 100%;
            background: #ffffff; /* White background */
            border: 2px solid #ff0000; /* Red border */
            border-radius: 25px;
            padding: 12px 45px 12px 20px;
            color: #333333; /* Dark text for contrast */
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .search-input:focus {
            outline: none;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3); /* Red glow on focus */
            border-color: #ff0000;
        }

        .search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #ff0000; /* Red color for search icon */
            cursor: pointer;
            transition: var(--transition);
        }

        .search-button:hover {
            color: #cc0000; /* Darker red on hover */
        }

        .nav-arrows {
            display: flex;
            gap: 12px;
        }

        .nav-arrow {
            background: rgba(0,0,0,0.7);
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-arrow:hover {
            background: rgba(0,0,0,0.9);
        }

        /* Navigation Menu - Updated for better UX */
        nav {
            margin-left: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
            border-radius: 4px;
            cursor: pointer;
        }

        nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        nav ul li .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--secondary-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            min-width: 180px;
            z-index: 1000;
            overflow: hidden;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        nav ul li:hover .dropdown {
            display: block;
        }

        .dropdown li {
            width: 100%;
        }

        .dropdown li a {
            padding: 12px 15px;
            display: block;
            width: 100%;
            border-radius: 0;
            transition: all 0.2s ease;
        }

        .dropdown li a:hover {
            background: var(--tertiary-bg);
            padding-left: 20px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-menu-toggle:hover {
            color: var(--accent-color);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 999;
            backdrop-filter: blur(5px);
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition);
        }

        .mobile-menu-close:hover {
            color: var(--accent-color);
            transform: rotate(90deg);
        }

        /* Artist Header - Responsive Grid */
        .artist-header {
            background: linear-gradient(to bottom, #FFD700, var(--primary-bg) 400px); /* Changed to yellow gradient */
            padding: 120px 0 40px;
            display: flex;
            align-items: flex-end;
            gap: 30px;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .artist-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(transparent 0, var(--primary-bg) 90%);
            pointer-events: none;
        }

        .artist-header-content {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 30px;
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 20px;
            align-items: end;
        }

        .profile-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border: 4px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .profile-photo:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }

        .artist-details {
            position: relative;
            z-index: 2;
            min-width: 0;
            width: 100%;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            background: var(--accent-color);
            color: black;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 4px;
            margin-bottom: 10px;
        }

        .artist-details h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 15px;
            letter-spacing: -1px;
            word-wrap: break-word;
            overflow-wrap: break-word;
            line-height: 1.1;
        }

        /* Stats Grid - Responsive 2x3 Layout */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin: 30px 0;
            width: 100%;
            max-width: 100%;
            padding: 0;
        }

        .stat-card {
            background: rgba(255,255,255,0.1);
            padding: 20px 15px;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-width: 250px; /* Minimum width for small devices */
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 5px;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Action Buttons Grid */
        .artist-actions {
            display: grid;
            grid-template-columns: auto repeat(3, 1fr);
            gap: 15px;
            margin-top: 30px;
            width: 100%;
            align-items: center;
            padding: 0;
        }

        .play-button {
            background: var(--accent-color);
            border: none;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 15px rgba(0,0,0,0.3);
            grid-column: 1;
        }

        .play-button:hover {
            transform: scale(1.1);
            background: var(--accent-hover);
            box-shadow: 0 12px 20px rgba(0,0,0,0.4);
        }

        .share-buttons-container {
            display: flex;
            gap: 10px;
            align-items: center;
            grid-column: 2 / span 3;
        }

        .share-button {
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--text-primary);
            padding: 8px 12px;
            border-radius: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            min-width: 0;
            font-size: 0.8rem;
            flex: 1;
        }

        .share-button:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
        }

        .share-button.whatsapp {
            background: #25D366;
            color: white;
        }

        .share-button.whatsapp:hover {
            background: #1da851;
        }

        .share-button.facebook {
            background: #1877F2;
            color: white;
        }

        .share-button.facebook:hover {
            background: #0e5fcd;
        }

        /* Content Tabs */
        .content-tabs {
            background: linear-gradient(to bottom, transparent, var(--secondary-bg) 100px);
            padding: 0;
            position: relative;
            z-index: 3;
            width: 100%;
        }

        .tabs-container {
            display: flex;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            width: 100%;
        }

        .tabs-container::-webkit-scrollbar {
            display: none;
        }

        .tab {
            padding: 20px 25px;
            color: var(--text-secondary);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
            flex-shrink: 0;
            font-size: 0.95rem;
        }

        .tab:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }

        .tab.active {
            color: var(--text-primary);
        }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent-color);
        }
        
        /* Songs List - Spotify Style */
        .songs-section {
            padding: 30px 0;
            background: var(--secondary-bg);
        }

        .section-inner {
            padding: 0 20px;
        }

        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .songs-header {
            display: grid;
            grid-template-columns: 50px 1fr 100px 80px;
            padding: 15px 20px;
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 10px;
            gap: 15px;
        }

        .song-list {
            margin-bottom: 40px;
        }

        .song-row {
            display: grid;
            grid-template-columns: 50px 1fr 100px 80px;
            padding: 12px 20px;
            border-radius: 4px;
            transition: var(--transition);
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .song-row:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }

        .song-number {
            color: var(--text-secondary);
            text-align: center;
            font-size: 0.9rem;
        }

        .song-info {
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 0;
        }

        .song-cover {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            object-fit: cover;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .song-row:hover .song-cover {
            transform: scale(1.05);
        }

        .song-text {
            min-width: 0;
        }

        .song-title {
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .song-artist {
            color: var(--text-secondary);
            font-size: 0.9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .song-plays {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-align: center;
        }

        .song-duration {
            color: var(--text-secondary);
            text-align: center;
            font-size: 0.9rem;
        }

        .play-icon {
            opacity: 0;
            transition: var(--transition);
            color: var(--accent-color);
        }

        .song-row:hover .play-icon {
            opacity: 1;
        }

        .song-row:hover .song-number {
            opacity: 0;
        }

        /* Biography Section */
        .bio-section {
            padding: 30px 0;
            background: var(--secondary-bg);
            display: none;
        }

        .bio-section.active {
            display: block;
        }

        .bio-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .bio-text {
            background: var(--tertiary-bg);
            padding: 25px;
            border-radius: var(--border-radius);
            line-height: 1.8;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .bio-text:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .read-more-btn {
            background: var(--accent-color);
            border: none;
            color: black;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .read-more-btn:hover {
            background: var(--accent-hover);
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Footer */
        footer {
            background: var(--secondary-bg);
            padding: 40px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            text-align: center;
            padding: 0 20px;
        }

        .footer-content p {
            margin-bottom: 20px;
            color: var(--text-secondary);
        }

        .footer-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-nav a:hover {
            color: var(--text-primary);
            text-decoration: underline;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
        }

        .pagination a {
            background: var(--tertiary-bg);
            color: var(--text-primary);
            padding: 10px 16px;
            border-radius: var(--border-radius);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .pagination a:hover {
            background: var(--accent-color);
            color: black;
            transform: translateY(-2px);
        }

        .pagination a.active {
            background: var(--accent-color);
            color: black;
        }

        /* RESPONSIVE DESIGN - 2x3 Grid for Small Devices */
        @media (max-width: 1200px) {
            .artist-details h1 {
                font-size: 3rem;
            }
            
            .profile-photo {
                width: 180px;
                height: 180px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
                gap: 15px;
            }
            
            .artist-actions {
                grid-template-columns: auto repeat(2, 1fr); /* 3 columns */
            }
        }

        @media (max-width: 992px) {
            .artist-header {
                flex-direction: column;
                align-items: flex-start;
                padding-top: 100px;
            }
            
            .artist-header-content {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
            }
            
            .profile-photo {
                width: 160px;
                height: 160px;
                justify-self: center;
            }
            
            .artist-details h1 {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
                max-width: 400px;
                margin: 30px auto;
            }
            
            .artist-actions {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
                gap: 12px;
            }
            
            .play-button {
                grid-column: 1 / -1; /* Full width */
                justify-self: center;
                margin-bottom: 10px;
            }
            
            .share-buttons-container {
                grid-column: 1 / -1; /* Full width */
                display: flex;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 0;
            }
            
            header {
                padding: 12px 0;
                top: 0;
                width: 100%;
            }
            
            .artist-header {
                padding: 80px 0 30px;
            }
            
            .artist-details h1 {
                font-size: 2rem;
            }
            
            .profile-photo {
                width: 140px;
                height: 140px;
            }
            
            /* 2x3 Grid for Stats on Mobile */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns */
                grid-template-rows: repeat(3, auto); /* 3 rows */
                gap: 12px;
                max-width: 100%;
            }
            
            .stat-card {
                padding: 15px 10px;
                min-width: 250px; /* Minimum width for small devices */
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
            
            .artist-actions {
                grid-template-columns: 1fr; /* Single column */
                gap: 10px;
            }
            
            .play-button {
                width: 50px;
                height: 50px;
                justify-self: center;
            }
            
            .share-buttons-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }
            
            .share-button {
                flex: 0 1 auto;
                min-width: 120px;
            }
            
            .songs-header, .song-row {
                grid-template-columns: 50px 1fr 70px;
                padding: 10px 15px;
            }
            
            .song-info {
                grid-template-columns: 40px 1fr;
                gap: 10px;
            }
            
            .song-cover {
                width: 40px;
                height: 40px;
            }
            
            /* Mobile Navigation */
            .mobile-menu-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: 0;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--secondary-bg);
                transform: translateX(100%);
                transition: transform 0.3s ease;
                z-index: 1001;
                box-shadow: -5px 0 15px rgba(0,0,0,0.3);
                padding-top: 60px;
                overflow-y: auto;
            }
            
            nav.active {
                transform: translateX(0);
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                width: 100%;
            }
            
            nav ul li a {
                padding: 15px;
                justify-content: space-between;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            nav ul li .dropdown {
                position: static;
                display: none;
                width: 100%;
                box-shadow: none;
                background: var(--tertiary-bg);
                animation: none;
            }
            
            nav ul li.active .dropdown {
                display: block;
            }
            
            .dropdown li a {
                padding-left: 30px;
                border-bottom: none;
            }
        }

        @media (max-width: 576px) {
            .artist-details h1 {
                font-size: 1.8rem;
            }
            
            .profile-photo {
                width: 120px;
                height: 120px;
            }
            
            /* 2x3 Grid Optimization for Very Small Screens */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, auto);
                gap: 10px;
            }
            
            .stat-card {
                padding: 12px 8px;
                min-width: 250px; /* Minimum width for small devices */
            }
            
            .stat-number {
                font-size: 1.3rem;
            }
            
            .stat-label {
                font-size: 0.7rem;
                letter-spacing: 0.3px;
            }
            
            .artist-actions {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            
            .share-buttons-container {
                flex-direction: column;
                align-items: center;
            }
            
            .share-button {
                width: 100%;
                max-width: 200px;
                padding: 5px 8px;
                font-size: 0.9rem;
            }
            
            .songs-header, .song-row {
                grid-template-columns: 40px 1fr 60px;
                padding: 8px 12px;
                gap: 10px;
            }
            
            .song-info {
                grid-template-columns: 35px 1fr;
                gap: 8px;
            }
            
            .song-cover {
                width: 35px;
                height: 35px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 360px) {
            /* Ultra-small devices */
            .stats-grid {
                grid-template-columns: 1fr; /* Single column for very small screens */
                grid-template-rows: repeat(4, auto);
            }
            
            .artist-actions {
                grid-template-columns: 1fr;
            }
            
            .share-button {
                font-size: 0.8rem;
                padding: 4px 8px;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Ensure horizontal alignment on all screens */
        .horizontal-layout {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        @media (max-width: 768px) {
            .horizontal-layout {
                flex-direction: column;
                align-items: stretch;
            }
        }
    