.opensource-container,
#plugins-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
    box-sizing: border-box;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.repo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 60px !important;
    justify-content: center;
    justify-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.repo-card {
    background: white;
    width: 100%; /* Memastikan card memenuhi lebar kolom tapi tidak melebihi batas */
    max-width: 380px;
    border-radius: 16px;
    padding: 40px !important;
    box-sizing: border-box !important; /* Kunci agar padding tidak bikin ukuran melebar */
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #eee;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer; /* <--- Ditambahkan agar kursor berubah jadi tangan saat di-hover */
}

.repo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none !important;
}

.night-mode .repo-card {
    background: #444;
    border-color: #555;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.repo-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #007bff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.night-mode .repo-name {
    color: #58a6ff;
}

.repo-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    opacity: 0.9;
}

.repo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: auto; /* Mendorong footer agar selalu rata di bawah kartu */
}

.repo-toolsFor {
    font-weight: 500;
}

.repo-lang {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.repo-stats {
    display: flex;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsif untuk layar tablet / HP */
@media screen and (max-width: 1024px) {
    .repo-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .repo-grid {
        grid-template-columns: 1fr;
    }
}

/* --- AMAN UNTUK LINK DOKUMENTASI TERPISAH --- */
.doc-link-safe {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.doc-link-safe:hover {
    color: #007bff;
    text-decoration: underline;
}

.night-mode .doc-link-safe:hover {
    color: #58a6ff;
}

/* --- EXPLORE MORE BUTTON --- */
.explore-more-container {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #007bff;
    color: white;
    padding: 14px 32px;
    border-radius: 50px; /* Bentuk kapsul yang modern */
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none !important; /* Mencegah munculnya garis bawah (underline) */
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-more-btn:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    text-decoration: none !important;
}

/* Penyesuaian warna jika masuk mode gelap */
.night-mode .explore-more-btn {
    background-color: #58a6ff;
    color: #0d1117;
    box-shadow: 0 4px 15px rgba(88, 166, 255, 0.2);
}

.night-mode .explore-more-btn:hover {
    background-color: #79c0ff;
    box-shadow: 0 6px 20px rgba(88, 166, 255, 0.3);
}

/* --- SEARCH BAR STYLING --- */
.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.15);
}

.search-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background-color: #0056b3;
}

.reset-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
    color: #4a5568;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.reset-search-btn:hover {
    background-color: #cbd5e1;
}

/* Night Mode untuk Search Bar */
.night-mode .search-input {
    background-color: #2d2d2d;
    border-color: #444;
    color: #fff;
}

.night-mode .search-btn {
    background-color: #58a6ff;
    color: #0d1117;
}

.night-mode .search-btn:hover {
    background-color: #79c0ff;
}

.night-mode .reset-search-btn {
    background-color: #333;
    color: #fff;
}

/* --- CUSTOM PAGINATION STYLING --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 20px;
    width: 100%;
}

/* Membungkus kotak utama pagination menyerupai search bar */
.pagination-container nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 650px !important;
    background-color: white !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    border: 1px solid #eee !important;
    box-sizing: border-box !important;
}

.night-mode .pagination-container nav {
    background-color: #2d2d2d !important;
    border-color: #404040 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* Mematikan layout bawaan tailwind yang bikin pecahan teks berantakan */
.pagination-container div.hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between {
    display: contents !important;
}

/* Teks "Showing X to Y..." di sebelah kiri */
.pagination-container p.text-sm {
    margin: 0 !important;
    opacity: 0.8;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Menyembunyikan bagian flex bawaan laravel yang tidak perlu jika merusak */
.pagination-container div > div:first-child {
    display: none !important; /* Menyembunyikan teks showing versi mobile bawaan */
}

@media screen and (min-width: 640px) {
    .pagination-container div > div:first-child {
        display: block !important;
    }
}

/* Membungkus list tombol navigasi (Previous, angka, Next) di sebelah kanan */
.pagination-container ul,
.pagination-container div.flex.justify-between,
.pagination-container span.relative.z-0 {
    display: flex !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 6px !important;
    align-items: center !important;
}

.pagination-container svg {
    width: 14px !important;
    height: 14px !important;
    display: inline-block !important;
}

/* Styling tombol pagination bentuk kapsul */
.pagination-container span[aria-current="page"] > span,
.pagination-container a,
.pagination-container span.relative {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    background-color: #f8f9fa !important;
    color: #333 !important;
    border: 1px solid #dee2e6 !important;
    transition: all 0.2s ease;
}

.pagination-container span[aria-current="page"] > span {
    background-color: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.pagination-container a:hover {
    background-color: #e9ecef !important;
    border-color: #adb5bd !important;
    transform: translateY(-2px);
}

.pagination-container span[aria-disabled="true"] {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background-color: #f1f3f5 !important;
}

/* Night Mode untuk Pagination */
.night-mode .pagination-container span[aria-current="page"] > span {
    background-color: #58a6ff !important;
    color: #0d1117 !important;
    border-color: #58a6ff !important;
    box-shadow: 0 2px 8px rgba(88, 166, 255, 0.2);
}

.night-mode .pagination-container a,
.night-mode .pagination-container span.relative {
    background-color: #383838 !important;
    color: #fff !important;
    border-color: #505050 !important;
}

.night-mode .pagination-container a:hover {
    background-color: #454545 !important;
    border-color: #666 !important;
}

.night-mode .pagination-container span[aria-disabled="true"] {
    background-color: #222 !important;
    color: #666 !important;
    border-color: #333 !important;
}

/* --- PERBAIKAN POSISI PAGINATION DI MOBILE --- */
@media screen and (max-width: 768px) {
    .pagination-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 15px; /* Memberikan jarak aman kiri-kanan agar tidak mentok layar */
        box-sizing: border-box;
    }

    .pagination-container nav {
        flex-direction: column !important; /* Ubah jadi ke bawah di HP agar tidak saling dorong */
        gap: 15px !important;
        padding: 15px !important;
        max-width: 100% !important;
        border-radius: 20px !important;
    }

    .pagination-container div.hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between,
    .pagination-container div[class*="flex"] {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* Memposisikan teks Showing dan tombol angka agar senter sempurna */
    .pagination-container p.text-sm {
        text-align: center !important;
        margin-bottom: 5px !important;
    }

    .pagination-container ul,
    .pagination-container div.flex.justify-between,
    .pagination-container span.relative.z-0 {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }
}

/* Layout Grid Apps */
.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
    box-sizing: border-box;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(340px, 1fr));
    gap: 30px;
    justify-content: center;
    justify-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.app-card-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Card Utama */
.app-card-modern {
    background: #fdfbf7; /* Warna background ala kartu vintage/krem terang */
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.app-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* 1. Bagian Banner Atas */
.app-banner {
    display: block;
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #f0eae1;
    cursor: pointer;
}

.app-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.app-card-modern:hover .app-banner-img {
    transform: scale(1.03);
}

/* Teks di atas banner */
.app-banner-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    color: #fff;
}

.app-badge-top {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
    backdrop-filter: blur(4px);
}

.app-banner-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #fff;
}

.app-banner-desc {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 2. Bagian Bagian Bawah (Footer) - Default (Terang) */
.app-card-footer {
    background-color: #f4efe6; /* Warna terang senada dengan card */
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #202124;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Garis pemisah tipis */
}

.app-footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.app-icon-container {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    flex-shrink: 0;
}

.app-small-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-meta-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-meta-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #202124; /* Teks terang */
}

.app-meta-sub {
    font-size: 0.75rem;
    margin: 2px 0 0 0;
    color: #5f6368; /* Subteks terang */
}

/* Tombol Lihat (Mode Terang) */
.app-action-btn {
    background-color: #1a73e8;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    text-decoration: none !important;
}

.app-action-btn:hover {
    background-color: #1557b0;
    text-decoration: none !important;
}


/* --- KHUSUS NIGHT MODE (UBAH JADI GELAP) --- */
.night-mode .app-card-footer {
    background-color: #1a1a1a; /* Berubah jadi hitam/gelap saat night mode */
    border-top: 1px solid #333;
}

.night-mode .app-meta-name {
    color: #ffffff; /* Teks jadi putih */
}

.night-mode .app-meta-sub {
    color: #999; /* Subteks jadi abu-abu terang */
}

.night-mode .app-icon-container {
    background: #333;
}

.night-mode .app-action-btn {
    background-color: #3b82f6;
    color: #fff;
    text-decoration: none !important;
}

.night-mode .app-action-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
}

/* Responsif untuk layar tablet & HP */
@media screen and (max-width: 1100px) {
    .apps-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

/* COLLABORATION STYLE */

.collabs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}

.collabs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(340px, 1fr));
    gap: 30px !important;
    justify-content: center;
    justify-items: center;
    padding-top: 20px;
}

/* Card Styling */
.collab-card {
    background: white;
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.collab-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Container Gambar */
.collab-image-container {
    width: 100%;
    height: 220px;
    background-color: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.collab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collab-card:hover .collab-image {
    transform: scale(1.05); /* Efek zoom tipis saat card di-hover */
}

/* Container Teks */
.collab-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.collab-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #202124;
}

.collab-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #5f6368;
    margin: 0 0 20px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Batasi teks maksimal 3 baris agar rapi */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bagian Footer Card (Platform Badge) */
.collab-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.collab-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    background-color: #f1f3f4;
    color: #3c4043;
}

/* Warna badge opsional sesuai platform */
.collab-platform.android {
    background-color: #e6f4ea;
    color: #137333;
}

.collab-platform.ios {
    background-color: #e8f0fe;
    color: #1a73e8;
}

/* --- NIGHT MODE SUPPORT --- */
.night-mode .collab-card {
    background: #333;
    border-color: #444;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.night-mode .collab-title {
    color: #fff;
}

.night-mode .collab-description {
    color: #b0b0b0;
}

.night-mode .collab-image-container {
    background-color: #252525;
}

.night-mode .collab-platform {
    background-color: #444;
    color: #e0e0e0;
}

.night-mode .collab-platform.android {
    background-color: #0d3b1e;
    color: #81c995;
}

.night-mode .collab-platform.ios {
    background-color: #112642;
    color: #8ab4f8;
}

/* --- TAMBAHAN WARNA PLATFORM BADGE --- */
.collab-platform.web {
    background-color: #e3f2fd;
    color: #0288d1;
}

.collab-platform.game {
    background-color: #fce8e6;
    color: #c5221f;
}

.collab-platform.others {
    background-color: #f3e8fd;
    color: #8430ce;
}

/* Night Mode untuk Platform Badge Baru */
.night-mode .collab-platform.web {
    background-color: #08304a;
    color: #4fc3f7;
}

.night-mode .collab-platform.game {
    background-color: #4c1c1a;
    color: #f28b82;
}

.night-mode .collab-platform.others {
    background-color: #381a4a;
    color: #d7aefb;
}

@media screen and (max-width: 1100px) {
    .collabs-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .collabs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- VIDEO & PLAYLIST STYLE EXTENSIONS --- */
.collab-platform.youtube {
    background-color: #fee2e2;
    color: #dc2626;
}

.night-mode .collab-platform.youtube {
    background-color: #450a0a;
    color: #f87171;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 80px 20px;
    width: 100%;
}

.video-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.82);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 48px;
    height: 48px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 2;
}

.collab-card:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.playlist-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    width: 42%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 6px;
    padding: 10px;
    text-align: center;
    z-index: 2;
}

.playlist-badge i {
    font-size: 1.3rem;
    color: #f87171;
}

.video-section {
    margin-bottom: 45px;
    width: 100%;
}

.video-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
}

.night-mode .video-section-header {
    border-bottom-color: #383838;
}

.video-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #202124;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.video-section-title i {
    font-size: 1.2rem;
}

.night-mode .video-section-title {
    color: #f1f3f4;
}

.video-show-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a73e8;
    text-decoration: none !important;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: #e8f0fe;
    transition: all 0.2s ease;
}

.video-show-all-btn:hover {
    background-color: #d2e3fc;
    color: #174ea6;
    transform: translateX(3px);
}

.night-mode .video-show-all-btn {
    color: #8ab4f8;
    background-color: #172b4d;
}

.night-mode .video-show-all-btn:hover {
    background-color: #1f3a68;
    color: #aecbfa;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: #5f6368;
    margin-left: auto;
}

.night-mode .video-meta {
    color: #9aa0a6;
}

.video-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e8eaed;
}

.night-mode .video-results-bar {
    background: #282828;
    border-color: #3c4043;
}

.video-results-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #202124;
    margin: 0;
}

.night-mode .video-results-title {
    color: #e8eaed;
}

.video-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #5f6368;
    text-decoration: none !important;
    padding: 6px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dadce0;
    transition: all 0.2s ease;
}

.video-back-btn:hover {
    background: #f1f3f4;
    color: #202124;
}

.night-mode .video-back-btn {
    background: #333;
    border-color: #444;
    color: #dadce0;
}

.night-mode .video-back-btn:hover {
    background: #444;
    color: #fff;
}

.video-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #5f6368;
}

.night-mode .video-empty-state {
    color: #9aa0a6;
}

.video-empty-icon {
    font-size: 3rem;
    color: #9aa0a6;
    margin-bottom: 16px;
}
