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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0F0F0F;
            color: white;
            min-height: 100vh;
            line-height: 1.5;
        }

        /* Variabel Warna */
        :root {
            --bg-primary: #0F0F0F;
            --bg-secondary: #272727;
            --bg-tertiary: #3A3A3A;
            --text-primary: #FFFFFF;
            --text-secondary: #AAAAAA;
            --text-tertiary: #888888;
            --accent-red: #033EAE;
            --accent-blue: #3B82F6;
            --border-color: #333333;
        }

        /* Utility Classes */
        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .justify-center {
            justify-content: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .justify-around {
            justify-content: space-around;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        .gap-3 {
            gap: 0.75rem;
        }

        .gap-4 {
            gap: 1rem;
        }

        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .sticky {
            position: sticky;
        }

        .top-0 {
            top: 0;
        }

        .bottom-0 {
            bottom: 0;
        }

        .left-0 {
            left: 0;
        }

        .right-0 {
            right: 0;
        }

        .inset-0 {
            inset: 0;
        }

        .w-full {
            width: 100%;
        }

        .h-full {
            height: 100%;
        }

        .w-6 {
            width: 1.5rem;
        }

        .h-6 {
            height: 1.5rem;
        }

        .w-7 {
            width: 1.75rem;
        }

        .h-7 {
            height: 1.75rem;
        }

        .w-9 {
            width: 2.25rem;
        }

        .h-9 {
            height: 2.25rem;
        }

        .w-10 {
            width: 2.5rem;
        }

        .h-10 {
            height: 2.5rem;
        }

        .w-16 {
            width: 4rem;
        }

        .h-16 {
            height: 4rem;
        }

        .aspect-video {
            aspect-ratio: 16 / 9;
        }

        .object-cover {
            object-fit: cover;
        }

        .rounded {
            border-radius: 0.25rem;
        }

        .rounded-full {
            border-radius: 50%;
        }

        .rounded-xl {
            border-radius: 0.75rem;
        }

        .rounded-lg {
            border-radius: 0.5rem;
        }

        .overflow-hidden {
            overflow: hidden;
        }

        .overflow-x-auto {
            overflow-x: auto;
        }

        .flex-shrink-0 {
            flex-shrink: 0;
        }

        .z-50 {
            z-index: 50;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .py-2 {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .p-2 {
            padding: 0.5rem;
        }

        .p-3 {
            padding: 0.75rem;
        }

        .p-4 {
            padding: 1rem;
        }

        .mb-1 {
            margin-bottom: 0.25rem;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-0\.5 {
            margin-bottom: 0.125rem;
        }

        .text-xs {
            font-size: 0.75rem;
        }

        .text-sm {
            font-size: 0.875rem;
        }

        .text-xl {
            font-size: 1.25rem;
        }

        .font-medium {
            font-weight: 500;
        }

        .font-bold {
            font-weight: 700;
        }

        .tracking-tight {
            letter-spacing: -0.025em;
        }

        .text-white {
            color: var(--text-primary);
        }

        .text-gray-400 {
            color: var(--text-tertiary);
        }

        .text-gray-300 {
            color: var(--text-secondary);
        }

        .text-blue-500 {
            color: var(--accent-blue);
        }

        .bg-black {
            background-color: var(--bg-primary);
        }

        .bg-\[272727\] {
            background-color: var(--bg-secondary);
        }

        .bg-red-600 {
            background-color: var(--accent-red);
        }

        .bg-black\/60 {
            background-color: rgba(15, 15, 15, 0.6);
        }

        .bg-black\/80 {
            background-color: rgba(15, 15, 15, 0.8);
        }

        .border-t {
            border-top: 1px solid;
        }

        .border-gray-800 {
            border-color: var(--border-color);
        }

        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }

        .shadow-red-600\/50 {
            box-shadow: 0 10px 15px -3px rgba(255, 0, 0, 0.5), 0 4px 6px -4px rgba(255, 0, 0, 0.5);
        }

        .transition-all {
            transition-property: all;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 300ms;
        }

        /* Custom Styles */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Header */
        .header {
            background-color: var(--bg-primary);
            padding: 0.75rem 1rem;
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo {
            width: 1.5rem;
            height: 1.5rem;
            background-color: var(--accent-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo i {
            color: white;
            margin-left: 0.125rem;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.025em;
        }

        /* CSS UTAMA KAMU */
        .search-bar {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background-color: var(--bg-secondary);
            border-radius: 99rem;
            padding: 0.1rem 1rem;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        /* Efek saat kolom diklik/hover */
        .search-bar:hover, .search-bar:focus-within {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
        }

        .search-bar input {
            flex: 1;
            background-color: transparent;
            outline: none;
            color: var(--text-tertiary);
            border: none;
        }

        .search-bar input::placeholder {
            color: #888888;
        }

        .search-bar i {
            color: var(--text-tertiary);
            cursor: pointer;
        }

        /* CSS TAMBAHAN UNTUK TOMBOL KANAN */
        .search-bar .btn-search {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.5rem 1.25rem; /* Padding vertikal & horizontal */
            border-radius: 0.375rem;
            cursor: pointer;
            font-size: 0.9rem;
            margin-left: auto; /* <-- PENTING: Ini mendorong tombol ke kanan */
            flex-shrink: 0; /* Mencegah tombol gepeng jika layar kecil */
        }
        
        .search-bar .btn-search:hover {
            opacity: 0.9;
        }

        /* Channel Section */
        .channel-section {
            padding: 1rem;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

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

        .channel-list {
            display: flex;
            gap: 1rem;
        }

        .channel-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .channel-avatar {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            border: 2px solid var(--accent-red);
            padding: 0.125rem;
        }

        .channel-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .channel-name {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        /* Featured Video */
        .featured-video {
            padding: 0 1rem 1rem;
        }

        .featured-video-card {
            background-color: var(--bg-secondary);
            border-radius: 0.75rem;
            overflow: hidden;
        }

        .video-thumbnail {
            position: relative;
        }

        .video-thumbnail img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            max-height: 450px;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(88, 28, 135, 0.4), transparent);
        }

        .video-duration {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 0.125rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .play-button {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 0.5rem;
            border-radius: 0.5rem;
        }

        .video-info {
            display: flex;
            gap: 0.75rem;
            padding: 0.75rem;
        }

        .channel-thumbnail {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .video-details {
            flex: 1;
        }

        .video-title {
            font-weight: 500;
            margin-bottom: 0.25rem;
            font-size: 1rem;
        }

        .channel-info {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-bottom: 0.125rem;
        }

        .channel-info p {
            font-size: 0.7rem;
            color: var(--text-tertiary);
        }

        .verified-badge {
            color: var(--accent-blue);
            font-size: 1rem;
        }

        .video-meta {
            font-size: 0.7rem;
            color: var(--text-tertiary);
        }

        .menu-button {
            display: flex;
            align-items: flex-start;
            padding-top: 0.25rem;
        }

        .menu-button i {
            color: var(--text-tertiary);
        }

        /* Video Grid */
        .video-grid {
            padding: 0 1rem;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        @media (min-width: 768px) {
            .grid-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .grid-container {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (min-width: 1280px) {
            .grid-container {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        @media (min-width: 1536px) {
            .grid-container {
                grid-template-columns: repeat(7, 1fr);
            }
        }

        .video-card {
            background-color: var(--bg-secondary);
            border-radius: 0.75rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .video-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

        .video-card-thumbnail {
            position: relative;
        }

        .video-card-thumbnail img {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .video-card-duration {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 0.125rem 0.375rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .video-card-info {
            padding: 0.5rem;
        }

        .video-card-title {
            font-size: 0.7rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-card-channel {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            margin-bottom: 0.125rem;
        }

        .video-card-channel p {
            font-size: 0.6rem;
            color: var(--text-tertiary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .video-card-verified {
            color: var(--accent-blue);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .video-card-meta {
            font-size: 0.6rem;
            color: var(--text-tertiary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
            /* Opsi 2: Wrapper dengan flexbox */
        .heading-with-line {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }

        .heading-with-line h2 {
            margin: 0;
            font-size: 1rem;
            font-weight: bold;
            color: #ddd;
        }

        .heading-with-line::after {
            content: "";
            flex-grow: 1;
            height: 1px;
            background-color: #ddd;
            margin-left: 15px;
        }

        /* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 50;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    height: 65px; /* Menetapkan tinggi fix agar konsisten */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1rem;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
}

/* --- Styling untuk Item Nav (Home, Compass, dll) --- */
.nav-item {
    /* Ubah display agar elemen A berperan seperti flexbox container */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    gap: 0.25rem;
    padding: 0.5rem 1rem; /* Perlebar padding horizontal agar mudah diklik */
    background: none;
    border: none;
    
    color: var(--text-tertiary);
    text-decoration: none; /* Hilangkan garis bawah link */
    cursor: pointer;
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    
    /* Membuat area klik lebih luas */
    min-width: 60px; 
    min-height: 50px;
    position: relative;
}

/* Garis Indikator Active */
.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-red); /* Tambahkan warna background */
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.active::before {
    transform: scaleX(1);
}

.nav-item i {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Warna teks saat Active */
.nav-item.active i {
    color: var(--accent-red);
}

.nav-item:hover {
    color: var(--text-primary);
    background-color: rgba(0,0,0,0.03); /* Feedback visual saat hover */
}

.nav-item:active i {
    transform: scale(0.9); /* Efek tekan */
}

/* --- Styling untuk Tombol Create (Bulat) --- */
.nav-create {
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative; /* Menggantikan wrapper */
    /* Pindahkan properti bottom dari wrapper ke sini */
    bottom: 25px; 
    
    background-color: var(--accent-red);
    
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    
    border-radius: 50%;
    color: white; /* Warna icon */
    text-decoration: none;
    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Tambah bayangan agar terlihat melayang */
    
    z-index: 10;
    flex-shrink: 0;
}

.nav-create i {
    font-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-create:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #e63946; /* Sedikit lebih gelap saat hover */
}

.nav-create:active {
    transform: scale(0.95);
}

/* Media Queries Responsif */
@media (max-width: 480px) {
    .nav-create {
        width: 2.75rem;
        height: 2.75rem;
        bottom: 20px; /* Sesuaikan posisi di layar kecil */
    }
    .nav-create i { font-size: 1.125rem; }
}

@media (min-width: 768px) {
    .nav-create {
        width: 3.25rem;
        height: 3.25rem;
    }
    .nav-create i { font-size: 1.375rem; }
}

        /* Content Padding */
        .content-padding {
            padding-bottom: 4.5rem;
        }