       /* Episode Rectangles */
       .episode-rect {
           width: 100%;
           background: #22242fa4;
           border: 1px solid rgba(255, 255, 255, 0.05);
           border-radius: 8px;
           margin-bottom: 8px;
           display: flex;
           align-items: center;
           gap: 12px;
           padding: 12px;
           cursor: pointer;
           transition: all 0.3s ease;
       }

       @media (min-width: 768px) {
           .episode-rect {
               gap: 16px;
               padding: 14px;
           }
       }

       /* Watched Episode Styling */
       .episode-rect.watched {
           background: #043d21ff;
           opacity: 0.4;
       }

       .episode-rect.watched:hover {
           background-color: #043d21ff;
           opacity: 0.75;
       }



       .episode-rect:hover {
           background: rgba(42, 44, 62, 1);
           border-color: rgba(255, 106, 0, 0);
           /* transform: translateX(8px); */
           box-shadow: 0 8px 24px rgba(45, 64, 146, 0.29);
       }

       .episode-rect:hover .watch-btn {
           background: #ff8c00;
       }

       .episode-thumb {
           width: 80px;
           height: 45px;
           background: #2a2a2a;
           border-radius: 6px;
           overflow: hidden;
           flex-shrink: 0;
       }

       @media (min-width: 768px) {
           .episode-thumb {
               width: 120px;
               height: 68px;
           }
       }

       .episode-thumb img {
           width: 100%;
           height: 100%;
           object-fit: cover;
       }

       .watch-btn {
           padding: 8px 16px;
           background: #ff6b00;
           border-radius: 6px;
           font-weight: 600;
           font-size: 13px;
           color: #fff;
           transition: all 0.3s ease;
           white-space: nowrap;
       }

       @media (min-width: 768px) {
           .watch-btn {
               padding: 10px 24px;
               font-size: 14px;
           }
       }



       /* Season Tab change */
       .season-tabs {
           display: flex;
           gap: 8px;
           margin-bottom: 20px;
           overflow-x: auto;
           scrollbar-width: none;
           -ms-overflow-style: none;
       }

       .season-tabs::-webkit-scrollbar {
           display: none;
       }

       .season-tab {
           padding: 10px 20px;
           background: #1a214083;
           border: 2px solid transparent;
           border-radius: 8px;
           font-weight: 600;
           font-size: 13px;
           cursor: pointer;
           transition: all 0.3s ease;
           white-space: nowrap;
           color: #888;
       }

       @media (min-width: 768px) {
           .season-tab {
               padding: 12px 24px;
               font-size: 14px;
           }
       }

       .season-tab:hover {
           background: #2a2a2a99;
           color: #fff;
       }

       .season-tab.active {
           background: #ff6b00;
           border-color: #ff6b00;
           color: #fff;
       }

       .episodes-container {
           display: none;
       }

       .episodes-container.active {
           display: block;
       }

       .mobile-menu-btn {
           display: block;
       }

       @media (min-width: 768px) {
           .mobile-menu-btn {
               display: none;
           }
       }