.age-verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2147483647; /* Max z-index value for browsers */
    justify-content: center;
    align-items: center;
}

.age-verification-modal {
  width: 480px;
  max-width: 90%;
   backdrop-filter: blur(8px);
  padding: 40px 30px;
  background-color:  #ffffff;
  color: var(--thegem-text-color, #333333);
  font-family: var(--thegem-font-primary, 'Poppins', sans-serif);
  text-align: center;
  border-radius: var(--thegem-border-radius, 16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid #f9f9f9;
  position: relative;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.age-verification-logo {
    margin-bottom: 20px;
}

.age-verification-logo img {
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
}

.age-verification-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.age-verification-dev-tools {
    margin-top: 20px;
    text-align: center;
}

.age-verify-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-family: var(--thegem-font-primary, sans-serif);
  border: none;
  border-radius: var(--thegem-border-radius, 8px);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.age-verify-btn.yes {
  background-color: var(--thegem-button-color, #4CAF50);
  color: #fff;
}
.age-verify-btn.yes:hover {
  background-color: var(--thegem-button-color-hover, #43a047);
  transform: scale(1.05);
}

.age-verify-btn.no {
  background-color: #999;
  color: #fff;
}
.age-verify-btn.no:hover {
  background-color: #777;
  transform: scale(1.05);
}


.age-verify-btn.reset {
    background-color: #2196F3;
    color: white;
    margin-top: 10px;
    font-size: 14px;
}