:root {
    --primary-color: #ffb80a;
    --background-color: #2b2922;
    --content-background: #1f1f1f;
    --text-color: #ebebeb;
    --border-color: #333;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
  }
  
  .wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex-grow: 1;
  }
  
  @media (min-width: 1080px) {
    .wrapper {
      width: 480px;
    }
  }
  
  .container-top {
    position: sticky;
    top: 0;
    z-index: 1;
  }
  
  .marquee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1;
  }
  
  marquee {
    white-space: nowrap;
  }
  
  @supports (-webkit-marquee-increment: 0) {
    marquee {
      -webkit-marquee-increment: auto;
    }
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .container-content {
    flex-grow: 1;
    padding: 20px;
    background-color: var(--content-background);
    z-index: 2;
    border-radius: 30px 30px 10px 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
  }
  
  h1,
  h2,
  h3 {
    text-align: center;
    margin-bottom: 0.1em;
    font-weight: normal;
  }
  
  h1 {
    font-size: 1.5em;
  }
  h2 {
    font-size: 1.1em;
  }
  h3 {
    font-size: 1em;
    margin-bottom: 2em;
  }
  h4 {
    font-size: 0.9em;
    color: var(--primary-color);
    margin: 3em 0 1em 0;
    font-weight: bold;
  }
  
  p {
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 3em;
    font-weight: normal;
  }
  
  .no-margin-bottom {
    margin-bottom: 0 !important;
  }
  
  .site-info {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 10px;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--content-background);
    color: var(--text-color);
    font-size: 0.8em;
  }
  
  .site-info dt {
    font-weight: bold;
    padding: 8px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
  }
  
  .site-info dd {
    padding: 8px;
    border: 1px solid var(--border-color);
    background-color: #222;
    margin: 0;
  }
  
  .site-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .site-info ul ul {
    margin-left: 10px;
  }
  
  .site-info li {
    padding-bottom: 10px;
  }
  
  .site-info dt:first-child {
    grid-column: 1 / 3;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--content-background);
  }
  
  .highlight-text {
    color: var(--primary-color);
  }
  
  .image-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .image-section > div {
    text-align: center;
  }
  
  .image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
  }
  
  .image-item img {
    max-width: 100%;
    height: 125px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 8px;
  }
  
  .image-item p {
    font-size: 0.8em;
    color: var(--text-color);
    margin: 0;
  }
  
  .container-bottom {
    position: sticky;
    bottom: 30px;
    margin-top: auto;
    border-radius: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(#4e4e4e 0%, #353535 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 3;
  }
  
  .sticky-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    background-color: rgba(255, 255, 255, 0);
    pointer-events: none;
    animation: pulse-bottom-section 2s infinite;
  }
  
  .sticky-button {
    background-color: #ed3a45;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.8em;
    font-weight: normal;
    border-radius: 100px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    pointer-events: auto;
  }
  
  .sticky-button:hover {
    background-color: #ffb80a;
  }
  
  .bottom-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .bottom-section.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px #111;
  }
  
  .bottom-section:not(.active) {
    background-color: transparent;
  }
  
  .bottom-section:not(.active):hover {
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 1em;
    font-weight: 900;
    cursor: pointer;
    text-decoration: none;
  }
  
  .menu-logo {
    max-height: 30px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
  }
  
  .menu-item i {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  
  .menu-text {
    font-size: 0.7em;
  }
  
  @keyframes pulse-bottom-section {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Live RTP */
  #tanggalLengkap {
    text-align: center;
  }

  .p-rtp {
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 1em;
    font-weight: normal;
  }
  
  .slot-container {
    display: flex;
    align-items: center;
  }
  
  .slot-container h4 {
    display: flex;
    align-items: center;
  }
  
  .slot-container h4 img {
    height: 2em;
    margin-right: 5.5px;
    vertical-align: middle;
  }
  
  .image-sections-container {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
  }
  
  .image-section-item {
    width: 30%;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .image-section-item img {
    display: block;
    width: 100%;
    height: auto;
  }

  .image-section-item:has(.progress:has(.progress-bar.bg-danger)) img {
    filter: grayscale(100%);
  }
  
  .progress {
    margin-top: 15px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    width: 0%;
    background-color: #4caf50;
    text-align: center;
    line-height: 20px;
    color: white;
    font-size: 0.8em;
    border-radius: 5px;
    transition: width 2.5s ease;
  }
  
  .progress-bar.bg-danger {
    background-color: #dc3545;
  }
  
  .progress-bar.bg-warning {
    background-color: #ffc107;
    color: #333;
  }
  
  .progress-bar.bg-success {
    background-color: #28a745;
  }
  
  .progress-bar.animated-stripes {
    background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent
    );
    background-size: 20px 20px;
    animation: progress-stripes 1s linear infinite;
  }
  
  @keyframes progress-stripes {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 40px 0;
    }
  }
  
  @keyframes progress-shimmer {
    0% {
      background-position: -100% 0;
    }
    100% {
      background-position: 100% 0;
    }
  }
  
  /* Promosi */
  .image-sections-container-pro {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
  }

  .image-section-item-pro {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .image-section-item-pro img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .h1-pro {
    margin-bottom: 2em;
  }
  
  .h4-pro {
    font-size: 0.9em;
    color: var(--text-color);
    margin: 0;
    font-weight: bold;
    text-align: center;
  }
  
  .p-pro {
    font-size: 0.8em;
    line-height: 1.5;
    margin-bottom: 1em;
    font-weight: normal;
  }

  hr.tebal-tengah {
    border: none;
    height: 2px; /* Ketebalan awal garis */
    background: linear-gradient(to right, #12121200, #121212 50%, #12121200); /* Transparan di kiri dan kanan, tebal di tengah */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.6);
  }