/* ===== Logo ===== */
.heng99-yeekee-logo {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}
.heng99-yeekee-logo__badge {
  background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
  border: 3px solid #d6b259;
  border-radius: 14px;
  padding: 14px 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 0 2px #1d1535, 0 6px 20px rgba(0, 0, 0, 0.4);
}
.heng99-yeekee-logo__title {
  display: block;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(180deg, #f8e08e 0%, #c89432 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  /* line-height: 1; */
}

/* ===== Round bars ===== */
.heng99-yeekee-roundbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #d6b259 0%, #a47a26 100%);
  color: #2b1d05;
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 14px;
}
.heng99-yeekee-roundbar--prev {
  background: linear-gradient(180deg, #4a4459 0%, #2f2a3d 100%);
  color: #e8e3f5;
  margin-top: 14px;
}
.heng99-yeekee-roundbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.heng99-yeekee-roundbar__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1d1535;
  color: #ffd76b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 0 2px #ffd76b inset;
}
.heng99-yeekee-roundbar__circle.is-muted {
  background: #1d1535;
  color: #c8bce4;
  box-shadow: 0 0 0 2px #6a5f87 inset;
}
.heng99-yeekee-roundbar__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.heng99-yeekee-roundbar__sub {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  opacity: 0.85;
}
.heng99-yeekee-roundbar__right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
}
.heng99-yeekee-roundbar__right.is-closed {
  font-size: 14px;
  color: #ffb4b4;
}

/* ===== Clock icon ===== */
.heng99-yeekee-icon-clock {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  flex: 0 0 14px;
}
.heng99-yeekee-icon-clock::before,
.heng99-yeekee-icon-clock::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
}
.heng99-yeekee-icon-clock::before {
  width: 5px;
  height: 1.5px;
  transform: rotate(-90deg);
}
.heng99-yeekee-icon-clock::after {
  width: 4px;
  height: 1.5px;
  transform: rotate(0deg);
}

/* ===== Main card ===== */
.heng99-yeekee-card {
  background: #2f2842;
  border-radius: 14px;
  padding: 18px 16px 22px;
  text-align: center;
}
.heng99-yeekee-card__heading {
  font-size: 18px;
  font-weight: 600;
  color: #f1ecff;
}
.heng99-yeekee-card__rate {
  margin-top: 6px;
  font-size: 16px;
  color: #d8d2ed;
}
.heng99-yeekee-card__rate span {
  color: #7ee787;
  font-weight: 700;
}

.heng99-yeekee-digits {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin: 18px 0 12px;
}
.heng99-yeekee-digit__label {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 0 #000;
}
.heng99-yeekee-digit__circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffe89a, #f1b53a 60%, #b9821f 100%);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 700;
  margin: 8px auto 0;
  box-shadow: 0 0 24px rgba(255, 200, 80, 0.4);
}

.heng99-yeekee-section {
  margin-top: 14px;
}
.heng99-yeekee-section__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffd76b;
  margin-bottom: 6px;
}
.heng99-yeekee-section__row {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  margin: 2px 0;
}

/* ===== Results table ===== */
.heng99-yeekee-table {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f4f7;
  color: #2a2138;
}
.heng99-yeekee-table__head {
  background: #2a2138;
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  font-size: 18px;
  font-weight: 600;
}
.heng99-yeekee-table__head span {
  color: #ffd76b;
  font-weight: 700;
  margin-left: 6px;
}
.heng99-yeekee-table__row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  text-align: center;
  align-items: center;
  padding: 12px 8px;
  font-size: 18px;
  border-bottom: 1px solid #e6e1f1;
}
.heng99-yeekee-table__row:last-child {
  border-bottom: 0;
}
.heng99-yeekee-table__row--th {
  background: #eceaf2;
  font-weight: 600;
}

/* ===== Loading state ===== */
.heng99-yeekee-content.is-loading {
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
