#age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(13, 13, 15, 0.85),
      rgba(13, 13, 15, 0.85)
    ),
    url("https://www.getmyswag.cz/user/documents/upload/Brand/jungle bg-min.png");
  background-size: cover;
  background-position: center;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.3s ease;
}

#age-gate-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.age-gate-logo {
  max-width: 200px;
  height: auto;
}

.age-gate-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.age-gate-buttons button {
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

/* Hlavní tlačítko "VSTOUPIT" */
#age-gate-enter {
  background-color: #a41155;
  color: #fff;
  border-color: #a41155;
}
#age-gate-enter:hover {
  background-color: #c33174;
  border-color: #c33174;
  box-shadow: 0 0 15px rgba(215, 59, 131, 0.4);
}

/* Sekundární tlačítko "ODEJÍT" - styl "ghost button" */
#age-gate-leave {
  background-color: transparent;
  color: #a8a8a8;
  border-color: #a8a8a8;
}
#age-gate-leave:hover {
  background-color: #a8a8a8;
  color: #0d0d0f;
  box-shadow: 0 0 15px rgba(168, 168, 168, 0.4);
}

.age-gate-disclaimer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: #e0e0e0;
  font-size: 1.5rem;
}

.age-gate-disclaimer p {
  margin: 0;
}

.age-gate-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  font-weight: bold;
}

.age-gate-welcome-text {
  margin-bottom: 1.5rem;
  color: #e0e0e0; /* Prémiová bílá barva */
}

.age-gate-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #33ffc4;
  line-height: 1;
}

.age-gate-subtitle {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
