   :root {
            --primary-bg: #0f0f0f;
            --secondary-bg: #1a1a1a;
            --card-bg: #252525;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --accent-blue: #1db954;
            --accent-purple: #5352ed;
            --accent-pink: #ff4fc7;
            --player-height: 80px;
            --nav-height: 80px;
            --gradient: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
        }


                body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            padding-bottom: var(--player-height);
        }
        
        /* Canvas Background */
        #particle-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.5;
        }
        [data-theme="light"] {
            --primary-bg: #f5f5f5;
            --secondary-bg: #ffffff;
            --card-bg: #f0f0f0;
            --text-primary: #333333;
            --text-secondary: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            padding-bottom: var(--player-height);
        }

       /* Header/Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            background-color: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .header-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-right: 1rem;
            z-index: 1001;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--gradient);
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 16px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        nav a:hover {
            color: white;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .search-bar {
            position: relative;
            width: 200px;
        }

        .search-bar input {
            width: 100%;
            padding: 0.5rem 1rem 0.5rem 2.25rem;
            border-radius: 20px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .search-bar input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.15);
            width: 220px;
        }

        .search-bar i {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .auth-actions {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: var(--text-secondary);
        }

        .auth-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .auth-link:hover {
            color: white;
        }

        .theme-toggle {
            position: relative;
            width: 40px;
            height: 20px;
            border-radius: 10px;
            background-color: rgba(255, 255, 255, 0.1);
            cursor: pointer;
            border: none;
        }

        .theme-toggle::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: white;
            transition: transform 0.3s ease;
        }

        [data-theme="light"] .theme-toggle::after {
            transform: translateX(20px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.25rem;
            cursor: pointer;
            z-index: 1001;
        }

         /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: var(--nav-height);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--nav-height));
            background-color: var(--bg-primary);
            padding: 2rem 1.5rem;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            transform: translateX(-100%);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
            opacity: 1;
            background-color: #1a1a1a;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .mobile-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .mobile-search {
            margin: 1.5rem 0;
        }

        .mobile-search .search-bar {
            width: 100%;
        }

        .mobile-search .search-bar input {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.08);
        }

        .mobile-theme-toggle {
            display: flex;
            justify-content: center;
            margin: 1.5rem 0;
        }

        .mobile-auth {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            border: none;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-login {
            background-color: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-login:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .btn-signup {
            background: var(--gradient);
            color: white;
        }

        .btn-signup:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        /* Responsive Styles */
        @media (max-width: 1100px) {
            nav ul {
                gap: 1rem;
            }
            
            .search-bar {
                width: 180px;
            }
        }

        @media (max-width: 992px) {
            nav {
                display: none;
            }
            
            .header-actions {
                gap: 1rem;
            }
            
            .search-bar {
                width: 160px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .header-container {
                padding: 0 1rem;
            }
            
            .logo-text {
                font-size: 1.25rem;
            }
            
            .search-bar {
                display: none;
            }
            
            .auth-actions {
                display: none;
            }
            
            .mobile-menu {
                padding: 1.5rem 1rem;
            }
        }

        /* Demo Content */
        /* .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }

        .content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .content p {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .section {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .section:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.03);
        } */
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
            margin-top: var(--nav-height);
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.5;
        }

        .hero-content {
            flex: 1;
            z-index: 2;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.3s;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: glow 3s infinite alternate;
        }

        @keyframes glow {
            0% { text-shadow: 0 0 10px rgba(29, 185, 84, 0.5); }
            100% { text-shadow: 0 0 30px rgba(82, 82, 237, 0.445), 0 0 40px rgba(255, 79, 199, 0.452); }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .btn-hero {
            padding: 15px 30px;
            font-size: 18px;
            background: var(--gradient);
            color: white;
            border-radius: 30px;
            box-shadow: 0 0 20px rgba(29, 185, 84, 0.5);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(29, 185, 84, 0.7);
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn-hero:hover::before {
            left: 100%;
        }

        .hero-album {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .album-card {
            width: 400px;
            height: 400px;
            background-color: rgba(37, 37, 37, 0.5);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(29, 185, 84, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        [data-theme="light"] .album-card {
            background-color: rgba(240, 240, 240, 0.5);
        }

        .album-art {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .album-card:hover .album-art {
            transform: scale(1.05) rotateY(5deg);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.7);
            }
            70% {
                transform: translate(-50%, -50%) scale(1.05);
                box-shadow: 0 0 0 15px rgba(29, 185, 84, 0);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 0 0 rgba(29, 185, 84, 0);
            }
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Why Choose Us Section */
        .section {
            padding: 100px 10%;
            position: relative;
            z-index: 2;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            height: 250px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
            transform: translateY(20px);
            opacity: 0;
            animation-fill-mode: both;
        }

        .feature-card.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-card:nth-child(1).animate {
            animation-delay: 0.2s;
        }

        .feature-card:nth-child(2).animate {
            animation-delay: 0.4s;
        }

        .feature-card:nth-child(3).animate {
            animation-delay: 0.6s;
        }

        .feature-card:nth-child(4).animate {
            animation-delay: 0.8s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(29, 185, 84, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
            color: var(--accent-blue);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: rgba(29, 185, 84, 0.1);
            border-radius: 50%;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
            background: rgba(29, 185, 84, 0.2);
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .feature-desc {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Services Section */
        .services {
            background-color: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(5px);
        }

        [data-theme="light"] .services {
            background-color: rgba(255, 255, 255, 0.7);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            height: 200px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(29, 185, 84, 0.1);
            transform: scale(0.95);
            opacity: 0;
            animation-fill-mode: both;
        }

        .service-card.animate {
            animation: scaleIn 0.8s ease forwards;
        }

        .service-card:nth-child(1).animate {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(2).animate {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(3).animate {
            animation-delay: 0.6s;
        }

        .service-card:nth-child(4).animate {
            animation-delay: 0.8s;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.95);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .service-card:hover {
            transform: translateY(-5px) rotateX(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(29, 185, 84, 0.3);
        }

        .service-icon {
            font-size: 40px;
            color: var(--accent-purple);
            min-width: 60px;
            text-align: center;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .service-content p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* About Us Section */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .team {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .team-member {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 200px;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
        }

        .team-photo {
            width: 100%;
            height: 150px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .team-member:hover .team-photo {
            filter: grayscale(0%);
        }

        .team-member:hover {
            transform: scale(1.05);
            border-color: rgba(29, 185, 84, 0.3);
        }

        .team-info {
            padding: 10px;
            text-align: center;
        }

        .team-name {
            font-size: 16px;
            font-weight: 600;
        }

        .team-role {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Best Songs Section */
        .songs {
            background-color: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(5px);
        }

        [data-theme="light"] .songs {
            background-color: rgba(255, 255, 255, 0.7);
        }

        .songs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .song-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
        }

        .song-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: rgba(29, 185, 84, 0.3);
        }

        .song-art {
            width: 100%;
            height: 150px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .song-card:hover .song-art {
            transform: scale(1.05);
        }

        .song-info {
            padding: 15px;
        }

        .song-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .song-duration {
            color: var(--text-secondary);
            font-size: 12px;
            margin-bottom: 10px;
        }

        .song-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .control-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 16px;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .control-btn:hover {
            color: var(--accent-blue);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .progress-bar {
            height: 3px;
            width: 100%;
            background-color: #333;
            margin-top: 10px;
            border-radius: 2px;
            overflow: hidden;
        }

        [data-theme="light"] .progress-bar {
            background-color: #ddd;
        }

        .progress {
            height: 100%;
            width: 0%;
            background: var(--gradient);
            border-radius: 2px;
            transition: width 0.1s linear;
        }

        /* Top Artists Section */
        .artists-carousel {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding-bottom: 20px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

        .artists-carousel::-webkit-scrollbar {
            display: none;
        }

        .artist-card {
            min-width: 200px;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
            scroll-snap-align: start;
        }

        .artist-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(29, 185, 84, 0.3);
        }

        .artist-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .artist-card:hover .artist-photo {
            border-color: var(--accent-purple);
            box-shadow: 0 0 20px rgba(83, 82, 237, 0.5);
        }

        .artist-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .artist-followers {
            color: var(--text-secondary);
            font-size: 12px;
            margin-bottom: 15px;
        }

        .btn-sample {
            padding: 8px 15px;
            font-size: 12px;
            background-color: transparent;
            border: 1px solid var(--accent-blue);
            color: var(--accent-blue);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-sample:hover {
            background-color: var(--accent-blue);
            color: white;
        }

        /* Top Albums Section */
        .albums-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .album-item {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 250px;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
        }

        .album-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .album-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .album-item:hover .album-overlay {
            opacity: 1;
        }

        .album-item:hover .album-cover {
            transform: scale(1.05);
        }

        .album-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(29, 185, 84, 0.8);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 18px;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .album-item:hover .album-play {
            opacity: 1;
        }

        .album-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .album-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
            font-size: 12px;
        }

        .stars {
            color: gold;
            font-size: 12px;
        }

        /* Blog Section */
        .blog {
            background-color: rgba(26, 26, 26, 0.7);
            backdrop-filter: blur(5px);
        }

        [data-theme="light"] .blog {
            background-color: rgba(255, 255, 255, 0.7);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: rgba(29, 185, 84, 0.3);
        }

        .blog-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-thumbnail {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .blog-snippet {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-secondary);
            font-size: 12px;
            margin-bottom: 15px;
        }

        .btn-read {
            padding: 8px 15px;
            font-size: 12px;
            background-color: transparent;
            border: 1px solid var(--accent-purple);
            color: var(--accent-purple);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-read:hover {
            background-color: var(--accent-purple);
            color: white;
        }

        /* Testimonials Section */
        .testimonials {
            position: relative;
        }

        .testimonial-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding-bottom: 20px;
            scrollbar-width: none;
        }

        .testimonial-carousel::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            min-width: 300px;
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            scroll-snap-align: start;
            border: 1px solid rgba(29, 185, 84, 0.1);
            backdrop-filter: blur(5px);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .testimonial-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-user h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .testimonial-stars {
            color: gold;
            font-size: 14px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Contact Us Section */
        .contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px var(--accent-blue);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .btn-send {
            align-self: flex-start;
            padding: 12px 25px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(29, 185, 84, 0.3);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-map {
            height: 250px;
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(29, 185, 84, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .contact-map i {
            font-size: 40px;
            color: var(--accent-blue);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent-blue);
            backdrop-filter: blur(5px);
        }

        .contact-text {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-primary);
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .social-link:hover {
            background: var(--gradient);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background-color: rgba(15, 15, 15, 0.8);
            padding: 50px 10% 30px;
            backdrop-filter: blur(5px);
        }

        [data-theme="light"] footer {
            background-color: rgba(245, 245, 245, 0.8);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-blue);
        }

        .newsletter {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter input {
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            background-color: var(--card-bg);
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
            backdrop-filter: blur(5px);
        }

        .btn-subscribe {
            padding: 12px 25px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(29, 185, 84, 0.3);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .copyright {
            text-align: center;
            color: var(--text-secondary);
            font-size: 14px;
            padding-top: 30px;
            border-top: 1px solid var(--card-bg);
        }

        /* Audio Player */
        .audio-player {
            position: fixed;
            bottom: -100px;
            left: 0;
            width: 100%;
            height: var(--player-height);
            background-color: rgba(15, 15, 15, 0.95);
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
            backdrop-filter: blur(5px);
            transition: bottom 0.3s ease;
        }

        [data-theme="light"] .audio-player {
            background-color: rgba(245, 245, 245, 0.95);
        }

        .audio-player.active {
            bottom: 0;
        }

        .player-song {
            display: flex;
            align-items: center;
            gap: 15px;
            width: 250px;
        }

        .player-art {
            width: 50px;
            height: 50px;
            border-radius: 5px;
            object-fit: cover;
        }

        .player-info {
            display: flex;
            flex-direction: column;
        }

        .player-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .player-artist {
            font-size: 12px;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 180px;
        }

        .player-controls {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .control-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .player-btn {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 16px;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .player-btn:hover {
            color: var(--accent-blue);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .player-btn-main {
            font-size: 24px;
            width: 40px;
            height: 40px;
            background: var(--gradient);
            color: white;
        }

        .player-btn-main:hover {
            background: var(--gradient);
            opacity: 0.9;
        }

        .player-progress {
            width: 100%;
            max-width: 600px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .progress-time {
            font-size: 12px;
            color: var(--text-secondary);
            min-width: 40px;
        }

        .progress-bar-container {
            flex: 1;
            height: 4px;
            background-color: #333;
            border-radius: 2px;
            cursor: pointer;
        }

        [data-theme="light"] .progress-bar-container {
            background-color: #ddd;
        }

        .progress-bar-fill {
            height: 100%;
            width: 0%;
            background: var(--gradient);
            border-radius: 2px;
            position: relative;
            transition: width 0.1s linear;
        }

        .progress-bar-container:hover .progress-bar-fill::after {
            opacity: 1;
        }

        .player-extra {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .waveform {
            width: 100px;
            height: 40px;
            background-color: var(--card-bg);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(5px);
        }

        .wave {
            position: absolute;
            bottom: 0;
            width: 3px;
            background: var(--gradient);
            animation: wave 1s infinite ease-in-out;
        }

        @keyframes wave {
            0%, 100% {
                height: 20%;
            }
            50% {
                height: 100%;
            }
        }

        .wave-1 {
            left: 10%;
            height: 30%;
            animation-delay: 0.1s;
        }

        .wave-2 {
            left: 20%;
            height: 50%;
            animation-delay: 0.3s;
        }

        .wave-3 {
            left: 30%;
            height: 70%;
            animation-delay: 0.2s;
        }

        .wave-4 {
            left: 40%;
            height: 40%;
            animation-delay: 0.4s;
        }

        .wave-5 {
            left: 50%;
            height: 60%;
            animation-delay: 0.1s;
        }

        .wave-6 {
            left: 60%;
            height: 30%;
            animation-delay: 0.3s;
        }

        .wave-7 {
            left: 70%;
            height: 50%;
            animation-delay: 0.2s;
        }

        .wave-8 {
            left: 80%;
            height: 70%;
            animation-delay: 0.4s;
        }

        .wave-9 {
            left: 90%;
            height: 40%;
            animation-delay: 0.1s;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .volume-icon {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background-color: #333;
            border-radius: 2px;
            cursor: pointer;
        }

        [data-theme="light"] .volume-slider {
            background-color: #ddd;
        }

        .volume-fill {
            height: 100%;
            width: 70%;
            background: var(--gradient);
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .features {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .songs-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .albums-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .album-card {
                width: 350px;
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 0 20px;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-right {
                display: none;
            }
            
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 100px 20px;
                height: auto;
            }
            
            .hero-content {
                margin-bottom: 50px;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            .album-card {
                width: 300px;
                height: 300px;
            }
            
            .section {
                padding: 70px 20px;
            }
            
            .features {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .about {
                grid-template-columns: 1fr;
            }
            
            .team {
                margin-top: 30px;
            }
            
            .songs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .albums-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .audio-player {
                padding: 0 20px;
                justify-content: space-between;
            }
            
            .player-song {
                display: none;
            }
            
            .player-extra {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .btn-hero {
                padding: 12px 25px;
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .songs-grid {
                grid-template-columns: 1fr;
            }
            
            .player-controls {
                width: 100%;
            }
            
            .player-progress {
                max-width: 100%;
            }
        }
        
        @media (max-width: 400px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .album-card {
                width: 250px;
                height: 250px;
            }
            
            .auth-buttons {
                display: none;
            }
        }