.logo {
  display: flex;
  align-items: center;
  font-family: "Arial Black", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.logo-circle {
  background-color: #ffc107; /* merah cerah */
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 5px;
}

.logo-text {
  color: #1a1a2e; /* biru gelap/hitam */
  font-weight: 900;
  letter-spacing: 1px;
}

.logo-text-white {
  color: white;
  font-weight: 900;
  letter-spacing: 1px;
}

.bg-black {
  background-color: #1a1a1a;
}

.bg-yellow {
  background-color: #ffc107 !important;
}

.bg-drag-gray {
  background-color: #212121;
}

/* Mobile Bottom Navigation Styles */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: #ffd900; /* Yellow background to match your theme */
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.bottom-nav-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  font-size: 0.75rem;
  flex: 1;
  text-align: center;
  padding: 10px 5px;
}

.bottom-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
  color: #000;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  pointer-events: none;
}

.mobile-submenu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
  pointer-events: auto;
}

.mobile-submenu.active {
  transform: translateY(0);
}

.submenu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.submenu-header h5 {
  margin: 0;
  font-weight: 600;
}

.close-submenu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.submenu-content {
  padding: 10px 0;
}

.mobile-submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-submenu-list li {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-submenu-list li:last-child {
  border-bottom: none;
}

.mobile-submenu-list a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
}

.mobile-submenu-list a i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

/* Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1035;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Add padding to the body to prevent content from being hidden behind the fixed bottom nav */
body {
  padding-bottom: 60px;
}

/* Hide the default mobile menu since we're using our custom bottom nav */
.mobile_menu {
  display: none !important;
}

/* Hide the slicknav menu that might be causing issues */
.slicknav_menu {
  display: none !important;
}

#scrollUp {
  bottom: 68px;
}

blockquote {
  border-left: 4px solid #ccc;
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
  background: #f9f9f9;
}

.section-title-container {
  background-color: #0a2050;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: white !important;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding-left: 10px;
  border-left: 4px solid #ffcc00;
}

.title-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: #ffcc00;
  color: #0a2050;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 15px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Add this if you want a divider between sections */
.content-divider {
  height: 3px;
  background: linear-gradient(to right, #ffcc00, transparent);
  margin: 10px 0 20px 0;
}

.trending-main {
  padding: 30px 0;
}
trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #0a2050;
  margin: 0;
  position: relative;
  padding-left: 15px;
  border-left: 5px solid #ffcc00;
}

@media (min-width: 992px) {
  .col-lg-4:first-child {
    width: 50%;
  }

  .col-lg-4:first-child .trend-img {
    height: 300px;
  }

  .col-lg-4:first-child .trend-title {
    font-size: 24px;
  }
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 25px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #666;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}

.article-meta i {
  color: #ffcc00;
  margin-right: 5px;
}

.article-title {
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #0a2050;
  margin-bottom: 25px;
  border-bottom: 2px solid #f2f2f2;
  padding-bottom: 15px;
}

.article-content {
  font-family: "Merriweather", serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content h2 {
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #0a2050;
  margin: 30px 0 15px;
}

.article-content h3 {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0a2050;
  margin: 25px 0 15px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: #2980b9;
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 128, 185, 0.3);
  transition: all 0.2s ease;
}

.article-content a:hover {
  color: #ffcc00;
  border-color: #ffcc00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .article-title {
    font-size: 24px;
  }

  .article-content {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Default styling for article content */
.article-content {
  font-family: "Merriweather", serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  font-family: "Rubik", sans-serif;
  color: #0a2050;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.article-content h1 {
  font-size: 28px;
}
.article-content h2 {
  font-size: 24px;
}
.article-content h3 {
  font-size: 20px;
}
.article-content h4 {
  font-size: 18px;
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.2em;
  padding-left: 2em;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-content a {
  color: #2980b9;
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 128, 185, 0.3);
}

.article-content a:hover {
  color: #ffcc00;
  border-color: #ffcc00;
}

.article-content blockquote {
  border-left: 4px solid #ffcc00;
  padding-left: 1em;
  margin-left: 0;
  color: #555;
  font-style: italic;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1em 0;
}

/* Table styling */
.article-content table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5em 0;
}

.article-content table th,
.article-content table td {
  border: 1px solid #ddd;
  padding: 8px 12px;
}

.article-content table th {
  background-color: #f2f2f2;
  text-align: left;
}

.article-content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Slider Section Styling */
.trending-slider-section {
  padding: 0px;
  position: relative;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  position: relative;
}

.badge-terkini {
  background-color: #ffcc00;
  color: #0a2050;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

/* .section-title {
    font-size: 24px;
    color: #0a2050;
    font-weight: 700;
    margin: 0;
    padding: 10px 15px;
    background-color: #0a2050;
    color: white;
    border-radius: 8px;
} */

/* Swiper styling */
.trending-swiper {
  padding-bottom: 40px; /* Space for pagination */
}

.swiper-container {
  overflow: hidden;
  position: relative;
}

.trending-card {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease;
}

.trending-card:hover {
  transform: translateY(-5px);
}

.trend-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.trend-img img,
.video-wrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper {
  position: relative;
  background-color: #000;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 204, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button i {
  color: #fff;
  font-size: 20px;
}

.type-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.bgg {
  background-color: #27ae60;
} /* Video */
.bgr {
  background-color: #e74c3c;
} /* News */
.bgb {
  background-color: #3498db;
} /* Article */

.trend-content {
  padding: 15px;
}

.trend-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 45px;
}

.trend-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.trend-title a:hover {
  color: #ffcc00;
}

.trend-meta {
  font-size: 14px;
  color: #777;
}

.separator {
  margin: 0 5px;
}

/* Swiper Navigation & Pagination */
.swiper-button-next,
.swiper-button-prev {
  color: #ffcc00;
  background-color: rgba(10, 32, 80, 0.7);
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: #0a2050;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffcc00;
}

/* Styling for the weekly news section */
.weekly3-news-active {
  overflow: hidden;
  margin: 0 -15px;
}

.weekly3-single {
  padding: 0 15px;
}

.weekly3-img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

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

/* Dot styling to match the screenshot */
.slick-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 20px;
  padding: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e0e0e0;
  font-size: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: #f9ca0d; /* Yellow active dot color as shown in screenshot */
  width: 25px; /* Make active dot longer */
  border-radius: 5px; /* Rounded rectangle shape */
}

/* Header dekoratif */
.upcoming-header {
  text-align: center;
  margin-bottom: 3rem;
}
.upcoming-header .title {
  display: inline-block;
  position: relative;
  font-size: 2.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffc107, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.upcoming-header .title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}
.upcoming-header .subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  margin-top: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Card & status badge */
.card.event-card {
  position: relative;
  overflow: hidden;
}
.badge-status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.875rem;
  padding: 0.5em 0.75em;
}
.event-details {
  font-size: 0.9rem;
  color: #6c757d;
}
.event-details > div {
  margin-bottom: 0.25rem;
}

/* Countdown */
.countdown {
  font-weight: 600;
  color: #dc3545;
  margin-bottom: 0.5rem;
}

/* Button */
.btn-register {
  background: linear-gradient(90deg, #ffc107, #ffb300);
  transition: background 0.3s;
}
.btn-register:hover {
  background: linear-gradient(90deg, #ffb300, #ffc107);
}
.btn-register.disabled {
  pointer-events: none;
  opacity: 0.6;
}

/* Header */
.title {
  font-size: 2.75rem;
  font-weight: 700;
}
.subtitle {
  font-size: 1.125rem;
}

/* Ended state */
.card.event-card.ended {
  filter: grayscale(60%);
}

/* Badge */
.badge-status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.4em 0.75em;
  border-radius: 0.25rem;
}

/* Alerts */
.alert {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Countdown */
.countdown-wrapper {
  display: flex;
  align-items: center;
  font-family: monospace;
  margin-bottom: 1rem;
}
.cd-box {
  background: #f1f1f1;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  text-align: center;
  min-width: 50px;
  margin-right: 0.25rem;
}
.cd-value {
  font-size: 1.25rem;
  font-weight: 700;
}
.cd-label {
  display: block;
  font-size: 0.65rem;
  color: #6c757d;
  text-transform: uppercase;
}
.cd-sep {
  margin: 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
}

/* Details */
.event-details i {
  width: 1.25rem;
}
.event-details span {
  font-size: 0.95rem;
}

/* Buttons */
.btn-register {
  background: #ffc107;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: background 0.2s;
}
.btn-register:hover {
  background: #ffb300;
}
.btn-secondary.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Banner atas */
.register-banner {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
}
.register-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0.5rem;
}
.register-banner h2 {
  position: relative;
  z-index: 1;
  margin: 0 1.5rem 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/* Ringkasan Event */
.card-summary,
.form-register {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.card-summary .card-body,
.form-register {
  padding: 1.5rem;
}
.terms {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  color: #495057;
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

/* Progress kuota */
.quota-bar {
  height: 0.8rem;
  background: #e9ecef;
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.quota-fill {
  height: 100%;
  background: #ffc107;
  transition: width 0.5s;
}
.quota-text {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Form */
.form-register .form-label {
  font-weight: 500;
  font-size: 0.95rem;
}
.form-register .input-group-text {
  background: #ffc107;
  color: #fff;
  width: 2.5rem;
  justify-content: center;
}
.btn-submit {
  background: #0a2050;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: #0a2050;
}
.alert-quota {
  font-size: 0.9rem;
}

#load-more-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover & disabled tetap sama */
#load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive untuk layar kecil */
@media (max-width: 576px) {
  #load-more-btn {
    padding: 0.5rem 1rem;
    /* kurangi ruang internal */
    font-size: 0.875rem;
    /* sedikit dikecilkan */
    letter-spacing: 0.03em;
    /* rapikan spasi huruf */
  }
}

/* Style untuk no events state */
.no-events-container {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 1rem;
  margin: 2rem 0;
}

.no-events-icon {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.no-events-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #495057;
  margin-bottom: 1rem;
}

.no-events-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.no-events-suggestions {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  text-align: left;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-icon {
  font-size: 1.25rem;
  color: #ff4e50;
  margin-right: 1rem;
  width: 2rem;
  text-align: center;
}

.refresh-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(90deg, #28a745, #20c997);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.refresh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .no-events-container {
    padding: 3rem 1.5rem;
  }

  .no-events-icon {
    font-size: 3rem;
  }

  .no-events-title {
    font-size: 1.5rem;
  }

  .no-events-subtitle {
    font-size: 1rem;
  }
}

/* Container styling mirip 20detik */
.video-container-20detik {
    background: #fff;
    padding: 20px 0;
}

/* Grid layout mirip 20detik - 6 kolom */
.video-grid-20detik {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-grid-20detik {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .video-grid-20detik {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .video-grid-20detik {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .video-grid-20detik {
        grid-template-columns: 1fr;
    }
}

/* Card styling mirip 20detik */
.video-card-20detik {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.video-card-20detik:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Thumbnail container - aspect ratio 16:9 */
.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.video-thumbnail-wrapper lite-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
}

/* Category badge mirip 20detik */
.video-category-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* Duration badge */
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

/* Content area */
.video-content {
    padding: 12px;
}

/* Title styling mirip 20detik */
.video-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 34px;
}

/* Meta info */
.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #666;
    margin-bottom: 6px;
}

.video-author {
    font-weight: 600;
    color: #333;
}

.video-date {
    color: #999;
}

/* Description */
.video-description {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Link styling */
.video-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Load more button styling */
.load-more-section {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.btn-load-more-20detik {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more-20detik:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-load-more-20detik:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* Header section */
.video-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.video-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.video-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}


@media (max-width: 768px) {

    /* Grid 3‑kolom rapat */
    .video-grid-20detik {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      padding: 6px;
    }
     .video-thumbnail-wrapper lite-youtube .lty-playbtn {
      width: 32px !important;
      height: 32px !important;
      background-size: 32px 32px !important;
      /* Reset positioning */
      top: 50% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      margin: 0 !important;
    }



    /* Card container */
    .video-card-20detik {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    /* Thumbnail 16:9 */
    .video-thumbnail-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: #000;
    }
    .video-thumbnail-wrapper lite-youtube {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: none !important;
    }

    /* Duration badge di pojok atas kiri */
    .duration-badge {
      position: absolute;
      top: 4px; left: 4px;
      background: rgba(0,0,0,0.7);
      color: #fff;
      font-size: 9px;
      padding: 2px 4px;
      border-radius: 2px;
    }

    /* Konten bawah */
    .video-content {
      padding: 4px 6px;
    }
    .video-content .video-title {
      font-size: 11px;
      font-weight: 600;
      line-height: 1.2;
      height: 2.4em;      /* batasi 2 baris */
      overflow: hidden;
      color: #333;
      text-transform: capitalize;
      margin: 0;
    }
    /* sembunyikan meta & deskripsi */
    .video-content .video-meta,
    .video-content .video-description {
      display: none;
    }

    /* Tombol load more */
    .btn-load-more-20detik {
      background: #f00; /* sesuaikan merah referensi */
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 6px 12px;
      font-size: 14px;
      margin: 8px 0;
      width: calc(100% - 12px);
    }
  }
