/* artikel.css */

  
    :root {
      --bg-main: #050308;
      --bg-card: #120914;
      --bg-card-soft: rgba(12, 6, 18, 0.92);
      --red-main: #ff3b3b;
      --red-deep: #b50000;
      --gold-soft: #ffde8a;
      --gold-deep: #c79a3a;
      --text-main: #f8f5ff;
      --text-muted: #c6b7e0;
      --border-glow: rgba(255, 59, 59, 0.35);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top, rgba(255, 0, 64, 0.16), transparent 55%),
        radial-gradient(circle at bottom, rgba(255, 222, 138, 0.12), transparent 55%),
        #020008;
      color: var(--text-main);
      line-height: 1.6;
    }

    a {
      color: var(--gold-soft);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background:
        linear-gradient(90deg, #000000, #240000, #5a0000);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.75);
    }

    .header-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 10px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background-image: url("https://jjbet118.org/img/icon-jjbet118.png");
      background-size: contain;   /* atau cover */
      background-repeat: no-repeat;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: #1b0b00;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 18px rgba(255, 193, 79, 0.75);
    }

    

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.03em;
    }

    .brand-tagline {
      font-size: 11px;
      color: var(--text-muted);
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 13px;
    }

    .main-nav a {
      color: #fefefe;
      opacity: 0.78;
      font-weight: 500;
      text-decoration: none;
      position: relative;
      padding-bottom: 3px;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #ffde8a, #ff3b3b);
      border-radius: 999px;
      transition: width 0.2s ease;
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    .main-nav a.active {
      opacity: 1;
    }

    .main-nav a.active::after {
      width: 100%;
    }

    .btn-small-nav {
      padding: 7px 14px;
      border-radius: 999px;
      font-size: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 60%);
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
    }

    /* HERO SECTION (untuk artikel) */
    .hero-article {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      background:
        radial-gradient(circle at top left, rgba(255, 59, 59, 0.18), transparent 55%),
        linear-gradient(180deg, #13060a, #0a050b);
    }

    .hero-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 32px 18px 26px;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 28px;
      align-items: center;
    }

    .hero-kicker {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #ffb3b3;
      margin-bottom: 6px;
    }

    .hero-title {
      font-size: 28px;
      line-height: 1.25;
      margin: 0 0 10px;
      font-weight: 700;
      color: #fff9f2;
    }

    .hero-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 16px;
      max-width: 480px;
    }

    .hero-meta {
      font-size: 11px;
      color: #c2b4d4;
      margin-bottom: 16px;
    }

    .btn-container {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 26px;
      border-radius: 999px;
      background: linear-gradient(180deg, #ff3b3b, #b50000);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      text-decoration: none;
      box-shadow:
        0 0 10px rgba(255, 50, 50, 0.55),
        0 0 20px rgba(255, 0, 0, 0.25) inset;
      transition: all 0.25s ease;
      overflow: hidden;
    }

    .btn-primary::before {
      content: "";
      position: absolute;
      top: 0;
      left: -40%;
      width: 40%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.45),
        rgba(255, 255, 255, 0)
      );
      transform: skewX(-20deg);
      opacity: 0;
      transition: transform 0.35s ease, opacity 0.25s ease;
    }

    .btn-primary:hover::before {
      transform: translateX(210%) skewX(-20deg);
      opacity: 1;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow:
        0 0 18px rgba(255, 70, 70, 0.85),
        0 0 25px rgba(255, 0, 0, 0.32) inset;
      filter: brightness(1.06);
    }

    .btn-primary:active {
      transform: translateY(1px);
      filter: brightness(0.95);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      font-size: 13px;
      color: #fdfbff;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 70%);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .btn-ghost:hover {
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 70%);
      transform: translateY(-2px);
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
      font-size: 11px;
    }

    .pill {
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 65%);
      color: #fefcff;
    }

    .hero-media {
      display: flex;
      justify-content: center;
    }

    .hero-banner {
      width: 100%;
      max-width: 420px;
      border-radius: 26px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.9),
        0 0 28px rgba(255, 59, 59, 0.35);
      background:
        linear-gradient(135deg, #1a120b, #3c2a1a, #b18b2c);
    }

    .hero-banner img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      opacity: 0.96;
    }

    /* MAIN LAYOUT */
    .page-wrapper {
      max-width: 1120px;
      margin: 0 auto;
      padding: 26px 18px 40px;
    }

    .layout-grid {
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
      gap: 26px;
      align-items: flex-start;
    }

    .article-card {
      background: var(--bg-card-soft);
      border-radius: 22px;
      padding: 22px 20px 26px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .article-card h1 {
      font-size: 22px;
      margin: 0 0 6px;
    }

    .article-meta {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .article-card h2 {
      font-size: 18px;
      margin-top: 22px;
      margin-bottom: 8px;
    }

    .article-card h3 {
      font-size: 15px;
      margin-top: 16px;
      margin-bottom: 6px;
    }

    .article-card p {
      font-size: 14px;
      color: #efe9ff;
      margin: 0 0 10px;
    }

    .article-card ul,
    .article-card ol {
      padding-left: 20px;
      margin: 0 0 12px;
      font-size: 14px;
      color: #f3edff;
    }

    .article-card li + li {
      margin-top: 4px;
    }

    .article-highlight {
      border-radius: 14px;
      padding: 10px 12px;
      background: radial-gradient(circle at top left, rgba(255, 59, 59, 0.15), rgba(0, 0, 0, 0.9));
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      margin-bottom: 14px;
    }

    .article-footer-cta {
      margin-top: 22px;
      padding-top: 16px;
      border-top: 1px dashed rgba(255, 255, 255, 0.16);
      font-size: 13px;
      color: #d5c9ff;
    }

    /* SIDEBAR */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .sidebar-card {
      background: linear-gradient(145deg, #100812, #1b0b18);
      border-radius: 18px;
      padding: 14px 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
      font-size: 13px;
      color: #f5ecff;
    }

    .sidebar-card h3 {
      font-size: 14px;
      margin: 0 0 8px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      padding: 4px 9px;
      border-radius: 999px;
      background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 70%);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: #ffefc5;
      margin-bottom: 8px;
    }

    .sidebar-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-list li + li {
      margin-top: 6px;
    }

    .sidebar-list a {
      color: #fefcff;
      text-decoration: none;
      opacity: 0.9;
    }

    .sidebar-list a:hover {
      opacity: 1;
      text-decoration: underline;
    }

    .footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 16px 18px 22px;
      font-size: 12px;
      color: #9b8eb7;
      text-align: center;
      background: #05030a;
    }

    .footer a {
      color: #c4b2ff;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-media {
        order: -1;
      }

      .layout-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 640px) {
      .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
      }
      .main-nav {
        display: none; /* kalau mau, bisa ganti jadi dropdown/hamburger */
      }
      .hero-title {
        font-size: 24px;
      }
      .btn-container {
        justify-content: flex-start;
      }
    }
  
