        /* 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;
            --hover-bg: rgba(255, 255, 255, 0.1);
            --primary-color: var(--accent-blue);
        }

        /* 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;
        }

        /* Video Player */
        .video-player {
            width: 100%;
            margin-bottom: 1rem;
        }

        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background-color: #000;
            border-radius: 0.75rem;
            overflow: hidden;
        }
        .video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-controls {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .video-dots {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .video-dots div {
            width: 0.25rem;
            height: 0.25rem;
            background-color: var(--text-primary);
            border-radius: 9999px;
        }

        .fullscreen-btn {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            color: var(--text-primary);
            font-size: 1.25rem;
            cursor: pointer;
        }
        
        /* Video Iframe */
        .video-iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 0.75rem;
        }

        
        /* Video Info */
        .video-info {
            padding: 1rem;
        }

        .video-title {
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

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

        /* Action Buttons */
        .action-buttons {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
        }

        .action-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--bg-tertiary);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            transition: background-color 0.15s ease-in-out;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            white-space: nowrap;
        }

        .action-btn:hover {
            background-color: var(--bg-secondary);
        }

        .action-btn i {
            font-size: 12px;
        }

        .action-btn span {
            font-size: 12px;
            font-weight: 500;
        }

        .icon-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-tertiary);
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            transition: background-color 0.15s ease-in-out;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }

        .icon-btn:hover {
            background-color: var(--bg-secondary);
        }

        .icon-btn i {
            font-size: 1rem;
        }

        /* Channel Info */
        .channel-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .channel-details {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .channel-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background: linear-gradient(to bottom right, #a855f7, #ec4899);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

        .channel-meta {
            display: flex;
            flex-direction: column;
        }

        .channel-name-wrapper {
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }

        .channel-name {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.8rem;
        }

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

        .subscriber-count {
            color: var(--text-secondary);
            font-size: 0.7rem;
        }

        .subscribe-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            white-space: nowrap;
            font-size: 12px;
            height: 2rem;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: all 0.15s ease-in-out;
            background-color: var(--accent-red);
            color: var(--text-primary);
            border: none;
            cursor: pointer;
        }

        .subscribe-btn:hover {
            background-color: #cc0000;
        }

        /* Related Videos - Slide Horizontal */
        .related-videos {
            padding: 1rem;
            margin-top: 1rem;
        }
        
            /* 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;
        }

        .video-slider {
            display: flex;
            overflow-x: auto;
            gap: 1rem;
            padding-bottom: 0.5rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .video-slider::-webkit-scrollbar {
            display: none;
        }

        .video-card {
            flex-shrink:0;
            width: 280px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .video-card:hover {
            transform: translateY(-4px);
        }

        .video-thumbnail {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }

        .video-thumbnail img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

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

        .video-card-title {
            color: var(--text-primary);
            font-size: 0.7rem;
            font-weight: 500;
            line-height: 1.25;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            margin-bottom: 0.25rem;
        }

        .video-card-meta {
            color: var(--text-secondary);
            font-size: 0.6rem;
        }

        /* Comments Section */
        .comments-section {
            padding: 1rem;
            margin-top: 1rem;
        }

        .comments-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 1rem;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
        }

        .comments-title {
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .comments-header i {
            font-size: 1.25rem;
            color: var(--text-secondary);
        }

        /* Comment Form */
        .comment-form {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .comment-form-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: linear-gradient(to bottom right, #a855f7, #ec4899);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .comment-form-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-input-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        /* Comment Name Input Styles */
        .comment-name-input {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 0.75rem;
            color: var(--text-primary);
            font-size: 0.875rem;
            font-family: inherit;
            margin-bottom: 0.5rem;
            transition: all 0.15s ease-in-out;
        }

        .comment-name-input:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25);
        }

        .comment-name-input::placeholder {
            color: var(--text-tertiary);
            font-size: 0.6rem;
        }

        .comment-input {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 0.75rem;
            color: var(--text-primary);
            font-size: 0.6rem;
            resize: none;
            min-height: 3rem;
            max-height: 10rem;
            font-family: inherit;
        }

        .comment-input:focus {
            outline: none;
            border-color: var(--accent-blue);
        }

        .comment-form-actions {
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .comment-form-btn {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.15s ease-in-out;
        }

        .comment-cancel-btn {
            background-color: transparent;
            color: var(--text-secondary);
        }

        .comment-cancel-btn:hover {
            color: var(--text-primary);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .comment-submit-btn {
            background-color: var(--accent-blue);
            color: white;
        }

        .comment-submit-btn:hover {
            background-color: #2563eb;
        }

        .comment-submit-btn:disabled {
            background-color: #4b5563;
            color: #9ca3af;
            cursor: not-allowed;
        }

        /* Comments List */
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .comment-item {
            display: flex;
            gap: 1rem;
            padding-top: 20px;
        }

        .comment-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-content {
            flex: 1;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .comment-username {
            color: var(--text-primary);
            font-weight: 800;
            font-size: 0.8rem;
        }

        .comment-time {
            color: var(--text-tertiary);
            font-size: 0.6rem;
            margin-left: auto;
        }

        .comment-text {
            color: var(--text-primary);
            font-size: 0.7rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .comment-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .comment-action {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: var(--text-secondary);
            font-size: 12px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }

        .comment-action:hover {
            color: var(--text-primary);
        }

        .comment-action i {
            font-size: 1rem;
        }

        /* Comment Replies */
        .comment-replies {
            margin-top: 1rem;
            margin-left: 3.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .reply-item {
            display: flex;
            gap: 1rem;
        }

        .reply-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .reply-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .reply-content {
            flex: 1;
        }

        .reply-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
        }

        .reply-username {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 0.875rem;
        }

        .reply-time {
            color: var(--text-tertiary);
            font-size: 0.75rem;
        }

        .reply-text {
            color: var(--text-primary);
            font-size: 0.875rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
        }

        .reply-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reply-action {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            color: var(--text-secondary);
            font-size: 0.75rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
        }

        .reply-action:hover {
            color: var(--text-primary);
        }

        .reply-action i {
            font-size: 1rem;
        }

        /* View Replies Button */
        .view-replies-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.75rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            margin-top: 0.5rem;
            margin-left: 3.5rem;
        }

        .view-replies-btn:hover {
            color: var(--text-primary);
        }

        .view-replies-btn i {
            font-size: 1rem;
        }

        /* 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;
        }

        /* Desktop Layout */
        .desktop-layout {
            display: flex;
            flex-direction: row;
            gap: 1.5rem;
        }

        .main-content {
            flex: 1;
            max-width: calc(100% - 320px);
        }

        .sidebar {
            width: 320px;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (min-width: 1024px) {
            .desktop-layout {
                display: flex;
            }
            
            .related-videos {
                border-top: none;
                margin-top: 0;
                padding-top: 0;
            }
            
            .video-slider {
                flex-direction: column;
                gap: 1rem;
            }
            
            .video-card {
                width: 100%;
            }
        }

        @media (max-width: 1023px) {
            .desktop-layout {
                flex-direction: column;
            }
            
            .main-content {
                max-width: 100%;
            }
            
            .sidebar {
                width: 100%;
            }
            
            .related-videos {
                order: 1; /* Pindah related videos ke bawah channel info di mobile */
            }
            
            .comments-section {
                order: 2; /* Comments section di bawah related videos di mobile */
            }
        }

        @media (max-width: 810px) {
            .video-card {
                width: 240px;
            }
            
            .video-thumbnail img {
                height: 140px;
            }
            
            .comment-replies {
                margin-left: 3rem;
            }
            
            .view-replies-btn {
                margin-left: 3rem;
            }
        }
        
        /* Video Description */
        .video-description {
            border-radius: 0.75rem;
            margin-top: 1rem;
        }

        .description-content {
            text-align: left;
        }

        .description-text {
            color: var(--text-primary);
            font-size: 0.7rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            text-align: left;
        }

        .description-meta {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.5rem;
        }

        .meta-item i {
            font-size: 1rem;
        }

        .description-hashtags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .hashtag {
            color: var(--accent-blue);
            font-size: 0.7rem;
            cursor: pointer;
            transition: opacity 0.2s ease-in-out;
        }

        .hashtag:hover {
            opacity: 0.8;
            text-decoration: underline;
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 12px 20px;
            background-color: var(--bg-secondary);
            color: var(--text-primary);
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            transform: translateY(-100px);
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .notification.show {
            transform: translateY(0);
            opacity: 1;
        }

        .notification.success {
            border-left: 4px solid #4CAF50;
        }

        .notification.error {
            border-left: 4px solid #f44336;
        }

        .notification i {
            font-size: 18px;
        }

        .notification.success i {
            color: #4CAF50;
        }

        .notification.error i {
            color: #f44336;
        }

        /* Animation for comment form */
        .comment-input-container {
            animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments for comment form */
        @media (max-width: 810px) {
            .comment-name-input {
                padding: 0.5rem;
                font-size: 0.6rem;
            }
            
            .comment-form-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.7rem;
            }
        }