
    /* ---------- Top small bar ---------- */
    .topbar {
      font-size: 0.9rem;
      color: #444;
      background: #fff;
      border-bottom: 1px solid #e6e6e6;
    }

    .breaking-badge {
      background: #ea5b5b;
      color: white;
      font-weight: 600;
      border-radius: 6px;
      padding: 4px 10px;
      display: inline-block;
    }

    .sidebar-sticky {
      position: sticky;
      top: 20px;
      height: fit-content;
    }

    .breaking-news-wrap {
      flex: 1 1 auto;
      min-width: 0;
    }

    .ticker {
      margin-left: 10px;
      color: #666;
      position: relative;
      overflow: hidden;
      max-width: 520px;
      width: 100%;
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      vertical-align: middle;
      line-height: 1.2;
    }

    .ticker-track {
      display: inline-flex;
      align-items: center;
      min-width: max-content;
      color: #666;
      animation: ticker-scroll 40s linear infinite;
      will-change: transform;
    }

    .ticker:hover .ticker-track,
    .ticker:focus-within .ticker-track {
      animation-play-state: paused;
    }

    .ticker-item,
    .ticker-text {
      color: #666;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
    }

    .ticker-item {
      display: inline-block;
      padding-right: 18px;
      margin-right: 18px;
      position: relative;
    }

    .ticker-item::after {
      content: "|";
      position: absolute;
      right: 0;
      color: #ea5b5b;
      font-weight: 700;
    }

    .ticker-item:hover,
    .ticker-item:focus {
      color: #0d6efd;
    }

    @keyframes ticker-scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .ticker {
        overflow-x: auto;
      }

      .ticker-track {
        animation: none;
      }
    }

    /* ---------- Header (logo + search + buttons) ---------- */
    .search-box {
      border-radius: 10px;
      height: 44px;
      border: 2px solid #e5e5e5;
      padding: 0 18px;
    }

    .btn-search {
      background: #fff;
      color: #222;
    }

    .btn-search:hover,
    .btn-search:focus {
      background: #f8f9fa;
      color: #222;
    }

    .btn-soft {
      border-radius: 12px;
      box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06);
      padding: 10px 18px;
      font-weight: 600;
    }

    .btn-masuk {
      background: #cfd8ff;
      color: #0b1726;
      border: none;
      margin-right: 10px;
    }

    .btn-daftar {
      background: #fff9c7;
      color: #0b1726;
      border: none;
    }

    /* ---------- Navbar ---------- */
    .main-nav {
      border-top: 1px solid #e6e6e6;
      border-bottom: 1px solid #e6e6e6;
      background: #fff;
    }

    .main-nav .nav-link {
      color: #222;
      font-weight: 600;
      padding: 0.55rem 1rem;
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus {
      color: #0d6efd;
    }

    .main-nav .nav-link.active {
      color: #0d6efd;
    }

    .main-nav .dropdown-menu {
      border-radius: 10px;
      border: 1px solid #ececec;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .main-nav .dropdown-item.active,
    .main-nav .dropdown-item:active {
      background: #e9f2ff;
      color: #0d6efd;
    }

    .mobile-collapse-search {
      padding: 8px 0;
    }

    .mobile-collapse-actions .btn {
      width: 100%;
      margin-bottom: 8px;
    }

    /* page container spacing */
    .page-container {
      padding: 18px 36px;
      max-width: 1500px;
      margin: 0 auto;
    }

    /* ---------- Card / layout styles ---------- */
    .featured-grid {
      gap: 20px;
    }

    .card-feature {
      position: relative;
      overflow: hidden;
      min-height: 200px;
      color: white;
      background: #0f172a;
    }

    .card-feature::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5, 11, 20, 0.08), rgba(5, 11, 20, 0.62));
      pointer-events: none;
      z-index: 1;
    }

    .card-feature img, .card-feature iframe, .card-feature .lite-video-button, .card-feature .lite-video-fallback {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .35s ease;
      position: relative;
      z-index: 0;
    }

    .card-feature:hover img {
      transform: scale(1.03);
    }

    .card-feature:hover .lite-video-button {
      transform: scale(1.02);
    }

    .card-overlay {
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 20px;
      z-index: 2;
    }

    .tag {
      display: inline-block;
      padding: 6px 8px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      background: #0dcaf0;
      color: #042033;
      margin-bottom: 10px;
    }

    .meta {
      font-size: 0.85rem;
      opacity: 0.9;
      color: #e7e7e7;
      margin-bottom: 6px;
    }

    .title-hero {
      font-family: 'Arial Black', Impact, sans-serif;
      font-size: 2.2rem;
      line-height: 1.05;
      margin: 0;
    }

    .small-title {
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
      margin: 0;
      line-height: 1.2;
    }

    /* responsive adjustments */
    @media (max-width: 991px) {
      .title-hero {
        font-size: 1.6rem;
      }

      .page-container {
        padding-left: 14px;
        padding-right: 14px;
      }
    }

    @media (max-width: 576px) {
      .card-feature {
        min-height: 140px;
      }

      .card-feature img,
      .card-feature iframe,
      .card-feature .lite-video-button {
        transition: none;
      }

      .title-hero {
        font-size: 1.2rem;
      }

      .ticker {
        display: none;
      }

      header .page-container .row > .col {
        padding-left: 6px;
        padding-right: 6px;
      }

      .topbar small {
        font-size: 0.75rem;
      }

      .public-ad-card {
        min-height: 200px;
      }
    }

    /* ---- Don't Miss Section ---- */
    .tab-item {
      font-weight: 700;
      cursor: pointer;
      padding-bottom: 6px;
    }

    .tab-item.active {
      color: #ff1744;
      border-bottom: 2px solid #ff1744;
    }

    .cat-btn {
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      background: #ccc;
    }

    .cat-btn.active {
      background: #ff1744 !important;
    }

    .meta-small {
      font-size: 0.75rem;
      color: #777;
    }

    .left-title,
    .right-title {
      font-weight: 700;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    /* ---- VIDEO SECTION ---- */

    .video-title {
      color: #ff1744;
      border-bottom: 2px solid #ff1744;
      padding-bottom: 4px;
    }

    .public-ads-section {
      margin-top: 48px;
    }

    .public-ads-title {
      color: #ff1744;
      font-weight: 800;
      font-size: 1.5rem;
    }

    .public-ads-copy {
      color: #64748b;
      font-size: 0.95rem;
    }

    .public-ad-card {
      position: relative;
      display: flex;
      align-items: flex-end;
      min-height: 240px;
      aspect-ratio: 3 / 2;
      border-radius: 20px;
      overflow: hidden;
      border: 1px dashed rgba(15, 23, 42, 0.18);
      background:
        radial-gradient(circle at top right, rgba(255, 23, 68, 0.18), transparent 36%),
        linear-gradient(135deg, #f8fafc, #e2e8f0);
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    }

    .public-ad-card::before {
      content: '';
      position: absolute;
      inset: auto -28px -28px auto;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.06);
    }

    .public-ad-chip {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: #0f172a;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .public-ad-body {
      position: relative;
      z-index: 1;
      width: 100%;
      padding: 20px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92));
    }

    .public-ad-size {
      font-size: 1.45rem;
      font-weight: 800;
      line-height: 1.1;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .public-ad-note {
      color: #475569;
      font-size: 0.92rem;
      font-weight: 600;
    }

    .dont-miss-section,
    .video-section,
    .footer-section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 1200px;
    }

    .vcat-btn {
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
    }

    .vcat-btn.active {
      background: #ff1744 !important;
    }

    .social-box {
      padding: 12px 14px;
      border-radius: 6px;
      color: white;
      font-weight: 600;
      cursor: pointer;
    }

    .social-box.fb {
      background: #3b5998;
    }

    .social-box.ig {
      background: #d6249f;
    }

    .social-box.yt {
      background: #ff0000;
    }

    .social-box.tw {
      background: #1da1f2;
    }

    .social-box.be {
      background: #1769ff;
    }

    .social-box.dr {
      background: #ea4c89;
    }

    .ads-box {
      position: relative;
    }

    .ads-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      font-weight: 700;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
    }

    .cat-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
      padding: 6px 0;
      font-weight: 600;
    }

    .cat-item span {
      background: #ff1744;
      color: white;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 4px;
    }

    /* ---- LIFE STYLE SECTION ---- */

    .ls-title {
      color: #ff1744;
      border-bottom: 2px solid #ff1744;
      padding-bottom: 4px;
    }

    .ls-btn {
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
    }

    .ls-btn.active {
      background: #ff1744 !important;
    }

    .ls-big-title {
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 6px;
    }

    .ls-desc {
      color: #666;
      font-size: 0.92rem;
      max-width: 95%;
    }

    .ls-small-title {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .meta-small {
      font-size: 0.75rem;
      color: #777;
    }

    /* ---- FOOTER ---- */
    .footer-section {
      background: #d9d9d9;
      content-visibility: auto;
      contain-intrinsic-size: 1px 720px;
    }

    .footer-brand {
      height: 55px;
      width: auto;
      max-width: 100%;
      display: block;
    }

    .footer-title {
      font-weight: 700;
      font-size: 1.3rem;
    }

    .footer-line {
      border-top: 2px solid #ff1744;
      width: 100%;
      margin: 6px 0 16px 0;
    }

    .footer-text {
      color: #444;
      font-size: 0.95rem;
      max-width: 300px;
      line-height: 1.65;
    }

    .footer-company-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-company-link {
      color: #243143;
      font-size: 0.92rem;
      font-weight: 700;
      text-decoration: none;
    }

    .footer-company-link:hover,
    .footer-company-link:focus {
      color: #ff1744;
    }

    /* Social Icons */
    .footer-social {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 1.3rem;
    }

    .footer-social.fb {
      background: #3b5998;
    }

    .footer-social.tw {
      background: #1da1f2;
    }

    .footer-social.ig {
      background: #e91e63;
    }

    .footer-social.yt {
      background: #ff0000;
    }

    /* Gallery */
    .footer-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .footer-gallery img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }

    /* Tags */
    .tag-item {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 4px;
      color: white;
      font-size: 12px;
      margin: 4px;
      font-weight: 600;
    }

    /* Subscribe */
    .footer-input {
      border-radius: 4px;
      height: 44px;
      background: white;
      border: 1px solid #ccc;
    }

    .footer-subscribe {
      background: #ff5252;
      color: white;
      font-weight: 700;
      padding: 10px 0;
      border-radius: 4px;
    }

    .footer-subscribe:hover {
      background: #ff1744;
    }

    .btn-viewer-account {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding-right: 14px;
    }

    .viewer-avatar-image,
    .viewer-avatar-placeholder,
    .comment-avatar {
      width: 34px;
      height: 34px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      object-fit: cover;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ff1744;
      color: #fff;
      font-weight: 700;
      flex-shrink: 0;
    }

    .viewer-account-name {
      max-width: 140px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .viewer-account-menu {
      min-width: 240px;
    }

    .viewer-mobile-card {
      border: 1px solid #ececec;
      border-radius: 12px;
      padding: 14px;
      background: #fff;
    }

    .viewer-auth-modal {
      border-radius: 18px;
      overflow: hidden;
    }

    .viewer-auth-tabs {
      background: #f5f5f5;
      border-radius: 12px;
      padding: 4px;
    }

    .viewer-auth-tabs .nav-link {
      color: #333;
      font-weight: 600;
      border-radius: 10px;
    }

    .viewer-auth-tabs .nav-link.active {
      background: #ff1744;
      color: #fff;
    }

    .viewer-auth-divider {
      position: relative;
      text-align: center;
      margin: 20px 0 16px;
    }

    .viewer-auth-divider::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: #e2e2e2;
    }

    .viewer-auth-divider span {
      position: relative;
      display: inline-block;
      padding: 0 12px;
      background: #fff;
      color: #777;
      font-size: 0.85rem;
    }

    .public-comments-section {
      background: #fafafa;
      border-top: 1px solid #ececec;
    }

    .public-comments-card {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    }

    .public-comment-form-wrap,
    .public-comment-guest {
      border: 1px solid #ececec;
      border-radius: 14px;
      padding: 18px;
      background: #fcfcfc;
    }

    .public-comment-guest {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .comment-login-badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 23, 68, 0.08);
      color: #c2183c;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .comment-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .comment-item {
      display: flex;
      gap: 14px;
      padding: 18px;
      border: 1px solid #ececec;
      border-radius: 14px;
      background: #fff;
    }

    .comment-body {
      flex: 1;
      min-width: 0;
    }

    .comment-author {
      font-weight: 700;
      color: #212121;
    }

    .comment-meta {
      color: #777;
      font-size: 0.82rem;
      margin-top: 2px;
      margin-bottom: 10px;
    }

    .comment-text {
      color: #333;
      line-height: 1.65;
      white-space: pre-line;
    }

    @media (max-width: 767.98px) {
      .public-comments-card {
        padding: 18px;
      }

      .comment-item {
        padding: 14px;
      }
    }
