/* ===== Body ===== */
body {
  min-height: 100vh;
  color: white;
}

.gradient-background {
  background: linear-gradient(to bottom, #001f16, #008d34, #000000);
}

/* ===== Start Header ===== */
.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #ffffff;
}

.logo-img {
  height: 4rem;
  text-align: center;
}

.btn-auth {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: transparent;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.btn-auth:last-child {
  margin-right: 0;
}

.btn-auth:hover {
  background-color: #ffffff;
  color: #008d34;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8),
    0 0 24px rgba(165, 165, 165, 0.6);
}
/* ===== End Header ===== */

/* ===== Start Marquee ===== */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: transparent;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 2px dashed;
  border-bottom: 2px dashed;
}

.marquee-content {
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 600;
  color: #ffffff;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ===== End Marquee ===== */

/* ===== Start Name Taks ===== */
.title-heading {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  /* Animasi dihapus */
}

@media (min-width: 768px) {
  .title-heading {
    font-size: 2.5rem;
  }
}

/* Subtitle Text */
.subtitle-text {
  margin-bottom: 1.5rem;
  color: #f9fafb;
}

/* Search Box Container */
.search-box {
  position: relative;
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

/* Search Input */
.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 1rem;
  color: #000000;
}

/* Search Icon */
.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
/* ===== End Name Taks ===== */

/* ===== Start Card ===== */
.jackpot-card {
  background-color: #063600;
  border: 4px solid #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* Image Style */
.jackpot-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Card Content */
.jackpot-content {
  padding: 1rem;
  text-align: left;
}

.button-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

.claim-button {
  display: inline-block;
  background: #0a5500;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(10, 85, 0, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  user-select: none;
  min-width: 160px;
  text-align: center;
}

.claim-button:hover,
.claim-button:focus {
  background: #0a5500;
  box-shadow: 0 6px 20px rgba(50, 205, 50, 0.8);
  transform: translateY(-3px);
  outline: none;
}

.claim-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(10, 85, 0, 0.5);
}
/* ===== End Card ===== */

/* ===== Start Footer ===== */
.footer {
  text-align: center;
  padding: 1.5rem;
  color: #ffffff;
}

.footer p {
  margin-bottom: 0.25rem;
}

.brand-name {
  font-weight: 700;
}
/* ===== End Footer ===== */

/* ===== Start Paginations ===== */
.pagination-container {
  background: white;
  padding: 12px 20px;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pagination {
  display: flex;
  gap: 8px;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fef3c7; /* kuning muda */
  color: #b45309;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.page:hover {
  background-color: #fde68a;
  transform: scale(1.1);
}

.page.active {
  background-color: #991b1b; /* merah tua */
  color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}
/* ===== End Paginations ===== */

/* ===== Start Notification ===== */
.notif-box {
  position: fixed;
  bottom: -100px; /* awalnya tersembunyi */
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #001f16;
  padding: 14px 24px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: bold;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
  text-align: center;
  max-width: 100%;
}

/* Saat notifikasi aktif (ditampilkan) */
.notif-box.show {
  bottom: 0; /* munculkan dari bawah */
  opacity: 1;
}

/* Responsif: Sesuaikan di mobile */
@media (max-width: 480px) {
  .notif-box {
    font-size: 0.8rem;
    padding: 12px 16px;
  }
}
/* ===== End Notification ===== */