
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        
        iframe, img {
            
            max-width:100%;
            overflow:hidden;
        }
        body {
            background-color: #fff;
            padding-bottom: 50px;
        }
        a { color:#000;
            text-decoration:none;
        }
        a:hover {
            color:#205dd4;
        }
        .head a {
            color:#000;
        }
        .head a:hover {
            color:#205dd4;
        }
        
        /* HEADER & SEARCH */
        .header {border-bottom: 1px solid #dee2e6;
            background: #f3f3f3;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: center;
        }
        .search-input {
            width: 100%;
            max-width: 600px;
            padding: 16px 20px;
            border-radius: 50px;
            border: 1px solid #ccc;
            font-size: 16px;
            outline: none;
            transition: 0.3s;
        }
        .search-input:focus {
            border-color: #205dd4;
            box-shadow: 0 0 5px rgba(32, 93, 212, 0.2);
        }

        /* GRID LAYOUT */
      
        .container {
            margin: 0 auto;
            max-width: 1200px;
           
        }
        .sidebar {border-top: 1px solid #dee2e6;
            background:#fff;
            padding:25px 10px;
        }
        .head {
            background:#fff;
            text-align:center;
            padding: 20px 20px 20px 20px;
            border-bottom: 1px solid #dee2e6;
        }
        .head h1 { text-transform: uppercase;
            padding:0;
            margin:0;
            font-size: 26px;
            font-weight: 800;
            letter-spacing: 3px;
        }
        .foot {
            border-top: 1px solid #dee2e6;
            padding:20px;
            text-align:center;
            color:#999;
        }
        
        .container {
           
           
        }
        
        main.content {
            padding:40px 0 30px 0;
        }
        .datavideo {
            background:#f9f9f9;
            padding:40px 10px 30px 10px;
            margin-bottom:0;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 kolom untuk mobile (seperti di referensi gambar) */
            gap: 4px; /* Gap tipis antar video */
        }
        
        .main-player {
            padding:10px 10px;
            width: 100%;
            align-items: center;
           
            margin:0 auto;
        }
        
         /* Wrapper Video Responsive */
        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background-color: #000;
            border-radius: 3px;
        }

        .video-wrapper iframe.videos {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Tombol Download */
        .download-container {
            margin-top: 30px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .btn-download {
            background-color: #205dd4;
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 16px 45px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            min-width: 120px;
            justify-content: center;
        }

        .btn-download:hover:not(.disabled) {
            color:#fff;
            background-color: #7ba4f3;
            transform: translateY(-3px);
            box-shadow: 0 0 5px rgba(32, 93, 212, 0.2);
        }

        .btn-download:active:not(.disabled) {
            transform: translateY(-1px);
            
        }

        /* SVG Icon Download */
        .btn-download svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }

        /* State Disabled untuk Tombol */
        .btn-download.disabled {
            background-color: #eef3fe; /* Abu-abu gelap */
            color: #b8becb;
            cursor: not-allowed;
            pointer-events: none; /* Mencegah klik */
            box-shadow: none;
        }

        .btn-download.disabled svg {
            stroke: #b8becb;
        }
 .info { 
            
            justify-content: center;
            align-items: center;
 } @media (max-width: 600px) {
            .head h1,
            .logo {
                font-size: 22px;
            }
           
            .btn-download {
                width: 100%;
                padding: 14px 20px;
                font-size: 15px;
            }
            
        }
        
        @media (min-width: 768px) {
            .video-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
        }
        @media (min-width: 1024px) {
            .video-grid { grid-template-columns: repeat(6, 1fr); gap: 10px; }
        }

        /* VIDEO CARD (SHORTS STYLE) */
        .video-card {
            position: relative;
            aspect-ratio: 9 / 16;
            background-color: #222;
            overflow: hidden;
            border-radius: 3px; /* Opsi estetik, hilangkan jika ingin sudut siku-siku */
            cursor: pointer;
        }
        .video-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .video-card:hover img {
            transform: scale(1.05);
        }
        
        /* OVERLAY TEXT */
        .video-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 10px 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .video-title h2 {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.2;
            /* Membatasi teks hanya 1 baris */
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }
        .video-meta {
            font-size: 12px;
            font-weight: 500;
            display: flex;
            gap: 8px;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }

        /* BUTTON LOAD MORE */
        .load-more-btn {
            display: block;
            margin: 30px auto;
           
            background-color: #205dd4;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 16px 45px;
            cursor: pointer;
            transition: 0.3s;
        }
        .load-more-btn:hover {
            background-color: #7ba4f3;
            transform: translateY(-3px);
            box-shadow: 0 0 5px rgba(32, 93, 212, 0.2);
        }
        .empty-state {
            text-align: center;
            padding: 40px;
            color: #666;
            grid-column: 1 / -1;
        }
        
  /* CSS Tambahan untuk Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.page-btn {
    padding: 8px 14px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}
.page-btn:hover:not(:disabled) {
    background-color: #205dd4;
    color: #fff;
    border-color: #205dd4;
}
.page-btn.active {
    background-color: #205dd4;
    color: #fff;
    border-color: #205dd4;
    cursor: default;
}
.page-dots {
    padding: 8px 10px;
    color: #666;
}      