#aav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

#aav-popup {
  background: #fff;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  font-family: sans-serif;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

#aav-popup p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

#aav-button, #aav-no-button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin: 0.5rem 0.25rem;
  width: 100%;
  max-width: 180px;
}

@media (min-width: 480px) {
  #aav-button, #aav-no-button {
    width: auto;
  }
}
