  .article {
            color: #ffffff;
            padding-left: 20px;
        }

        /* Ikon */
        .fa-bar-chart,
        .fa-clock-o {
            color: #ffa700 !important;
            padding-right: 20px;
            font-size: 15px;
        }


        /* Optional: Ukuran dan warna ikon */
        .fa-solid.fa-check,
        .fa-solid.fa-xmark {
          font-size: 1.2em;        /* Atur ukuran */
          margin: 0 3px;           /* Jarak antar ikon */
          vertical-align: middle;  /* Rapi di tengah */
          border-radius:50px;
          border:0.5px solid;
        }
        
        /* Warna ikon sesuai arti */
        .fa-check {
          color: green;
        }
        
        .fa-xmark {
          color: red;
        }


        /* Pola & Text */
        .pola {
            font-size: 11px;
        }

        .percent {
            height: 15px;
            display: flex;


            background-color: #e9ecef;
            border-radius: 18px;
            width: 98%;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .percent p {
            font-size: 12px;
            font-weight: bold;
            color: black;
            margin: 0;
            position: absolute;
            right: 60px;
            /* Jarak dari kanan */
            top: 50%;
            transform: translateY(-50%);
        }



        /* Bar Strip Style */
        .percent-bar {
            position: relative;
            height: 100%;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            transition: width 0.6s ease-in-out;
            background-size: 1rem 1rem;
            background-image: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.05) 25%,
                    transparent 25%,
                    transparent 50%,
                    rgba(255, 255, 255, 0.05) 50%,
                    rgba(255, 255, 255, 0.05) 75%,
                    transparent 75%,
                    transparent);
            animation: progress-bar-stripes 5s linear infinite;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        /* Warna Bar */
        .green {
            background: linear-gradient(to right, #2bff00, #1e9400);
        }

        .yellow {
            background: linear-gradient(to right, #ffb300, #ff8800);
            color: #222;
        }

        .red {
            background: linear-gradient(to right, #f8163b, #920000);
        }

        /* Animasi */
        @keyframes progress-bar-stripes {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 10rem 0;
            }
        }

        /* Layout */
        .d-grid {
            background: #000;
            border-radius: 10px;
            width: 100%;
            max-width: 150px;
        }

        .jamBg {
            border-radius: 10px;
            text-align: left;
            padding-left: 20px;
        }

        .slotarea {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .gameitem img {

            width: 150px;

            margin: auto;

        }

        .gameitem {
            width: 350px;

            margin: auto;
            display: flex;
            height: 200px;
            flex-direction: row;
            justify-content: space-around;
            background: #000000;
            background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.384) 100%);
            border-radius: 3px;
            align-items: center;
        }

        /* Grid Area RTP */
        .RTPslotarea {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;

            column-gap: 20px;
            row-gap: 10px;
            margin: auto;
            justify-content: center;
            overflow-y: auto;
            height: 1000px;

        }

        /* Responsive */

        @media (max-width: 768px) {
            .RTPslotarea {
                grid-template-columns: repeat(2, 1fr);
                gap: 2px;
                column-gap: 5px;
                row-gap: 10px;
                width: 100%;
            }

            .gameitem img {
                max-width: 250px;
            }

            .gameitem {
                flex-direction: column;
                width: 100%;
                background: #000;
                height: auto;
            }

            .container1 {
                width: 100% !important;
            }

        }

        /* Jam Gacor */
        .jamgacor {
            display: flex;
            flex-direction: row-reverse;
            align-content: stretch;
            flex-wrap: nowrap;
            background-color: #000;
            color: #fff;
            align-items: center;
            justify-content: space-between;
            font-size: 11px;

        }

        .pola img {
            height: 20px;
            width: 20px;
        }

        .flexpola {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
            flex-direction: row;
            justify-content: space-evenly;
        }

        body {
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
            background: url(/image/bg-rtp-live.webp);
            background-attachment: fixed;
            background-size: cover;
            margin:auto;
        }

        hr {
            height: 1px;
            /* ketebalan garis */
            border: none;
            /* hilangkan border bawaan */
            background-color: #e9ecef;
            /* warna garis */
            /* jarak atas bawah opsional */
        }

        .star-rating {
            display: flex;
            align-items: center;
            font-family: Arial, sans-serif;
            height: 30px;

            margin: auto;
            justify-content: space-between;
        }

        .stars {
            position: relative;
            display: inline-block;
            color: #e0e0e0;
            font-size: 20px;
            line-height: 1;
            display: flex;
            align-items: flex-end;
        }

        .stars .overlay {
            position: absolute;
            top: 0;
            left: 0;
            white-space: nowrap;
            overflow: hidden;
            color: gold;
            /* Warna bintang terisi */
            pointer-events: none;
        }

        .rating-text {
            margin-left: 8px;
            font-size: 14px;
            color: #333;
        }

        .search-input {

            max-width: 300px;
            /* Batas lebar maksimum di desktop */

            font-size: 16px;
            border: 2px solid #ccc;
            border-radius: 25px;
            outline: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: border 0.3s ease, box-shadow 0.3s ease;
            display: block;
            box-sizing: border-box;
        }

        .search-input:focus {
            border-color: #007bff;
            box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
        }

        .button {
            display: flex;
            justify-content: space-between;

        }

        .button a {
            width: 100%;
            height: 50px;
            margin: 10px auto;
            background: linear-gradient(0deg, rgb(255, 0, 0) 0%, rgba(105, 0, 0, 0.63) 100%);
            border: 2px solid #920000;
            color: #ffffff;
            font-size: 16px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            text-decoration: none;
        }

        .button a:hover {
            background: linear-gradient(0deg, rgba(105, 0, 0, 0.63) 0%, rgb(255, 0, 0) 100%);
        }

        .container img {
            display: block;
            /* ubah dari inline ke block agar bisa pakai margin auto */
            width: 100%;
            margin: 0 auto;
        }

        .container1 {
            background-color: #00000079;
            width: 80%;
            margin: auto;
        }

        .logo img {
            width: 200px;
            height: 60px;

        }

        .logo a {
            background: linear-gradient(0deg, rgb(255, 0, 0) 0%, rgba(105, 0, 0, 0.63) 100%);
            color: #ffffff;
            border-radius: 10px;
            height: 50px;
            width: 100px;
            border: 2px solid #920000;
            font-size: 16px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            text-decoration: none;
        }

        .logo {
            height: 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: -1px 3px 20px 8px #000000;
        }

        .native {
            display: flex;

            flex-direction: row;
            justify-content: space-evenly;
        }

        .native a {
            width: 100%;
            height: 30px;
            margin: 10px auto;
            background: linear-gradient(0deg, rgb(255, 0, 0) 0%, rgba(105, 0, 0, 0.63) 100%);
            border: 2px solid #920000;
            color: #ffffff;
            font-size: 16px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            text-decoration: none;
        }

        .rtpgame {
            display: flex;
            overflow-x: auto;
        }

        .rtpgame img {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 50px;
            margin: 10px;
            border: inset 7px #ff0000
        }

        .rtp-slider {
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .rtpgame img:hover {
            border: inset 7px #00ff00
        }

        /* Tombol Panah */
        .arrow {
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            padding: 30px 10px;
            font-size: 24px;
            cursor: pointer;
            z-index: 2;
        }

        .arrow.left {
            margin-right: 5px;
        }

        .arrow.right {
            margin-left: 5px;
        }

        .arrow:hover {
            background-color: rgba(255, 255, 255, 0.8);
            color: black;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
          .nav-bottom {
      position: fixed;
      bottom: 0;
      display: flex;
      z-index: 11;
      overflow: hidden;
      width: 100%;
      margin: auto;

      }
    
      .item-nav-bottom {
            background: linear-gradient(0deg, rgb(255, 0, 0) 0%, rgba(105, 0, 0, 0.63) 100%);
          color: #fff;
          font-weight: bold;
          text-align: center;
          font-size: .8rem;
          width: 100%;
          border-left: solid 2px #000;
    
      }
    
      .item-nav-bottom:hover {
            background: linear-gradient(0deg, rgb(255, 0, 0) 0%, rgba(105, 0, 0, 0.63) 100%);
      }
    
  .item-nav-bottom a, .item-nav-bottom i{
    top:10px;
    position: relative;
   
  }
  a{
       text-decoration: none;
  }
            