.bonus-van-section {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bonus-van-header {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #ffffff;
  padding-left: 0.25rem;
}

.bonus-van-card {
  background: #1a1a1c;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.bonus-van-card::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-sticker-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.bonus-sticker-wrapper canvas,
.bonus-sticker-wrapper img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
}

.bonus-sticker-wrapper.tapped {
  animation: stickerBounce 0.25s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes stickerBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(0.88); }
  65%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.bonus-limit-bar-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bonus-limit-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #8e8e93;
  font-weight: 500;
}

.bonus-limit-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.bonus-limit-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347, #ffd580);
  transition: width 0.3s ease;
}

.bonus-cooldown-text {
  font-size: 0.72rem;
  color: #ffb347;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.bonus-ad-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.bonus-ad-btn {
  flex: 1;
  position: relative;
  border: none;
  border-radius: 999px;
  padding: 0.65rem 0.5rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.bonus-ad-btn:active {
  transform: scale(0.95);
}

.bonus-ad-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.bonus-ad-btn-1 {
  background: linear-gradient(135deg, #0785FD, #0560c9);
  color: #fff;
  box-shadow: 0 4px 14px rgba(7, 133, 253, 0.3);
}

.bonus-ad-btn-2 {
  background: linear-gradient(135deg, #ff6b35, #c94a1a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.bonus-ad-btn-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.bonus-ad-btn-sub {
  font-size: 0.62rem;
  opacity: 0.85;
  font-weight: 500;
}

.bonus-ad-btn-uses {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 0.58rem;
  opacity: 0.75;
  font-weight: 700;
}

.bonus-double-bar-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  display: none;
}

.bonus-double-bar-wrap.active {
  display: flex;
}

.bonus-double-label {
  font-size: 0.7rem;
  color: #ffd580;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
}

.bonus-double-track {
  background: rgba(255, 213, 128, 0.15);
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
}

.bonus-double-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd580, #ffb347);
  transition: width 0.1s linear;
}

.bonus-float-reward {
  position: fixed;
  pointer-events: none;
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffd580;
  text-shadow: 0 0 16px rgba(255, 213, 128, 0.8);
  z-index: 9000;
  opacity: 0;
  transform: translateY(0px) translateX(-50%);
  white-space: nowrap;
  letter-spacing: 1px;
}

.bonus-float-reward.pop {
  animation: floatUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes floatUp {
  0%   { opacity: 1; transform: translateY(0px) translateX(-50%) scale(0.8); }
  40%  { opacity: 1; transform: translateY(-28px) translateX(-50%) scale(1.15); }
  100% { opacity: 0; transform: translateY(-64px) translateX(-50%) scale(0.9); }
}

.bonus-van-card .sticker-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c87941, #7a4520);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.15);
  transition: transform 0.1s ease;
}

.bear-face {
  width: 100%;
  height: 100%;
  position: relative;
}

.bear-svg {
  width: 120px;
  height: 120px;
  display: block;
}

