* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #050611;
  color: #f5f5f5;
  line-height: 1.5;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header & login */
.top-bar {
  background: #101322;
  border-bottom: 2px solid #6b3bf0;
  padding: 8px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: #6b3bf0;
  text-decoration: none;
}

.tagline {
  font-size: 11px;
  color: #cccccc;
  margin-top: 3px;
}

.login-form {
  display: flex;
  gap: 6px;
}

.login-form input {
  padding: 6px 8px;
  border-radius: 3px;
  border: 1px solid #2b2f45;
  background: #1b1e30;
  color: #f5f5f5;
  font-size: 12px;
}

.login-form button {
  padding: 6px 12px;
  border-radius: 3px;
  border: none;
  background: #6b3bf0;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
}

.login-form button:hover {
  background: #ffd95e;
}

/* Info bar */
.info-bar {
  background: #181b2b;
  border-bottom: 1px solid #2a2d3d;
  padding: 5px 0;
  font-size: 12px;
}

.info-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-icon {
  color: #6b3bf0;
}

.info-label {
  font-weight: bold;
  color: #6b3bf0;
}

.info-marquee {
  color: #ffffff;
}

/* Main menu */
.main-menu {
  background: #121526;
  border-bottom: 2px solid #6b3bf0;
}

.main-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.main-menu li {
  margin-right: 10px;
}

.main-menu a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 10px;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
}

.main-menu .icon {
  font-family: "Font Awesome 5 Free", Arial, sans-serif; /* jika pakai icon font */
  font-weight: 900;
}

.main-menu a:hover {
  color: #6b3bf0;
}

.menu-register a {
  background: #6b3bf0;
  color: #000;
  border-radius: 3px;
}

.menu-register a:hover {
  background: #ffd95e;
}

/* Layout utama */
.main-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 15px;
  margin: 15px auto 20px;
}

/* Box umum */
.box {
  background: #141726;
  border: 1px solid #24273a;
  border-radius: 3px;
  margin-bottom: 10px;
}

.box h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #1c1f33;
  border-bottom: 1px solid #2b3050;
  font-size: 14px;
  padding: 7px 10px;
  text-transform: uppercase;
  color: #6b3bf0;
}

.box .icon {
  font-size: 14px;
}

.box-content {
  padding: 9px 10px;
  font-size: 13px;
}

/* Hasil terakhir */
.results {
  /* isi bebas */
}

/* Berita */
.news article {
  margin-bottom: 8px;
}

.news a {
  display: block;
  color: #f5f5f5;
  text-decoration: none;
}

.news a:hover {
  color: #6b3bf0;
}

.news .date {
  display: block;
  font-size: 11px;
  color: #aaaaaa;
}

/* Bank status */
.bank-status p {
  font-size: 13px;
  margin-bottom: 4px;
}

.status {
  margin-left: 4px;
}

.status.online {
  color: #4caf50;
}

.status.warning {
  color: #ffc107;
}

.status.offline {
  color: #f44336;
}

/* Konten */
.content .box {
  min-height: 300px;
}

.main-title {
  font-size: 20px;
  margin: 0;
  padding: 8px 10px;
  background: #1c1f33;
  border-bottom: 1px solid #2b3050;
  color: #6b3bf0;
}

.content .box-content p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #e0e0e0;
}

/* Footer */
.footer {
  background: #101322;
  border-top: 1px solid #24273a;
  padding: 8px 0;
}

.footer-inner {
  text-align: center;
  font-size: 12px;
  color: #aaaaaa;
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .login-form {
    width: 100%;
  }

  .login-form input {
    flex: 1;
  }

  .main-layout {
    grid-template-columns: 1fr;
  }
}

.hero-slider {
  grid-column: 1 / -1; /* slider full lebar di atas sidebar+content */
  margin: 15px 0;
}

.slider {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots / indikator */
.slider-dots {
  text-align: center;
  margin-top: 6px;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: #777;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
  background-color: #6b3bf0;
}

/* Mobile tweak */
@media (max-width: 900px) {
  .hero-slider {
    margin-top: 10px;
  }
  .slider {
    height: 180px;
  }
}
