/* RESET SINGKAT */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050509;
  color: #f5f5f5;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

/* CONTAINER */
.container {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3b3b, #ff7b00);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff5c5c, #ffa733);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #111827;
  border: 1px solid #fcd34d;
  color: #fcd34d;
}

.btn-secondary:hover {
  background: #1f2937;
}

.btn-outline {
  border: 1px solid #fcd34d;
  color: #fcd34d;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(252, 211, 77, 0.1);
}

/* HEADER */
.top-header {
  background: #020617;
  border-bottom: 1px solid #111827;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  max-height: 52px;
}

.cta-header {
  display: flex;
  gap: 8px;
}

/* MAIN WRAPPER */
.main-wrapper {
  padding: 12px 0 30px;
}

/* HERO SECTION */
.hero-section {
  margin-bottom: 18px;
}

.hero-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #111827;
}

.hero-img {
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
    justify-content: flex-end !important;
}


.hero-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fcd34d;
  margin-bottom: 4px;
}

.hero-subtitle {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* SECTION TITLE */
.section-title {
  margin: 16px 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fcd34d;
  border-left: 3px solid #f97316;
  padding-left: 8px;
}

/* MENU GRID (ICON LIST) */
.menu-section {
  margin-top: 8px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.menu-item {
  background: #020617;
  border: 1px solid #111827;
  border-radius: 8px;
  text-align: center;
  padding: 10px 4px;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.menu-item:hover {
  border-color: #f97316;
}

.menu-icon img {
  height: 26px;
}

/* APK SECTION */
.apk-section {
  margin-top: 20px;
}

.apk-box {
  background: #020617;
  border-radius: 10px;
  border: 1px solid #111827;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apk-text h2 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fcd34d;
}

.apk-text p {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 8px;
}

.apk-text ul {
  margin-left: 18px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.apk-image img {
  max-width: 180px;
  margin: 0 auto;
}

/* TABLE SECTION */
.info-section {
  margin-top: 18px;
}

.table-wrapper {
  overflow-x: auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: #020617;
  border-radius: 8px;
  overflow: hidden;
}

.info-table thead {
  background: #111827;
}

.info-table th,
.info-table td {
  padding: 8px;
  border-bottom: 1px solid #111827;
  text-align: left;
}

.info-table th {
  font-weight: 700;
  color: #f9fafb;
}

.info-table tbody tr:nth-child(even) {
  background: #030712;
}

.status-hot {
  color: #facc15;
  font-weight: 600;
}

.status-warm {
  color: #22c55e;
  font-weight: 600;
}

/* CONTENT SECTION */
.content-section {
  margin-top: 18px;
}

.content-box {
  background: #020617;
  border: 1px solid #111827;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.88rem;
  color: #e5e7eb;
}

.content-box p + p {
  margin-top: 8px;
}

/* FOOTER */
.site-footer {
  background: #020617;
  border-top: 1px solid #111827;
  padding-top: 14px;
  margin-top: 24px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-col h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #facc15;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 4px;
}

.footer-col a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-col a:hover {
  color: #f97316;
}

.bank-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.bank-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: #111827;
  border: 1px solid #facc15;
  font-size: 0.7rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  padding: 10px 0 14px;
  color: #9ca3af;
}

/* DESKTOP ADJUSTMENT */
@media (min-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .apk-box {
    flex-direction: row;
    align-items: center;
  }
  .apk-text {
    flex: 1;
  }
  .apk-image {
    flex: 0 0 220px;
  }
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-col {
    flex: 1;
  }
}

.marquee-box {
    background: #111827;
    border: 1px solid #ff3b3b;
    padding: 6px 10px;
    border-radius: 8px;
    margin: 12px 0;
    color: #fcd34d;
    font-weight: bold;
    font-size: 0.85rem;
}

.hero-slider {
    width: 100%;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    width: 100%;   /* 3 banner = 300%, 4 banner = 400%, dst */
    animation: heroSlide 40s infinite;
}

.hero-slides img {
    width: 100%;
    object-fit: cover;
}

@keyframes heroSlide {
    0%   { transform: translateX(0); }
    33%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
