/* ============================================================
   Futis — "álbum de figuritas nocturno"
   Cancha de noche bajo los reflectores + tarjetas tipo figurita.
   ============================================================ */

:root {
  --pitch-night: #0c2b21;
  --pitch-line: #163b2c;
  --pitch-line-2: #1d4a37;
  --chalk: #f4efe0;
  --ink: #12241c;
  --floodlight: #ffc94a;
  --floodlight-dim: #c99a2e;
  --net-line: #2a5340;
  --danger: #ff8a7a;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(255, 201, 74, 0.10), transparent 60%),
    var(--pitch-night);
  color: var(--chalk);
  font-family: var(--font-body);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 16px;
}

a { color: var(--floodlight); }

::selection { background: var(--floodlight); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--floodlight);
  outline-offset: 2px;
}

/* ---------- Panel base (login, tienda) ---------- */
.card {
  background: var(--pitch-line);
  border: 1px solid var(--net-line);
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 0 1px rgba(255, 201, 74, 0.06), 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

h1 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  text-align: center;
  color: var(--chalk);
}

.subtitle { text-align: center; color: var(--chalk); opacity: 0.6; font-size: 13px; margin-bottom: 22px; }

.ref-note {
  background: rgba(255, 201, 74, 0.12);
  border: 1px dashed var(--floodlight-dim);
  color: var(--floodlight);
  font-size: 12px;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 12px;
  text-align: center;
}

input {
  width: 100%;
  background: var(--pitch-night);
  border: 1px solid var(--net-line);
  color: var(--chalk);
  padding: 11px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: var(--font-body);
}
input::placeholder { color: var(--chalk); opacity: 0.4; }

button {
  width: 100%;
  background: linear-gradient(180deg, var(--floodlight), var(--floodlight-dim));
  color: var(--ink);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.08s ease, opacity 0.15s ease;
}
button:hover:not(:disabled) { transform: translateY(-1px); opacity: 0.95; }
button:active:not(:disabled) { transform: translateY(0); }
button:disabled { opacity: 0.35; cursor: not-allowed; }

button.secondary {
  background: transparent;
  border: 1px solid var(--net-line);
  color: var(--chalk);
  opacity: 0.85;
  margin-top: 8px;
}
button.secondary:hover:not(:disabled) { border-color: var(--floodlight-dim); opacity: 1; }

.error { color: var(--danger); font-size: 13px; margin-bottom: 8px; min-height: 16px; }
.hidden { display: none !important; }

/* ---------- Moneda FUTIS: réplica en CSS puro de futis-design-system/FutisCoin ---------- */
.coin-slot { display: inline-flex; vertical-align: middle; }
h1 .coin-slot { margin-right: 8px; }
.futis-coin { position: relative; display: inline-block; flex: none; border-radius: 50%; }
.futis-coin .fc-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: repeating-conic-gradient(#f7dd8f 0deg 7.5deg, #a9761a 7.5deg 15deg);
  box-shadow: 0 0 0 1px rgba(143, 103, 8, 0.9);
}
.futis-coin .fc-face {
  position: absolute; inset: 9%; border-radius: 50%;
  background: radial-gradient(72% 72% at 32% 26%, #ffefbe, #e0ad33 52%, #a9761a);
  box-shadow: inset 0 0 0 2.5% #8f6708, inset 0 -8% 12% -6% rgba(0, 0, 0, 0.45);
}
.futis-coin .fc-emblem {
  position: absolute; inset: 20%;
  background: var(--ink);
  clip-path: polygon(29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29%);
  box-shadow: 0 0 0 2px rgba(255, 233, 168, 0.5);
}
.futis-coin .fc-ball {
  position: absolute; inset: 26%; border-radius: 50%; overflow: hidden;
  background: radial-gradient(70% 70% at 34% 28%, #ffffff, #e6dfc9 70%, #c9c1a6);
}
.futis-coin .fc-hex {
  position: absolute;
  background: var(--ink);
  clip-path: polygon(50% 0%, 100% 38%, 81% 100%, 19% 100%, 0% 38%);
}
.futis-coin .fc-hex-c { top: 26%; left: 28%; width: 44%; height: 40%; }
.futis-coin .fc-hex-tl { top: -8%; left: -6%; width: 30%; height: 30%; opacity: 0.9; }
.futis-coin .fc-hex-br { bottom: -6%; right: -4%; width: 30%; height: 30%; opacity: 0.9; }
.futis-coin .fc-hex-tr { top: 12%; right: -14%; width: 26%; height: 26%; opacity: 0.75; }
.futis-coin .fc-hex-bl { bottom: 14%; left: -14%; width: 26%; height: 26%; opacity: 0.75; }
.futis-coin .fc-shine { position: absolute; inset: 9%; border-radius: 50%; overflow: hidden; pointer-events: none; }
.futis-coin .fc-shine-bar {
  position: absolute; top: -30%; left: 0; width: 38%; height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .futis-coin .fc-shine-bar { animation: coinshine 4.5s ease-in-out infinite; }
}
@keyframes coinshine {
  0%, 100% { transform: translateX(-40%) rotate(18deg); opacity: 0.55; }
  50% { transform: translateX(60%) rotate(18deg); opacity: 0.9; }
}

/* ---------- Game screen ---------- */
#gameCard { max-width: 720px; text-align: left; }

/* Pestañas: Jugadores / Tienda / Álbum */
.tabs {
  display: flex;
  gap: 4px;
  margin: 18px 0 22px;
  border-bottom: 1px solid var(--net-line);
}
.tab-btn {
  width: auto;
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 6px 6px 0 0;
  color: var(--chalk);
  opacity: 0.5;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 6px 12px;
  cursor: pointer;
  transition: opacity 0.15s ease, color 0.15s ease, transform 0.08s ease;
}
.tab-btn:hover:not(.active) { opacity: 0.8; }
.tab-btn.active {
  opacity: 1;
  color: var(--floodlight);
  box-shadow: inset 0 -3px 0 var(--floodlight);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tab-fade-in 0.2s ease; }
@keyframes tab-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Zócalo tipo marcador de estadio */
.scoreboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--pitch-night);
  border: 1px solid var(--net-line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  box-shadow: 0 0 24px -6px rgba(255, 201, 74, 0.25);
}
.futis-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.futis-total .coin-slot { align-self: center; }
.futis-total .value {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.01em;
  color: var(--chalk);
  line-height: 1;
}
.futis-total .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--chalk);
  opacity: 0.55;
  text-transform: uppercase;
}
.futis-rate {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--floodlight);
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .futis-rate { animation: pulse-glow 2.4s ease-in-out infinite; }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(255, 201, 74, 0.7); }
}

/* Etiquetas de sección tipo "sello" */
.section-title {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--chalk);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 3px;
  transform: rotate(-1.5deg);
  margin: 22px 0 10px 0;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}
.section-title.subtle {
  background: transparent;
  color: var(--chalk);
  opacity: 0.55;
  box-shadow: none;
  transform: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 0;
}
.section-hint { font-size: 12px; color: var(--chalk); opacity: 0.55; margin: 0 0 10px 0; }

.bar-bg {
  background: var(--pitch-night); border: 1px solid var(--net-line); border-radius: 999px;
  height: 8px; overflow: hidden;
}
.bar-fill {
  height: 100%; width: 100%; background: var(--floodlight);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.album-progress-bar { margin-bottom: 18px; }

/* ---------- Plantel / mercado / álbum: grid de figuritas ---------- */
#roster, #market, .album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}
.album-grid { margin-bottom: 18px; }

/* ---------- Sobres ---------- */
#packs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}
.pack-card {
  position: relative;
  background: linear-gradient(165deg, #1f5c3f, #0c2b21 70%);
  border-radius: 10px;
  padding: 18px 14px 16px;
  text-align: center;
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.pack-card.pack-estadio {
  background: linear-gradient(165deg, #2b5a7a, #0c2b21 72%);
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.85), 0 0 20px -8px rgba(111, 168, 245, 0.55);
}
.pack-card.pack-leyenda {
  background: linear-gradient(150deg, #3b2a5c, #12241c 70%);
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.9), 0 0 26px -6px rgba(176, 111, 242, 0.55);
}
.pack-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--chalk);
}
.pack-stat {
  width: 82px; height: 82px;
  border-radius: 50%;
  border: 2px dashed rgba(244, 239, 224, 0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--chalk); opacity: 0.85;
  line-height: 1.4;
}
.pack-stat span { display: block; opacity: 0.75; margin-top: 3px; }
.pack-price {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--floodlight);
  width: 100%;
}
.pack-bar { width: 100%; height: 5px; border-radius: 999px; }
.pack-open-btn { margin-top: 2px; }

.album-group-heading {
  display: flex; align-items: center; gap: 8px; margin: 4px 0 10px 0;
}
.album-group-count {
  font-family: var(--font-mono); font-size: 11px; color: var(--chalk); opacity: 0.6;
}
.player-card.locked {
  filter: grayscale(0.9) brightness(0.85);
  opacity: 0.6;
}

/* Marco exterior: degradé propio de cada rareza (ver futis-design-system/) */
.player-card {
  --notch: 12px;
  position: relative;
  padding: 6px;
  clip-path: polygon(
    0% var(--notch), var(--notch) 0%,
    calc(100% - var(--notch)) 0%, 100% var(--notch),
    100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%,
    var(--notch) 100%, 0% calc(100% - var(--notch))
  );
  background: linear-gradient(160deg, #c6c3d8, #9a97b5 50%, #6f6c8a);
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.7);
}
.player-card.rarity-semipro {
  background: linear-gradient(160deg, #dff5f2, #7fd1c9 45%, #3f8a83);
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.7), 0 0 16px -6px rgba(127, 209, 201, 0.55);
}
.player-card.rarity-profesional {
  background: linear-gradient(160deg, #cfe2ff, #6fa8f5 45%, #2f5fa8);
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.7), 0 0 26px -4px rgba(111, 168, 245, 0.6);
}
.player-card.rarity-crack {
  /* Fallback dorado/rojo genérico; las cartas de países con bandera definida
     (ver FLAG_COLORS en app.js) pisan estas dos variables inline. */
  --flag-1: #ffc400;
  --flag-2: #c60b1e;
  background: linear-gradient(135deg, var(--flag-1), var(--flag-1) 30%, var(--flag-2) 58%, var(--flag-1) 82%, var(--flag-2));
  box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.7), 0 0 30px -4px color-mix(in srgb, var(--flag-1) 55%, transparent), 0 0 40px -10px color-mix(in srgb, var(--flag-2) 45%, transparent);
}
.player-card.rarity-semipro, .player-card.rarity-profesional, .player-card.rarity-crack { overflow: hidden; }
.player-card.rarity-semipro::after, .player-card.rarity-profesional::after, .player-card.rarity-crack::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .player-card.rarity-semipro::after, .player-card.rarity-profesional::after, .player-card.rarity-crack::after {
    animation: sweep 4.5s ease-in-out infinite;
  }
}
@keyframes sweep {
  0% { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(220%) skewX(-18deg); }
}
.player-card.in-lineup {
  box-shadow: 0 0 0 2px var(--floodlight), 0 0 18px -2px rgba(255, 201, 74, 0.7);
}

/* Cara interior: siempre tiza, con su propio notch más chico */
.card-face {
  --notch-inner: 9px;
  position: relative;
  background: var(--chalk);
  color: var(--ink);
  padding: 13px 12px 12px;
  clip-path: polygon(
    0% var(--notch-inner), var(--notch-inner) 0%,
    calc(100% - var(--notch-inner)) 0%, 100% var(--notch-inner),
    100% calc(100% - var(--notch-inner)), calc(100% - var(--notch-inner)) 100%,
    var(--notch-inner) 100%, 0% calc(100% - var(--notch-inner))
  );
}

.player-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 9px; }

.rarity-badge {
  font-family: var(--font-mono);
  color: var(--chalk);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 3px 7px;
  transform: rotate(-5deg);
  display: inline-block;
}
.rarity-badge.rarity-crack {
  background: linear-gradient(135deg, #f5d06f, #b8860b 55%, #f5d06f);
  color: var(--ink);
}
.rarity-badge.rarity-leyenda {
  background: linear-gradient(120deg, #b06ff2, #4ad3d0, #f2c94a, #f26fa1, #b06ff2);
  background-size: 300% 300%;
  color: var(--ink);
}
@media (prefers-reduced-motion: no-preference) {
  .rarity-badge.rarity-leyenda { animation: holo-shift 5s ease infinite; }
}
@keyframes holo-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.player-pos {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.55;
  padding-top: 2px;
}

/* Retrato: ventana rectangular sobre cancha nocturna, no medallón chico */
.medallion {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  margin: 0 0 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--chalk);
  background: radial-gradient(80% 70% at 50% 22%, var(--pitch-line-2), var(--pitch-night));
}
.medallion .portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Leyenda: marco holográfico animado + resplandor vía box-shadow (el
   clip-path recorta a los hijos, pero no al box-shadow, así que el brillo
   puede "salir" del marco sin necesitar un pseudo-elemento aparte) */
.player-card.rarity-leyenda {
  position: relative;
  /* Fallback celeste/blanco genérico; las cartas de países con bandera
     definida (ver FLAG_COLORS en app.js) pisan estas dos variables inline. */
  --flag-1: #6cace4;
  --flag-2: #ffffff;
  background: conic-gradient(from 20deg, var(--flag-1), var(--flag-2) 35%, var(--flag-1) 60%, var(--flag-2) 85%, var(--flag-1));
  background-size: 300% 300%;
  box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.8), 0 0 24px -4px color-mix(in srgb, var(--flag-1) 60%, transparent), 0 0 40px -10px color-mix(in srgb, var(--flag-2) 45%, transparent);
}
.player-card.rarity-leyenda > .card-face {
  background: linear-gradient(150deg, #efe6ff, #d8f6f4 45%, #fff3d6 75%, #ffe3ef);
  background-size: 220% 220%;
}
@media (prefers-reduced-motion: no-preference) {
  .player-card.rarity-leyenda { animation: holo-shift 5s ease infinite, aura-pulse 4s ease-in-out infinite; }
  .player-card.rarity-leyenda > .card-face { animation: holo-shift 9s ease infinite; }
  .player-card.leyenda-card:hover {
    transform: perspective(500px) rotateX(4deg) rotateY(-4deg) scale(1.02);
  }
}
.player-card.leyenda-card { transition: transform 0.2s ease; }
@keyframes aura-pulse {
  0%, 100% { box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.8), 0 0 24px -4px color-mix(in srgb, var(--flag-1) 60%, transparent), 0 0 40px -10px color-mix(in srgb, var(--flag-2) 45%, transparent); }
  50% { box-shadow: 0 14px 26px -10px rgba(0, 0, 0, 0.8), 0 0 34px -2px color-mix(in srgb, var(--flag-1) 85%, transparent), 0 0 55px -6px color-mix(in srgb, var(--flag-2) 65%, transparent); }
}

.card-face h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 6px 0;
  font-size: 16px;
  text-align: center;
}

.pips { display: flex; gap: 3px; justify-content: center; margin-bottom: 9px; }
.pips .pip { width: 9px; height: 9px; border-radius: 50%; background: rgba(18, 36, 28, 0.15); }
.pips .pip.filled { background: var(--ink); }

.player-stats {
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.75;
  text-align: center;
  margin-bottom: 11px;
}

.player-actions { display: flex; flex-direction: column; gap: 5px; }
.player-actions .upgrade-row { display: flex; gap: 5px; }
.player-actions .upgrade-row button { flex: 1; }

button.small { padding: 7px 4px; font-size: 11px; line-height: 1.2; }
button.chalk {
  background: var(--ink);
  color: var(--chalk);
}
button.chalk:hover:not(:disabled) { opacity: 0.85; }
button.outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
button.express {
  background: linear-gradient(180deg, var(--floodlight), var(--floodlight-dim));
  color: var(--ink);
}

/* ---------- Invitá amigos ---------- */
.referral-box {
  background: var(--pitch-night);
  border: 1px solid var(--net-line);
  border-radius: 10px;
  padding: 14px;
}
.referral-link-row { display: flex; gap: 8px; margin-bottom: 8px; }
.referral-link-row input {
  margin-bottom: 0;
  font-family: var(--font-mono);
  font-size: 12px;
}
.referral-link-row button { width: auto; padding: 0 16px; white-space: nowrap; }
.referral-stats { font-size: 12px; color: var(--chalk); opacity: 0.7; font-family: var(--font-mono); }

/* ---------- Tienda (Mercado Pago) ---------- */
.shop-item {
  background: var(--pitch-night); border: 1px solid var(--net-line); border-radius: 10px;
  padding: 12px; margin-bottom: 10px; text-align: left;
}
.shop-item h3 { margin: 0 0 2px 0; font-size: 14px; font-family: var(--font-body); font-weight: 700; }
.shop-item p { margin: 0 0 8px 0; font-size: 12px; color: var(--chalk); opacity: 0.65; }
.shop-item .price {
  color: var(--floodlight); font-weight: 700; font-size: 13px; margin-bottom: 8px;
  font-family: var(--font-mono);
}
#modalOverlay, #packModalOverlay {
  position: fixed; inset: 0; background: rgba(6, 16, 12, 0.75);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  z-index: 20;
  overflow-y: auto;
}

/* ---------- Modal de apertura de sobre ---------- */
.pack-reveal-card { max-width: 460px; text-align: center; }
.pack-reveal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.pack-reveal-item {
  animation: card-pop 0.5s cubic-bezier(0.2, 1.3, 0.4, 1) both;
}
@keyframes card-pop {
  0% { transform: scale(0.6) rotate(-6deg); opacity: 0; }
  60% { transform: scale(1.05) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .pack-reveal-item { animation: none; }
}
#toast {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--pitch-line); border: 1px solid var(--floodlight); color: var(--chalk);
  padding: 10px 18px; border-radius: 8px; font-size: 13px; z-index: 30;
  max-width: calc(100vw - 40px); text-align: center;
}

#shopBtn { margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 8px; }
#logoutBtn { margin-top: 18px; }

@media (max-width: 480px) {
  .card { padding: 20px; }
  #roster, #market, .album-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
}
