/* Selector de local — pantallas táctil y TV */
:root {
  --bg: #0a1817;
  --bg-mid: #122a28;
  --surface: rgba(255, 253, 248, 0.06);
  --surface-hover: rgba(255, 253, 248, 0.11);
  --border: rgba(255, 253, 248, 0.1);
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, 0.72);
  --brand: #5c8a88;
  --accent: #e8a545;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(92, 138, 136, 0.25), transparent 50%),
    radial-gradient(80% 60% at 100% 100%, rgba(232, 165, 69, 0.08), transparent 45%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-mid) 55%, #0d1f1e 100%);
  padding: clamp(1.25rem, 4vw, 2.5rem);
}

.pick-shell {
  max-width: 920px;
  margin: 0 auto;
}

.pick-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.75rem;
}

.pick-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.pick-lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38rem;
}

.pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 560px) {
  .pick-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

a.pick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

a.pick-card:hover {
  transform: translateY(-3px);
  background: var(--surface-hover);
  border-color: rgba(92, 138, 136, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

a.pick-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.pick-card-name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.pick-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}

.pick-badge.m {
  background: rgba(232, 165, 69, 0.18);
  color: #f0c47a;
}

.pick-badge.n {
  background: rgba(255, 253, 248, 0.1);
  color: var(--muted);
}

.pick-card-url {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(247, 244, 238, 0.5);
  word-break: break-all;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 253, 248, 0.06);
  width: 100%;
}

.hidden {
  display: none !important;
}

.pick-err {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(140, 40, 32, 0.22);
  border: 1px solid rgba(200, 80, 70, 0.35);
  color: #f5d4d0;
  font-size: 0.95rem;
}

.pick-footer {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 253, 248, 0.08);
  font-size: 0.88rem;
  color: rgba(247, 244, 238, 0.55);
}

.pick-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 165, 69, 0.35);
}

.pick-footer a:hover {
  border-bottom-color: var(--accent);
}

.pick-footer strong {
  color: rgba(247, 244, 238, 0.75);
  font-weight: 600;
}
