/*!
 * pelotapasto.com — pp-gate.css
 * Gate de acceso público — Casilla de Palos
 */

@layer components {

  .pp-gate {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 48px 24px;
    text-align: center;
  }

  .pp-gate__inner {
    max-width: 480px;
  }

  .pp-gate__title {
    font-family: var(--pp-font-display, 'Bebas Neue', 'Arial Narrow', sans-serif);
    font-size: clamp(28px, 5vw, 40px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    color: var(--pp-black, #262626);
  }

  .pp-gate__message {
    font-family: var(--pp-font-reading, 'Spectral', Georgia, serif);
    font-size: 17px;
    line-height: 1.6;
    color: var(--pp-ink-soft, #555);
    margin: 0 0 28px;
  }

  .pp-gate__cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--pp-orange, #ff6900);
    color: #fff;
    font-family: var(--pp-font-ui, 'Inter', -apple-system, sans-serif);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 4px;
    transition: background 0.2s;
  }

  .pp-gate__cta:hover {
    background: var(--pp-link-hover, #e05e00);
    color: #fff;
  }

  .pp-gate__back {
    margin-top: 20px;
    font-size: 14px;
  }

  .pp-gate__back a {
    color: var(--pp-blue, #598fbf);
    text-decoration: none;
  }

  .pp-gate__back a:hover {
    text-decoration: underline;
  }

}
