body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #000;
}

.container {
  text-align: right;
  background-color: black;
}

.container-menu {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.login-container {
  background-color: black;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
  padding: 8px;
  border: 1px #f3c600 solid;
  border-radius: 4px;
  margin-right: 8px;
  background-color: rgb(20, 20, 20);
  max-width: 120px;
}

input[type="text"],
input[type="password"] {
  max-width: 120px;
  color: #fff;
}

input[type="submit"] {
  background-color: #0c0b0b;
  color: #f3c600;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  border: 1px #f3c600 solid;
  width: 110px;
  font-weight: bold;
}

input[type="submit"]:hover {
  background-color: #3f3f3f;
}

/* Responsif */
@media all and (max-width: 768px) {
  .container {
    text-align: center;
  }

  input[type="text"],
  input[type="password"],
  input[type="submit"] {
    width: 100%;
    max-width: 100px;
    margin: auto 2px;
  }
}

/*  @media (max-width: 767px) {*/
/*.login-container input {*/
/*  margin-top: 10px;*/
/*  width: 100%;*/
/*  max-width: 300px;*/
/*  padding: 10px;*/
/*}*/

/* navbar */
.navbar {
  background-color: black;
  color: white;
  padding: 25px;
  border-bottom: 1px #f3c600 solid;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  width: 300px;
  height: 50px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu-item {
  margin-left: 8px;
  margin-right: 8px;
}

.menu-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.menu-item a:hover {
  color: #f3c600;
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-menu span {
  width: 30px;
  height: 4px;
  background-color: white;
  margin-bottom: 5px;
}

.menu-responsive {
  display: none;
  flex-direction: column;
  background-color: black;
  padding: 15px;
}

.menu-responsive a {
  color: white;
  text-decoration: none;
  margin-bottom: 30px;
  font-weight: bold;
}

.menu-responsive a:hover {
  color: #f3c600;
  font-weight: bold;
}

/* Media Query */
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .menu-responsive {
    display: none;
  }

  .menu-responsive.active {
    display: flex;
  }
  .logo {
    width: 75%;
    height: 80%;
  }
}

/* end navbar */

/* banner */
.image-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: auto;
}
/* akhir banner */

/* awal jp */
.container-jackpot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto;
}

.jackpot-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.jackpot-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 4vw; /* Ukuran teks jackpot responsif */
  font-weight: bold;
  margin-top: 10px auto; /* Jarak atas jackpot responsif */
  padding: 15px auto;

  /* animation: jackpotAnimation 1s infinite; */
}

@keyframes jackpotAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .container-jackpot {
    /* Tambahkan gaya CSS untuk versi mobile di sini */
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .jackpot-img {
    /* Tambahkan gaya CSS untuk versi mobile di sini */
    max-width: 60%;
    height: auto;
  }

  .jackpot-overlay {
    /* Tambahkan gaya CSS untuk versi mobile di sini */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
  }

  #jackpotAmount {
    text-align: center;
  }
}

/* akhir jp */

/* slider */
.slider-container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slider img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media only screen and (max-width: 786px) {
  .slider-container {
    display: none;
  }
}
/* akhir slider */

/* footer */
.footer {
  background-color: #000;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Memungkinkan wrapping jika layar lebih kecil */
  text-align: center;
  font-size: 12px;
}

.footer-section {
  flex: 1; /* Bagian yang sama besar */
  margin: 10px; /* Memberikan ruang di sekitar setiap bagian */
}

.footer-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.container-footer {
  max-width: 1080px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-container img {
  max-width: 100%;
  justify-content: left;
}

.text-container {
  display: flex;
  align-items: center;
}

.menu-container ul,
.social-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-container ul li,
.social-container ul li {
  display: inline-block;
  margin-right: 10px;
}

.menu-container ul li a,
.social-container ul li a {
  text-decoration: none;
  color: #fff;
  /*font-size: 14px;*/
}

.linked li a {
  color: #fff;
  text-decoration: none;
} 

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .text-container {
    margin-top: 10px;
    flex-basis: 100%;
  }

  .text-container p {
    /*font-size: 12px;*/
    color: #777;
    margin-top: 10px;
  }

  .menu-container {
    text-align: center;
  }

  .menu-container ul li a,
  .social-container ul li a {
    font-size: 12px;
  }
}

.text-footer {
  text-align: center;
  color: #fff;
}
/* akhir footer */

/* tabel */
.table-container {
  overflow-x: auto;
  max-width: 926px;
  margin: 20px auto;
}

table.alojudi {
  font-family: "Arial Narrow";
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin: 20px auto;
}
table.alojudi td,
table.alojudi th {
  border: 1px solid #e6c300;
  padding: 10px 5px 10px;
}
table.alojudi tbody td {
  font-size: calc(8px+1vh);
  font-weight: 500;
  color: #bfbfbf;
}
table.alojudi thead {
  background: #e6c300;
}
table.alojudi thead th {
  font-size: calc(12px+1vh);
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle 214px at 46.5% 54.2%, #e6c300 0, #000 96%);
}
@media (max-width: 576px) {
  .table-container {
    overflow-x: auto;
  }

  .alojudi {
    font-size: 14px;
  }
}
/* akhir tabel */

/* aarticel */
/* CSS untuk tampilan desktop */
@media only screen and (min-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    max-width: 1080px;
    margin: 15px auto;
    text-align: center;
    color: #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  p,
  li {
    max-width: 1080px;
    margin: 15px auto;
    text-align: justify;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    line-height: 1.5;
  }
  a {
    color: #f3c600;
  }

  .table-container {
    margin: 20px auto;
    overflow-x: auto;
    width: 80%;
  }

  .table {
    width: 100%;
    border-collapse: collapse;
  }

  .table th,
  .table td {
    padding: 10px;
    border: 1px solid black;
  }
}

/* CSS untuk tampilan mobile */

@media only screen and (max-width: 767px) {
  h1,
  h2,
  h3,
  h4,
  h5 {
    text-align: center;
    color: #fff;
    margin: auto 20px;
    margin-top: 10px;
    padding-top: 10px;
  }

  p,
  li {
    margin: auto 20px;
    text-align: justify;
    color: #fff;
    /*font-size: 14px;*/
    line-height: 1.5;

    margin-top: 20px;
    padding-top: 20px;
  }
  a {
    color: #f3c600;
  }
  .table-container {
    margin: 20px auto;
    overflow-x: auto;
    width: 90%;
  }

  .table {
    width: 100%;
    border-collapse: collapse;
  }

  .table th,
  .table td {
    padding: 10px;
    border: 1px solid black;
  }

  p {
    text-align: justify;
  }

  ol,
  ul {
    padding-left: 20px;
  }
}

/* akhir artikel */

/* main blog */
.container-blog {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.content {
  display: flex;
  flex-wrap: wrap;
}

.container-blog .image {
  width: 150px;
  height: 150px;
  /* object-fit: cover; */
}

.container-blog .text {
  flex: 1;
  margin-left: 20px;
}

.container-blog .text h3 {
  margin-top: 0;
}

.container-blog .text p {
  margin: 10px 0;
}

.container-blog .content .text .tombol {
  background-color: #333;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
}
.container-blog .content .text .tombol:hover {
  background-color: #e6c300;
}

/* CSS untuk tampilan mobile */
@media (max-width: 767px) {
  .content {
    flex-direction: column;
  }

  .container-blog .image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .container-blog .text {
    margin-left: 0;
  }
}
/* akhir main blog */

/* iframe */
.iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.iframe-container iframe {
  width: 100%;
  max-width: 600px;
  height: 100%;
}

@media (max-width: 768px) {
  .iframe-container {
    padding: 20px;
  }
}
/* akhir iframe */

/* manual */
.container-manual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-manual {
  margin-bottom: 20px;
}

.image img {
  max-width: 100%;
  height: auto;
}

.container-qr {
  display: flex;
  justify-content: center;
}

.qr-item {
  text-align: center;
  margin: 30px;
}

.qr-item img {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .container-qr {
    flex-direction: column;
    align-items: center;
  }
}
/* akhir manual */

/* awal casino */
.container-casino {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
}

.row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.item {
  position: relative;
  text-align: center;
  margin: 0 10px;
}

/*.item img {*/
/*  width: 200px;*/
/*  height: 200px;*/
/*}*/

.main-button {
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  margin-top: 10px; /* Menggunakan margin-top:auto untuk mengatur posisi tombol di tengah */
  cursor: pointer;
  text-decoration: none;
}
.main-button:hover {
  background-color: #e6c300;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background-color: #444;
  padding: 20px;
  border-radius: 8px;
}

.popup h3 {
  margin-top: 0;
}

button {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .item {
    width: 100%;
    margin: 10px 0;
  }
}
/* akhir casino */

/* game */
.container-game {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.col {
  flex-basis: calc(25% - 10px);
  margin-right: 10px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay:hover {
  opacity: 1;
}

.main-button {
  padding: 10px 25px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

@media screen and (max-width: 600px) {
  .col {
    flex-basis: calc(50% - 10px);
    margin-right: 10px;
  }
}

/* untuk artikel blog */
.container-artikel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-artikel {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 600px) {
  .container {
    flex-direction: column;
    height: auto;
  }
  .image-artikel {
    width: 100%;
    height: 100%;
  }
}

/* end atikel blog */

/* tombol daftar */
.daftar {
  display: block;
  width: 250px;
  padding: 10px 20px;
  text-align: center;
  /* background-color: #f2f2f2; */
  background-color: #e6c300;
  color: red;
  /*color: #e6c300;*/
  font-weight: bold;
  font-size: 24px;
  border-radius: 5px;
  margin: 0 auto;
  margin-top: 20px;
  text-decoration: none;
}

.daftar:hover {
  background-color: #333;
  color: #000;
}

@media only screen and (max-width: 600px) {
  .daftar {
    width: 80%;
  }
}
/* end */

/* tombol daftar  */
.register-button {
  padding: 8px 1px;
  border: 1px solid #f3c600 !important;
  border-radius: 4px;
  margin-right: 8px;
  background-color: rgb(20, 20, 20);
  max-width: 100px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  background-color: #0c0b0b;
  color: #f3c600;
  width: 80px;
  transition: background-color 0.3s;
  border: none;
}
/* akhir tombol-daftar */

/* media sosial */

.fa {
  padding: 20px;
  font-size: 30px !important;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  background: #3b5998;
  color: white;
}
.fa-twitter {
  background: #55acee;
  color: white;
}
.fa-youtube {
  background: #bb0000;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}
.fa-pinterest {
  background: #cb2027;
  color: white;
}

.fa-telegram {
   background: #55acee;
  color: white;
}

article p {
  font-size: 18px;
}

.responsive-iframe {
  width: 100%;
  height: 800px; /* Sesuaikan dengan rasio aspek iframe */
  position: relative;
}

.responsive-iframe iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
