        /* Video Grid 4 & Shorts Card Styles */
        .video-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 992px) {
            .video-grid-4 { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .video-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 15px; }
        }
        @media (max-width: 480px) {
            .video-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        }
        .shorts-card {
            position: relative;
            aspect-ratio: 9/16;
            border-radius: 8px;
            overflow: hidden;
            display: block;
            background: #000;
            text-decoration: none;
        }
        .shorts-card img {
            width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s;
        }
        .shorts-card:hover img { transform: scale(1.05); }
        .shorts-card .overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 15px;
        }
        .shorts-card .play-btn {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; padding-left: 4px; transition: 0.3s;
        }
        .shorts-card:hover .play-btn {
            background: #e44d26; border-color: #e44d26; transform: translate(-50%, -50%) scale(1.1);
        }
        .shorts-card .category { color: #facc15; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
        .shorts-card .title { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
        .shorts-card .meta { color: #ccc; font-size: 11px; }
        @media (max-width: 480px) {
            .shorts-card .title { font-size: 13px; -webkit-line-clamp: 2; }
            .shorts-card .category { font-size: 11px; }
            .shorts-card .play-btn { width: 40px; height: 40px; font-size: 16px; }
        }

        .home-wrap {
            display: flex;
            gap: 20px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px;
        }

        .home-left {
            width: 220px;
            flex-shrink: 0;
        }

        .home-left-inner {
            position: sticky;
            top: 70px;
            max-height: calc(100vh - 80px);
            overflow-y: auto;
            scrollbar-width: none;
        }

        .home-left-inner::-webkit-scrollbar {
            display: none;
        }

        .home-center {
            flex: 1;
            min-width: 0;
        }

        .home-right {
            width: 300px;
            flex-shrink: 0;
        }

        .home-right-inner {
            position: sticky;
            top: 70px;
            overflow: visible;
        }

        .sidebar-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 12px;
            border-radius: 8px;
            font-size: 18px;
            margin-bottom: 2px;
            transition: .2s;
            font-weight: 600;
            color: #222;
            line-height: 1.3;
        }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: #fff5f2;
            color: #e44d26;
        }

        .sidebar-menu .icon-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .featured-big {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
        }

        .featured-big img {
            width: 100%;
            /* height: 340px;  */
            object-fit: cover;
        }

        .featured-big-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, .9));
            padding: 16px;
        }

        .featured-big-overlay .cat {
            color: #ff6b35;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .featured-big-overlay h2 {
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            line-height: 1.4;
        }

        .featured-big-overlay .meta {
            color: rgba(255, 255, 255, .6);
            font-size: 11px;
            margin-top: 6px;
        }

        .featured-small {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feat-sm-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            flex: 1;
            min-height: 100px;
        }

        .feat-sm-card img {
            width: 100%;
            /* height: 116%;  */
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .feat-sm-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, .85));
            padding: 8px;
        }

        .feat-sm-overlay h4 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            line-height: 1.3;
        }

        .trending-widget {
            background: #fff;
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 16px;
            border: 1px solid #e8e8e8;
        }

        .trending-widget h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e44d26;
        }

        .trending-item {
            display: flex;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #f5f5f5;
            align-items: flex-start;
        }

        .trending-num {
            font-size: 22px;
            font-weight: 900;
            color: #ddd;
            min-width: 28px;
            line-height: 1;
        }

        .trending-item:hover .trending-num {
            color: #e44d26;
        }

        .trending-title {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            color: #222;
        }

        .trending-title:hover {
            color: #e44d26;
        }

        /* First trending item as video highlight */
        .trending-item.video-highlight {
            flex-direction: column;
            gap: 8px;
            background: #fef9f5;
            border-radius: 12px;
            padding: 10px;
            margin-bottom: 16px;
            border-bottom: none;
        }

        .trending-item.video-highlight .trending-num {
            display: none;
        }

        .trending-video-thumb {
            position: relative;
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
        }

        .trending-video-thumb img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            display: block;
        }

        .trending-video-thumb .play-icon-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.7);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .trending-video-thumb .video-duration {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 500;
        }

        .trending-item.video-highlight .trending-title {
            font-size: 16px;
            font-weight: 700;
            color: #111;
            line-height: 1.4;
            margin-top: 4px;
            display: block;
        }

        .trending-video-badge {
            display: inline-block;
            background: #e44d26;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .ad-banner {
            border-radius: 8px;
            border-color: #e8e8e8;
        }

        .ad-banner img {
            width: 100%;
        }

        .ad-placeholder {
            background: linear-gradient(135deg, #667eea, #764ba2);
            height: 120px;
            font-size: 12px;
        }

        .category-section {
            margin-bottom: 24px;
        }

        /* DB-style list item */
        .db-list-item {
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid #ececec;
        }

        .db-list-item:last-child {
            border-bottom: none;
        }

        .db-list-body {
            flex: 1;
            min-width: 0;
        }

        .db-list-body .db-cat {
            font-size: 13px;
            font-weight: 700;
            color: #e44d26;
            margin-bottom: 5px;
            display: inline-block;
        }

        .db-list-body .db-cat.live {
            color: #e00;
        }

        .db-list-body h3 {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.5;
            color: #111;
            margin-bottom: 8px;
        }

        .db-list-body h3 span.highlight {
            color: #e44d26;
        }

        .db-list-body h3:hover {
            color: #e44d26;
        }

        .db-list-body .db-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* DB share bar */
        .db-share-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-top: 8px;
        }

        .db-share-bar .db-cat-pill {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 13px;
            color: #444;
            font-weight: 600;
            transition: .2s;
        }

        .db-share-bar .db-cat-pill svg {
            width: 16px;
            height: 16px;
            vertical-align: middle;
        }

        .db-share-bar .db-cat-pill:hover {
            border-color: #e44d26;
            color: #e44d26;
        }

        .db-share-icons {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .db-share-icons li {
            list-style: none;
        }

        .db-share-icons li button,
        .db-share-icons li span {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: #555;
            cursor: pointer;
            transition: .2s;
        }

        .db-share-icons li button:hover,
        .db-share-icons li span:hover {
            border-color: #e44d26;
            color: #e44d26;
        }

        .db-share-icons li.copy-item {
            position: relative;
        }

        .db-share-icons li.copy-item .copy-tip {
            display: none;
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: #fff;
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .db-share-icons li.copy-item.copied .copy-tip {
            display: block;
        }

        .db-wa-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            color: #25d366;
            padding: 4px 8px;
            border-radius: 6px;
            transition: .2s;
        }

        .db-wa-btn:hover {
            background: #e8fdf1;
        }

        .db-wa-btn svg {
            width: 18px;
            height: 18px;
        }

        .db-list-thumb {
            position: relative;
            flex-shrink: 0;
            width: 140px;
            height: 100px;
            border-radius: 6px;
            overflow: hidden;
        }

        .db-list-thumb img {
            width: 100%;
            height: 112%;
            object-fit: cover;
        }

        .db-list-thumb .play-overlay {
            position: absolute;
            bottom: 6px;
            right: 6px;
            background: rgba(0, 0, 0, .7);
            color: #fff;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .db-live-badge {
            background: #e00;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 2px 7px;
            border-radius: 3px;
            margin-right: 5px;
            animation: blink 1.2s infinite;
        }

        .db-section-head {
            padding: 10px 0 10px;
            border-bottom: 2px solid #ececec;
        }

        .db-section-head .left {
            gap: 10px;
        }

        .db-section-head .icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .db-section-head h2 {
            font-size: 18px;
            font-weight: 800;
            color: #111;
        }

        .db-section-head a.see-all {
            border: 1.5px solid #e44d26;
            color: #e44d26;
            padding: 4px 14px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
        }

        .db-section-head a.see-all:hover {
            background: #e44d26;
            color: #fff !important;
        }

        .db-section-wrap {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 8px;
            padding: 0 14px;
            margin-bottom: 20px;
        }

        .video-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #e8e8e8;
        }

        .video-thumb {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .3s;
        }

        .video-card:hover .video-thumb img {
            transform: scale(1.05);
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, .9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e44d26;
            font-size: 18px;
        }

        .video-info {
            padding: 10px;
        }

        .video-info h4 {
            font-size: 13px;
            font-weight: 700;
            line-height: 1.4;
        }

        /* ── MOBILE ── */
        @media (max-width: 768px) {
            .home-wrap {
                flex-direction: column;
                padding: 10px;
                gap: 0;
            }

            /* Left sidebar — mobile pe center ke neeche, horizontal scroll tabs */
            .home-left {
                width: 100%;
                order: 2;
            }

            .home-center {
                order: 1;
            }

            .home-right {
                order: 3;
            }

            .home-left-inner {
                position: static;
                max-height: none;
            }

            /* Sidebar nav — mobile pe hide (upar cat-nav-bar hai) */
            .sidebar-menu {
                display: none;
            }

            /* App download + Follow Us — mobile pe hide */
            .home-left .app-section,
            .home-left .follow-section {
                display: none;
            }

            /* Featured grid — stack on mobile */
            .featured-grid {
                grid-template-columns: 1fr;
            }

            .featured-small {
                flex-direction: row;
                gap: 8px;
            }

            .feat-sm-card {
                min-height: 80px;
            }

            /* List items */
            .db-list-thumb {
                width: 110px;
                height: 80px;
            }

            .db-list-body h3 {
                font-size: 15px;
            }

            .db-share-bar {
                display: none;
            }

            /* Right sidebar hidden on mobile */
            .home-right {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .featured-big img {
                height: 220px;
            }

            .featured-small {
                display: none;
            }

            .db-list-thumb {
                width: 90px;
                height: 68px;
            }

            .db-list-body h3 {
                font-size: 14px;
            }
        }

        /* === DARK MODE OVERRIDES FOR HOME PAGE === */
        body.dark-mode .db-list-item,
        body.dark-mode .trending-item {
            background: transparent !important;
            border-color: #2a2a3e !important;
        }
        body.dark-mode .db-list-body h3,
        body.dark-mode .trending-title,
        body.dark-mode .video-info h4,
        body.dark-mode .db-section-head h2 {
            color: #f0f0f0 !important;
        }
        body.dark-mode .db-cat,
        body.dark-mode .db-share-bar .db-cat-pill,
        body.dark-mode .trending-num {
            color: #ccc !important;
        }
        body.dark-mode .db-share-bar .db-cat-pill {
            border-color: #444 !important;
        }
        body.dark-mode .db-list-item ul li button,
        body.dark-mode .db-list-item ul li span,
        body.dark-mode .db-list-item ul li a,
        body.dark-mode .db-share-icons li button,
        body.dark-mode .db-share-icons li span,
        body.dark-mode .db-share-icons li a {
            border-color: #666 !important;
            color: #fff !important;
        }
        body.dark-mode .trending-widget,
        body.dark-mode .video-widget {
            background: #1a1a2e !important;
            border-color: #2a2a3e !important;
        }
        body.dark-mode .category-section {
            background: transparent !important;
        }
        body.dark-mode .trending-item.video-highlight {
            background: #1a1a2e !important;
        }
    