.px-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 8, 12, 0.92);
  backdrop-filter: blur(6px);
}

.px-gate-card {
  width: 100%;
  max-width: 26rem;
  padding: 2rem 1.75rem;
  background: var(--px-bg-elevated);
  border: 1px solid var(--px-border);
  border-radius: var(--px-radius);
  box-shadow: var(--px-shadow);
  text-align: center;
}

.px-age-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--px-accent);
  background: rgba(212, 165, 116, 0.12);
  border-radius: 50%;
}

.px-gate-title {
  margin: 0 0 0.75rem;
  font-family: var(--px-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--px-text);
}

.px-gate-text {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--px-text);
}

.px-gate-text--muted {
  color: var(--px-text-muted);
  font-size: 0.875rem;
}

.px-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.px-gate-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--px-font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.px-gate-btn--primary {
  color: #0c0f14;
  background: linear-gradient(135deg, var(--px-accent), var(--px-coral));
}

.px-gate-btn--primary:hover {
  background: linear-gradient(135deg, var(--px-accent-alt), var(--px-accent));
}

.px-gate-btn--ghost {
  color: var(--px-text-muted);
  background: transparent;
  border: 1px solid var(--px-border);
}

.px-gate-btn--ghost:hover {
  color: var(--px-text);
  border-color: var(--px-accent);
}

.px-restriction {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: var(--px-bg);
}

.px-restriction-inner {
  max-width: 32rem;
  text-align: center;
}

.px-restriction-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--px-coral);
  background: rgba(201, 107, 82, 0.12);
  border: 1px solid rgba(201, 107, 82, 0.3);
  border-radius: 50%;
}

.px-restriction-title {
  margin: 0 0 1rem;
  font-family: var(--px-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--px-text);
}

.px-restriction-text {
  margin: 0 0 0.875rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--px-text-muted);
}

.px-restriction-note {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--px-text-muted);
  font-style: italic;
}

.px-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1rem 0;
  background: var(--px-nav);
  border-top: 1px solid var(--px-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.px-cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.px-cookie-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.px-cookie-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--px-accent);
  background: rgba(212, 165, 116, 0.1);
  border-radius: 8px;
}

.px-cookie-title {
  margin: 0 0 0.35rem;
  font-family: var(--px-font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--px-text);
}

.px-cookie-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--px-text-muted);
}

.px-cookie-actions {
  flex-shrink: 0;
}

.px-cookie-actions .px-gate-btn {
  width: 100%;
}

@media (min-width: 768px) {
  .px-cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .px-cookie-actions .px-gate-btn {
    width: auto;
    min-width: 11rem;
    white-space: nowrap;
  }
}
