    body {
      font-family: 'Roboto', sans-serif;
      padding: 20px;
      background-color: white;
      color: black;
      transition: background-color 0.3s, color 0.3s;
    }

    body.dark {
      background-color: #19192c;
      color: #e0e0e0;
    }

    h1, h2, h3 {
      text-align: center;
      margin-top: 24px;
      margin-bottom: 16px;
      font-weight: bold;
    }

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
      padding-top: 80px;
    }

    @media (max-width: 600px) {
    .container {
    padding-top: 70px; /* untuk menu mobile lebih kecil */
      }
    }

    .table-container {
      overflow-x: auto;
      width: 100%;
    }
    
    table {
      border-collapse: collapse;
      width: 100%;
      min-width: 600px;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
      vertical-align: middle;
      font-weight: bold;
    }

    th {
      background-color: #f2f2f2;
      color: #000;
      font-weight: bold;
    }

    td:nth-child(odd) {
      background-color: #FFC000;
      color: #000;
    }

    td:nth-child(even) {
      background-color: #FECD64;
      color: #000;
    }

    tr.row-32 td { background-color: #d40000 !important; color: white !important; }
    tr.row-33 td, tr.row-34 td, tr.row-35 td, tr.row-36 td, tr.row-37 td {
      background-color: #000 !important;
      color: #fff !important;
    }

    @media screen and (max-width: 600px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }
      th {
        position: sticky;
        top: 0;
        background: #f2f2f2;
      }
      td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
      }
      td:before {
        content: attr(data-label);
        position: absolute;
        top: 10px;
        left: 10px;
        white-space: nowrap;
        font-weight: bold;
      }
    }

    .search-box {
      margin-bottom: 10px;
    }

    input[type="text"] {
      padding: 8px;
      width: 100%;
      max-width: 300px;
      font-size: 16px;
    }

    .filter-row select {
      width: 100%;
      font-size: 14px;
    }

    .dark th, .dark td {
      border-color: #444;
    }

    /* Sticky Menu */
    .sticky-menu {
      position: fixed;
      top: 0; left: 0; right: 0;
      width: 100vw;
      height: 60px;
      background: #190A32;
      border-bottom: 0.5px solid #444;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5vw;
      box-sizing: border-box;
      box-shadow: 0 4px 14px 0 rgba(60,50,100,0.05);
      transition: background 0.2s, border 0.2s;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
    }
    .logo-img {
      height: 100%;
      width: 100%;
      border-radius: 10px;
      background: #transparent;
      object-fit: contain;
      margin-right: 6px;
    }
    .logo-title {
      font-size: 1.16rem;
      color: #F701BE;
      font-weight: 700;
      letter-spacing: 0.2px;
      text-shadow: 0 1px 6px rgba(100,100,100,0.06);
    }
    .right-bar {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    #themeIcon {
      pointer-events: none;
      font-size: 1.22em;
      line-height: 1;
    }
    .menu {
      display: flex;
      gap: 22px;
      align-items: center;
      transition: all 0.23s;
    }
    .menu a {
      color: #F701BE;
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none;
      transition: color 0.15s;
    }
    .menu a.btn-daftar {
      background: #ff9900;
      color: #222;
      padding: 7px 16px;
      border-radius: 6px;
      margin-left: 6px;
      font-weight: 600;
    }
    .menu a.btn-daftar:hover {
      filter: brightness(1.05);
    }
    .menu a:hover {
      color: #f5f5fa;
      background: #F701BE;
      border-radius: 6px;
      padding: 5px 10px;
    }
    /* Hamburger Button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      width: 37px; height: 37px;
      cursor: pointer;
      border: 2px solid #F701BE;
      background: #190A32;
      border-radius: 9px;
      margin-left: 8px;
      z-index: 201;
    }
    .hamburger span {
      height: 4px;
      width: 23px;
      background: #F701BE;
      border-radius: 2px;
      margin: 3px auto;
      display: block;
      transition: all 0.3s;
    }
    /* Responsive Menu */
    @media (max-width: 860px) {
      .menu {
        position: fixed;
        right: 0; top: 60px;
        flex-direction: column;
        align-items: flex-end;
        background: #190A32;
        box-shadow: 0 4px 14px 0 rgba(60,50,100,0.06);
        padding: 28px 16px 24px 30vw;
        gap: 22px;
        border-bottom: 2.5px solid #ddd;
        transform: translateY(-140%);
        pointer-events: none;
        opacity: 0;
        transition: all 0.23s;
        min-width: 185px;
      }
      .menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        z-index: 202;
      }
      .hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      .logo-title { font-size: 0.99rem; }
      .logo-img { width: 100%; height: 100%; }
      .theme-toggle { font-size: 1.13em; padding: 6px 9px;}
      .sticky-menu { height: 54px; padding: 0 1vw; }
      .menu { padding-left: 10vw; }
    }
    /* FAB WhatsApp */
    .fab-wa {
      position: fixed;
      bottom: 26px; right: 28px;
      z-index: 500;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      box-shadow: 0 6px 28px rgba(0,0,0,0.14);
      width: 58px; height: 58px;
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
      text-decoration: none;
      transition: background 0.18s, box-shadow 0.16s;
      border: none;
      outline: none;
    }
    .fab-wa:hover {
      background: #1da851;
      color: #fff;
    }
    @media (max-width: 700px) {
      .fab-wa {
        width: 50px; height: 50px;
        font-size: 27px;
        bottom: 18px; right: 12px;
      }
    }
    .back-to-top {
      position: fixed;
      bottom: 105px;
      right: 32px;
      z-index: 499;
      display: none;
      background: none;
      border: none;
      outline: none;
      cursor: pointer;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(60,50,100,0.13);
      opacity: 0.88;
      padding: 0;
      transition: opacity 0.21s, transform 0.19s;
    }
    .back-to-top svg {
      width: 48px;
      height: 48px;
      display: block;
    }
    .back-to-top:hover {
      opacity: 1;
      transform: translateY(-4px) scale(1.07);
    }
    @media (max-width: 700px) {
      .back-to-top { right: 12px; bottom: 85px;}
      .back-to-top svg { width: 41px; height: 41px;}
    }

#rotate-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #140432;
  color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;
}

.rotate-container {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.5;
}

@media (orientation: landscape) {
  #rotate-warning { display: none; }
  #main-content { display: block; }
}

@media (orientation: portrait) {
  #rotate-warning { display: flex; }
  #main-content { display: none; }
}
