/* Age restriction overlay for VECERNI SCENA */

.vs-age-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.vs-age-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(24, 26, 36, 0.96), rgba(5, 6, 8, 0.98));
}

.vs-age-modal__dialog {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 var(--space-4);
  background: radial-gradient(circle at top left, #181a24 0, #050608 48%, #020308 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 155, 63, 0.35);
}

.vs-age-modal__header {
  margin-bottom: var(--space-4);
}

.vs-age-modal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(225, 59, 59, 0.7);
  color: var(--color-danger);
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.vs-age-modal__title {
  font-size: 1.5rem;
}

.vs-age-modal__body p {
  font-size: 0.95rem;
}

.vs-age-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
  margin-top: var(--space-6);
}

.vs-age-modal__button {
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .vs-age-modal__dialog {
    padding: var(--space-5);
  }

  .vs-age-modal__footer {
    flex-direction: column-reverse;
  }

  .vs-age-modal__button {
    width: 100%;
    justify-content: center;
  }
}

/* When age is verified we can hide overlay via JS by adding this class */
.vs-age-modal--hidden {
  display: none !important;
}
