#bonus-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.bonus-modal {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.bonus-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #1e1e1e;
  border: none;
  color: #666;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-left {
  flex-shrink: 0;
}

.bonus-wheel-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}

#bonusWheel {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 3px solid #7fff6e;
  display: block;
}

.bonus-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 18px solid #7fff6e;
  z-index: 1;
}

.bonus-right {
  flex: 1;
  text-align: left;
}

.bonus-badge {
  background: #7fff6e;
  color: #111;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.bonus-title {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.bonus-sub {
  color: #888;
  font-size: 13px;
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.bonus-result {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin: 0 0 1rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-hint { font-size: 13px; color: #555; }

.bonus-amount {
  font-size: 28px;
  font-weight: 500;
  color: #7fff6e;
  display: none;
}

.bonus-spin-btn,
.bonus-claim-btn {
  width: 100%;
  padding: 13px;
  background: #7fff6e;
  color: #111;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 0.5rem;
}

.bonus-spin-btn:hover,
.bonus-claim-btn:hover { opacity: 0.85; }

.bonus-spin-btn:disabled { opacity: 0.4; cursor: default; }

.bonus-claim-btn { display: none; }

.bonus-conditions {
  font-size: 11px;
  color: #444;
  margin: 0.5rem 0 0;
  line-height: 1.5;
}
