/* Variabel Warna dengan Nuansa Oranye Lembut */
:root {
    --primary-color: #4CAF50; /* Hijau utama */
    --secondary-color: #388E3C; /* Hijau gelap */
    --accent-color: #81C784; /* Hijau terang lembut */
    --background-light: #F1F8F4; /* Latar hijau muda adem */
    --surface-white: #FFFFFF;
    --text-primary: #2E2E2E;
    --text-secondary: #6E7C73;
    --border-color: #C8E6C9;
    --tab-active-bg: rgba(76, 175, 80, 0.15);
    --card-shadow: 0 8px 16px rgba(76, 175, 80, 0.08);
    --section-shadow: 0 6px 12px rgba(76, 175, 80, 0.06);
    --table-row-even: #FDF3E7; /* Warna latar baris tabel genap */
    --table-row-hover: #cccccc; /* Warna saat hover tabel */
    --orange-accent: #FF9800; /* Aksen oranye untuk highlight */
}

/* Reset Dasar & Styling Body */
body {
    font-family: 'Segoe UI', 'Roboto', 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-primary);
    font-size: 13px; /* Ukuran font dasar yang nyaman */
    position: relative; /* Penting untuk posisi tombol toggle */
}

/* Container Utama */
.container {
    display: flex;
    max-width: 1200px;
    margin: 25px auto; /* Margin atas/bawah dikurangi */
    background-color: var(--surface-white);
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    overflow: visible; /* Diubah dari hidden ke visible */
    position: relative;
}

/* Sidebar Kiri */
.sidebar-left {
    width: 200px; /* Lebar default diperkecil lagi agar lebih ramping */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fcece0;
    padding: 12px; /* Padding dikurangi */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease-in-out, padding 0.3s ease-in-out, transform 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    align-self: flex-start;
    height: 100vh; /* Tinggi penuh viewport */
    max-height: 100vh;
    overflow-y: auto; /* Scrollbar jika konten melebihi tinggi */
    z-index: 5;
    font-size: 0.85rem; /* Ukuran font utama sidebar lebih kecil */
}

.sidebar-left.collapsed {
    width: 50px; /* Lebih ramping saat collapsed */
    padding: 8px 0; /* Padding lebih kecil saat collapsed */
    align-items: center;
}

.sidebar-left h3 {
    text-align: center;
    margin-bottom: 12px; /* Margin bawah judul dikurangi */
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 6px; /* Padding bawah judul dikurangi */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    width: 100%;
    padding-left: 12px; /* Sesuaikan padding kiri */
    box-sizing: border-box;
    font-size: 1rem; /* Ukuran font judul di sidebar lebih kecil */
}

.sidebar-left.collapsed h3 {
    opacity: 0;
    transform: translateX(-100%);
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-left ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.sidebar-left ul li {
    text-align: left;
}

.sidebar-left ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 12px; /* Padding dikurangi lagi */
    color: #fcece0;
    text-decoration: none;
    transition: background-color 0.3s, padding-left 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 6px; /* Radius sedikit lebih kecil */
    margin-bottom: 2px; /* Jarak antar item dikurangi */
    position: relative;
    width: calc(100% - 24px); /* Sesuaikan lebar agar ada ruang untuk padding */
    margin-left: 12px;
    box-sizing: border-box;
}

.sidebar-left ul li a .icon {
    font-size: 1.1em; /* Ukuran ikon disesuaikan */
    margin-right: 10px; /* Margin kanan ikon dikurangi */
    flex-shrink: 0;
}

.sidebar-left ul li a .text {
    opacity: 1;
    transition: opacity 0.3s ease-in-out, margin-left 0.3s ease-in-out;
    white-space: nowrap;
    display: inline-block;
    font-size: 0.85rem; /* Ukuran teks item lebih kecil */
}

/* Styling Sidebar saat Collapsed */
.sidebar-left.collapsed ul li a {
    padding: 8px 0; /* Padding lebih kecil saat collapsed */
    justify-content: center;
    width: 100%;
    margin-left: 0;
}

.sidebar-left.collapsed ul li a .icon {
    margin-right: 0;
    font-size: 1.2em; /* Ikon tetap cukup besar agar mudah diklik */
}

.sidebar-left.collapsed ul li a .text {
    opacity: 0;
    width: 0;
    margin-left: -20px;
    overflow: hidden;
    display: none;
}

/* Hover & Active State untuk Sidebar */
.sidebar-left ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.sidebar-left ul li a.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.sidebar-left.collapsed ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Submenu Styling */
.submenu {
    padding-left: 12px; /* Padding kiri submenu dikurangi */
    margin: 2px 0 6px 0; /* Margin atas/bawah submenu dikurangi */
    border-left: 1px solid rgba(255, 255, 255, 0.4); /* Ketebalan border dikurangi */
    list-style-type: none;
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.sidebar-left.collapsed .submenu {
    display: none; /* Sembunyikan submenu saat sidebar collapsed */
}

/* Styling link di dalam submenu */
.submenu li a {
    padding: 6px 10px; /* Padding lebih kecil untuk item submenu */
    font-size: 0.8rem; /* Ukuran font submenu lebih kecil */
    margin-bottom: 1px; /* Jarak antar item submenu dikurangi */
}

/* Mengatur ukuran ikon di dalam submenu */
.submenu li a .icon {
    font-size: 0.9em; /* Ukuran ikon submenu lebih kecil */
    margin-right: 8px; /* Margin kanan ikon submenu */
}

/* Konten Utama */
.main-content {
    flex-grow: 1;
    padding: 25px; /* Padding konten utama dikurangi */
    transition: margin-left 0.3s ease-in-out;
    width: 100%;
    position: relative;
    overflow: visible;
}

/* Styling Tombol Toggle Sidebar */
.toggle-sidebar-btn {
   position: fixed;
    top: 25px; /* Posisi vertikal sedikit disesuaikan */
    left: 220px; /* Posisi awal di luar sidebar default (lebar sidebar + padding) */
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 10px; /* Padding tombol disesuaikan */
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em; /* Ukuran font tombol toggle disesuaikan */
    z-index: 20;
    transition: left 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Posisi Tombol saat Sidebar Collapsed */
.sidebar-left.collapsed ~ .toggle-sidebar-btn {
    left: 25px; /* Sesuaikan posisi tombol agar tetap terlihat rapi */
    transform: translateX(0);
}

/* Styling Card Content Dasar */
.card-content {
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04); /* Shadow sedikit lebih halus */
    padding: 20px; /* Padding card content dikurangi */
    animation: fadeInScaleUp 0.5s ease-in-out;
    position: relative; /* Penting untuk posisi sticky context */
}

.card-content h1 {
    color: var(--secondary-color);
    font-size: 1.8rem; /* Ukuran H1 lebih kecil */
    border-bottom: 1px solid var(--accent-color); /* Border bawah lebih tipis */
    padding-bottom: 8px;
    margin-bottom: 15px; /* Margin bawah dikurangi */
 font-weight: bold;
}

.card-content p {
    line-height: 1.7; /* Line height sedikit dikurangi */
    margin-bottom: 12px; /* Margin bawah paragraf dikurangi */
    color: var(--text-secondary);
    font-size: 0.85rem; /* Ukuran font paragraf standar */
}

/* --- STYLING GENERIK UNTUK KONTEN PRODUK --- */

.card-content .summary-section {
    margin-top: 15px;
}

/* Wrapper untuk konten utama agar styling section berlaku */
.card-content .content-wrapper { /* GANTI NAMA INI JIKA ANDA MENGGUNAKAN WRAPPER LAIN DI HTML */
    margin-top: 15px;
}

/* Styling Navigasi Internal */
.card-content nav {
    background-color: var(--surface-white);
    padding: 0.6rem 0; /* Padding navigasi dikurangi */
    box-shadow: var(--section-shadow);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    border-radius: 6px 6px 0 0; /* Radius disesuaikan */
    margin-bottom: -1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 15px; /* Padding kanan dikurangi */
}

/* Wrapper baru untuk mengelola spacing saat nav menjadi sticky */
.content-with-sticky-nav {
    position: relative;
    /* padding-top akan ditambahkan oleh JavaScript */
}

/* Styling Nav Item, Section, Table, dll. Tetap Sama */
.card-content nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.4rem; /* Jarak antar item navigasi dikurangi */
    flex-wrap: wrap;
    align-items: center;
}

.card-content nav li {
    display: flex;
    align-items: center;
}

.card-content nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem; /* Padding link navigasi lebih kecil */
    border-radius: 15px; /* Radius lebih kecil */
    transition: all 0.2s ease;
    font-size: 0.85rem; /* Ukuran font link navigasi internal lebih kecil */
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.card-content nav a:hover, .card-content nav a.active-link {
    background-color: var(--orange-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(255, 152, 0, 0.2); /* Shadow lebih kecil */
}

/* Styling untuk container pencarian */
.card-content nav .search-container {
    margin-left: auto;
    margin-right: 5px; /* Jarak dari sisi kanan dikurangi */
    display: flex;
    align-items: center;
}

/* Styling input pencarian */
.card-content nav .nav-search-input {
    width: 130px; /* Lebar lebih pendek */
    margin-left: 8px;
    padding: 4px 6px; /* Padding input dikurangi */
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85rem; /* Ukuran font input pencarian lebih kecil */
    box-sizing: border-box;
}

.card-content nav .nav-search-input::placeholder {
    color: var(--text-secondary);
}

.card-content section {
    background-color: var(--surface-white);
    border-radius: 10px; /* Radius section lebih kecil */
    box-shadow: 0 3px 8px rgba(0,0,0,0.04); /* Shadow lebih halus */
    padding: 1.5rem; /* Padding section dikurangi */
    margin-bottom: 1.5rem; /* Margin bawah section dikurangi */
    border: 1px solid var(--border-color);
}
.card-content section:last-child {
    margin-bottom: 0;
}

.card-content h2 {
    font-size: 1.5rem; /* Ukuran H2 lebih kecil */
    color: var(--secondary-color);
    border-bottom: 3px solid var(--orange-accent); /* Border bawah lebih tipis */
    padding-bottom: 0.8rem;
    margin-bottom: 1.2rem; /* Margin bawah dikurangi */
}

.card-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.8rem 0; /* lebih rapat */
    border: 1px solid #ccc; /* garis tipis */
    border-radius: 4px;
    overflow: hidden;
    font-size: 0.78rem; /* kecil & rapi */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* shadow halus */
}
.card-content th, .card-content td {
    padding: 6px 8px; /* Padding tabel dikurangi agar lebih kecil */
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 0.8rem; /* Ukuran font sel tabel dikurangi */
    border: 1px solid #ccc; /* semua garis muncul */
    text-align: left;
    vertical-align: middle;


}
.card-content th {
    background-color: var(--secondary-color);
    color: var(--surface-white);
    font-weight: 600;
    font-size: 0.8rem; /* Ukuran font header tabel dikurangi */
}
.card-content td {
    font-size: 0.8rem; /* Ukuran font sel tabel dikurangi */
}
.card-content tr:nth-child(even) {
    background-color: var(--table-row-even);
}
.card-content tr:nth-child(odd) {
    background-color: var(--surface-white);
}
.card-content tr:hover {
    background-color: var(--table-row-hover);
    color: var(--text-primary);
}

.card-content section[id="terms"] table {
    margin-top: 0.8rem;
    box-shadow: none;
    border: 1px solid var(--border-color);
}
.card-content section[id="terms"] th, .card-content section[id="terms"] td {
    padding: 0.7rem 0.9rem;
}

.card-content section[id="faq"] p {
    margin-bottom: 10px; /* Margin paragraf FAQ dikurangi */
    line-height: 1.5;
    color: var(--text-secondary);
}
.card-content section[id="faq"] p strong {
    color: var(--secondary-color);
    display: inline-block;
    margin-right: 5px;
}

.card-content .iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin-top: 15px; /* Margin dikurangi */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}
.card-content .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.update-info {
    background-color: var(--surface-white);
    padding: 0.8rem; /* Padding dikurangi */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04); /* Shadow lebih halus */
    margin-bottom: 1.5rem; /* Margin dikurangi */
    border: 1px solid var(--border-color);
}

/* KELAS UNTUK NAVIGASI YANG MENJADI STICKY (Ditambahkan oleh JavaScript) */
.card-content nav.sticky {
    position: fixed;
    top: 0;
    left: 20px; /* Sesuaikan ini jika lebar container/padding berubah */
    width: calc(100% - 40px); /* Lebar card-content dikurangi padding kiri dan kanan */
    box-shadow: var(--section-shadow), 0 1px 4px rgba(0,0,0,0.1); /* Shadow lebih halus */
    border-radius: 0 0 6px 6px; /* Radius disesuaikan */
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 15px;
}

/* Responsive adjustment for sticky nav */
@media (max-width: 768px) {
    .card-content nav.sticky {
        left: 5px; /* Sesuaikan dengan padding mobile */
        width: calc(100% - 10px); /* Lebar penuh dikurangi padding mobile */
        border-radius: 0;
    }
}

/* Animasi Fade In */
@keyframes fadeInScaleUp {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Media Queries untuk Responsivitas */
@media (max-width: 768px) {
    .container { flex-direction: column; margin: 15px auto; padding: 0 5px; } /* Margin & padding mobile lebih kecil */
    .sidebar-left {
        width: 100%; max-height: 250px; padding: 12px; margin-bottom: 15px; /* Ukuran mobile lebih kecil */
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); flex-direction: row;
        justify-content: space-between; align-items: center;
        font-size: 0.85rem; /* Sesuaikan font size di mobile */
    }
    .sidebar-left.collapsed { width: 100%; max-height: 50px; } /* Tinggi collapsed mobile */
    .sidebar-left h3 { display: none; }
    .sidebar-left ul {
        display: flex; flex-direction: row; overflow-x: auto;
        width: calc(100% - 50px); padding-bottom: 3px; /* Padding bottom lebih kecil */
    }
    .sidebar-left ul li { text-align: center; flex-shrink: 0; }
    .sidebar-left ul li a {
        padding: 8px 12px; width: auto; margin-left: 0;
        display: inline-block; justify-content: center;
        font-size: 0.85rem; /* Sesuaikan font size link di mobile */
    }
    .sidebar-left ul li a .icon { margin-right: 4px; font-size: 1.1em;} /* Margin ikon mobile */
    .sidebar-left ul li a .text { display: inline-block; font-size: 0.85rem; } /* Sesuaikan font size teks di mobile */
    .toggle-sidebar-btn {
        position: static; transform: translateX(0); margin-left: 5px; order: 1;
        font-size: 0.9em; padding: 6px 10px; /* Sesuaikan tombol toggle di mobile */
    }
    .main-content { padding: 15px 5px; } /* Padding mobile lebih kecil */
    .card-content { padding: 15px; }
    .card-content h1 { font-size: 1.6rem; } /* H1 mobile lebih kecil */

    /* Navigasi Internal Mobile */
    .card-content nav {
        position: sticky;
        top: 0; z-index: 1000;
        background-color: var(--surface-white);
        border-radius: 0; border-bottom: 1px solid var(--border-color);
        padding: 0.6rem 0.3rem; /* Padding mobile lebih kecil */
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .card-content nav ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 5px; /* Padding mobile lebih kecil */
        scrollbar-width: thin; scrollbar-color: var(--accent-color) var(--surface-white);
        gap: 0.2rem; /* Jarak antar item mobile lebih kecil */
    }
    .card-content nav ul::-webkit-scrollbar { height: 6px; } /* Scrollbar lebih tipis */
    .card-content nav ul::-webkit-scrollbar-track { background: var(--surface-white); border-radius: 10px; }
    .card-content nav ul::-webkit-scrollbar-thumb { background-color: var(--accent-color); border-radius: 10px; border: 1px solid var(--surface-white); } /* Border scrollbar lebih tipis */

    /* Styling search di mobile */
    .card-content nav .search-container {
        margin-left: 0.3rem; /* Jarak mobile lebih kecil */
        margin-right: 0;
        flex-shrink: 0;
    }
    .card-content nav .nav-search-input {
        width: 100px; /* Lebih kecil lagi di mobile */
        margin-left: 0;
        padding: 3px 5px; /* Padding lebih kecil */
        font-size: 0.8rem; /* Font lebih kecil */
    }

    /* Penyesuaian sticky nav mobile */
    .card-content nav.sticky {
        left: 5px;
        width: calc(100% - 10px);
    }
}

/* Note Info di atas harga */
.pricing-info-note {
    margin-bottom: 12px; /* Margin dikurangi */
}
.pricing-info-note .note {
    background: #f1f1f1;
    color: #333;
    padding: 6px 10px; /* Padding dikurangi */
    border-radius: 5px; /* Radius lebih kecil */
    font-size: 12px; /* Font lebih kecil */
    margin-bottom: 4px; /* Margin dikurangi */
}

/* Layout Paket Harga */
.plan-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Ukuran min-width lebih kecil */
    gap: 12px; /* Jarak antar kartu lebih kecil */
    margin-top: 15px; /* Margin lebih kecil */
}

.plan-card {
    background: #fff;
    border-radius: 10px; /* Radius lebih kecil */
    padding: 12px; /* Padding lebih kecil */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* Shadow lebih halus */
    text-align: center;
    transition: all 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-3px); /* Gerakan hover lebih kecil */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Shadow hover lebih halus */
}

.plan-card .speed {
    font-size: 18px; /* Font lebih kecil */
    font-weight: bold;
    margin-bottom: 8px; /* Margin lebih kecil */
    color: #2c3e50;
}

.plan-card .price-month {
    font-size: 14px; /* Font lebih kecil */
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 3px; /* Margin lebih kecil */
}

.plan-card .price-year {
    font-size: 13px; /* Font lebih kecil */
    font-weight: 500;
    color: #7f8c8d;
}

.plan-card span {
    font-size: 11px; /* Font lebih kecil */
    color: #888;
}

/* Tombol Kembali ke Menu */
.back-to-menu {
        position: fixed;
    bottom: 15px; /* Posisi bawah lebih atas */
    right: 15px; /* Posisi kanan lebih kiri */
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px; /* Ukuran lebih kecil */
    height: 40px;
    font-size: 1em; /* Ukuran font lebih kecil */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* Shadow lebih halus */
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

.back-to-menu.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-menu:hover {
      background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* --- Oxygen Channel Compact & Rapi (Tanpa Scroll, Grid Padat) --- */

/* Kontainer utama channel */
.oxygen-channel-container {
    max-width: 1000px;              /* Lebar dibatasi supaya enak dilihat */
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

/* Header channel */
.oxygen-channel-header {
    text-align: center;
    margin-bottom: 15px;
}

.oxygen-channel-header h1 {
    font-size: 1.2rem;              /* Judul utama */
    font-weight: bold;
    color: var(--secondary-color, #444);
    margin-bottom: 6px;
}

.oxygen-channel-header p {
    font-size: 0.75rem;             /* Deskripsi */
    color: var(--text-secondary, #666);
}

/* Grid kategori channel */
.oxygen-channel-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); /* Grid responsif */
    gap: 8px;
    grid-auto-flow: dense;          /* Trik supaya celah diisi rapat (sisa di bawah naik ke atas) */
    align-items: start;
}

/* Kotak kategori */
.oxygen-channel-category {
    background: var(--background-light, #f9f9f9);
    border-radius: 5px;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

/* Judul kategori */
.oxygen-channel-category h3 {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 4px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--accent-color, #ddd);
    color: var(--primary-color, #333);
}

/* List channel */
.oxygen-channel-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item channel */
.oxygen-channel-category li {
    font-size: 0.7rem;              /* Channel lebih kecil agar muat banyak */
    padding: 3px 5px;
    margin-bottom: 2px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

/* Ikon sebelum nama channel */
.oxygen-channel-category li::before {
    content: "\f144";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--orange-accent, #ff6600);
    margin-right: 5px;
    font-size: 0.65rem;
}

/* Hover efek */
.oxygen-channel-category li:hover {
    background: var(--accent-color, #007bff);
    color: #fff;
}

/* Tag HD */
.oxygen-channel-hd-tag {
    background: var(--orange-accent, #ff6600);
    color: #fff;
    font-size: 0.55rem;
    padding: 1px 4px;
    border-radius: 2px;
    margin-left: 4px;
    font-weight: bold;
}

/* Footer channel */
.oxygen-channel-footer {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-secondary, #777);
    margin-top: 10px;
}

.oxygen-channel-footer a {
    color: var(--primary-color, #007bff);
    text-decoration: none;
}

.oxygen-channel-footer a:hover {
    text-decoration: underline;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px); /* Gerakan lebih kecil */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight Pencarian */
.highlight {
    background-color: yellow;
    color: black;
    padding: 0.1em;
    border-radius: 3px;
    display: inline;
}

/* Penyesuaian untuk .card-content nav.sticky agar lebih stabil */
.card-content nav.sticky {
    position: fixed;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    box-shadow: var(--section-shadow), 0 1px 4px rgba(0,0,0,0.1);
    border-radius: 0 0 6px 6px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 15px;
}

/* Responsive adjustment for sticky nav */
@media (max-width: 768px) {
    .card-content nav.sticky {
        left: 5px;
        width: calc(100% - 10px);
        border-radius: 0;
    }
}

/* --- STYLING KHUSUS UNTUK PAKET VIDIO --- */
.vidio-paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ukuran min-width lebih kecil */
    gap: 15px; /* Jarak antar kartu lebih kecil */
    margin-top: 15px;
}

.vidio-paket-card {
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 10px; /* Radius lebih kecil */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* Shadow lebih halus */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vidio-paket-card:hover {
    transform: translateY(-3px); /* Gerakan hover lebih kecil */
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.1); /* Shadow hover lebih halus */
}

.vidio-paket-header {
    background: linear-gradient(90deg, var(--orange-accent) 0%, #FFB300 100%);
    color: white;
    font-size: 0.9rem; /* Font lebih kecil */
    font-weight: bold;
    padding: 8px 12px; /* Padding lebih kecil */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Header spesifik untuk Platinum */
.vidio-paket-header.platinum {
    background: linear-gradient(90deg, #9C27B0 0%, #7B1FA2 100%);
}

.vidio-paket-content {
    padding: 15px; /* Padding lebih kecil */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vidio-paket-title {
    font-size: 1.2rem; /* Font lebih kecil */
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 8px; /* Margin lebih kecil */
    text-align: center;
}

.vidio-paket-feature-stb,
.vidio-paket-feature-no-stb {
    background-color: var(--background-light);
    color: var(--primary-color);
    padding: 6px 10px; /* Padding lebih kecil */
    border-radius: 15px; /* Radius lebih kecil */
    font-size: 0.85rem; /* Font lebih kecil */
    font-weight: 500;
    text-align: center;
    margin: 0 auto 12px auto; /* Margin bawah lebih kecil */
    display: inline-block;
    max-width: 70%;
}

.vidio-paket-feature-no-stb {
    background-color: #e0e0e0;
    color: #333;
}

.vidio-paket-keterangan {
    font-size: 0.8rem; /* Font lebih kecil */
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 12px; /* Margin lebih kecil */
}

.vidio-paket-price {
    font-size: 1.6rem; /* Font lebih kecil */
    font-weight: bold;
    color: var(--orange-accent);
    text-align: center;
    margin-bottom: 8px; /* Margin lebih kecil */
}

.vidio-paket-price span {
    font-size: 0.9rem; /* Font lebih kecil */
    font-weight: normal;
    color: var(--text-secondary);
}

.vidio-paket-detail {
    font-size: 0.8rem; /* Font lebih kecil */
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 8px; /* Padding lebih kecil */
    margin-top: auto;
}

.vidio-paket-detail strong {
    color: var(--text-primary);
}

/* CTA Button */
.vidio-paket-cta {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px; /* Padding lebih kecil */
    border-radius: 6px; /* Radius lebih kecil */
    font-weight: bold;
    font-size: 0.9rem; /* Font lebih kecil */
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 12px; /* Margin lebih kecil */
}

.vidio-paket-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(76, 175, 80, 0.2); /* Shadow lebih halus */
}

/* Warna CTA spesifik */
.vidio-paket-cta.avod-cta { background-color: var(--orange-accent); }
.vidio-paket-cta.avod-cta:hover { background-color: #f57c00; }

.vidio-paket-cta.platinum-cta { background-color: #7B1FA2; }
.vidio-paket-cta.platinum-cta:hover { background-color: #6A1B9A; }

.vidio-paket-cta.diamond-cta { background-color: #E53935; }
.vidio-paket-cta.diamond-cta:hover { background-color: #C62828; }

/* Styling Tabel Vidio */
.vidio-paket-card .table-container {
    margin-top: 12px; /* Margin lebih kecil */
    font-size: 0.7rem; /* Ukuran font keseluruhan tabel vidio lebih kecil */
}
.vidio-paket-card table {
    box-shadow: none;
    border: 1px solid var(--border-color);
}
.vidio-paket-card th, .vidio-paket-card td {
    padding: 6px 8px; /* Padding lebih kecil */
}
.vidio-paket-card th {
    background-color: var(--accent-color);
    color: var(--text-primary);
    font-size: 0.75rem; /* Ukuran font header tabel vidio lebih kecil */
}
.vidio-paket-card td {
    font-size: 0.7rem; /* Ukuran font sel tabel vidio lebih kecil */
}
.vidio-paket-card table tbody tr:nth-child(even) {
    background-color: var(--background-light);
}

/* Styling tabel Mitigasi & New Option */
.vidio-paket-card table td {
    vertical-align: top;
}
.vidio-paket-card table td[colspan="2"] {
    font-weight: bold;
    color: var(--secondary-color);
}
.vidio-paket-card table .addon {
    background: var(--orange-accent);
    color: white;
    padding: 1px 5px; /* Padding lebih kecil */
    border-radius: 3px; /* Radius lebih kecil */
    font-size: 0.65rem; /* Font lebih kecil */
    font-weight: bold;
}

/* Styling tabel Detail Entertainment & Sports */
.table-container table {
    margin-top: 12px; /* Margin lebih kecil */
    font-size: 0.75rem; /* Ukuran font lebih kecil */
}
.table-container th, .table-container td {
    padding: 6px 8px; /* Padding lebih kecil */
}
.table-container th {
    background-color: var(--accent-color);
    color: var(--text-primary);
    font-size: 0.8rem; /* Ukuran font lebih kecil */
}
.table-container .x-mark {
    color: #e57373;
    font-weight: bold;
    text-align: center;
}
.table-container .true-mark {
    color: #4CAF50;
    font-weight: bold;
    text-align: center;
}
.table-container .empty-cell { color: #aaa; }

.table-container .highlight-row {
    background-color: #fff9c4;
}

/* Styling khusus untuk FAQ Vidio */
.card-content section[id="faqvidio"] {
    background-color: var(--surface-white);
    border-radius: 10px; /* Radius lebih kecil */
    box-shadow: 0 2px 6px rgba(0,0,0,0.04); /* Shadow lebih halus */
    padding: 1.5rem; /* Padding lebih kecil */
    margin-bottom: 1.5rem; /* Margin lebih kecil */
    border: 1px solid var(--border-color);
}
.card-content section[id="faqvidio"] .faq-item {
    margin-bottom: 15px; /* Margin lebih kecil */
    padding-bottom: 10px; /* Padding lebih kecil */
    border-bottom: 1px dashed var(--border-color);
}
.card-content section[id="faqvidio"] .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.card-content section[id="faqvidio"] p {
    margin-bottom: 6px; /* Margin lebih kecil */
}
.card-content section[id="faqvidio"] p strong {
    color: var(--secondary-color);
}

/* Styling untuk iframe yang berisi panduan Vidio */
.card-content section[id="setupvidio"] {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}
.card-content section[id="setupvidio"] .iframe-container {
    border-radius: 10px; /* Radius lebih kecil */
    overflow: hidden;
}

/* Styling Kusus untuk Semua Harga */
.price {
  font-size: 1.3em; /* Font lebih kecil */
  font-weight: bold;
  color: #333;
  text-align: right;
}

.price-unit {
  font-size: 0.85em; /* Font lebih kecil */
  color: #777;
  font-weight: normal;
}

.container-with-image {
  display: flex;
  gap: 15px; /* Jarak antar kolom lebih kecil */
  align-items: flex-start;
}

.tables-column {
  flex: 1;
  min-width: 250px; /* Min-width lebih kecil */
}

.image-column {
  flex: 1;
  text-align: center;
}

.image-column img {
  max-width: 100%;
  height: auto;
  display: block;
}

.back-to-top {
    position: fixed;
    bottom: 15px; /* Posisi bawah lebih atas */
    right: 15px; /* Posisi kanan lebih kiri */
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px; /* Ukuran lebih kecil */
    height: 40px;
    font-size: 16px; /* Ukuran font lebih kecil */
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* Shadow lebih halus */
    display: none;
    z-index: 1000;
}
.back-to-top.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CSS Generik untuk semua ikon paket */
.plan-card .package-icon {
    max-width: 140px; /* Atur lebar maksimal gambar sesuai keinginan Anda */
    height: auto;    /* Biarkan tinggi menyesuaikan agar proporsional */
    display: block;  /* Agar margin auto bekerja */
    margin: 0 auto 10px auto; /* Pusatkan gambar dan beri jarak bawah */
}

/* Sedikit penyesuaian margin untuk elemen lain agar lebih rapi */
.plan-card .speed {
    margin-top: 5px; /* Beri sedikit jarak di atas judul speed */
    margin-bottom: 8px; 
}

.plan-card .price-month {
    margin-bottom: 3px; 
}

/* Tambahkan ini jika Anda ingin menambahkan sedikit padding di dalam card agar tidak terlalu mepet */
.plan-card {
    padding: 12px; 
    /* Tambahkan baris ini: */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Ini akan meratakan konten secara vertikal jika tinggi card berbeda */
}

.price-table {
  --header:#6b7280;
  --left:#cfe6fb;
  --monthly:#f7d36a;
  --ap3:#ffe294;
  --yearly:#dff0e3;
  --border:#a7a7a7;
  --text:#111827;
  font-family: Arial, sans-serif;
  color: var(--text);
  padding: 20px;
}

.price-table .wrap { max-width:1200px; margin:auto; display:grid; gap:28px; }

.price-table .card {
  background:#fff; border:1px solid #e5e7eb; border-radius:14px; overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.price-table .title {
  padding:14px 18px; background:#fff; border-bottom:1px dashed #e5e7eb;
  font-weight:700; letter-spacing:.3px;
}

.price-table .tbl {
  width:100%; border-collapse:separate; border-spacing:0;
}

.price-table .tbl th, 
.price-table .tbl td {
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:10px 12px; font-size:14px;
}

.price-table .tbl th {
  background:var(--header); color:#fff; text-align:center; font-weight:700;
}

.price-table .tbl tr > *:first-child { border-left:1px solid var(--border); }
.price-table .tbl tr:first-child > * { border-top:1px solid var(--border); }

.price-table .left { background:var(--left); font-weight:700; }
.price-table .paket { text-align:center; font-weight:700; }
.price-table .speed { text-align:center; }
.price-table .price { text-align:right; font-variant-numeric:tabular-nums; }
.price-table .type { text-align:center; }
.price-table .ket {}

.price-table .row-monthly td { background:var(--monthly); }
.price-table .row-ap3 td { background:var(--ap3); }
.price-table .row-yearly td { background:var(--yearly); }

.price-table .chip {
  display:inline-block; padding:.2rem .5rem; border-radius:999px;
  border:1px solid rgba(0,0,0,.15); font-size:12px; font-weight:600;
}

.price-table .scroll { overflow:auto; -webkit-overflow-scrolling:touch; }
.price-table .hint { font-size:12px; color:#6b7280; margin:8px 0 -4px 0; }



.video-container {
  width: 100%;
  max-width: 500px;
  height: 480px; /* atur tinggi tetap */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
border-radius: 50px; /* sudut melengkung penuh */


}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* atau 'contain' jika ingin seluruh video terlihat */
  display: block;
border-radius: 50px; /* pastikan video ikut melengkung */


}


/* Image Carousel Styles */
.image-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.carousel-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-link:hover img {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Auto-scroll animation */
@keyframes auto-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.carousel-track.auto-scroll {
    animation: auto-scroll 30s linear infinite;
}

.carousel-track.paused {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-carousel {
        height: 300px;
    }
    
    .carousel-caption {
        font-size: 1.2em;
        padding: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .image-carousel {
        height: 250px;
    }
    
    .carousel-caption {
        font-size: 1em;
        padding: 10px;
    }
}

/* --- STYLING KHUSUS UNTUK FAQ SECTION --- */

/* Container FAQ */
.faq-container {
    background: var(--surface-white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Header FAQ */
.faq-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.faq-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.faq-header p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

/* List FAQ */
.faq-list {
    padding: 0;
}

/* Item FAQ Individual */
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 30px;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-item:hover {
    background-color: var(--background-light);
}

.faq-item:last-child {
    border-bottom: none;
}

/* Struktur Pertanyaan */
.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    cursor: pointer;
}

.faq-number {
    background-color: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.faq-item:hover .faq-number {
    background-color: var(--secondary-color);
}

.faq-q {
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.95rem;
}

.faq-question-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.90rem;
    line-height: 1.5;
    flex: 1;
}

/* Struktur Jawaban */
.faq-answer {
    display: flex;
    align-items: flex-start;
    margin-left: 43px;
    animation: fadeInUp 0.4s ease-out;
}

.faq-a {
    font-weight: bold;
    color: var(--orange-accent);
    margin-right: 8px;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.faq-answer-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.90rem;
    flex: 1;
}

/* List harga dalam FAQ */
.faq-price-list {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-price-item {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design untuk FAQ */
@media (max-width: 768px) {
    .faq-header {
        padding: 20px;
    }
    
    .faq-header h3 {
        font-size: 1.3rem;
    }
    
    .faq-item {
        padding: 15px 20px;
    }
    
    .faq-question {
        margin-bottom: 10px;
    }
    
    .faq-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 12px;
    }
    
    .faq-answer {
        margin-left: 36px;
    }
    
    .faq-question-text,
    .faq-answer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-header {
        padding: 15px;
    }
    
    .faq-header h3 {
        font-size: 1.2rem;
    }
    
    .faq-item {
        padding: 12px 15px;
    }
    
    .faq-answer {
        margin-left: 30px;
    }
    
    .faq-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
        margin-right: 10px;
    }
}

.website-container {
    width: 100%;
    height: 100vh; /* penuh setinggi layar */
    border: none;  /* opsional, hilangkan border */
    border-radius: 0; /* opsional, biar rata */
    overflow: hidden;
    margin: 0; /* hilangkan margin */
}

.website-container iframe {
    width: 100%;
    height: 100%;
    border: none;

   
}

