/* --- B+J Age Verify Styling by Process Vision --- */

#bj-av-overlay-wrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f2c200 0%, #b8860b 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  font-family: "Poppins", "Inter", sans-serif;
  color: #2c1b00;
}

/* Overlay Box */
#bj-av-overlay {
  background: rgba(255, 255, 255, 0.96);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
  animation: fadeIn 0.6s ease-out;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Logo */
.bj-av-logo {
  max-width: 180px;
  margin-bottom: 1.2rem;
}

/* Texte */
#bj-av-overlay h1 {
  color: #2c1b00;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
#bj-av-overlay p {
  font-size: 1rem;
  color: #4a3a0d;
  margin-bottom: 1.5rem;
}

/* Buttons */
.bj-av-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.bj-av-buttons button {
  padding: 0.9rem 1.6rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
#bj-av-yes {
  background: #E3FF04;
  color: #0A0326;
}
#bj-av-yes:hover {
  background: #d6f000;
}
#bj-av-no {
  background: #380761;
  color: #fff;
}
#bj-av-no:hover {
  background: #2b054b;
}

/* Footer */
.bj-av-footer {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: #4a3a0d;
}
.bj-av-footer a {
  color: #380761;
  text-decoration: none;
  font-weight: 600;
}
.bj-av-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  #bj-av-overlay {
    padding: 1.5rem;
  }
  #bj-av-overlay h1 {
    font-size: 1.2rem;
  }
  #bj-av-overlay p {
    font-size: 0.95rem;
  }
  .bj-av-buttons button {
    width: 100%;
  }
}
