/* Ежедневный бонус: slide-up плашка */
.daily-bonus {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,1,0.5,1);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 20, 22, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.35);
}
.daily-bonus.show { transform: translateY(0); }

.bonus-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bonus-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.35));
}
.bonus-text {
  flex: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.bonus-btn {
  background: linear-gradient(90deg, #ffb300, #ff7b00);
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.3s ease, box-shadow .2s ease;
  box-shadow: 0 6px 14px rgba(255, 123, 0, 0.35);
  animation: pulseGlow 1.6s infinite ease-in-out;
}
.bonus-btn:active { transform: scale(0.96); }
.bonus-btn:disabled { opacity: 0.7; animation: none; cursor: default; }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(255,179,0,0.75); }
  50% { box-shadow: 0 0 18px rgba(255,179,0,0.95); }
  100% { box-shadow: 0 0 0 rgba(255,179,0,0.75); }
}

/* Тост уведомления */
.daily-bonus-notif {
  position: fixed; top: 16px; right: 16px;
  background: #161b22; border: 1px solid #30363d; color: #c9d1d9;
  padding: 10px 12px; border-radius: 10px; z-index: 1100;
  display: flex; gap: 8px; align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.daily-bonus-notif button {
  background: #2f81f7; color: #fff; border: 0;
  padding: 6px 10px; border-radius: 8px; cursor: pointer;
}
