* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #050505;
  color: #fff;
  padding-bottom: 75px;
}

.topbar {
  height: 58px;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 10;
  font-weight: bold;
  font-size: 18px;
}

.moon {
  position: absolute;
  left: 16px;
  background: #2a2a2a;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 14px;
}

.tab {
  border: 0;
  padding: 10px 18px;
  border-radius: 20px;
  background: #1b1b1f;
  color: #aaa;
  font-weight: bold;
  white-space: nowrap;
}

.tab.active {
  background: #fff;
  color: #111;
}

.hot {
  background: #ff3b3b;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 8px;
  margin-left: 4px;
}

.search-box {
  padding: 0 14px;
}

.search-box input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 0;
  background: #111;
  color: #fff;
  outline: none;
  font-size: 15px;
}

.status {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px 8px;
  color: #888;
  font-size: 13px;
}

.online {
  color: #24d66b;
}

.game-list {
  margin: 0 14px;
  background: #202020;
  border-radius: 14px;
  overflow: hidden;
}

.game {
  padding: 15px;
  border-bottom: 1px solid #333;
}

.game:last-child {
  border-bottom: 0;
}

.game-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.game-name {
  font-size: 16px;
  font-weight: bold;
}

.percent {
  font-weight: bold;
  font-size: 16px;
}

.green {
  color: #24d66b;
}

.yellow {
  color: #ffd738;
}

.red {
  color: #ff4d4d;
}

.meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.badge {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.viral {
  background: #651b1b;
  color: #ff5252;
}

.gacor {
  background: #0c4f25;
  color: #22e064;
}

.bar {
  height: 5px;
  background: #333;
  border-radius: 20px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 20px;
  transition: 0.5s;
}

.ambil {
  position: fixed;
  right: 12px;
  bottom: 70px;
  background: #ff3b3b;
  color: #fff;
  padding: 9px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(255,0,0,.7);
  z-index: 20;
  cursor: pointer;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #202020;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #333;
  z-index: 10;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
  gap: 4px;
  cursor: pointer;
}

.nav-item.active {
  color: #1e9bff;
}

.icon {
  font-size: 22px;
}

.page {
  padding: 14px;
}

.title-page {
  text-align: center;
  font-size: 38px;
  font-weight: 900;
  margin: 25px 0;
}

.pola-box,
.inject-box {
  background: #202020;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}

.pola-title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 8px;
}

.pola-good {
  color: #24d66b;
  font-weight: bold;
}

.inject-btn {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  background: #1e9bff;
  color: #fff;
  font-weight: bold;
  margin-top: 12px;
  cursor: pointer;
}

.section-title {
  color: #999;
  margin: 20px 0 10px;
  font-weight: bold;
}

.card {
  background: #202020;
  border-radius: 14px;
  overflow: hidden;
}

.menu-head {
  background: linear-gradient(90deg,#3a2018,#202020);
  padding: 16px;
  font-weight: bold;
  color: #ff7a18;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-row {
  padding: 18px;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

.menu-row:last-child {
  border-bottom: 0;
}

.small-btn {
  background: #ff3b3b;
  color: #fff;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 11px;
  margin-left: 8px;
}

.right-icon {
  color: #999;
  font-size: 22px;
}

.copyright {
  text-align: center;
  color: #444;
  margin-top: 55px;
  font-size: 13px;
}