/* =========================================================
   WC26 CSS Optimizado
   - Tokens centralizados
   - Light mode por defecto
   - Dark mode automático y manual
   - Sin colores hex directos
   ========================================================= */

/* =========================
   Design tokens
========================= */

:root {
  color-scheme: light;

  --color-true: #fafefb;
  --border-true: solid 1px rgb(228 243 238);
  --wc26-brand-rgb: 33 47 77;
  --wc26-shadow-rgb: 15 23 42;

  --wc26-brand: rgb(var(--wc26-brand-rgb));
  --wc26-brand_2: #ffae0d;
  --wc26-brand-hover: rgb(26 38 64);
  --wc26-on-brand: rgb(255 255 255);
  --wc26-on-brand_2: rgb(4, 2, 36);

  --wc26-bg: rgb(248 250 252);
  --wc26-surface: rgb(255 255 255);
  --wc26-surface-2: rgb(248 250 252);
  --wc26-surface-soft: var(--wc26-surface-2);
  --wc26-surface-muted: rgb(243 244 246);
  --wc26-surface-translucent: rgb(255 255 255 / .72);
  --wc26-surface-translucent-strong: rgb(255 255 255 / .84);

  --wc26-text: rgb(15 23 42);
  --wc26-text-soft: rgb(51 65 85);
  --wc26-text-muted: rgb(100 116 139);
  --wc26-muted: var(--wc26-text-muted);

  --wc26-border: rgb(226 232 240);
  --wc26-border-soft: rgb(15 23 42 / .08);
  --wc26-border-subtle: rgb(15 23 42 / .10);
  --wc26-border-strong: rgb(15 23 42 / .18);

  --wc26-chip-bg: rgb(226 232 240);
  --wc26-hover-bg: rgb(15 23 42 / .04);
  --wc26-overlay: rgb(2 6 23 / .72);
  --wc26-podium-soft: rgb(255 247 237 / .95);

  --wc26-danger: rgb(180 35 24);
  --wc26-danger-bg: rgb(255 241 240);
  --wc26-danger-border: rgb(180 35 24 / .22);

  --wc26-success-text: rgb(6 95 70);
  --wc26-success-bg: rgb(236 253 245);
  --wc26-success-border: rgb(167 243 208);

  --wc26-primary: var(--wc26-brand);
  --wc26-primary-soft: rgb(var(--wc26-brand-rgb) / .16);
  --wc26-primary-soft-bg: #eaf2ff;

  --wc26-focus-ring: rgb(var(--wc26-brand-rgb) / .18);
  --wc26-shadow-sm: 0 8px 18px rgb(var(--wc26-shadow-rgb) / .06);
  --wc26-shadow-md: 0 10px 30px rgb(var(--wc26-shadow-rgb) / .10);
  --wc26-shadow-xl: -12px 0 30px rgb(var(--wc26-shadow-rgb) / .12);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

     --color-true: #011e1ca1;
  --border-true: solid 1px rgb(18, 46, 35);

    --wc26-brand-rgb: 142 170 255;
    --wc26-shadow-rgb: 0 0 0;

    --wc26-brand: rgb(var(--wc26-brand-rgb));
    --wc26-brand-hover: rgb(174 195 255);
    --wc26-on-brand: rgb(7 12 24);

    --wc26-bg: rgb(7 12 24);
    --wc26-surface: rgb(15 23 42);
    --wc26-surface-2: rgb(20 31 52);
    --wc26-surface-soft: var(--wc26-surface-2);
    --wc26-surface-muted: rgb(30 41 59);
    --wc26-surface-translucent: rgb(15 23 42 / .76);
    --wc26-surface-translucent-strong: rgb(20 31 52 / .86);

    --wc26-text: rgb(241 245 249);
    --wc26-text-soft: rgb(203 213 225);
    --wc26-text-muted: rgb(148 163 184);
    --wc26-muted: var(--wc26-text-muted);

    --wc26-border: rgb(51 65 85);
    --wc26-border-soft: rgb(255 255 255 / .10);
    --wc26-border-subtle: rgb(255 255 255 / .12);
    --wc26-border-strong: rgb(255 255 255 / .20);

    --wc26-chip-bg: rgb(30 41 59);
    --wc26-hover-bg: rgb(255 255 255 / .06);
    --wc26-overlay: rgb(2 6 23 / .84);
    --wc26-podium-soft: rgb(67 42 18 / .58);

    --wc26-danger: rgb(252 165 165);
    --wc26-danger-bg: rgb(69 10 10 / .55);
    --wc26-danger-border: rgb(252 165 165 / .28);

    --wc26-success-text: rgb(134 239 172);
    --wc26-success-bg: rgb(5 46 22 / .52);
    --wc26-success-border: rgb(134 239 172 / .28);

    --wc26-primary: var(--wc26-brand);
    --wc26-primary-soft: rgb(var(--wc26-brand-rgb) / .24);
    --wc26-primary-soft-bg: ;

    --wc26-focus-ring: rgb(var(--wc26-brand-rgb) / .24);
    --wc26-shadow-sm: 0 8px 18px rgb(var(--wc26-shadow-rgb) / .28);
    --wc26-shadow-md: 0 12px 34px rgb(var(--wc26-shadow-rgb) / .36);
    --wc26-shadow-xl: -12px 0 34px rgb(var(--wc26-shadow-rgb) / .46);
  }
}

.wc26-theme-dark,
[data-theme="dark"],
body.dark-mode {
  color-scheme: dark;

  --wc26-brand-rgb: 142 170 255;
  --wc26-shadow-rgb: 0 0 0;

  --wc26-brand: rgb(var(--wc26-brand-rgb));
  --wc26-brand-hover: rgb(174 195 255);
  --wc26-on-brand: rgb(7 12 24);

  --wc26-bg: rgb(7 12 24);
  --wc26-surface: rgb(15 23 42);
  --wc26-surface-2: rgb(20 31 52);
  --wc26-surface-soft: var(--wc26-surface-2);
  --wc26-surface-muted: rgb(30 41 59);
  --wc26-surface-translucent: rgb(15 23 42 / .76);
  --wc26-surface-translucent-strong: rgb(20 31 52 / .86);

  --wc26-text: rgb(241 245 249);
  --wc26-text-soft: rgb(203 213 225);
  --wc26-text-muted: rgb(148 163 184);
  --wc26-muted: var(--wc26-text-muted);

  --wc26-border: rgb(51 65 85);
  --wc26-border-soft: rgb(255 255 255 / .10);
  --wc26-border-subtle: rgb(255 255 255 / .12);
  --wc26-border-strong: rgb(255 255 255 / .20);

  --wc26-chip-bg: rgb(30 41 59);
  --wc26-hover-bg: rgb(255 255 255 / .06);
  --wc26-overlay: rgb(2 6 23 / .84);
  --wc26-podium-soft: rgb(67 42 18 / .58);

  --wc26-danger: rgb(252 165 165);
  --wc26-danger-bg: rgb(69 10 10 / .55);
  --wc26-danger-border: rgb(252 165 165 / .28);

  --wc26-success-text: rgb(134 239 172);
  --wc26-success-bg: rgb(5 46 22 / .52);
  --wc26-success-border: rgb(134 239 172 / .28);

  --wc26-primary: var(--wc26-brand);
  --wc26-primary-soft: rgb(var(--wc26-brand-rgb) / .24);
  --wc26-primary-soft-bg: rgb(var(--wc26-brand-rgb) / .14);

  --wc26-focus-ring: rgb(var(--wc26-brand-rgb) / .24);
  --wc26-shadow-sm: 0 8px 18px rgb(var(--wc26-shadow-rgb) / .28);
  --wc26-shadow-md: 0 12px 34px rgb(var(--wc26-shadow-rgb) / .36);
  --wc26-shadow-xl: -12px 0 34px rgb(var(--wc26-shadow-rgb) / .46);
}

/* =========================
   Base
========================= */

* {
  box-sizing: border-box;
}

.wc26-card,
.wc26-groups-card,
.wc26-filter-card,
.wc26-ranking-card,
.wc26-standings-card,
.wc26-card a
 {
  color: var(--wc26-text);
}

.wc26-card {
  background: var(--wc26-surface);
  border: 1px solid var(--wc26-border);
  border-radius: 16px;
  padding: 8px;
}

.wc26-muted {
  color: var(--wc26-text-muted);
  margin: 10px 0;
}

.wc26-kicker {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--wc26-text-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wc26-container-post,
.wc26-groups-wrap {
  display: flex;
  flex-direction: column;
}

.wc26-container-post {
  flex: 1;
  gap: 20px;
  padding-block: 20px;
}

.wc26-groups-wrap {
  gap: 8px;
}

.sticky-h {
  position: sticky;
  top: 80px;
  z-index: 100;
}

.wc26-stack > * + * {
  margin-top: 18px;
}

/* =========================
   Botones, links y estados
========================= */

.wc26-btn,
button.wc26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 12px;
  background: var(--wc26-brand);
  color: var(--wc26-on-brand) !important;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1;
  font-size: inherit;
}

.wc26-btn-terciary{
    position: relative;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,1)
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        rgba(0,0,0,1)
    );

    transition: none;
}

.wc26-btn-terciary:hover,
.wc26-btn-terciary:focus,
.wc26-btn-terciary:active{
    opacity: 1;
    -webkit-mask-image: unset;
    mask-image: unset;
}

.wc26-btn_2,
button.wc26-btn_2 {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 12px;
  text-decoration: none !important;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
  background-color: var(--wc26-brand_2);
  color: var(--wc26-on-brand_2) !important;

}

.wc26-btn:hover,
button.wc26-btn:hover,
.wc26-pred-form .button.button-primary:hover {
  background: var(--wc26-brand-hover);
  border-color: var(--wc26-brand-hover);
}

.wc26-link-btn {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--wc26-danger);
  text-decoration: underline;
  cursor: pointer;
}

.wc26-filter-clear {
  color: var(--wc26-text-muted);
  text-decoration: underline;
}

.wc26-btn:focus-visible,
button.wc26-btn:focus-visible,
.wc26-pred-form .button.button-primary:focus-visible,
.wc26-link-btn:focus-visible,
.wc26-filter-clear:focus-visible,
.wc26-avatar-edit-trigger:focus-visible,
.wc26-cal__nav:focus-visible,
.wc26-cal__tag:focus-visible,
.wc26-cal__drawer__close:focus-visible {
  outline: 3px solid var(--wc26-focus-ring);
  outline-offset: 3px;
}

.wc26-save.is-hidden,
.wc26-save[hidden] {
  display: none !important;
}

/* =========================
   Inputs y formularios
========================= */

.wc26-filter-input,
.wc26-filter-card input,
.wc26-filter-card textarea,
.wc26-filter-card select,
.wc26-group-form input,
.wc26-group-form textarea,
.wc26-group-form select,
.wc26-inline-form select,
.wc26-alert-row input[type="number"],
.wc26-profile-form input,
.wc26-profile-form textarea,
.wc26-profile-form select,
.wc26-team-filter-form select,
.wc26-copy-input,
.wc26-login-form input[type="text"],
.wc26-login-form input[type="password"],
.wc26-auth .wc26-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--wc26-border-strong);
  border-radius: 14px;
  background: var(--wc26-surface);
  padding: 9px 12px;
  color: var(--wc26-text);
}

.wc26-filter-input:focus,
.wc26-filter-card input:focus,
.wc26-filter-card textarea:focus,
.wc26-filter-card select:focus,
.wc26-group-form input:focus,
.wc26-group-form textarea:focus,
.wc26-group-form select:focus,
.wc26-inline-form select:focus,
.wc26-alert-row input[type="number"]:focus,
.wc26-profile-form input:focus,
.wc26-profile-form textarea:focus,
.wc26-profile-form select:focus,
.wc26-team-filter-form select:focus,
.wc26-copy-input:focus,
.wc26-login-form input:focus,
.wc26-auth .wc26-form input:focus {
  outline: none;
  border-color: var(--wc26-brand);
  box-shadow: 0 0 0 3px var(--wc26-primary-soft);
}

.wc26-inline-form,
.wc26-team-filter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
}

.wc26-inline-form label,
.wc26-alert-row label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.wc26-team-filter-form label {
  display: grid;
  gap: 6px;
  min-width: min(100%, 260px);
}

/* =========================
   Alertas
========================= */

.wc26-alert {
  padding: 10px 12px;
  border-radius: 12px;
  margin: 10px 0;
  font-size: .95rem;
  font-weight: 600;
}

.wc26-alert-success {
  background: var(--wc26-success-bg);
  color: var(--wc26-success-text);
  border: 1px solid var(--wc26-success-border);
}

.wc26-error {
  background: var(--wc26-danger-bg);
  color: var(--wc26-danger);
  border: 1px solid var(--wc26-danger-border);
}

/* =========================
   Tablas
========================= */

.wc26-table,
.wc26-ranking-table,
.wc26-standings-table {
  width: 100%;
  border-collapse: collapse;
}

.wc26-table th,
.wc26-table td,
.wc26-ranking-table th,
.wc26-ranking-table td {
  padding: 8px;
  border-bottom: 1px solid var(--wc26-border-soft);
  text-align: left;
}

.wc26-ranking-table th,
.wc26-ranking-table td {
  padding: 12px;
}

.wc26-standings-team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

/* =========================
   Listados y match cards
========================= */


.wc26-fixture-load-more-wrap, .wc26-fixture-load-previous-wrap, .wc26-load-previous-wrap, .wc26-load-more-wrap{
  margin-top: 10px;
  align-content: center;
  display: flex;
  justify-content: center;
}

.wc26-match-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.wc26-match-view-link {
  font-size: inherit;
  opacity: .75;
  text-decoration: none;
}


.wc26-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 8px;
  align-items: start;
}


.wc26-list{
  margin-top: 12px;
}

.wc26-list .wc26-card {
  width: 100%;
  background-color: var(--wc26-surface-soft);
}

.wc26-top {
  list-style: decimal;
  padding-left: 20px;
}

.wc26-flag {
  width: 50px;
  object-fit: cover;
  vertical-align: middle;
  margin-inline: 6px;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
}

.wc26-match.is-saved .wc26-match-body{
  background-color: var(--color-true);
  border: var(--border-true);
} 
.wc26-match .wc26-match-head,
.wc26-match .teams,
.wc26-match .teams .team,
.wc26-match-footer {
  display: flex;
  align-items: center;
}

.wc26-match .wc26-match-head {
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.wc26-match .teams {
  gap: 8px;
  font-size: 1.05rem;
}

.wc26-match .teams .team {
  gap: 6px;
}

.wc26-match .vs {
  opacity: .7;
}

.wc26-match .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .9rem;
  opacity: .8;
}

.wc26-match .badge {
  background: var(--wc26-surface-muted);
  border: 1px solid var(--wc26-border);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: .8rem;
}

.wc26-match-footer {
  margin-top: 8px;
  gap: 10px;
  font-weight: 600;
}

.wc26-match-top {
  margin-bottom: 6px;
}

.wc26-breadcrumb {
  margin-bottom: 2px;
  color: var(--wc26-text);
  font-size: .95rem;
}

.wc26-submeta,
.wc26-status {
  color: var(--wc26-text-muted);
  font-size: .9rem;
}

.wc26-status {
  margin-top: 4px;
}

.wc26-scoreblock {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.wc26-scoreblock .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wc26-scoreblock .team.right {
  justify-content: flex-end;
}

.wc26-scoreblock .name {
  color: var(--wc26-text);
  font-weight: 600;
}

.wc26-scoreblock .scoreline {
  color: var(--wc26-text);
  font-size: 1.25rem;
  text-align: center;
  white-space: nowrap;
}

/* =========================
   Predicción y countdown
========================= */

.wc26-match-body {
  display: grid;
  gap: 4px;
  padding: 8px;
  background: var(--wc26-surface);
  border-radius: 12px;
}

.wc26-match-body a.iniciar-sesion_inline {
  text-decoration: underline;
}

.wc26-countdown {
  margin: 6px 0 10px;
  padding: 8px 10px;
  border: 1px dashed var(--wc26-border);
  border-radius: 10px;
  /* background: var(--wc26-surface); */
  color: var(--wc26-text-muted);
  font-size: .95rem;
}

.wc26-countdown .t {
  color: var(--wc26-text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.wc26-pred-form {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: end;
  gap: 12px;
  margin-top: 8px;
}

.wc26-pred-form label {
  display: grid;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.wc26-pred-form label > span {
  color: var(--wc26-text-muted);
  font-size: .9rem;
}

.wc26-pred-form input[type="number"] {
  width: 100%;
  max-width: 120px;
  padding: 10px 12px;
  appearance: textfield;
  -moz-appearance: textfield;
  border: 1px solid var(--wc26-border);
  border-radius: 12px;
  background: unset;
  color: var(--wc26-text);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.wc26-match.is-saved input[type="number"]{
  border: var(--border-true);
}

.wc26-pred-form input::-webkit-outer-spin-button,
.wc26-pred-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wc26-pred-form input[type="number"]:focus {
  outline: none;
  border-color: var(--wc26-brand);
  box-shadow: 0 0 0 3px var(--wc26-primary-soft);
}

.wc26-vs {
  align-self: center;
  color: var(--wc26-text);
  font-size: 1.25rem;
  font-weight: 800;
}

.wc26-pred-form .button.button-primary {
  height: 44px;
  padding-inline: 16px;
  border: 1px solid var(--wc26-brand);
  border-radius: 12px;
  background: var(--wc26-brand);
  box-shadow: 0 2px 8px rgb(var(--wc26-brand-rgb) / .22);
  color: var(--wc26-on-brand);
  white-space: nowrap;
}

.wc26-pred-form .button.button-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  box-shadow: none;
}

.wc26-locked-note {
  display: block;
  margin-top: 6px;
  color: var(--wc26-danger);
}

/* =========================
   Filtros
========================= */

.wc26-filters .row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.wc26-filters input {
  min-width: 160px;
}

.wc26-filter-card{
  /* position: sticky; */
  top: 80px;
  z-index: 10;
}

.wc26-filter-card,
.wc26-share-filter {
}

.wc26-filter-head,
.wc26-ranking-head,
.wc26-standings-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.wc26-filter-head,
.wc26-ranking-head {
  align-items: center;
  margin-bottom: 16px;
}

.wc26-standings-head {
  align-items: end;
}

.wc26-filter-head h3,
.wc26-ranking-head h3,
.wc26-standings-head h3 {
  margin: 0;
  line-height: 1.05;
}

.wc26-filter-head p {
  margin: 4px 0 0;
  color: var(--wc26-text-muted);
}

.wc26-filter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 12px;
}

.wc26-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--wc26-text-soft);
  font-size: 13px;
}

.wc26-filter-field span {
  padding-left: 8px;
  color: var(--wc26-text-muted);
  font-size: 12px;
}

.wc26-filter-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

/* =========================
   Grupos
========================= */

.wc26-groups-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.wc26-groups-card {
  padding: 22px;
  border: 1px solid var(--wc26-border-subtle);
  border-radius: 18px;
  background: var(--wc26-surface);
  box-shadow: var(--wc26-shadow-md);
}

.wc26-groups-card h2,
.wc26-groups-card h3,
.wc26-groups-card h4 {
  margin-top: 0;
}

.wc26-group-form,
.wc26-group-list,
.wc26-group-actions,
.wc26-alerts-box {
  display: flex;
  flex-direction: column;
}

.wc26-group-form {
  gap: 14px;
}

.wc26-group-list {
  gap: 14px;
}

.wc26-group-actions {
  align-items: flex-start;
  gap: 8px;
}

.wc26-group-actions a{
  line-height: 1;
}

.wc26-group-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.wc26-group-item {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--wc26-border-subtle);
  border-radius: 16px;
  background: var(--wc26-surface-soft);
}

.wc26-group-item p {
  margin: .35rem 0 .7rem;
}

.wc26-group-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 3px 9px;
  background: var(--wc26-chip-bg);
  color: var(--wc26-text-soft);
  font-size: 12px;
  font-weight: 700;
}

/* =========================
   Favoritos y alertas
========================= */

.wc26-fav-list,
.wc26-match-list {
  display: flex;
  flex-direction: column;
}

.wc26-fav-list {
  gap: 10px;
  margin-top: 16px;
}

.wc26-match-list {
  gap: 8px;
}

.wc26-match-list a{
  text-decoration: unset;
}

.wc26-fav-team {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 14px;
  background: var(--wc26-surface-translucent);
}

.wc26-fav-team form {
  margin-left: auto;
}

.wc26-fav-team--with-alerts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.wc26-fav-team--with-alerts form {
  margin-left: 0;
}

.wc26-fav-team-main {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.wc26-fav-team-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wc26-fav-team-info strong {
  line-height: 1.1;
}

.wc26-fav-team-info span {
  color: var(--wc26-text-muted);
  font-size: 12px;
}

.wc26-fav-team-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.wc26-fav-alert-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  padding: 0;
  background: var(--wc26-surface-soft);
  color: var(--wc26-text);
  text-decoration: none;
}

.wc26-fav-alert-toggle:hover {
  background: var(--wc26-hover-bg);
}

.wc26-fav-alert-toggle.is-active {
  background: var(--wc26-primary-soft);
  color: var(--wc26-primary);
}

.wc26-fav-alert-panel {
  padding-top: 12px;
  border-top: 1px solid var(--wc26-border-soft);
}

.wc26-alert-row--inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: end;
  gap: 12px;
}

.wc26-alert-row--inline .wc26-btn {
  width: 100%;
}

.wc26-team-flag {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 999px;
}

.wc26-fav-match {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
}

.wc26-fav-match:hover {
  background: var(--wc26-hover-bg);
}

.wc26-fav-match-date,
.wc26-alert-row small {
  opacity: .7;
}

.wc26-fav-match-date {
  font-size: 13px;
}

.wc26-alerts-box {
  gap: 12px;
}

.wc26-alert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 14px;
}

/* =========================
   Perfil
========================= */

.wc26-profile-page {
  display: grid;
}

.wc26-profile-hero {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  overflow:visible;
  height:100%;
  justify-content:flex-start;
}

.wc26-profile-hero{}

.wc26-profile-avatar {
  width: 116px;
  object-fit: cover;
}

.wc26-profile-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: 12px;
}


.wc26-profile-main p {
  max-width: 560px;
  margin: 0;
  opacity: .75;
}

.wc26-profile-stats,
.wc26-profile-form,
.wc26-profile-grid {
  display: grid;
}

.wc26-profile-stats {
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  gap: 10px;
}

.wc26-profile-stats div {
  padding: 14px 12px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 18px;
  background: var(--wc26-surface-translucent-strong);
  text-align: center;
}

.wc26-profile-stats strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.wc26-profile-stats span {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .7;
}

.wc26-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.wc26-profile-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.wc26-profile-form label:nth-child(3) {
  grid-column: 1 / -1;
}

.wc26-profile-form button {
  justify-self: start;
}

.wc26-profile-remove-avatar {
  margin-top: 10px;
}

.wc26-profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  align-items:stretch;
}

.wc26-profile-grid  .wc26-card {
  height: 100%;
}

.wc26-profile-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.wc26-profile-actions h3,
.wc26-profile-actions p {
  margin: 0;
}

.wc26-avatar-edit-trigger,
.wc26-share-profile__avatar-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.wc26-avatar-edit-trigger {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: inherit;
}

.wc26-profile-avatar-trigger {
  align-self: center;
  min-width: 92px;
  margin-inline: auto;
  border-radius: 24px;
  border-end-end-radius: 0;
  overflow: hidden;
}


.wc26-avatar-edit-trigger:hover span,
.wc26-avatar-edit-trigger:focus-visible span,
.wc26-share-profile__avatar-btn:hover span,
.wc26-share-profile__avatar-btn:focus-visible span {
  opacity: 1;
}

.wc26-profile-hero.is-uploading,
.wc26-share-wrap.is-uploading,
.wc26-share-profile.is-uploading,
.wc26-favorites-box.is-loading {
  opacity: .65;
  pointer-events: none;
}

.wc26-profile-file-note {
  display: block;
  margin-bottom: 6px;
  color: var(--wc26-text-muted);
  font-size: .85rem;
}

.wc26-share-profile__avatar-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
}

.wc26-team-landing {
  margin-top: 24px;
}

/* =========================
   Ranking y top 10
========================= */

.wc26-ranking-card {
  overflow: hidden;
}

.wc26-ranking-list,
.wc26-top10-list {
  display: grid;
}

.wc26-ranking-list {
  gap: 10px;
}

.wc26-top10-list {
  gap: 8px;
}

.wc26-ranking-row {
  display: grid;
  grid-template-columns: 58px 52px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 18px;
  background: var(--wc26-surface);
  box-shadow: var(--wc26-shadow-sm);
}

.wc26-ranking-row.is-podium {
  background: linear-gradient(90deg, var(--wc26-podium-soft), var(--wc26-surface));
}

.wc26-rank-number,
.wc26-top10-pos {
  font-weight: 950;
}

.wc26-rank-number {
  color: var(--wc26-text);
  font-size: 20px;
}

.wc26-rank-avatar {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}

.wc26-rank-user strong,
.wc26-rank-user span,
.wc26-rank-points strong,
.wc26-rank-points span {
  display: block;
}

.wc26-rank-user strong,
.wc26-rank-points strong,
.wc26-top10-item em {
  color: var(--wc26-text);
}

.wc26-rank-user span {
  margin-top: 3px;
  color: var(--wc26-text-muted);
  font-size: 12px;
}

.wc26-rank-points {
  text-align: right;
}

.wc26-rank-points strong {
  font-size: 24px;
  line-height: 1;
}

.wc26-rank-points span {
  color: var(--wc26-text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wc26-top10-item {
  display: grid;
  grid-template-columns: 50px 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 16px;
  background: var(--wc26-surface);
}

.wc26-top10-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: top;
  border-radius: 14px;
}

.wc26-top10-item em {
  font-style: normal;
  font-weight: 900;
}

.wc26-my-points strong {
  font-size: 34px;
}

/* =========================
   Clasificación por grupos
========================= */

.wc26-standings-section {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.wc26-standings-stack {
  display: grid;
  gap: 18px;
}

.wc26-standings-card {
  overflow: hidden;
  padding: 0 !important;
}

.wc26-standings-card h4 {
  margin: 0;
  padding: 16px 18px 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.wc26-standings-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wc26-standings-table {
  min-width: 720px;
  font-variant-numeric: tabular-nums;
}

.wc26-standings-table th,
.wc26-standings-table td {
  padding: 14px 12px;
  border-top: 1px solid var(--wc26-border-subtle);
  text-align: center;
  vertical-align: middle;
}

.wc26-standings-table th {
  background: var(--wc26-surface-soft);
  color: var(--wc26-text-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wc26-standings-table .wc26-col-team {
  min-width: 250px;
  text-align: left;
}

.wc26-standings-team {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left !important;
}

.wc26-standings-pos {
  flex: 0 0 22px;
  width: 22px;
  color: var(--wc26-text);
  font-weight: 900;
  text-align: center;
}

.wc26-standings-team img {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wc26-standings-name {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.wc26-standings-name strong {
  overflow: hidden;
  color: var(--wc26-text);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wc26-standings-pts {
  color: var(--wc26-text);
  font-weight: 950;
}

.wc26-live-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--wc26-danger-border);
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--wc26-danger-bg);
  color: var(--wc26-danger);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================
   Login / Auth
========================= */

.wc26-login-page {
  max-width: 520px;
  margin: 8px auto;
}

.wc26-login h3 {
  margin-bottom: 10px;
}

.wc26-login-form .row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.wc26-login-form .row span,
.wc26-auth .wc26-form label span {
  color: var(--wc26-text);
  font-size: .95rem;
}

.wc26-login-form .row span {
  font-weight: 600;
}

.wc26-login-form .remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 12px;
}

.wc26-btn-login {
  width: 100%;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
}

.wc26-login-links {
  margin-top: 10px;
  font-size: .95rem;
  text-align: center;
}

.wc26-login-links .sep {
  margin-inline: 6px;
  color: var(--wc26-text-muted);
}

.wc26-or {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
  color: var(--wc26-text-muted);
}

.wc26-or::before,
.wc26-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--wc26-border);
}

.wc26-or span {
  padding-inline: 10px;
}

.wc26-google {
  display: flex;
  justify-content: center;
}

.wc26-auth .wc26-form label {
  display: block;
  margin-bottom: 10px;
}

.wc26-auth .wc26-form label span {
  display: block;
  margin-bottom: 4px;
}

.wc26-auth .wc26-form .button {
  width: 100%;
  margin-top: 8px;
}

.wc26-auth .wc26-sep {
  margin: 12px 0;
  color: var(--wc26-text-muted);
  text-align: center;
}

/* =========================
   Sponsors y banners
========================= */

.wc26-sponsors,
.wc26-banners {
  overflow: hidden;
}

.wc26-sponsors {
  padding: 8px 0;
}

.wc26-sponsors .strip {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: wc26-scroll 30s linear infinite;
}

.wc26-sponsors .sponsor img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: .9;
  transition: filter .2s ease, opacity .2s ease;
}

.wc26-sponsors .sponsor:hover img {
  filter: none;
  opacity: 1;
}

@keyframes wc26-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wc26-banners {
  position: relative;
  width: 100%;
}

.wc26-banners .slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  text-decoration: none;
  opacity: 0;
  transition: opacity .5s ease;
  will-change: opacity;
}

.wc26-banners .slide.is-active {
  z-index: 1;
  opacity: 1;
}

.wc26-banners picture,
.wc26-banners img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* =========================
   Calendar
========================= */

.wc26-calendar {
  --wc26-cal-gap: 10px;
  --wc26-cal-radius: 12px;

  position: relative;
  background-color: var(--wc26-surface);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--wc26-border);
}

.wc26-cal__filter-card {
  margin-bottom: 20px;
}

.wc26-cal__filters,
.wc26-cal__header,
.wc26-cal__cell__head,
.wc26-cal__dots,
.wc26-cal__drawer__head,
.wc26-cal__matches,
.wc26-match-row .flags {
  display: flex;
}

.wc26-cal__filters {
  align-items: center;
  gap: 8px;
}

.wc26-cal__header {
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.wc26-cal__title {
  margin: 0;
  color: var(--wc26-text);
  font-weight: 800;
  letter-spacing: .2px;
}

.wc26-cal__nav {
  border: 1px solid var(--wc26-border);
  border-radius: 10px;
  padding: 6px 10px;
  background: var(--wc26-surface-2);
  color: var(--wc26-text);
  cursor: pointer;
}

.wc26-cal__nav:hover {
  background: var(--wc26-surface);
}

.wc26-cal__weekdays,
.wc26-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.wc26-cal__weekdays {
  margin-bottom: 6px;
  color: var(--wc26-text-muted);
  font-weight: 700;
  text-align: center;
}

.wc26-cal__weekdays span {
  padding: 6px 0;
}

.wc26-cal__grid {
  gap: var(--wc26-cal-gap);
}

.wc26-cal__cell {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 96px;
  border: 1px solid var(--wc26-border);
  border-radius: var(--wc26-cal-radius);
  padding: 8px;
  background: var(--wc26-surface);
}

.wc26-cal__cell.is-clickable {
  cursor: pointer;
}

.wc26-cal__cell.is-other {
  opacity: .5;
}

.wc26-cal__cell.has-matches {
  border: 2px solid var(--wc26-primary);
  background: var(--wc26-primary-soft-bg);
}

.wc26-cal__cell__head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.wc26-cal__day {
  color: var(--wc26-text);
  font-weight: 800;
}

.wc26-cal__dots {
  align-items: center;
  gap: 4px;
}

.wc26-cal__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wc26-primary);
  opacity: .85;
}

.wc26-cal__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.wc26-cal__tag {
  border: 1px solid var(--wc26-border);
  border-radius: 999px;
  padding: 2px 6px;
  background: var(--wc26-surface-2);
  color: var(--wc26-text);
  font-size: .78rem;
  cursor: pointer;
}

.wc26-cal__tag:hover {
  border-color: var(--wc26-border-strong);
}

.wc26-cal__drawer {
  position: fixed;
  top: 0;
  right: -420px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 420px;
  max-width: 92vw;
  height: 100%;
  border-left: 1px solid var(--wc26-border);
  background: var(--wc26-surface);
  box-shadow: var(--wc26-shadow-xl);
  transition: right .28s ease, transform .28s ease;
}

.wc26-cal__drawer.is-open {
  right: 0;
}

.wc26-cal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--wc26-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.wc26-cal__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.wc26-cal__drawer__head {
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--wc26-border);
}

.wc26-cal__drawer__date {
  color: var(--wc26-text);
  font-weight: 800;
}

.wc26-cal__drawer__close {
  border: 0;
  background: transparent;
  color: var(--wc26-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.wc26-cal__drawer__body {
  overflow: auto;
  padding: 12px 14px;
}

.wc26-cal__matches {
  flex-direction: column;
  gap: 16px;
}

.wc26-cal__loading {
  color: var(--wc26-text-muted);
}

.wc26-match-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--wc26-border);
  border-radius: 12px;
  padding: 8px 10px;
  background: var(--wc26-surface);
  color: var(--wc26-text);
}

.wc26-match-row .flags {
  gap: 6px;
}

.wc26-match-row img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.wc26-match-row .teams {
  font-weight: 600;
}

.wc26-match-row .time {
  color: var(--wc26-text-muted);
  font-variant-numeric: tabular-nums;
}

.wc26-match-row .score {
  font-weight: 700;
}

.wc26-match-row .go {
  margin-left: 8px;
  color: var(--wc26-primary);
  text-decoration: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .wc26-profile-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wc26-profile-avatar {
    margin: auto;
  }

  .wc26-profile-stats {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .wc26-profile-grid,
  .wc26-profile-form {
    grid-template-columns: 1fr;
  }

  .wc26-profile-form label:nth-child(3) {
    grid-column: auto;
  }

  .wc26-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .wc26-match-body {
    padding: 12px;
  }

  .wc26-pred-form {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }

  .wc26-pred-form .button.button-primary {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .wc26-pred-form input[type="number"] {
    max-width: 100%;
    padding: 10px;
    font-size: 1.1rem;
  }

  .wc26-vs {
    font-size: 1.2rem;
  }

  .wc26-groups-grid,
  .wc26-group-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {


  .wc26-fav-team {
    flex-wrap: wrap;
  }

  .wc26-fav-team form {
    margin-left: 0;
  }


  .wc26-fav-team-actions .wc26-link-btn:not(.wc26-fav-alert-toggle) {
    min-height: 38px;
  }

  .wc26-alert-row--inline {
    grid-template-columns: 1fr;
  }

  .wc26-standings-section {
    margin: 18px 0;
  }

  .wc26-standings-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wc26-standings-card h4 {
    padding: 14px 14px 8px;
  }

  .wc26-standings-table {
    min-width: 660px;
  }

  .wc26-standings-table th,
  .wc26-standings-table td {
    padding: 12px 10px;
  }

  .wc26-standings-table .wc26-col-team {
    min-width: 225px;
  }
}

@media (max-width: 640px) {
  .wc26-filter-head,
  .wc26-ranking-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .wc26-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .wc26-rank-points {
    display: flex;
    align-items: end;
    gap: 6px;
    text-align: left;
  }



  .wc26-profile-hero {
    display: grid;
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .wc26-team-filter-form {
    display: grid;
  }

  .wc26-team-filter-form .wc26-btn {
    width: 100%;
  }

  .wc26-login-page {
    padding: 12px;
  }

  .wc26-btn-login {
    padding: 12px;
  }

  .wc26-cal__filters {
    align-items: stretch;
    flex-direction: column;
  }

  .wc26-cal__list {
    display: none !important;
  }

  .wc26-cal__dots {
    gap: 0;
  }

  .wc26-cal__dots .wc26-cal__dot {
    display: none;
  }

  .wc26-cal__dots .wc26-cal__dot:first-child {
    display: block;
  }

  .wc26-cal__dot {
    width: 7px;
    height: 7px;
    opacity: .9;
  }

  .wc26-cal__cell {
    min-height: 40px;
    height: 40px;
  }

  .wc26-calendar {
    --wc26-cal-gap: 4px;
  }

  .wc26-cal__day,
  .wc26-cal__weekdays span {
    font-size: small;
  }

  .wc26-cal__day {
    font-weight: 400;
  }
}

@media (max-width: 540px) {
  .wc26-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .wc26-pred-form {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .wc26-vs {
    justify-self: center;
    margin: 4px 0;
  }
}


.wc26-pred-title {
  display: block;
  text-align: center;
  font-size: small;
  font-weight: 700;
  color: var(--wc26-text);
}

.wc26-breadcrumb .comp a,
.wc26-scoreblock .team .teamlink {
  color: inherit;
  text-decoration: none;
}

.wc26-scoreblock .team .teamlink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.wc26-countdown {
  margin: 6px 0 10px;
  font-size: .95rem;
  color: var(--wc26-muted);
}

.wc26-countdown .t {
  font-variant-numeric: tabular-nums;
}

.wc26-locked-note {
  display: block;
  margin-top: 6px;
  color: var(--wc26-danger);
}

.wc26-pred-title {
  display: block;
  text-align: center;
  font-size: small;
  font-weight: 700;
  color: var(--wc26-text);
}

.wc26-filters-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.wc26-auth-link {
  margin-top: 12px;
}

.wc26-cal__filters {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wc26-cal__matches {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wc26-cal__loading {
  color: var(--wc26-muted);
  opacity: .7;
}

.wc26-cal__cell.is-clickable {
  cursor: pointer;
}

.wc26-comp-filter-card {
  display: inline-block;
  padding: 8px;
}


.wc26-profile-top-layout{
    display:grid;
    grid-template-columns:minmax(320px,380px) minmax(0,1fr);
    gap:16px;
    align-items:stretch;
    margin-bottom:24px;
}

.wc26-profile-top-layout__col{
    min-width:0;
}

.wc26-profile-top-layout__col--left{
    display:flex;
    flex-direction:column;
    gap:24px;
    position:sticky;
    top:94px;
    align-self:start;
}

.wc26-profile-top-layout__col--right{
    display:flex;
    flex-direction:column;
    gap:24px;
    min-width:0;
}



.wc26-profile-edit-panel[hidden]{
    display:none!important;
}

.wc26-profile-edit-panel{
    display:grid;
    gap:18px;
    animation:wc26ProfileEditReveal .22s ease;
    scroll-margin-top:120px;
}

.wc26-profile-edit-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:18px;
}

.wc26-profile-edit-head h3{
    margin:0;
}

.wc26-profile-edit-close{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    text-decoration:none;
}

.wc26-profile-action-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    width:100%;
}

.wc26-profile-action-list .wc26-btn{
    flex:1 1 150px;
}

.wc26-profile-edit-toggle.is-active{
    background:var(--wc26-danger);
    color:#fff!important;
}


.wc26-profile-hero .wc26-avatar-edit-hint i{
    font-size:12px;
}

@keyframes wc26ProfileEditReveal{
    from{
        opacity:0;
        transform:translateY(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* Evita overflow de la card editorial */


/* Hace que el editor aproveche el ancho */
.wc26-profile-top-layout .wc26-profile-edit{
    height:100%;
}

/* Responsive */
@media (max-width: 980px){

    .wc26-profile-top-layout{
        grid-template-columns:1fr;
    }

    .wc26-profile-top-layout__col--left,
    .wc26-profile-top-layout__col--right{
        width:100%;
        position:relative;
        top:auto;
}

}

/* Mobile fino */
@media (max-width: 640px){

    .wc26-profile-top-layout{
        gap:18px;
    }

    .wc26-profile-top-layout__col--left,
    .wc26-profile-top-layout__col--right{
        gap:18px;
    }

}




/* =========================================================
   Profile hero card basada en share card
   ========================================================= */

.wc26-profile-hero-card,
.wc26-profile-hero-card * {
  box-sizing: border-box;
}

.wc26-profile-hero-card {
  position: relative;
  flex-shrink:0;
  width: 317px;
  min-width: 317px;
  max-width: 317px;
  height: 406px;
  min-height: 406px;
  max-height: 406px;
  margin: 0 auto;
  overflow: hidden !important;
  border-radius: 0;
  isolation: isolate;
  background: var(--wc26-share-card-bg, #071827);
  color: var(--wc26-share-card-text, #fff);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .34);
}

.wc26-profile-hero-card > *:not(.wc26-share-card__cover) {
  position: relative;
  z-index: 2;
}

.wc26-profile-hero-card .wc26-share-card__cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  pointer-events: none;
  background: transparent !important;
}

.wc26-profile-hero-card .wc26-share-card__cover-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}

.wc26-profile-hero-card .wc26-share-card__avatar-wrap {
  position: absolute;
  left: 16px;
  top: 4px;
  z-index: 2;
  width: 210px;
  min-width: 210px;
  max-width: 210px;
  height: 295px;
  min-height: 295px;
  max-height: 295px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 48px 48px 0 48px;
  background: transparent !important;
  background-image: none !important;
  cursor: pointer;
}

.wc26-profile-hero-card .wc26-share-card__avatar,
.wc26-profile-hero-card .wc26-profile-avatar {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: auto !important;
  height: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  max-height: none !important;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  object-fit: cover !important;
  object-position: center center !important;
  transform: translate(-50%, -50%);
}

.wc26-profile-hero-card .wc26-share-card__avatar-wrap:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .85);
  outline-offset: 4px;
}

.wc26-profile-hero-card .wc26-avatar-edit-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  opacity: 0.3;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  transform: translateX(-50%);
  border-radius: 999px;
  padding: 8px 14px;

  background: rgba(2, 6, 23, .75);
  color: #fff;

  font-size: 12px;
  font-weight: 800;

  backdrop-filter: blur(10px);

  transition:
    opacity .2s ease,
    transform .2s ease,
    background .2s ease;

  pointer-events: none;
}

.wc26-profile-hero-card .wc26-avatar-edit-hint i{
  opacity:1;
  transition:opacity .2s ease;
}

.wc26-profile-hero-card .wc26-avatar-edit-hint span{
  position:static;
  inset:auto;
  padding:0;
  border-radius:0;
  background:transparent;
  transform:translateX(4px);
  transition:
    opacity .2s ease,
    transform .2s ease;
}

.wc26-profile-hero-card .wc26-share-card__avatar-wrap:hover .wc26-avatar-edit-hint,
.wc26-profile-hero-card .wc26-share-card__avatar-wrap:focus-visible .wc26-avatar-edit-hint{
  background: rgba(2, 6, 23, .88);
}

.wc26-profile-hero-card .wc26-share-card__avatar-wrap:hover .wc26-avatar-edit-hint span,
.wc26-profile-hero-card .wc26-share-card__avatar-wrap:focus-visible .wc26-avatar-edit-hint span{
  opacity:1;
  transform:translateX(0);
}

.wc26-avatar-upload-status.is-loading {
  background-color: #d86800;
  color: #eaf2ff;
  font-size: 11px;
  font-weight: 700;
  width: fit-content;
  padding: 3px;
  border-radius: 3px;
  margin: 3px;
}

.wc26-avatar-upload-status.is-ok {
  background-color: #1c7a00;
  color: #eaf2ff;
}


.wc26-profile-hero-card .wc26-share-card__avatar-wrap::after {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    transparent 35%,
    rgba(255, 255, 255, .08) 44%,
    rgba(255, 255, 255, .55) 50%,
    rgba(255, 255, 255, .10) 56%,
    transparent 66%
  );
  transform: translate(-70%, -70%);
  animation: wc26AvatarShine 7s ease-in-out infinite;
  mix-blend-mode: screen;
}

.wc26-profile-hero-card .wc26-profile-main {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 6px;
  text-align: center;
}

.wc26-profile-hero-position{
  position: absolute!important;
  right: 6%;
    top: 3%;
    background: var(--color-accent-50);
    width: 70px;
    align-content: center;
    padding: 8px;
    border-radius: 999px;
    border-end-end-radius: 0;
    font-weight: 800; 
}

.wc26-profile-hero-position h3{
  color: #05203b!important;
  margin-bottom: unset;
}
.wc26-profile-hero-card .wc26-profile-kicker {
  display: block;
  overflow: hidden;
  border-radius: 16px 0 16px 16px;
  padding: 4px 8px;
  background: var(--wc26-share-accent-dark, #b20505);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wc26-profile-hero-card .wc26-profile-main h2 {
  min-height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  border-top-right-radius: 0;
  padding: 0 16px;
  background: var(--wc26-share-accent, #ff1200);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-overflow: ellipsis;
  gap: 4px;
}

.wc26-profile-hero-card .wc26-profile-main h2 .wc26-share-card__name-first{
  font-weight: 400;
}

.wc26-profile-hero-card .wc26-profile-main p {
  max-height: 34px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  padding: 5px 8px;
  background: rgba(2, 6, 23, .62);
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
}

.wc26-profile-hero-card .wc26-share-card__position {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 90px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border-bottom-right-radius: 0;
  padding: 0 8px;
  background: rgba(255, 255, 255, .92);
  color: var(--wc26-share-card-ink, #05203b);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}

@media (prefers-reduced-motion: reduce) {
  .wc26-profile-hero-card .wc26-share-card__avatar-wrap::after {
    animation: none;
    opacity: 0;
  }
}


@media (max-width: 420px) {

  .wc26-profile-hero {
    overflow: visible;
    display: flex;
  }

  .wc26-profile-hero-card {
    --scaleCard:calc((100vw - 32px) / 400px);
    width: 317px;
    min-width: 317px;
    max-width: 317px;
    transform: scale(var(--scaleCard));
    transform-origin: top center;
    margin-inline: unset;
    margin-bottom: calc((1 - var(--scaleCard)) * -400px);
  }

}


@keyframes wc26AvatarShine {
  0%,
  22% {
    transform: translate(-70%, -70%);
    opacity: 0;
  }

  40% {
    opacity: .75;
  }

  56% {
    transform: translate(70%, 70%);
    opacity: .45;
  }

  100% {
    transform: translate(70%, 70%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wc26-share-card--editorial .wc26-share-card__avatar-wrap::after {
    animation: none;
    opacity: 0;
  }
}

.wc26-profile-groups-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wc26-profile-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wc26-profile-card-head h3,
.wc26-profile-group-mini h4 {
  margin: 0;
}

.wc26-profile-card-head p,
.wc26-profile-group-mini p {
  margin: 4px 0 0;
}

.wc26-profile-groups-list {
  display: grid;
  gap: 12px;
}

.wc26-profile-group-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--wc26-border, rgba(15, 23, 42, .12));
  border-radius: var(--wc26-radius, 16px);
  background: var(--wc26-surface-soft, rgba(15, 23, 42, .03));
}

.wc26-profile-group-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.wc26-profile-group-actions a{
  line-height: 1;
}

@media (max-width: 640px) {
  .wc26-profile-card-head,
  .wc26-profile-group-mini {
    flex-direction: column;
    align-items: stretch;
  }

  .wc26-profile-group-actions .wc26-btn,
  .wc26-profile-group-actions .wc26-link-btn,
  .wc26-profile-group-mini .wc26-btn {
    width: 100%;
    justify-content: center;
  }
}



.wc26-groups-card,
.wc26-group-ranking-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wc26-group-list {
  display: grid;
  gap: 14px;
}

.wc26-group-item {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--wc26-border, rgba(15, 23, 42, .12));
  border-radius: var(--wc26-radius, 16px);
  background: var(--wc26-surface-soft, rgba(15, 23, 42, .03));
}

.wc26-group-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.wc26-group-info {
  min-width: 0;
}

.wc26-group-item h4,
.wc26-group-edit-panel h5 {
  margin: 0 0 6px;
}

.wc26-group-item p {
  margin: 0 0 10px;
  color: var(--wc26-text-muted);
}

.wc26-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wc26-group-tags .wc26-group-badge {
  margin-right: 0;
}

.wc26-group-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.wc26-group-inline-form {
  margin: 0;
}

.wc26-group-code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--wc26-border-soft);
}

.wc26-copy-input {
  flex: 1 1 260px;
  width: min(100%, 360px);
  min-height: 38px;
  font-size: 12px;
}

.wc26-group-edit-panel {
  grid-column: 1 / -1;
  display: none;
  gap: 14px;
  margin-top: 4px;
  padding: 16px;
  border-radius: var(--wc26-radius, 16px);
  background: var(--wc26-surface, #fff);
  border: 1px dashed var(--wc26-border, rgba(15, 23, 42, .16));
}

.wc26-group-edit-panel:target {
  display: grid;
}

.wc26-group-edit-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wc26-group-edit-form,
.wc26-group-delete-form {
  display: grid;
  gap: 12px;
}

.wc26-group-delete-form {
  padding-top: 12px;
  border-top: 1px solid var(--wc26-border-soft);
}

.wc26-danger {
  color: var(--wc26-danger) !important;
}

@supports selector(:has(*)) {
  .wc26-group-item:has(.wc26-group-edit-panel:target) {
    border-color: var(--wc26-primary);
    box-shadow: 0 0 0 3px var(--wc26-primary-soft);
  }
}

@media (max-width: 720px) {
  .wc26-group-main {
    grid-template-columns: 1fr;
  }

  .wc26-group-actions,
  .wc26-group-code-row {
    justify-content: stretch;
  }

  .wc26-group-actions .wc26-btn,
  .wc26-group-actions .wc26-link-btn,
  .wc26-group-inline-form,
  .wc26-group-inline-form .wc26-link-btn,
  .wc26-group-code-row .wc26-link-btn,
  .wc26-copy-input {
    width: 100%;
    justify-content: center;
  }
}

.wc26-groups-quick-panels .wc26-groups-panel {
  display: none;
}

.wc26-groups-quick-panels .wc26-groups-panel:target {
  display: block;
}

.wc26-groups-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 14px;
}

.wc26-group-gallery-item {
  padding: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wc26-group-gallery-item:hover {
  transform: translateY(-2px);
}

.wc26-group-gallery-item__body {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: end;
}
.wc26-group-gallery-item__head{
  flex:250px 1;
  max-width: 100%;
}
.wc26-group-gallery-item__head h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.15;
}

.wc26-group-gallery-item__code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 14px;
  background: var(--wc26-surface-soft);
}

.wc26-group-gallery-item__code small {
  color: var(--wc26-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.wc26-group-copy-code {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--wc26-text);
  padding: 0;
  cursor: pointer;
  font: inherit;
  line-height: 1.3;
}

.wc26-group-copy-code strong {
  font-size: 13px;
  letter-spacing: .04em;
}

.wc26-group-copy-code i {
  color: var(--wc26-text-muted);
  font-size: 13px;
}

.wc26-group-gallery-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: end;
}

.wc26-btn-sm {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
  width: fit-content;
}

.wc26-groups-gallery-hero,
.wc26-group-single-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.wc26-groups-gallery-hero__actions,
.wc26-group-single-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc26-groups-section {
  margin-top: 24px;
}

.wc26-groups-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 14px;
}

.wc26-groups-section-head h3 {
  margin: 6px 0 0;
}

.wc26-group-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.wc26-group-stat-card {
  display: grid;
  gap: 6px;
}

.wc26-group-stat-card span {
  font-size: 13px;
  opacity: .7;
}

.wc26-group-stat-card strong {
  font-size: 32px;
  line-height: 1;
}

.wc26-group-edit-panel {
  margin: 18px 0;
  display: none;
}

.wc26-group-edit-panel:target {
  display: block;
}

.wc26-group-members-card {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .wc26-groups-gallery-hero,
  .wc26-group-single-hero {
    flex-direction: column;
  }

  .wc26-groups-gallery-hero__actions {
    width: 100%;
  }




}


.wc26-groups-action-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.wc26-groups-action-card__head h3,
.wc26-groups-action-card__head p {
  margin-top: 0;
}

.wc26-groups-panel-close {
  white-space: nowrap;
}

.wc26-group-single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: stretch;
  gap: 20px;
}

.wc26-group-single-hero__content,
.wc26-group-single-hero__side {
  display: grid;
  gap: 14px;
}

.wc26-group-single-hero__side {
  align-content: space-between;
  justify-content: end;
}

.wc26-group-single-code-card {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 16px;
  background: var(--wc26-surface-soft);
}

.wc26-group-single-code-card small {
  font-size: 12px;
  color: var(--wc26-text-muted);
  font-weight: 700;
}

.wc26-group-single-hero__actions {
  display: flex;
  gap: 8px;
  justify-content: end;
}

@media (max-width: 760px) {
  .wc26-group-single-hero {
    grid-template-columns: 1fr;
  }
}



/* =========================
   Perfil público
========================= */

.wc26-public-profile {
  position: relative;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--wc26-border);
  border-radius: 18px;
  background: var(--wc26-surface);
  color: var(--wc26-text);
  box-shadow: var(--wc26-shadow-sm);
}

.wc26-public-profile__hero {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--wc26-surface), var(--wc26-surface-soft));
}

.wc26-public-profile__avatar {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 24px;
  background: var(--wc26-surface);
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--wc26-shadow-sm);
}

.wc26-public-profile__hero h2 {
  margin: 4px 0 6px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.wc26-public-profile__hero p {
  max-width: 680px;
  margin: 6px 0 0;
  color: var(--wc26-text-muted);
  font-size: .95rem;
}

.wc26-public-profile__hero .wc26-btn {
  margin-top: 14px;
}

.wc26-public-profile__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wc26-public-profile__stat {
  padding: 16px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 18px;
  background: var(--wc26-surface-soft);
  box-shadow: var(--wc26-shadow-sm);
}

.wc26-public-profile__stat span {
  display: block;
  color: var(--wc26-text-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wc26-public-profile__stat strong {
  display: block;
  margin-top: 8px;
  color: var(--wc26-text);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.wc26-public-profile__section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 18px;
  background: var(--wc26-surface-soft);
}

.wc26-public-profile__section h3 {
  margin: 0;
  color: var(--wc26-text);
}

.wc26-public-profile__teams {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.wc26-public-profile__team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 16px;
  background: var(--wc26-surface);
  color: var(--wc26-text);
  text-decoration: none;
  font-weight: 850;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wc26-public-profile__team:hover {
  transform: translateY(-2px);
  border-color: var(--wc26-border-strong);
  box-shadow: var(--wc26-shadow-sm);
}

.wc26-public-profile__team img {
  flex: 0 0 34px;
  object-fit: contain;
  border: var(--wc26-border) solid 1px;
}

.wc26-public-profile__predictions {
  display: grid;
  gap: 10px;
}

.wc26-public-profile__prediction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--wc26-border-soft);
  border-radius: 16px;
  background: var(--wc26-surface);
  color: var(--wc26-text);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.wc26-public-profile__prediction:hover {
  transform: translateY(-2px);
  border-color: var(--wc26-border-strong);
  box-shadow: var(--wc26-shadow-sm);
}

.wc26-public-profile__prediction strong,
.wc26-public-profile__prediction span {
  display: block;
}

.wc26-public-profile__prediction strong {
  color: var(--wc26-text);
  line-height: 1.15;
}

.wc26-public-profile__prediction span {
  margin-top: 4px;
  color: var(--wc26-text-muted);
  font-size: 13px;
}

.wc26-public-profile__prediction b {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--wc26-primary-soft);
  color: var(--wc26-primary);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.wc26-public-profile__empty {
  margin: 0;
  padding: 14px 16px;
  border: 1px dashed var(--wc26-border-strong);
  border-radius: 16px;
  background: var(--wc26-surface);
  color: var(--wc26-text-muted);
  font-weight: 700;
}

.wc26-user-profile-link,
.wc26-rank-avatar-link,
.wc26-top10-avatar-link {
  color: inherit;
  text-decoration: none;
}

.wc26-user-profile-link {
  font-weight: 800;
}

.wc26-user-profile-link:hover {
  color: var(--wc26-primary);
}

@media (max-width: 768px) {
  .wc26-public-profile {
    padding: 12px;
  }

  .wc26-public-profile__hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px;
  }

  .wc26-public-profile__avatar {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

  .wc26-public-profile__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wc26-public-profile__section {
    padding: 16px;
  }

  .wc26-public-profile__prediction {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .wc26-public-profile__grid {
    grid-template-columns: 1fr;
  }
}

.wc26-table-user{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:inherit;
    text-decoration:none;
    font-weight:800;
}

.wc26-table-user:hover{
    color:var(--wc26-primary);
}

.wc26-table-user__avatar{
    width:36px;
    height:36px;
    border-radius:999px;
    object-fit:cover;
    object-position:top center;
    flex:0 0 36px;
}
.wc26-top10-card,
.wc26-group-members-card,
.wc26-group-ranking,
.wc26-group-ranking-selector,
.wc26-ranking-card{
  max-width:100%;
  min-width:0;
  overflow:hidden;
}

.wc26-top10-card *,
.wc26-group-members-card *,
.wc26-group-ranking *,
.wc26-group-ranking-selector *,
.wc26-ranking-card *{
  min-width:0;
}

.wc26-top10-list,
.wc26-ranking-list{
  max-width:100%;
  min-width:0;
}

.wc26-top10-item,
.wc26-ranking-row{
  max-width:100%;
  min-width:0;
}

.wc26-top10-item > a,
.wc26-top10-item > strong,
.wc26-top10-item > em,
.wc26-top10-item > span,
.wc26-ranking-row > *{
  min-width:0;
}

.wc26-top10-item strong,
.wc26-top10-item em,
.wc26-rank-user strong,
.wc26-rank-user span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.wc26-group-members-card .wc26-table,
.wc26-group-ranking .wc26-table,
.wc26-group-ranking .wc26-ranking-table{
  max-width:100%;
}

@media (max-width:760px){
  .wc26-top10-card,
  .wc26-group-members-card,
  .wc26-group-ranking,
  .wc26-group-ranking-selector,
  .wc26-ranking-card{
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-inline:contain;
    padding-bottom:8px;
  }

  .wc26-top10-list,
  .wc26-ranking-list{
    width:max-content;
    min-width:100%;
  }

  .wc26-top10-item{
    grid-template-columns:42px 40px minmax(150px,1fr) auto;
    min-width:420px;
  }

  .wc26-ranking-row{
    min-width:420px;
  }

  .wc26-group-members-card .wc26-table,
  .wc26-group-ranking .wc26-table,
  .wc26-group-ranking .wc26-ranking-table{
    min-width:420px;
  }
}

@media (max-width:420px){
  .wc26-top10-item,
  .wc26-ranking-row{
    min-width:300px;
  }

  .wc26-group-members-card .wc26-table,
  .wc26-group-ranking .wc26-table,
  .wc26-group-ranking .wc26-ranking-table{
    min-width:300px;
  }
}

:root {
  --wc26-sticky-gap: 20px;
}
.wc26-profile-sticky-quiniela {
  position: sticky;
  bottom: 30px;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 300px;
  max-width: calc(100vw - 40px);
  margin: 24px auto 0;

  padding: 8px 14px;
  border-radius: 999px;
  background: var(--wc26-brand_2);
  color: #050016 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 10px 3px rgba(0, 0, 0, 0.15);
}

.wc26-profile-sticky-quiniela__text {
  display: grid;
  line-height: 1.05;
}

@property --wc26-quiniela-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.wc26-profile-sticky-quiniela--glow-border{
  position:sticky;
  border:3px solid transparent;
  overflow:hidden;

  --wc26-quiniela-angle:0deg;

  background:
    linear-gradient(var(--wc26-brand_2), var(--wc26-brand_2)) padding-box,
    conic-gradient(
      from var(--wc26-quiniela-angle),
      #ffae00 0deg,
      #ffb70e 120deg,
      #e8b11f 210deg,
      #fff2bf 250deg,
      #ffd54a 280deg,
      #fff2bf 310deg,
      #e8b11f 340deg,
      #ffae00 360deg
    ) border-box;

  animation:wc26QuinielaBorderSpin 6s linear infinite;
}

.wc26-profile-sticky-quiniela--glow-border{
  transition:
    background .25s ease,
    color .25s ease,
    transform .2s ease,
    box-shadow .25s ease;
}

.wc26-profile-sticky-quiniela--glow-border:hover,
.wc26-profile-sticky-quiniela--glow-border:focus-visible{
  color:var(--wc26-text)!important;

  background:
    linear-gradient(var(--wc26-surface), var(--wc26-surface)) padding-box,
    conic-gradient(
      from var(--wc26-quiniela-angle),
      #0f172a 0deg,
      #1c2c4f 120deg,
      #1c2d55 210deg,
      #2c9bca 250deg,
      #5bbdfb 280deg,
      #d1f0ff 310deg,
      #6782c1 340deg,
      #0f172a 360deg
    ) border-box;

  box-shadow:0 6px 18px rgb(var(--wc26-shadow-rgb) / .25);
}


@keyframes wc26QuinielaBorderSpin{
  from{
    --wc26-quiniela-angle:0deg;
  }
  to{
    --wc26-quiniela-angle:360deg;
  }
}


@media (max-width: 640px) {
  .wc26-profile-sticky-quiniela {
    margin-inline: auto;
    bottom: 16px;
  }
}



.wc26-match-filter-head {
  margin-bottom: 14px;
}

.wc26-match-filter-main-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 44px;
  align-items: end;
  gap: 10px;
}

.wc26-match-filter-main-row .wc26-filter-field {
  min-width: 0;
}

.wc26-match-filter-icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--wc26-border-soft, rgba(148, 163, 184, .32));
  background: var(--wc26-surface, #fff);
  color: var(--wc26-text, #111827);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--wc26-shadow-sm, 0 8px 20px rgba(15, 23, 42, .08));
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.wc26-match-filter-icon-btn:hover,
.wc26-match-filter-icon-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--wc26-primary, #2563eb);
  text-decoration: none;
}

.wc26-match-filter-toggle[aria-expanded="true"] {
  background: var(--wc26-primary-soft, rgba(37, 99, 235, .12));
  color: var(--wc26-primary, #2563eb);
  border-color: var(--wc26-primary, #2563eb);
}

.wc26-match-filter-clear-icon {
  color: var(--wc26-muted, #64748b);
}

.wc26-match-filter-advanced {
  margin-top: 14px;
}

.wc26-match-filter-advanced[hidden] {
  display: none !important;
}

.wc26-match-filter-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .wc26-match-filter-main-row {
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    gap: 8px;
  }

  .wc26-match-filter-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .wc26-match-filter-submit-row .wc26-btn {
    width: 100%;
  }
}

/* Predicciones: tiempos extra y penales */
.wc26-pred-extra-fields,
.wc26-pred-pens-fields{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:end;
  gap:8px;
  padding:10px;
  border:1px solid var(--wc26-border-soft, rgba(0,0,0,.1));
  border-radius:14px;
  background:var(--wc26-surface-soft, rgba(0,0,0,.03));
}
.wc26-pred-extra-fields[hidden],
.wc26-pred-pens-fields[hidden],
.wc26-pred-extra-fields.is-hidden,
.wc26-pred-pens-fields.is-hidden{
  display:none!important;
}
.wc26-pred-extra-help{
  grid-column:1 / -1;
  opacity:.75;
  font-size:12px;
}
@media (max-width:520px){
  .wc26-pred-extra-fields,
  .wc26-pred-pens-fields{
    grid-template-columns:1fr auto 1fr;
  }
}




.wc26-section-torneo{
  margin:28px 0 18px;
}
.wc26-term-title{
  font-size:medium;
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 10px;
}
.wc26-term-title__logo{
  width:28px;
  height:28px;
  object-fit:cover;
  border-radius:6px;
}
.wc26-term-title__link{
  text-decoration:none;
  color:inherit;
}
.wc26-term-title__count{
  color:#64748b;
  font-weight:600;
}
.wc26-teams-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
}
.wc26-team-card{
  text-decoration:none;
  color:inherit;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:12px;
  background:var(--wc26-surface,#fff);
  display:flex;
  gap:12px;
  align-items:center;
}
.wc26-team-card__thumb{
  width:48px;
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}
.wc26-team-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.wc26-team-card__fallback-flag{
  opacity:.6;
}
.wc26-team-card__title{
  margin:0;
  font-size:1.05rem;
}
.wc26-team-card__meta{
  color:#6b7280;
  font-size:.9rem;
}
.wc26-teams-pagination{
  margin:16px 0;
}
.wc26-team-filter-card{
  margin:12px 0 16px;
  display:grid;
  grid-template-columns:minmax(220px,1fr) minmax(220px,1fr) auto;
  gap:10px;
  align-items:end;
}
.wc26-team-filter-field{
  display:grid;
  gap:5px;
  margin:0;
}
.wc26-team-filter-field span{
  font-size:12px;
  font-weight:800;
  opacity:.72;
}
.wc26-team-filter-field select,
.wc26-team-filter-field input{
  width:100%;
  min-height:42px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.14);
  padding:8px 10px;
  background:var(--wc26-surface,#fff);
  color:inherit;
}
.wc26-team-filter-actions{
  display:flex;
  align-items:end;
  justify-content:flex-end;
}
.wc26-team-filter-clear{
  min-height:42px;
  white-space:nowrap;
}
.wc26-team-search-feedback{
  grid-column:1/-1;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(0,0,0,.04);
  font-size:13px;
  font-weight:700;
}
.wc26-team-search-feedback[hidden]{
  display:none!important;
}
.wc26-team-search-feedback span{
  opacity:.75;
}
.wc26-team-search-feedback strong{
  color:inherit;
}
.wc26-team-card__tags{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  margin-top:7px;
}
.wc26-team-card__tag{
  display:inline-flex;
  align-items:center;
  min-height:22px;
  padding:3px 8px;
  border:1px solid var(--wc26-border-soft);
  border-radius:999px;
  background:var(--wc26-surface-muted);
  color:var(--wc26-text-soft);
  font-size:11px;
  font-weight:800;
  line-height:1;
}
.wc26-team-card.is-dom-hidden,
.wc26-section-torneo.is-dom-hidden{
  display:none!important;
}
@media (max-width:640px){
  .wc26-team-filter-card{
    grid-template-columns:1fr;
  }
  .wc26-team-filter-actions{
    justify-content:stretch;
  }
  .wc26-team-filter-clear{
    width:100%;
    justify-content:center;
  }
}



/* =========================
   Skeleton loading WC26
========================= */
/* 
html.wc26-skeleton-active .wc26-card,
html.wc26-skeleton-active .wc26-match-card,
html.wc26-skeleton-active .wc26-team-card,
html.wc26-skeleton-active .wc26-ranking-row,
html.wc26-skeleton-active .wc26-top10-card,
html.wc26-skeleton-active .wc26-group-members-card,
html.wc26-skeleton-active .wc26-group-ranking,
body.wc26-skeleton-active .wc26-card,
body.wc26-skeleton-active .wc26-match-card,
body.wc26-skeleton-active .wc26-team-card,
body.wc26-skeleton-active .wc26-ranking-row,
body.wc26-skeleton-active .wc26-top10-card,
body.wc26-skeleton-active .wc26-group-members-card,
body.wc26-skeleton-active .wc26-group-ranking {
  position: relative;
  overflow: hidden;
  min-height: 110px;
}

html.wc26-skeleton-active .wc26-card > *,
html.wc26-skeleton-active .wc26-match-card > *,
html.wc26-skeleton-active .wc26-team-card > *,
html.wc26-skeleton-active .wc26-ranking-row > *,
html.wc26-skeleton-active .wc26-top10-card > *,
html.wc26-skeleton-active .wc26-group-members-card > *,
html.wc26-skeleton-active .wc26-group-ranking > *,
body.wc26-skeleton-active .wc26-card > *,
body.wc26-skeleton-active .wc26-match-card > *,
body.wc26-skeleton-active .wc26-team-card > *,
body.wc26-skeleton-active .wc26-ranking-row > *,
body.wc26-skeleton-active .wc26-top10-card > *,
body.wc26-skeleton-active .wc26-group-members-card > *,
body.wc26-skeleton-active .wc26-group-ranking > * {
  opacity: 0;
  visibility: hidden;
}

html.wc26-skeleton-active .wc26-card::before,
html.wc26-skeleton-active .wc26-match-card::before,
html.wc26-skeleton-active .wc26-team-card::before,
html.wc26-skeleton-active .wc26-ranking-row::before,
html.wc26-skeleton-active .wc26-top10-card::before,
html.wc26-skeleton-active .wc26-group-members-card::before,
html.wc26-skeleton-active .wc26-group-ranking::before,
body.wc26-skeleton-active .wc26-card::before,
body.wc26-skeleton-active .wc26-match-card::before,
body.wc26-skeleton-active .wc26-team-card::before,
body.wc26-skeleton-active .wc26-ranking-row::before,
body.wc26-skeleton-active .wc26-top10-card::before,
body.wc26-skeleton-active .wc26-group-members-card::before,
body.wc26-skeleton-active .wc26-group-ranking::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / .45), transparent),
    linear-gradient(var(--wc26-border, #e5e7eb) 22px, transparent 0),
    linear-gradient(var(--wc26-border-soft, #e5e7eb) 14px, transparent 0),
    linear-gradient(var(--wc26-border-soft, #e5e7eb) 14px, transparent 0),
    linear-gradient(var(--wc26-border, #e5e7eb) 34px, transparent 0);
  background-size:
    180px 100%,
    42% 22px,
    72% 14px,
    58% 14px,
    90px 34px;
  background-position:
    -180px 0,
    18px 22px,
    18px 60px,
    18px 86px,
    calc(100% - 108px) 24px;
  background-repeat: no-repeat;
  animation: wc26SkeletonShimmer 1.1s infinite linear;
}

@keyframes wc26SkeletonShimmer {
  to {
    background-position:
      calc(100% + 180px) 0,
      18px 22px,
      18px 60px,
      18px 86px,
      calc(100% - 108px) 24px;
  }
}

@media (prefers-color-scheme: dark) {
  html.wc26-skeleton-active .wc26-card::before,
  html.wc26-skeleton-active .wc26-match-card::before,
  html.wc26-skeleton-active .wc26-team-card::before,
  html.wc26-skeleton-active .wc26-ranking-row::before,
  html.wc26-skeleton-active .wc26-top10-card::before,
  html.wc26-skeleton-active .wc26-group-members-card::before,
  html.wc26-skeleton-active .wc26-group-ranking::before,
  body.wc26-skeleton-active .wc26-card::before,
  body.wc26-skeleton-active .wc26-match-card::before,
  body.wc26-skeleton-active .wc26-team-card::before,
  body.wc26-skeleton-active .wc26-ranking-row::before,
  body.wc26-skeleton-active .wc26-top10-card::before,
  body.wc26-skeleton-active .wc26-group-members-card::before,
  body.wc26-skeleton-active .wc26-group-ranking::before {
    background:
      linear-gradient(90deg, transparent, rgb(255 255 255 / .08), transparent),
      linear-gradient(rgb(255 255 255 / .10) 22px, transparent 0),
      linear-gradient(rgb(255 255 255 / .08) 14px, transparent 0),
      linear-gradient(rgb(255 255 255 / .08) 14px, transparent 0),
      linear-gradient(rgb(255 255 255 / .10) 34px, transparent 0);
    background-size:
      180px 100%,
      42% 22px,
      72% 14px,
      58% 14px,
      90px 34px;
    background-position:
      -180px 0,
      18px 22px,
      18px 60px,
      18px 86px,
      calc(100% - 108px) 24px;
    background-repeat: no-repeat;
  }
}

.wc26-theme-dark.wc26-skeleton-active .wc26-card::before,
.wc26-theme-dark.wc26-skeleton-active .wc26-match-card::before,
.wc26-theme-dark.wc26-skeleton-active .wc26-team-card::before,
.wc26-theme-dark.wc26-skeleton-active .wc26-ranking-row::before,
.wc26-theme-dark.wc26-skeleton-active .wc26-top10-card::before,
.wc26-theme-dark.wc26-skeleton-active .wc26-group-members-card::before,
.wc26-theme-dark.wc26-skeleton-active .wc26-group-ranking::before,
[data-theme="dark"].wc26-skeleton-active .wc26-card::before,
[data-theme="dark"].wc26-skeleton-active .wc26-match-card::before,
[data-theme="dark"].wc26-skeleton-active .wc26-team-card::before,
[data-theme="dark"].wc26-skeleton-active .wc26-ranking-row::before,
[data-theme="dark"].wc26-skeleton-active .wc26-top10-card::before,
[data-theme="dark"].wc26-skeleton-active .wc26-group-members-card::before,
[data-theme="dark"].wc26-skeleton-active .wc26-group-ranking::before,
body.dark-mode.wc26-skeleton-active .wc26-card::before,
body.dark-mode.wc26-skeleton-active .wc26-match-card::before,
body.dark-mode.wc26-skeleton-active .wc26-team-card::before,
body.dark-mode.wc26-skeleton-active .wc26-ranking-row::before,
body.dark-mode.wc26-skeleton-active .wc26-top10-card::before,
body.dark-mode.wc26-skeleton-active .wc26-group-members-card::before,
body.dark-mode.wc26-skeleton-active .wc26-group-ranking::before {
  background:
    linear-gradient(90deg, transparent, rgb(255 255 255 / .08), transparent),
    linear-gradient(rgb(255 255 255 / .10) 22px, transparent 0),
    linear-gradient(rgb(255 255 255 / .08) 14px, transparent 0),
    linear-gradient(rgb(255 255 255 / .08) 14px, transparent 0),
    linear-gradient(rgb(255 255 255 / .10) 34px, transparent 0);
  background-size:
    180px 100%,
    42% 22px,
    72% 14px,
    58% 14px,
    90px 34px;
  background-position:
    -180px 0,
    18px 22px,
    18px 60px,
    18px 86px,
    calc(100% - 108px) 24px;
  background-repeat: no-repeat;
}

@media (prefers-reduced-motion: reduce) {
  html.wc26-skeleton-active .wc26-card::before,
  html.wc26-skeleton-active .wc26-match-card::before,
  html.wc26-skeleton-active .wc26-team-card::before,
  html.wc26-skeleton-active .wc26-ranking-row::before,
  html.wc26-skeleton-active .wc26-top10-card::before,
  html.wc26-skeleton-active .wc26-group-members-card::before,
  html.wc26-skeleton-active .wc26-group-ranking::before,
  body.wc26-skeleton-active .wc26-card::before,
  body.wc26-skeleton-active .wc26-match-card::before,
  body.wc26-skeleton-active .wc26-team-card::before,
  body.wc26-skeleton-active .wc26-ranking-row::before,
  body.wc26-skeleton-active .wc26-top10-card::before,
  body.wc26-skeleton-active .wc26-group-members-card::before,
  body.wc26-skeleton-active .wc26-group-ranking::before {
    animation: none;
  }
} */




/* ==========================================
   Grid de Torneos
========================================== */

.wc26-grid-torneos{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:20px;
    margin-top:24px;
}

/* ==========================================
   Card
========================================== */

.wc26-comp-card{
    display:flex;
    gap:16px;
    padding:8px;
    border-radius:16px;
    background:var(--wc26-surface);
    border:1px solid var(--wc26-border-soft);
    box-shadow:var(--wc26-shadow-sm);
    text-decoration:none;
    color:inherit;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
    overflow:hidden;
    position:relative;
    align-items: center;
}

.wc26-comp-card:hover{
    transform:translateY(-4px);
    border-color:var(--wc26-accent);
    box-shadow:var(--wc26-shadow-lg);
}

.wc26-comp-card:active{
    transform:translateY(-2px);
}

/* ==========================================
   Logo
========================================== */

.wc26-comp-card__thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:110px;
}

.wc26-comp-card__thumb img{
    max-width:100%;
    max-height:90px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.wc26-comp-card__placeholder{
    width:90px;
    height:90px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    background:var(--wc26-surface-alt);
    border:1px dashed var(--wc26-border-soft);
}

/* ==========================================
   Contenido
========================================== */

.wc26-comp-card__body{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.wc26-comp-card__body h3{
    margin:0;
    font-size:1.15rem;
    font-weight:800;
    line-height:1.2;
}

.wc26-comp-card__body .desc{
    margin:0;
    font-size:.92rem;
    color:var(--wc26-text-muted);
    line-height:1.55;
}

/* ==========================================
   Meta
========================================== */

.wc26-comp-card .meta{
    display:inline-flex;
    align-items:center;
    width:fit-content;
    padding:6px 12px;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
    background:var(--wc26-surface-alt);
    border:1px solid var(--wc26-border-soft);
    color:var(--wc26-text-muted);
}

/* ==========================================
   Glow opcional
========================================== */

.wc26-comp-card::after{
    content:"";
    position:absolute;
    inset:auto -40px -40px auto;
    width:120px;
    height:120px;
    border-radius:50%;
    background:var(--wc26-accent);
    opacity:.08;
    filter:blur(35px);
    pointer-events:none;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:640px){

    .wc26-grid-torneos{
        grid-template-columns:1fr;
        gap:14px;
    }

    .wc26-comp-card{
        padding:16px;
        gap:12px;
    }

    .wc26-comp-card__thumb{
        min-height:80px;
    }

    .wc26-comp-card__thumb img{
        max-height:70px;
    }
}


.wc26-match-days{
  display:block;
  width:100%;
}

.wc26-match-day{
  display:block;
  width:100%;
  border:1px solid var(--wc26-border-soft);
  border-radius:16px;
  background:var(--wc26-surface);
  box-shadow:var(--wc26-shadow-sm);
  overflow:hidden;
}

.wc26-match-day + .wc26-match-day{
  margin-top:8px;
}

.wc26-match-day__summary{
  display:grid;
  grid-template-columns:1fr auto auto;
  align-items:center;
  gap:8px;
  padding:8px;
  cursor:pointer;
  list-style:none;
  user-select:none;
}

.wc26-match-day__summary::-webkit-details-marker{
  display:none;
}

.wc26-match-day__title{
  font-size:1rem;
  line-height:1.25;
}

.wc26-match-day__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:4px 8px;
  border-radius:999px;
  font-size:12px;
  white-space:nowrap;
  transition:background .2s ease,border-color .2s ease,color .2s ease;
  line-height: 1;
}

.wc26-match-day__count-main{
  font-weight:900;
}

.wc26-match-day__count-label{
  opacity:.82;
}

.wc26-match-day__count--completed{
  color:#087443;
  background:rgba(16,185,129,.12);
  border-color:rgba(16,185,129,.32);
}

.wc26-match-day__count--pending{
  color:#9a5b00;
  background:rgba(245,158,11,.13);
  border-color:rgba(245,158,11,.34);
}

.wc26-match-day__icon{
  transition:transform .2s ease;
}

.wc26-match-day[open] .wc26-match-day__icon{
  transform:rotate(180deg);
}

.wc26-match-day__body{
  padding:8px;
}

@media (max-width:640px){
  .wc26-match-day__summary{
    grid-template-columns:1fr auto;
  }

  .wc26-match-day__count{
    width:fit-content;
  }
}


