/* CSS do Pop-up de Bônus */

#bonus-popup-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 120px 40px #ffb30044;
}

#bonus-popup {
  background: #111111;
  border-radius: 22px;
  box-shadow: 0 0 40px 0 #000c, 0 2px 16px 0 #000a;
  padding: 40px 32px 32px 32px;
  max-width: 410px;
  width: 92vw;
  color: #fff;
  text-align: center;
  position: relative;
  border: 1.5px solid #232b2f;
  backdrop-filter: blur(1.5px);
}

#bonus-popup .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #ffb800;
  cursor: pointer;
  transition: color 0.2s;
}
#bonus-popup .close-btn:hover {
  color: #ff9500;
}

#bonus-popup .bonus-icon {
  background: linear-gradient(135deg, #ffd600 60%, #ffb300 100%);
  border-radius: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 0 16px 0 rgba(197, 178, 94, 0.3);
}
#bonus-popup .bonus-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

#bonus-popup .bonus-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px #fff3, 0 1px 2px #fff2;
  line-height: 1.08;
}

#bonus-popup .bonus-desc {
  color: #bdbdbdcc;
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 400;
}

#bonus-popup .bonus-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffb300;
  margin-bottom: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #ffb30044;
}

#bonus-popup .bonus-gratis {
  background: #27d36b;
  color: #111;
  border-radius: 12px;
  padding: 2px 10px;
  font-weight: 700;
  font-size: 0.66rem;
  margin-left: 8px;
  box-shadow: 0 2px 8px #27d36b33;
  border: none;
  vertical-align: middle;
}

#bonus-popup .bonus-info {
  text-align: center;
  margin: 18px 0 24px 0;
  font-size: 1rem;
  color: #e0e0e0;
  white-space: pre-line;
}
#bonus-popup .bonus-info strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.08em;
  text-shadow: 0 1px 4px #fff2;
}
#bonus-popup .bonus-info .bonus-destaque {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.2px;
  font-size: 1.08em;
  text-shadow: 0 1px 4px #fff2;
}

#bonus-popup .bonus-btn {
  width: 100%;
  background: linear-gradient(90deg, #ffb300 80%, #ff9500 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  padding: 16px 0;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px 2px #ffb30033, 0 1.5px 0 #fff1 inset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-shadow: 0 1px 2px #0008;
}
#bonus-popup .bonus-btn:hover {
  background: linear-gradient(90deg, #ff9500 60%, #ffb300 100%);
  color: #fff;
  box-shadow: 0 0 0 2px #ffb30099, 0 2px 16px #ffb30033;
}

#bonus-popup .bonus-login {
  width: 100%;
  background: #181f23;
  color: #fff;
  border: 1.5px solid #232b2f;
  border-radius: 10px;
  font-size: 1rem;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
#bonus-popup .bonus-login:hover {
  background: #232b2f;
  color: #ffb800;
}
