        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(26, 26, 26, 0);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        @media (min-width: 1024px) {
            #header {
                margin-left: 130px;
                margin-right: 130px;
            }
        }




        /* Mobile Search - Fix position */
        .mobile-search {
            position: fixed;
            top: 70px;
            /* Header height ke baad */
            left: 0;
            right: 0;
            z-index: 45;
            /* Header se neeche */
            padding: 16px;
            background: rgba(0, 0, 0, 0);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-search.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background: rgba(26, 26, 26, 0);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: left 0.45s ease;
            overflow-y: auto;
            border-right: 1px solid rgba(255, 255, 255, 0.05);
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sidebar-content {
            padding: 20px;
        }

        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-menu li {
            margin-bottom: 8px;
        }

        .sidebar-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 16px;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .sidebar-menu a:hover {
            background: rgba(255, 107, 0, 0.15);
            color: #ff6b00;
        }

        .sidebar-menu svg {
            width: 20px;
            height: 20px;
        }



        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: block;
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        /* Hide search on mobile */
        .search-desktop {
            display: none;
        }

        @media (min-width: 768px) {
            .search-desktop {
                display: flex;
            }
        }





        /* Navigation Link Animated Underline */
        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 50;
            transition: all 0.3s ease;
        }

        /* Genre Dropdown Content (Inside Header) - Smoother Animation */
        .genre-dropdown-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px);
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                transform 0.4s ease;
        }

        .genre-dropdown-content.show {
            max-height: 300px;
            /* Increase kiya for better animation */
            opacity: 1;
            transform: translateY(0);
            padding-top: 1rem;
        }

        /* Individual genre links animation */
        .genre-link {
            display: inline-block;
            padding: 6px 0;
            transition: all 0.2s ease;
            position: relative;
            opacity: 0;
            transform: translateY(-5px);
            animation: fadeInUp 0.3s ease forwards;
        }

        /* Delay for each link */
        .genre-dropdown-content.show .genre-link:nth-child(1) {
            animation-delay: 0.05s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(2) {
            animation-delay: 0.08s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(3) {
            animation-delay: 0.11s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(4) {
            animation-delay: 0.14s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(5) {
            animation-delay: 0.17s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(6) {
            animation-delay: 0.20s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(7) {
            animation-delay: 0.23s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(8) {
            animation-delay: 0.26s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(9) {
            animation-delay: 0.29s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(10) {
            animation-delay: 0.32s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(11) {
            animation-delay: 0.35s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(12) {
            animation-delay: 0.38s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(13) {
            animation-delay: 0.41s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(14) {
            animation-delay: 0.44s;
        }

        .genre-dropdown-content.show .genre-link:nth-child(15) {
            animation-delay: 0.47s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .genre-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ff6b00;
            transition: width 0.3s ease;
        }

        .genre-link:hover::after {
            width: 100%;
        }

        /* Genre Arrow Rotation - Smoother */
        .genre-arrow {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        #genreBtn.active .genre-arrow {
            transform: rotate(180deg);
        }

        /* Navigation Link Animated Underline */
        .nav-link {
            display: inline-block;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.6px;
            background: #ff6b00;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Genre button ko bhi same effect */
        #genreBtn {
            position: relative;
            padding-bottom: 4px;
        }

        #genreBtn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.6px;
            background: #ff6b00;
            transition: width 0.3s ease;
        }

        #genreBtn:hover::after {
            width: calc(100% - 20px);
        }

        /* Genre Links Underline */
        .genre-link {
            display: inline-block;
            padding: 6px 0;
            transition: all 0.2s ease;
            position: relative;
        }

        .genre-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e6ded8ff;
            transition: width 0.3s ease;
        }

        .genre-link:hover::after {
            width: 100%;
        }