/* Daily gift button + modal (home page) */

.daily-gift-btn-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  background: #e0474b;
  border: 1.5px solid #1c1c1e;
  box-shadow: 0 0 0 1px rgba(224, 71, 75, 0.35);
  pointer-events: none;
  display: block;
  flex-shrink: 0;
}

.daily-gift-btn-badge[hidden] {
  display: none !important;
}

.daily-gift-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.55);
}

.daily-gift-modal-overlay.is-open {
  display: flex;
}

.daily-gift-modal {
  width: min(100%, 360px);
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 18px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
  direction: rtl;
}

.daily-gift-modal-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.daily-gift-modal-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: #ffd66a;
}

.daily-gift-modal-desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #c8c8c8;
}

.daily-gift-modal-desc strong {
  color: #ededed;
}

.daily-gift-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.daily-gift-claim-btn {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 214, 106, 0.35);
  background: linear-gradient(180deg, rgb(14 184 33 / 95%), rgb(10 100 40 / 98%));
  color: #080808;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 14px;
}

.daily-gift-claim-btn:disabled {
  opacity: 0.55;
  cursor: default;
  background: #2b2b2d;
  border-color: rgba(255, 255, 255, 0.12);
  color: #9a9a9a;
}

.daily-gift-close-btn {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ededed;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 14px;
}

.daily-gift-msg {
  margin: 0 0 12px;
  min-height: 1.2em;
  font-size: 13px;
  color: #9a9a9a;
}

.daily-gift-msg.is-success {
  color: #7dcea0;
}

.daily-gift-msg.is-error {
  color: #e0474b;
}
