:root {
  --wines-yellow: #f5c400;
  --wines-yellow-soft: #ffe066;
  --wines-black: #080808;
  --wines-dark: #141414;
  --wines-card: #1d1d1d;
  --wines-gray: #a8a8a8;
  --wines-white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--wines-black);
  color: var(--wines-white);
}

a {
  text-decoration: none;
}

.app-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 196, 0, .24), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(245, 196, 0, .12), transparent 30%),
    linear-gradient(135deg, #080808 0%, #171717 55%, #000 100%);
}

.glass-card {
  background: rgba(29, 29, 29, .86);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  backdrop-filter: blur(12px);
}

.yellow-card {
  background: linear-gradient(135deg, var(--wines-yellow), var(--wines-yellow-soft));
  color: #111;
  border-radius: 26px;
}

.btn-wines {
  background: var(--wines-yellow);
  color: #111;
  border: 0;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 24px;
}

.btn-wines:hover {
  background: var(--wines-yellow-soft);
  color: #111;
}

.btn-outline-wines {
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
}

.btn-outline-wines:hover {
  border-color: var(--wines-yellow);
  color: var(--wines-yellow);
}

.hero-title {
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -2px;
  font-weight: 950;
}

.text-wines {
  color: var(--wines-yellow);
}

.muted {
  color: var(--wines-gray);
}

.top-nav {
  padding: 18px 0;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 9px 15px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
}

.ball {
  width: 34px;
  height: 34px;
  background: var(--wines-yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.mobile-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  background: rgba(20,20,20,.95);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 10px;
  display: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.mobile-nav a {
  color: white;
  font-size: .78rem;
  text-align: center;
  flex: 1;
}

.mobile-nav .active {
  color: var(--wines-yellow);
  font-weight: 800;
}

.page-shell {
  padding-bottom: 90px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
}

.match-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 18px;
}

.team-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245,196,0,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.score-input {
  width: 72px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: #111;
  color: white;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
}

.ranking-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.rank-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(245,196,0,.14);
  color: var(--wines-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  border-radius: 16px;
  padding: 13px 15px;
}

.form-control:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--wines-yellow);
  color: white;
  box-shadow: 0 0 0 .25rem rgba(245,196,0,.12);
}

.form-control::placeholder {
  color: rgba(255,255,255,.45);
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .glass-card {
    border-radius: 22px;
  }
}
.btn-wines-saved {
  background: rgba(255, 199, 0, 0.14);
  color: #ffc700;
  border: 1px solid rgba(255, 199, 0, 0.45);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 1rem;
}

.btn-wines-saved:hover {
  background: rgba(255, 199, 0, 0.22);
  color: #ffc700;
  border-color: rgba(255, 199, 0, 0.75);
}
.btn-wines-closed {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 199, 0, 0.65);
  border: 1px solid rgba(255, 199, 0, 0.28);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.85rem 1rem;
  opacity: 1;
}

.btn-wines-closed:disabled {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 199, 0, 0.65);
  border-color: rgba(255, 199, 0, 0.28);
  opacity: 1;
}

.team-badge.flag-badge {
  width: 38px;
  height: 28px;
  background: transparent;
  border: none;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}
.team-badge.flag-badge {
  width: 42px;
  height: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}

/* Sprint 13 - Fixture countdown */
.pw-countdown-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px auto 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 199, 0, 0.16);
  color: #111;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.pw-countdown-card strong {
  font-weight: 900;
  color: #000;
}

/* Sprint 13 - Fixture countdown refinado */
.pw-countdown-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 8px auto 0;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.pw-countdown-card strong {
  font-weight: 900;
}

.pw-countdown-card.is-safe {
  background: rgba(25, 135, 84, 0.13);
  color: #0f7a3a;
}

.pw-countdown-card.is-warning {
  background: rgba(255, 199, 0, 0.18);
  color: #9a7200;
}

.pw-countdown-card.is-danger {
  background: rgba(220, 53, 69, 0.13);
  color: #b02a37;
}

/* Sprint 13 - countdown final */

.pw-ticket-action {
  flex-direction: column;
  align-items: center;
}

.pw-countdown-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.pw-countdown-card strong {
  color: inherit;
  font-weight: 800;
}

.pw-countdown-card.is-safe {
  background: rgba(25,135,84,.12);
  color: #198754;
}

.pw-countdown-card.is-warning {
  background: rgba(255,193,7,.18);
  color: #b58100;
}

.pw-countdown-card.is-danger {
  background: rgba(220,53,69,.12);
  color: #dc3545;
}


/* Sprint 13 - action stack countdown */
.pw-action-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.pw-action-stack .pw-countdown-card {
  margin: 0;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 1;
}

.pw-action-stack .pw-countdown-card strong {
  color: inherit;
}


/* Sprint 13 - countdown en Mis Pronósticos */
.pw-prono-row-side .pw-countdown-card {
  margin: 7px auto 0;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 1;
}

.pw-prono-row-side .pw-countdown-card strong {
  color: inherit;
}


/* Sprint 13 - Mis Pronósticos KPI refinado */
.pw-prono-kpis {
  gap: 18px;
  margin-top: 22px;
  margin-bottom: 22px;
}

.pw-prono-kpi {
  min-height: 112px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon label"
    "icon value";
  column-gap: 14px;
  align-items: center;
}

.pw-prono-kpi span {
  grid-area: icon;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 199, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.pw-prono-kpi p {
  grid-area: label;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #666;
}

.pw-prono-kpi strong {
  grid-area: value;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  color: #000;
}

/* Sprint 13 - Mis Pronósticos header + KPI final */
.pw-pronosticos-v2 .pw-page-head {
  margin-bottom: 28px;
}

.pw-pronosticos-v2 .pw-eyebrow {
  display: none;
}

.pw-pronosticos-v2 .pw-page-head h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.pw-pronosticos-v2 .pw-page-head p:not(.pw-eyebrow) {
  margin-top: 8px;
  color: #5f6368;
  font-size: 16px;
}

.pw-prono-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 18px;
  margin: 0 0 26px;
}

.pw-prono-kpi {
  min-height: 126px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}

.pw-prono-kpi span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 199, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.pw-prono-kpi strong {
  order: 2;
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
  color: #000;
}

.pw-prono-kpi p {
  order: 3;
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #111;
}


/* Sprint 15 - Landing V2 Premium Cancha */
.pw-landing-v2 {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,199,0,.16), transparent 34%),
    linear-gradient(180deg, #060606 0%, #101010 48%, #050505 100%);
  color: #fff;
  overflow: hidden;
}

.pw-landing-nav {
  height: 78px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5,5,5,.88);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.pw-landing-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 25px;
}

.pw-landing-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #ffc700;
  color: #111;
  border-radius: 50%;
}

.pw-landing-brand b { color: #ffc700; }

.pw-landing-brand em {
  margin-left: 12px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.25);
  font-size: 14px;
  font-style: normal;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

.pw-landing-actions,
.pw-landing-hero-actions {
  display: flex;
  gap: 14px;
}

.pw-landing-btn {
  height: 46px;
  padding: 0 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2px;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
}

.pw-landing-btn.is-primary {
  background: #ffc700;
  color: #111;
  border-color: #ffc700;
}

.pw-landing-btn.is-ghost {
  background: rgba(0,0,0,.28);
}

.pw-landing-stage {
  height: calc(100vh - 78px);
  display: grid;
  grid-template-rows: 210px 1fr 210px;
  position: relative;
}

.pw-landing-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.25)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 18%);
  pointer-events: none;
}

.pw-landing-hero {
  position: relative;
  z-index: 2;
  padding: 30px 46px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pw-landing-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-weight: 950;
}

.pw-landing-hero h1 span {
  color: #ffc700;
}

.pw-landing-hero p {
  max-width: 520px;
  margin: 22px 0 24px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.45;
}

.pw-landing-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10,10,10,.78);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  min-width: 480px;
}

.pw-landing-kpis div {
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}

.pw-landing-kpis div:last-child { border-right: 0; }

.pw-landing-kpis strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.pw-landing-kpis span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.pw-landing-field {
  position: relative;
  z-index: 1;
  margin: 0 36px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.05), rgba(0,0,0,.65)),
    repeating-linear-gradient(90deg, rgba(26,104,26,.9) 0 120px, rgba(18,88,20,.9) 120px 240px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 120px rgba(0,0,0,.8);
}

.pw-landing-field-lines {
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 6px;
}

.pw-landing-field-lines::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 2px solid rgba(255,255,255,.22);
}

.pw-landing-field-lines::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255,255,255,.22);
  border-radius: 50%;
  left: calc(50% - 65px);
  top: calc(50% - 65px);
}

.pw-goal {
  position: absolute;
  top: 42%;
  width: 54px;
  height: 92px;
  border: 3px solid rgba(255,255,255,.55);
  box-shadow: 0 0 34px rgba(255,199,0,.22);
}

.pw-goal.is-left {
  left: 10px;
  border-left: 0;
}

.pw-goal.is-right {
  right: 10px;
  border-right: 0;
}

.pw-ball-path {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 22%;
  width: 92%;
  height: 42%;
  pointer-events: none;
}

.pw-ball-path path {
  fill: none;
  stroke: #ffc700;
  stroke-width: 7;
  stroke-dasharray: 18 14;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(255,199,0,.7));
}

.pw-play-step {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 132px;
  min-height: 104px;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,199,0,.45);
  background: rgba(8,8,8,.82);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 4;
  transition: .18s ease;
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
}

.pw-play-step small {
  position: absolute;
  left: -16px;
  top: -18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  border: 2px solid #ffc700;
  color: #ffc700;
  font-size: 17px;
}

.pw-play-step span {
  display: block;
  line-height: 1.18;
}

.pw-play-step:hover,
.pw-play-step.is-active {
  background: #ffc700;
  color: #111;
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 0 0 4px rgba(255,199,0,.12), 0 20px 40px rgba(0,0,0,.42);
}

.pw-play-step:hover small,
.pw-play-step.is-active small {
  background: #ffc700;
  color: #111;
  border-color: #111;
}

.pw-player {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff, #d90000 45%, #0038a8 100%);
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 8px 20px rgba(0,0,0,.45), 0 0 22px rgba(255,199,0,.38);
}

.pw-player.p1 { left: 10%; bottom: 17%; }
.pw-player.p2 { left: 30%; bottom: 20%; }
.pw-player.p3 { left: 48%; bottom: 18%; }
.pw-player.p4 { left: 66%; bottom: 20%; }
.pw-player.p5 { left: 84%; bottom: 22%; }

.pw-goool {
  position: absolute;
  right: 6%;
  bottom: 18%;
  color: #ffc700;
  font-size: 42px;
  font-weight: 950;
  font-style: italic;
  transform: rotate(-8deg);
  text-shadow: 0 0 18px rgba(255,199,0,.7);
}

.pw-landing-panel {
  position: relative;
  z-index: 5;
  margin: 16px 44px 22px;
  border: 1px solid rgba(255,199,0,.42);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(10,10,10,.78)),
    radial-gradient(circle at 100% 50%, rgba(255,199,0,.12), transparent 35%);
  box-shadow: 0 20px 50px rgba(0,0,0,.38);
  overflow: hidden;
}

.pw-panel-content {
  display: none;
  height: 100%;
  padding: 30px 34px;
}

.pw-panel-content.is-active {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: center;
}

.pw-panel-title {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
}

.pw-panel-title span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #ffc700;
  color: #ffc700;
  font-weight: 950;
  font-size: 20px;
}

.pw-panel-title h2 {
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 950;
}

.pw-panel-content > p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.pw-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pw-panel-grid div {
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.pw-panel-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.pw-panel-grid small {
  display: block;
  color: rgba(255,255,255,.68);
  line-height: 1.45;
  font-size: 14px;
}

@media (max-width: 980px) {
  .pw-landing-v2 { overflow: auto; }
  .pw-landing-stage {
    height: auto;
    min-height: calc(100vh - 78px);
    grid-template-rows: auto 420px auto;
  }

  .pw-landing-hero {
    flex-direction: column;
    gap: 20px;
  }

  .pw-landing-kpis {
    min-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .pw-panel-content.is-active {
    grid-template-columns: 1fr;
  }

  .pw-panel-grid {
    grid-template-columns: 1fr;
  }
}


/* Sprint 15 - Landing V2 ajuste foco cancha */
.pw-landing-stage {
  grid-template-rows: 150px 1fr 220px !important;
}

.pw-landing-hero {
  padding: 18px 32px 0 !important;
  align-items: center !important;
}

.pw-landing-hero h1 {
  font-size: clamp(30px, 3.1vw, 50px) !important;
  line-height: .92 !important;
  letter-spacing: -1px !important;
}

.pw-landing-hero p {
  max-width: 520px !important;
  margin: 12px 0 0 !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.pw-landing-hero-actions {
  display: none !important;
}

.pw-landing-kpis {
  min-width: 430px !important;
}

.pw-landing-kpis div {
  padding: 16px 20px !important;
}

.pw-landing-kpis strong {
  font-size: 28px !important;
}

.pw-landing-kpis span {
  font-size: 11px !important;
}

.pw-landing-field {
  margin: 0 16px !important;
}


/* Sprint 15 - Landing V2 foco definitivo: 15 / 55 / 30 */
.pw-landing-stage {
  height: calc(100vh - 78px) !important;
  grid-template-rows: 78px 1fr 30vh !important;
}

.pw-landing-hero {
  padding: 8px 28px 0 !important;
  align-items: center !important;
  justify-content: center !important;
}

.pw-landing-hero > div:first-child {
  width: 100% !important;
  text-align: center !important;
}

.pw-landing-hero h1 {
  font-size: clamp(30px, 3.2vw, 48px) !important;
  line-height: 1 !important;
  letter-spacing: -1px !important;
  white-space: nowrap !important;
}

.pw-landing-hero h1 br {
  display: none !important;
}

.pw-landing-hero p,
.pw-landing-hero-actions,
.pw-landing-kpis {
  display: none !important;
}

.pw-landing-field {
  height: 100% !important;
  margin: 0 10px !important;
  border-radius: 18px !important;
}

.pw-play-step {
  min-width: 112px !important;
  min-height: 78px !important;
  padding: 12px 12px !important;
  font-size: 13px !important;
  border-radius: 14px !important;
}

.pw-play-step small {
  width: 28px !important;
  height: 28px !important;
  font-size: 14px !important;
  left: -12px !important;
  top: -14px !important;
}

.pw-player {
  width: 32px !important;
  height: 32px !important;
  font-size: 10px !important;
}

.pw-goool {
  font-size: 34px !important;
  right: 5% !important;
}

.pw-landing-panel {
  margin: 14px 24px 14px !important;
  min-height: 0 !important;
}

.pw-panel-content {
  padding: 22px 26px !important;
}

.pw-panel-content.is-active {
  grid-template-columns: 260px 1fr !important;
  gap: 20px !important;
}

.pw-panel-title h2 {
  font-size: 24px !important;
}

.pw-panel-grid {
  gap: 10px !important;
}

.pw-panel-grid div {
  padding: 12px 14px !important;
}

.pw-panel-grid strong {
  font-size: 13px !important;
}

.pw-panel-grid small {
  font-size: 13px !important;
}


/* Sprint 15 - Landing V2 estadio y jugadores */
.pw-landing-field {
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.08), rgba(0,0,0,.58)),
    url('/img/landing/stadium-night.svg') center center / cover no-repeat !important;
}

.pw-player {
  width: 72px !important;
  height: 96px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url('/img/landing/player-paraguay.svg') center bottom / contain no-repeat !important;
  box-shadow: none !important;
  font-size: 0 !important;
}

.pw-player.p1 { left: 9% !important; bottom: 13% !important; transform: scaleX(-1); }
.pw-player.p2 { left: 29% !important; bottom: 14% !important; }
.pw-player.p3 { left: 48% !important; bottom: 13% !important; }
.pw-player.p4 { left: 67% !important; bottom: 14% !important; }
.pw-player.p5 { left: 84% !important; bottom: 15% !important; }

.pw-landing-field-lines {
  opacity: .35 !important;
}

.pw-goal {
  background: rgba(255,255,255,.04) !important;
}


/* Sprint 15 - Quitar jugadores SVG infantiles */
.pw-player {
  display: none !important;
}

.pw-landing-field {
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.12), rgba(0,0,0,.62)),
    repeating-linear-gradient(90deg, #072c0d 0 130px, #0d4614 130px 260px) !important;
}


/* Sprint 15 - Landing V2 limpieza previa assets reales */
.pw-player {
  display: none !important;
}

.pw-landing-hero h1 {
  word-spacing: 10px !important;
}

.pw-landing-field {
  background:
    linear-gradient(90deg, rgba(0,0,0,.60), rgba(0,0,0,.08), rgba(0,0,0,.60)),
    repeating-linear-gradient(90deg, #06270d 0 130px, #0c4214 130px 260px) !important;
}


/* Sprint 15 - Landing V2 imagen real camino al gol */
.pw-landing-field-real {
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.05) 45%, rgba(0,0,0,.22)),
    url('/img/landing/camino-al-gol.png') center center / cover no-repeat !important;
  border: 1px solid rgba(255,199,0,.22) !important;
  box-shadow:
    inset 0 0 90px rgba(0,0,0,.45),
    0 20px 50px rgba(0,0,0,.28) !important;
}

.pw-landing-field-real .pw-play-step {
  background: rgba(7,7,7,.72) !important;
  backdrop-filter: blur(6px) !important;
}

.pw-landing-field-real .pw-play-step:hover,
.pw-landing-field-real .pw-play-step.is-active {
  background: #ffc700 !important;
  color: #111 !important;
}


/* Sprint 15 - Ajuste imagen camino al gol completa */
.pw-landing-stage {
  grid-template-rows: 72px 1fr 30vh !important;
}

.pw-landing-field-real {
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.04) 45%, rgba(0,0,0,.20)),
    url('/img/landing/camino-al-gol.png') center center / contain no-repeat !important;
  background-color: #050505 !important;
}


/* Sprint 15 - Ajuste encuadre imagen real */
.pw-landing-field-real {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.05) 45%, rgba(0,0,0,.20)),
    url('/img/landing/camino-al-gol.png') center 78% / cover no-repeat !important;
}

.pw-play-step {
  transform: translate(-50%, -50%) scale(.88) !important;
}

.pw-play-step:hover,
.pw-play-step.is-active {
  transform: translate(-50%, -50%) scale(.94) !important;
}


/* Sprint 15 - Ajuste hotspots sobre cancha real */
.pw-landing-field-real .pw-play-step {
  min-width: 108px !important;
  min-height: 62px !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
  line-height: 1.08 !important;
  border-radius: 12px !important;
}

.pw-landing-field-real .pw-play-step small {
  width: 26px !important;
  height: 26px !important;
  font-size: 13px !important;
  left: -10px !important;
  top: -12px !important;
}

.pw-landing-field-real .pw-play-step:hover,
.pw-landing-field-real .pw-play-step.is-active {
  transform: translate(-50%, -50%) scale(.92) !important;
}

.pw-landing-field-real .pw-play-step:not(.is-active) {
  transform: translate(-50%, -50%) scale(.84) !important;
}

/* Reposicionar cuadros sobre la imagen real */
.pw-landing-field-real .pw-play-step[data-step="acceso"] {
  left: 12% !important;
  top: 62% !important;
}

.pw-landing-field-real .pw-play-step[data-step="reglas"] {
  left: 30% !important;
  top: 49% !important;
}

.pw-landing-field-real .pw-play-step[data-step="pronosticos"] {
  left: 48% !important;
  top: 50% !important;
}

.pw-landing-field-real .pw-play-step[data-step="puntos"] {
  left: 66% !important;
  top: 50% !important;
}

.pw-landing-field-real .pw-play-step[data-step="gana"] {
  left: 82% !important;
  top: 48% !important;
}


/* Sprint 15 - Ajuste fino hotspots sobre jugadores */
.pw-landing-field-real .pw-play-step[data-step="acceso"] {
  left: 13.5% !important;
  top: 62% !important;
}

.pw-landing-field-real .pw-play-step[data-step="reglas"] {
  left: 34% !important;
  top: 48% !important;
}

.pw-landing-field-real .pw-play-step[data-step="pronosticos"] {
  left: 50.5% !important;
  top: 48% !important;
}

.pw-landing-field-real .pw-play-step[data-step="puntos"] {
  left: 67.5% !important;
  top: 48% !important;
}

.pw-landing-field-real .pw-play-step[data-step="gana"] {
  left: 82% !important;
  top: 46% !important;
}


/* Sprint 15 - Ajuste fino posiciones */
.pw-landing-field-real .pw-play-step[data-step="acceso"] {
  left: 14% !important;
  top: 58% !important;
}

.pw-landing-field-real .pw-play-step[data-step="pronosticos"] {
  left: 50.5% !important;
  top: 54% !important;
}

.pw-landing-field-real .pw-play-step[data-step="puntos"] {
  left: 67.5% !important;
  top: 54% !important;
}


/* Ajuste final cuadro arquero */
.pw-landing-field-real .pw-play-step[data-step="acceso"]{
    top: 43% !important;
}

