body {
  font-family: sans-serif;
  background: url("/assets/pola-gacor-wallpaper-compressed.webp") no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
  text-align: center;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
}

.container {
  background: rgba(0, 0, 0, 0.75);
  max-width: 1200px;
  height: 100vh;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.container::-webkit-scrollbar {
  display: none;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

.search-bar-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  max-width: 1000px;
  margin: 0 auto 20px;
  box-sizing: border-box;
}

.search-bar-wrapper input {
  width: 100%;
  max-width: 280px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  background: #fff;
  box-sizing: border-box;
}

.provider-buttons-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider-buttons-inline button {
  background: #444;
  border: 1px solid #fea501;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.provider-buttons-inline button:hover {
  background: #fea501;
  color: #000;
}

.provider-buttons-inline button.active {
  background: #fea501;
  color: #000;
  font-weight: bold;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  justify-items: center;
}

.slot-item {
  background: #333;
  border: 2px solid #fea501;
  padding: 15px;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

.slot-item:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.slot-item img {
  max-width: 100%;
  margin-bottom: 10px;
}

.slot-item h2 {
  font-size: 16px;
  margin: 10px 0 8px;
  line-height: 1.3;
}

.slot-item p {
  font-size: 14px;
  margin: 5px 0;
}

.pola-gacor {
  color: #fea501;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
  font-family: monospace;
  font-size: 14px;
  line-height: 1.6;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.75);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-box {
  background: #1e1e1e;
  border: 2px solid #fea501;
  padding: 12px 24px;
  border-radius: 10px;
  max-width: 400px;
  text-align: left;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.popup-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.popup-box button {
  background: #fea501;
  color: #000;
  border: none;
  padding: 8px 16px;
  margin: 20px auto 0;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  text-align: center;
  transition: 0.25s;
}

.popup-box button:hover {
  background: #ffc933;
}

.btn-fixed-bottom {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fea501;
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: background 0.3s ease;
}

.btn-fixed-bottom:hover {
  background: #ffc933;
}

@media (max-width: 992px) {
  body{
      padding: 0 12px;
  }
  
  .slot-list {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 28px;
  }

  .tanggal-hari-ini {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .search-bar-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .search-bar-wrapper input {
    width: 90vw;
    max-width: 280px; /* batasi tetap */
  }
  
  .slot-list {
    grid-template-columns: 1fr;
  }

  .slot-item {
    max-width: 90%;
  }

  h1 {
    font-size: 24px;
  }

  .tanggal-hari-ini {
    font-size: 18px;
  }
  
  .popup-overlay {
    padding: 0 12px;
  }
}