/* 
  Altersverifikations-Styles für Berlin69
  Separates Stylesheet für die Altersverifikation
*/

.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-verification-container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.verification-logo {
  max-width: 200px;
  margin: 0 auto 2rem;
}

.verification-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.btn-age {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.btn-yes {
  background-color: #E30613; /* Berlin Red */
  color: #ffffff;
}

.btn-no {
  background-color: #f44336;
  color: #ffffff;
}

.btn-age:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-notice {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1.5rem;
}

.verification-jugendschutz {
  margin-top: 1.5rem;
}

.legal-notice {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1.5rem;
}

.legal-notice a {
  color: #E30613; /* Berlin Red */
}

.with-blur {
  overflow: hidden;
}

.with-blur .sticky-nav,
.with-blur .header,
.with-blur section,
.with-blur footer {
  filter: blur(8px);
}