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

        body {
            background: #111;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .top-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            background: #0a0a0a;
            border-bottom: 1px solid #2a2a2a;
        }
        
        .logo img { 
            height: 40px; 
        }
        
        .app-download-svg { 
            height: 36px; 
        }

        .player-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
            overflow: hidden;
        }

        video {
            width: 100%;
            height: 100%;
            display: block;
            background: #000;
            object-fit: contain;
        }

        /* Slider - Default Open */
        .compact-slider {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #0000005d;
            padding: 35px 15px 18px;
            transform: translateY(0); /* Default open */
            transition: transform 0.3s ease;
            z-index: 100;
            backdrop-filter: blur(4px);
            border-top: 1px solid #444;
        }

        .compact-slider.hide {
            transform: translateY(100%);
        }

        .slider-top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5px 15px 5px;
            border-bottom: 1px solid #333;
            margin-bottom: 12px;
        }

        .available-text {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .available-text i {
            color: #aaa;
            font-size: 12px;
        }

        .available-text span {
            font-size: 14px;
            font-weight: 500;
            color: #ddd;
            text-transform: uppercase;
        }

        .icon-group {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .icon-group .action-icon {
            font-size: 22px;
            color: #ccc;
            cursor: pointer;
            transition: all 0.2s;
        }

        .icon-group .action-icon:active {
            color: #fff;
            transform: scale(1.1);
        }

        .icon-group .action-icon.disabled {
            opacity: 0.3;
            pointer-events: none;
        }

        .channel-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            padding: 5px 0 12px;
        }

        .channel-scroll::-webkit-scrollbar {
            display: none;
        }

        .mini-card {
            min-width: 105px;
            width: 105px;
            height: 75px;
            background: transparent;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            border: 1px solid silver;
            padding: 8px 3px;
            flex-shrink: 0;
        }

        .mini-card.active {
            border-color: white;
                    border: 2px solid white;
            background: #00000064;
        }

        .mini-card img {
            width: 80px;
            height: 40px;
            object-fit: fill;
        }

        .mini-card span {
            font-size: 10px;
            color: white;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 95px;
        }

        .stats-bar {
            background: #0f0f0f;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #2a2a2a;
        }

        .viewers {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .viewers i {
            color: #888;
            font-size: 20px;
        }

        .viewer-count {
            display: flex;
            flex-direction: column;
        }

        .viewer-count .label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
        }

        .viewer-count .number {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
        }

        .live-badge {
            background: #1a1a1a;
            padding: 8px 18px;
            border-radius: 40px;
            border: 1px solid #444;
        }

        .live-badge span {
            color: #ff4d4d;
            font-size: 14px;
            font-weight: 600;
        }

        .live-badge i {
            color: #ff4d4d;
            font-size: 10px;
            margin-right: 6px;
        }

.footer {
            background: #0a0a0a;
            text-align: center;
            padding: 20px;
            border-top: 1px solid #e40067e1;
        }




        .credit {
            color: #777;
            font-size: 14px;
        }
        
        .credit b {
            color: #aaa;
        }

        @media (orientation: landscape) {
            .top-header, .stats-bar, .footer {
                display: none;
            }
            
            .player-wrapper {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                aspect-ratio: auto;
            }
        }
        
        .watermark-logo-nurmd2006 {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: auto;
    opacity: 0.3; /* 30% transparent (60% transparent মানে 30% opacity) */
    z-index: 9999;
    pointer-events: none; 
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2)); 
    transition: opacity 0.2s ease;
}

@media (max-width: 768px) {
    .watermark-logo-nurmd2006 {
        width: 90px;
        top: 15px;
        left: 15px;
    }
}


@media (orientation: landscape) and (max-width: 900px) {
    .watermark-logo-nurmd2006 {
        width: 100px;
    }
}
