:root{
  --go4m-font:"Cairo",Tahoma,Arial,sans-serif;
  --go4m-bg:#ffffff;
  --go4m-surface:#f8fafc;
  --go4m-card:#ffffff;
  --go4m-border:#e5e7eb;
  --go4m-text:#111827;
  --go4m-muted:#6b7280;
  --go4m-soft:#f1f5f9;
  --go4m-accent:#2563eb;
  --go4m-accent-hover:#1d4ed8;
  --go4m-accent-soft:#dbeafe;
  --go4m-accent-rgb:37,99,235;
  --go4m-on-accent:#ffffff;
  --go4m-live:#dc2626;
  --go4m-upcoming:#f59e0b;
  --go4m-finished:#64748b;
  --go4m-penalty-score:#5f7fa8;
  --go4m-radius:18px;
  --go4m-shadow:0 12px 32px rgba(15,23,42,.08);
}
.go4m{
  direction:rtl;
  box-sizing:border-box;
  width:100%;
  margin:0 auto 22px;
  color:var(--go4m-text);
  font-family:var(--go4m-font);
}
.go4m *,
.go4m *::before,
.go4m *::after{box-sizing:border-box}
.go4m--dark{
  --go4m-bg:#0f172a;
  --go4m-surface:#111c33;
  --go4m-card:#17223a;
  --go4m-border:rgba(255,255,255,.1);
  --go4m-text:#f8fafc;
  --go4m-muted:#cbd5e1;
  --go4m-soft:rgba(255,255,255,.08);
  --go4m-shadow:0 18px 40px rgba(0,0,0,.25);
  --go4m-penalty-score:#9fb6d8;
}
.go4m-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:46px;
  padding:0 15px;
  margin:0 0 10px;
  border:1px solid var(--go4m-border);
  border-radius:16px;
  background:var(--go4m-card);
  box-shadow:0 8px 22px rgba(15,23,42,.045);
}
.go4m-head--tools-only{justify-content:flex-end}
.go4m-title{
  margin:0;
  min-width:0;
  flex:1 1 auto;
  font-family:var(--go4m-font);
  font-size:16px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.2px;
  color:var(--go4m-text);
}
.go4m-timezone{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-width:0;
  flex:0 0 auto;
  font-family:var(--go4m-font);
  color:var(--go4m-muted);
}
.go4m-timezone__select{
  min-width:148px;
  max-width:190px;
  height:31px;
  border:1px solid var(--go4m-border);
  border-radius:11px;
  background:var(--go4m-surface);
  color:#2f4f78;
  font-family:var(--go4m-font);
  font-size:10.8px;
  font-weight:700;
  line-height:1.2;
  padding:0 12px;
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}
.go4m--dark .go4m-timezone__select{color:var(--go4m-text);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
.go4m-timezone__select option,
.go4m-timezone__select optgroup{
  background:#fff;
  color:#111827;
}
.go4m--dark .go4m-timezone__select option,
.go4m--dark .go4m-timezone__select optgroup{
  background:var(--go4m-card);
  color:var(--go4m-text);
}
.go4m-timezone__select:focus{
  border-color:rgba(var(--go4m-accent-rgb),.55);
  box-shadow:0 0 0 3px rgba(var(--go4m-accent-rgb),.12);
}

.go4m-tabs{
  display:flex;
  align-items:center;
  justify-content:stretch;
  gap:7px;
  margin:0 0 10px;
  padding:7px 10px 9px;
  border-radius:16px;
  background:var(--go4m-surface);
  border:1px solid var(--go4m-border);
}
.go4m-tab{
  flex:1 1 0;
  min-width:0;
  height:35px;
  border:1px solid var(--go4m-border);
  border-radius:11px;
  background:rgba(255,255,255,.84);
  color:#37527d;
  font-family:var(--go4m-font);
  font-size:12.5px;
  font-weight:700;
  line-height:18px;
  padding:0 12px;
  cursor:pointer;
  position:relative;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
  transition:background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease;
  -webkit-tap-highlight-color:transparent;
}
.go4m--dark .go4m-tab{background:rgba(255,255,255,.06);color:var(--go4m-muted);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
.go4m-tab--today:not(.is-active){
  background:linear-gradient(180deg,rgba(var(--go4m-accent-rgb),.08) 0%,rgba(var(--go4m-accent-rgb),.035) 100%);
  border-color:rgba(var(--go4m-accent-rgb),.18);
  color:var(--go4m-accent-hover);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.74),0 0 0 1px rgba(var(--go4m-accent-rgb),.025);
}
.go4m-tab:hover:not(.is-active){
  background:var(--go4m-card);
  color:#213a61;
  border-color:rgba(97,118,146,.34);
  box-shadow:0 10px 20px rgba(20,42,74,.09);
}
.go4m-tab--today:hover:not(.is-active){
  background:linear-gradient(180deg,rgba(var(--go4m-accent-rgb),.11) 0%,rgba(var(--go4m-accent-rgb),.045) 100%);
  border-color:rgba(var(--go4m-accent-rgb),.25);
  color:var(--go4m-accent-hover);
}
.go4m-tab.is-active{
  background:linear-gradient(180deg,var(--go4m-accent) 0%,var(--go4m-accent-hover) 100%);
  color:var(--go4m-on-accent);
  border-color:transparent;
  box-shadow:0 8px 18px rgba(var(--go4m-accent-rgb),.16);
}
.go4m-panel[hidden]{display:none!important}
.go4m-panels{min-width:0}
.go4m-list{
  display:grid;
  gap:12px;
}
.go4m-match{
  position:relative;
  overflow:hidden;
  border:1px solid var(--go4m-border);
  border-radius:var(--go4m-radius);
  background:var(--go4m-card);
  box-shadow:var(--go4m-shadow);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
@media (hover:hover) and (pointer:fine){
  .go4m-match--linked:hover{
    transform:translateY(-2px);
    border-color:rgba(var(--go4m-accent-rgb),.35);
  }
}
.go4m-match__body{
  display:grid;
  grid-template-columns:minmax(0,1fr) 150px minmax(0,1fr);
  align-items:center;
  gap:8px;
  padding:10px 11px 8px;
}
.go4m-team{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-align:center;
}
.go4m-team__logo{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--go4m-soft);
  border:1px solid var(--go4m-border);
}
.go4m-team__logo img{
  width:42px;
  height:42px;
  object-fit:contain;
  display:block;
}
.go4m-team__name{
  width:100%;
  max-width:138px;
  min-height:calc(2 * 1.15em);
  color:var(--go4m-accent);
  font-size:11.75px;
  font-weight:700;
  line-height:1.14;
  white-space:normal;
  overflow:hidden;
  overflow-wrap:anywhere;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  text-wrap:balance;
}
.go4m-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  min-width:0;
  min-height:60px;
  text-align:center;
}
.go4m-center__time{
  color:var(--go4m-text);
  font-size:22px;
  font-weight:700;
  font-variant-numeric:lining-nums tabular-nums;
  line-height:1;
  letter-spacing:-.9px;
  white-space:nowrap;
}
.go4m-score{
  display:none;
  align-items:center;
  justify-content:center;
  gap:3px;
  min-height:28px;
  font-size:26px;
  font-weight:800;
  font-variant-numeric:lining-nums tabular-nums;
  direction:rtl;
  line-height:1;
  letter-spacing:-.2px;
  color:var(--go4m-accent);
}
.go4m-score__sep{color:var(--go4m-muted);font-weight:400;opacity:.58}
.go4m-score__home,
.go4m-score__away{display:inline-flex;align-items:baseline;justify-content:center;gap:2px}
.go4m-score__side--winner{font-weight:900;color:var(--go4m-accent);opacity:1}
.go4m-score__side--loser{font-weight:800;opacity:.74}
.go4m-score__side--loser .go4m-score__penalty{opacity:.86}
.go4m-score__penalty{font-size:.56em;font-weight:800;letter-spacing:-.08em;line-height:1;color:var(--go4m-penalty-score);opacity:1}
.go4m-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  min-height:19px;
  padding:4px 9px 3px;
  border-radius:999px;
  border:1px solid var(--go4m-border);
  background:var(--go4m-soft);
  color:var(--go4m-muted);
  font-size:9px;
  font-weight:700;
  line-height:1;
}
.go4m-status--upcoming .go4m-status{
  color:#92400e;
  background:rgba(245,158,11,.14);
}
.go4m-status--live .go4m-status{
  color:#fff;
  background:var(--go4m-live);
}
.go4m-status--live .go4m-status::before{
  content:"";
  width:7px;
  height:7px;
  margin-left:6px;
  border-radius:50%;
  background:#fff;
  animation:go4m-live-dot 1.6s ease-in-out infinite;
}
.go4m-status--finished .go4m-status,
.go4m-status--finished_penalty .go4m-status,
.go4m-status--cancelled .go4m-status{
  color:#fff;
  background:var(--go4m-finished);
}
.go4m-status--postponed .go4m-status{
  color:#7c2d12;
  background:rgba(249,115,22,.16);
}
@keyframes go4m-live-dot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(.72)}}
.go4m-status--live .go4m-score,
.go4m-status--finished .go4m-score,
.go4m-status--finished_penalty .go4m-score{display:flex}
.go4m-status--live .go4m-center__time,
.go4m-status--finished .go4m-center__time,
.go4m-status--finished_penalty .go4m-center__time{display:none}
.go4m-match-footer{
  --go4m-footer-pad-top:7px;
  --go4m-footer-pad-x:12px;
  --go4m-footer-pad-bottom:8px;
  --go4m-footer-gap:10px;
  --go4m-footer-item-gap:4px;
  --go4m-footer-font-size:10.6px;
  --go4m-footer-icon-size:13px;
  --go4m-footer-separator-height:13px;
  width:100%;
  padding:var(--go4m-footer-pad-top) var(--go4m-footer-pad-x) var(--go4m-footer-pad-bottom);
  border-top:1px solid var(--go4m-border);
}
.go4m-match-info{
  width:min(100%,540px);
  margin-inline:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:var(--go4m-footer-gap);
  min-width:0;
}
.go4m-info-item{
  min-width:0;
  display:inline-grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:0 var(--go4m-footer-item-gap);
  color:var(--go4m-muted);
  font-size:var(--go4m-footer-font-size);
  font-weight:600;
  line-height:1.2;
  white-space:nowrap;
}
.go4m-info-item--championship{color:var(--go4m-text);font-weight:700}
.go4m-info-item--channel{color:var(--go4m-muted);font-weight:700}
.go4m-info-item--commentator{color:var(--go4m-muted);font-weight:600}
.go4m-info-icon{
  width:var(--go4m-footer-icon-size);
  height:var(--go4m-footer-icon-size);
  display:block;
  flex:0 0 var(--go4m-footer-icon-size);
  background:currentColor;
  opacity:.78;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:center;
  mask-position:center;
  -webkit-mask-size:contain;
  mask-size:contain;
}
.go4m-info-item--championship .go4m-info-icon{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h10v3a5 5 0 0 1-4 4.9V14h3v2h-8v-2h3v-3.1A5 5 0 0 1 7 6V3Zm2 2v1a3 3 0 1 0 6 0V5H9Zm-4 .5H3.5A2.5 2.5 0 0 0 1 8c0 3 2.2 5.3 5.1 5.8v-2.1C4.3 11.2 3 9.8 3 8a.5.5 0 0 1 .5-.5H5v-2Zm14 0v2h1.5a.5.5 0 0 1 .5.5c0 1.8-1.3 3.2-3.1 3.7v2.1C20.8 13.3 23 11 23 8a2.5 2.5 0 0 0-2.5-2.5H19ZM7 18h10v2H7v-2Z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 3h10v3a5 5 0 0 1-4 4.9V14h3v2h-8v-2h3v-3.1A5 5 0 0 1 7 6V3Zm2 2v1a3 3 0 1 0 6 0V5H9Zm-4 .5H3.5A2.5 2.5 0 0 0 1 8c0 3 2.2 5.3 5.1 5.8v-2.1C4.3 11.2 3 9.8 3 8a.5.5 0 0 1 .5-.5H5v-2Zm14 0v2h1.5a.5.5 0 0 1 .5.5c0 1.8-1.3 3.2-3.1 3.7v2.1C20.8 13.3 23 11 23 8a2.5 2.5 0 0 0-2.5-2.5H19ZM7 18h10v2H7v-2Z'/%3E%3C/svg%3E");
}
.go4m-info-item--channel .go4m-info-icon{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5h14a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3Zm0 2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H5Zm5 3 6 2-6 2v-4Zm-2 11h8v2H8v-2Z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5h14a3 3 0 0 1 3 3v8a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3Zm0 2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H5Zm5 3 6 2-6 2v-4Zm-2 11h8v2H8v-2Z'/%3E%3C/svg%3E");
}
.go4m-info-item--commentator .go4m-info-icon{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4v5a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4Zm-2 4v5a2 2 0 0 0 4 0V6a2 2 0 0 0-4 0Zm-5 5h2a5 5 0 0 0 10 0h2a7 7 0 0 1-6 6.93V21h4v2H7v-2h4v-3.07A7 7 0 0 1 5 11Z'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a4 4 0 0 1 4 4v5a4 4 0 0 1-8 0V6a4 4 0 0 1 4-4Zm-2 4v5a2 2 0 0 0 4 0V6a2 2 0 0 0-4 0Zm-5 5h2a5 5 0 0 0 10 0h2a7 7 0 0 1-6 6.93V21h4v2H7v-2h4v-3.07A7 7 0 0 1 5 11Z'/%3E%3C/svg%3E");
}
.go4m-info-text{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  unicode-bidi:plaintext;
}
.go4m-info-separator{
  width:1px;
  height:var(--go4m-footer-separator-height);
  flex:0 0 1px;
  border-radius:999px;
  background:linear-gradient(to bottom,rgba(148,163,184,.08) 0%,rgba(148,163,184,.58) 22%,rgba(148,163,184,.58) 78%,rgba(148,163,184,.08) 100%);
}
.go4m--dark .go4m-info-icon{opacity:.9}
.go4m-match__link{
  position:absolute;
  inset:0;
  z-index:3;
  text-decoration:none;
  color:inherit;
}
.go4m-match__link:focus-visible{
  outline:3px solid rgba(var(--go4m-accent-rgb),.35);
  outline-offset:-3px;
  border-radius:inherit;
}
.go4m-empty{
  padding:24px;
  border:1px dashed var(--go4m-border);
  border-radius:var(--go4m-radius);
  background:var(--go4m-surface);
  text-align:center;
  color:var(--go4m-muted);
}
.go4m-empty p{margin:0;font-size:14px;font-weight:700}
.go4m--small .go4m-list{gap:10px}
.go4m-match--small .go4m-match__body{
  grid-template-columns:minmax(0,1fr) 78px minmax(0,1fr);
  padding:10px 11px 8px;
  gap:8px;
}
.go4m-match--small .go4m-team{flex-direction:column;justify-content:center;text-align:center;gap:4px}
.go4m-match--small .go4m-team--away{flex-direction:column;text-align:center}
.go4m-match--small .go4m-team__logo{width:38px;height:38px;flex:0 0 38px}
.go4m-match--small .go4m-team__logo img{width:34px;height:34px}
.go4m-match--small .go4m-team__name{max-width:116px;font-size:11px;line-height:1.2;min-height:calc(2 * 1.2em)}
.go4m-match--small .go4m-center{min-height:52px;gap:2px}
.go4m-match--small .go4m-center__time{font-size:15px;letter-spacing:-.6px}
.go4m-match--small .go4m-score{font-size:18px;min-height:24px}
.go4m-match--small .go4m-status{min-width:52px;min-height:19px;padding:4px 9px 3px;font-size:9px}
.go4m-match--small.go4m-status--finished_penalty .go4m-status{min-width:66px;padding-inline:5px;font-size:8.8px;line-height:1;white-space:nowrap}
.go4m--slider{
  --go4m-slider-gap:4px;
  --go4m-slider-side-pad:16px;
  --go4m-slider-item-basis:calc((100% - 12px) / 4);
  --go4m-slider-card-min-height:92px;
  --go4m-slider-body-min-height:92px;
  --go4m-slider-center-width:82px;
  --go4m-slider-nav-size:34px;
  overflow-x:hidden;
  contain:layout paint;
  container-type:inline-size;
  container-name:go4m-slider;
  padding:12px 12px 14px;
  border:1px solid rgba(97,118,146,.16);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(248,250,252,.9) 100%);
  box-shadow:0 8px 24px rgba(15,23,42,.045);
}
.go4m--dark.go4m--slider{background:rgba(255,255,255,.035);border-color:rgba(255,255,255,.08);box-shadow:none}
.go4m--slider .go4m-head{
  min-height:37px;
  gap:8px;
  padding:0 4px;
  margin:0 0 8px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.go4m--slider .go4m-title{font-size:13px;font-weight:800;letter-spacing:-.15px}
.go4m-slider-title-link{
  display:inline-flex;
  align-items:center;
  gap:5px;
  min-width:0;
  text-decoration:none;
  color:var(--go4m-text);
  -webkit-tap-highlight-color:transparent;
}
.go4m-slider-title-link::before{
  content:"";
  display:inline-block;
  flex:0 0 auto;
  width:2px;
  height:15px;
  border-radius:999px;
  background:var(--go4m-accent);
  transform:translateY(-.5px);
}
.go4m-slider-title-link:hover{color:var(--go4m-accent)}
.go4m-slider-title-link:focus-visible{outline:none;color:var(--go4m-accent)}
.go4m-slider-title-link__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  border-radius:999px;
  background:rgba(var(--go4m-accent-rgb),.08);
  color:var(--go4m-accent);
  font-size:18px;
  font-weight:900;
  line-height:1;
  transform:translateY(-.5px);
}
.go4m--dark .go4m-slider-title-link__icon{background:rgba(var(--go4m-accent-rgb),.16)}
.go4m--slider .go4m-timezone{gap:5px}
.go4m--slider .go4m-timezone__select{
  height:31px;
  border-radius:12px;
  border-color:rgba(97,118,146,.17);
  background:rgba(255,255,255,.94);
  color:#3c546f;
  font-size:10.8px;
  font-weight:600;
  padding-inline:12px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.74);
}
.go4m--dark.go4m--slider .go4m-timezone__select{background:rgba(255,255,255,.055);color:var(--go4m-muted);border-color:rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.06)}
.go4m-slider{
  position:relative;
  width:100%;
  max-width:100%;
  min-width:0;
  padding-top:8px;
  border-top:1px solid rgba(97,118,146,.1);
}
.go4m--dark.go4m--slider .go4m-slider{border-top-color:rgba(255,255,255,.08)}
.go4m-slider__viewport{
  position:relative;
  width:100%;
  max-width:100%;
  min-height:calc(var(--go4m-slider-card-min-height) + 6px);
  padding:0 var(--go4m-slider-side-pad) 2px;
  overflow:hidden;
}
.go4m-slider__track{
  display:flex;
  flex-wrap:nowrap;
  justify-content:safe center;
  gap:var(--go4m-slider-gap);
  width:100%;
  max-width:100%;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  overscroll-behavior-x:contain;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  padding:4px 1px 2px;
}
.go4m-slider__track::-webkit-scrollbar{display:none}
.go4m-slider__item{
  flex:0 0 var(--go4m-slider-item-basis);
  min-width:var(--go4m-slider-item-basis);
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.go4m-match--slider{
  min-height:var(--go4m-slider-card-min-height);
  margin:0;
  border-color:rgba(97,118,146,.16);
  background:rgba(255,255,255,.92);
  box-shadow:none;
}
.go4m-match--slider .go4m-match__body{
  grid-template-columns:minmax(0,1fr) var(--go4m-slider-center-width) minmax(0,1fr);
  min-height:var(--go4m-slider-body-min-height);
  padding:7px 10px;
  gap:4px;
}
.go4m-match--slider .go4m-team{gap:3px}
.go4m-match--slider .go4m-team__logo{width:36px;height:36px}
.go4m-match--slider .go4m-team__logo img{width:30px;height:30px}
.go4m-match--slider .go4m-team__name{font-size:11.35px;line-height:1.15}
.go4m-match--slider .go4m-center{min-height:42px;gap:4px}
.go4m-match--slider .go4m-center__time{font-size:21.5px;font-weight:900;letter-spacing:-.015em}
.go4m-match--slider .go4m-score{font-size:24px}
.go4m-match--slider.go4m-status--finished_penalty .go4m-status{min-width:66px;padding-inline:5px;font-size:8.8px;white-space:nowrap}
.go4m-match--slider .go4m-status{min-width:54px;min-height:17px;padding:2px 7px;font-size:10px;font-weight:800}
.go4m-slider__nav{
  position:absolute;
  top:calc(50% + 1px);
  transform:translateY(-50%);
  width:var(--go4m-slider-nav-size);
  height:var(--go4m-slider-nav-size);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--go4m-border);
  border-radius:999px;
  background:var(--go4m-card);
  color:var(--go4m-text);
  box-shadow:0 8px 20px rgba(15,35,55,.08);
  cursor:pointer;
  z-index:20;
  line-height:1;
  padding:0;
  transition:opacity .15s ease,background-color .15s ease,border-color .15s ease,box-shadow .15s ease;
}
.go4m-slider__nav--prev{left:1px}
.go4m-slider__nav--next{right:1px}
.go4m[dir="rtl"] .go4m-slider__nav--prev{right:1px;left:auto}
.go4m[dir="rtl"] .go4m-slider__nav--next{left:1px;right:auto}
.go4m-slider__nav svg{width:14px;height:14px;fill:currentColor;stroke:currentColor}
.go4m[dir="rtl"] .go4m-slider__nav svg{transform:scaleX(-1)}
.go4m-slider__nav:focus-visible{
  outline:none;
  border-color:rgba(var(--go4m-accent-rgb),.38);
  box-shadow:0 0 0 3px rgba(var(--go4m-accent-rgb),.12),0 10px 24px rgba(var(--go4m-accent-rgb),.14);
}
.go4m-slider__nav:hover:not(:disabled):not(.is-disabled){
  background:var(--go4m-surface);
  border-color:rgba(var(--go4m-accent-rgb),.25);
  box-shadow:0 10px 24px rgba(var(--go4m-accent-rgb),.12);
}
.go4m-slider__nav:disabled,
.go4m-slider__nav.is-disabled{
  opacity:.35;
  cursor:default;
  box-shadow:none;
}

@container go4m-slider (max-width:1100px){
  .go4m-slider{--go4m-slider-item-basis:calc((100% - 12px) / 3)}
}
@container go4m-slider (max-width:992px){
  .go4m-slider{--go4m-slider-item-basis:calc((100% - 6px) / 2)}
}
@container go4m-slider (max-width:768px){
  .go4m-slider{
    --go4m-slider-gap:4px;
    --go4m-slider-side-pad:12px;
    --go4m-slider-item-basis:100%;
    --go4m-slider-card-min-height:88px;
    --go4m-slider-body-min-height:88px;
    --go4m-slider-center-width:78px;
    --go4m-slider-nav-size:28px;
  }
  .go4m-match--slider{border-radius:14px}
  .go4m--slider{padding:8px 10px 10px;border-radius:18px;border-color:rgba(97,118,146,.17);background:#fff;box-shadow:0 7px 20px rgba(15,23,42,.04)}
  .go4m--slider .go4m-head{min-height:31px;gap:6px;padding:0 2px;margin-bottom:5px;border-radius:0;justify-content:space-between}
  .go4m--slider .go4m-slider{padding-top:6px}
  .go4m--slider .go4m-slider__viewport{min-height:calc(var(--go4m-slider-card-min-height) + 1px);padding:0 var(--go4m-slider-side-pad) 1px}
  .go4m--slider .go4m-title{font-size:11.4px;font-weight:800;letter-spacing:-.25px}
  .go4m-slider-title-link{gap:4px;width:100%;min-width:0;justify-content:flex-start}
  .go4m-slider-title-link::before{width:2px;height:13px}
  .go4m-slider-title-link__icon{width:17px;height:17px;font-size:15px}
  .go4m--slider .go4m-timezone{flex:0 0 auto;gap:0}
  .go4m--slider .go4m-timezone__select{min-width:98px;max-width:128px;height:26px;line-height:26px;padding-block:0;padding-inline:6px;border-radius:8px;font-size:9.5px;font-weight:500}
  .go4m-match--slider .go4m-match__body{
    grid-template-columns:minmax(0,1fr) var(--go4m-slider-center-width) minmax(0,1fr);
    min-height:var(--go4m-slider-body-min-height);
    padding:6px 8px;
    gap:4px;
  }
  .go4m-match--slider .go4m-team__logo{width:34px;height:34px}
  .go4m-match--slider .go4m-team__logo img{width:28px;height:28px}
  .go4m-match--slider .go4m-team__name{font-size:10.75px}
  .go4m-match--slider .go4m-center__time{font-size:19.5px}
  .go4m-match--slider .go4m-score{font-size:21.5px}
  .go4m-match--slider .go4m-status{min-width:48px;min-height:16px;padding-inline:6px;font-size:9.25px}
  .go4m-match--slider.go4m-status--finished_penalty .go4m-status{min-width:62px;padding-inline:4px;font-size:9px}
}

.go4m-mobile-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:100%;
  margin-top:12px;
  border:0;
  border-radius:14px;
  background:linear-gradient(180deg,var(--go4m-accent) 0%,var(--go4m-accent-hover) 100%);
  color:var(--go4m-on-accent);
  font-family:var(--go4m-font);
  font-weight:700;
  font-size:13px;
  line-height:1.4;
  padding:11px 14px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(var(--go4m-accent-rgb),.16);
}
.go4m-mobile-toggle__arrows{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:0;
  color:var(--go4m-on-accent);opacity:.82;
}
.go4m-mobile-toggle__icon{
  width:18px;
  height:11px;
  fill:currentColor;
  animation:go4m-toggle-bounce 1.4s ease-in-out infinite;
}
.go4m-mobile-toggle__icon--two{margin-top:-5px;animation-delay:.12s}
.go4m--mobile-expanded .go4m-mobile-toggle__arrows{transform:rotate(180deg);color:var(--go4m-on-accent);opacity:1}
@keyframes go4m-toggle-bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(3px)}}
@media (max-width:768px){
  .go4m-head{min-height:42px;align-items:center;gap:8px;padding:0 11px;margin-bottom:9px;border-radius:14px}
  .go4m-title{font-size:12.8px;line-height:1;letter-spacing:-.35px}
  .go4m-timezone{gap:5px}
  .go4m-timezone__select{min-width:126px;max-width:154px;height:29px;font-size:10px;padding-inline:10px;border-radius:10px}
  .go4m{margin-bottom:16px}
  .go4m-tabs{gap:5px;padding:6px 5px 7px;margin-bottom:10px;border-radius:13px}
  .go4m-tab{min-width:0;flex:1;height:31px;font-size:11.25px;line-height:16px;padding:0 6px;border-radius:9px}
  .go4m-match__body{
    grid-template-columns:minmax(0,1fr) 108px minmax(0,1fr);
    gap:6px;
    padding:8px 8px 7px;
  }
  .go4m-team{gap:4px}
  .go4m-team__logo{width:40px;height:40px}
  .go4m-team__logo img{width:34px;height:34px}
  .go4m-team__name{font-size:10.75px;line-height:1.16;max-width:96px}
  .go4m-center{min-height:54px;gap:3px}
  .go4m-center__time{font-size:17px;letter-spacing:-.4px}
  .go4m-score{font-size:20px;gap:3px}
  .go4m-status{min-width:52px;min-height:18px;font-size:9px;padding:3px 7px}
  .go4m-match-footer{--go4m-footer-pad-top:6px;--go4m-footer-pad-x:8px;--go4m-footer-pad-bottom:7px;--go4m-footer-gap:8px;--go4m-footer-item-gap:3px;--go4m-footer-font-size:9.5px;--go4m-footer-separator-height:11px}
  .go4m-match-info{width:min(100%,340px)}
  .go4m-info-item--commentator,
  .go4m-info-separator--commentator{display:none}
  .go4m-match-footer--only-commentator{display:none}
  .go4m-match--small .go4m-match__body{grid-template-columns:minmax(0,1fr) 78px minmax(0,1fr);gap:6px;padding:8px 8px 7px}
  .go4m-match--small .go4m-team{flex-direction:column;text-align:center;gap:4px}
  .go4m-match--small .go4m-team--away{flex-direction:column;text-align:center}
  .go4m-match--small .go4m-team__logo{width:36px;height:36px}
  .go4m-match--small .go4m-team__logo img{width:30px;height:30px}
  .go4m-match--small .go4m-team__name{font-size:10.5px;max-width:86px}
  .go4m--mobile-collapsible .go4m-match--mobile-hidden{display:none}
  .go4m--mobile-collapsible.go4m--mobile-expanded .go4m-match--mobile-hidden{display:block}
  .go4m--mobile-collapsible .go4m-mobile-toggle{display:flex}
}
@media (max-width:480px){
  .go4m-head{flex-wrap:nowrap;justify-content:space-between;text-align:initial}
  .go4m-head--tools-only{justify-content:center}
  .go4m-title{width:auto;font-size:12.5px}
  .go4m-timezone{width:auto;justify-content:flex-end}
  .go4m-tabs{gap:4px;padding:6px 5px 7px}
  .go4m-tab{height:30px;font-size:10.75px;padding:0 5px;border-radius:8px}
  .go4m-match__body{grid-template-columns:minmax(0,1fr) 102px minmax(0,1fr);gap:5px;padding:7px 7px 6px}
  .go4m-team__logo{width:34px;height:34px}
  .go4m-team__logo img{width:30px;height:30px}
  .go4m-team__name{font-size:9.5px;max-width:72px;line-height:1.15}
  .go4m-center{min-height:52px;gap:2px}
  .go4m-center__time{font-size:14px;letter-spacing:-.1px}
  .go4m-score{font-size:17px}
  .go4m-status{font-size:9px;min-height:18px;padding:3px 6px}
  .go4m-match--small .go4m-match__body{grid-template-columns:minmax(0,1fr) 74px minmax(0,1fr)}
  .go4m-match--small .go4m-team__logo{width:34px;height:34px}
  .go4m-match--small .go4m-team__logo img{width:28px;height:28px}
  .go4m-match--small .go4m-team__name{font-size:9.5px;max-width:72px}
}

.go4m-time-display{
  display:inline-flex;
  align-items:baseline;
  justify-content:center;
  gap:.18em;
  white-space:nowrap;
}
.go4m-time-clock{
  direction:ltr;
  unicode-bidi:isolate;
  font-variant-numeric:lining-nums tabular-nums;
}
.go4m-time-meridiem{
  font-size:.52em;
  font-weight:800;
  letter-spacing:0;
  line-height:1;
  opacity:.86;
}

/* Go4 Matches Public View System
   Final identity-normalized frontend rules for public shortcodes.
   These rules define the approved Go4 visual system for table, small, and slider views without changing PHP or JavaScript output. */

/* Shared timezone selector metrics for public shortcode shells. */
.go4m.go4m--table[data-go4m-view="table"] .go4m-timezone__select,
.go4m.go4m--small[data-go4m-view="small"] .go4m-timezone__select,
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-timezone__select{
  font-family:var(--go4m-font) !important;
  font-size:10.8px !important;
  font-weight:700 !important;
  line-height:normal !important;
  min-width:148px !important;
  height:31px !important;
  padding:0 31px 0 12px !important;
}
@media (max-width:480px){
  .go4m.go4m--table[data-go4m-view="table"] .go4m-timezone__select,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-timezone__select,
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-timezone__select{
    font-family:var(--go4m-font) !important;
    font-size:10px !important;
    font-weight:700 !important;
    line-height:normal !important;
    min-width:114px !important;
    height:29px !important;
    padding:0 31px 0 12px !important;
  }
}

/* Go4 Matches Table + Small Views
   Shared fixture shell for the large and compact table views. Layout-specific match metrics stay in their original rules above. */
.go4m.go4m--table[data-go4m-view="table"],
.go4m.go4m--small[data-go4m-view="small"]{
  overflow:hidden;
  position:relative;
  padding:0;
  border:1px solid rgba(97,118,146,.16);
  background:#f7f9fc;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(20,42,74,.035);
  font-family:var(--go4m-font);
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-head,
.go4m.go4m--small[data-go4m-view="small"] .go4m-head{
  height:46px;
  min-height:46px;
  overflow:hidden;
  padding:0 15px;
  margin:0;
  border:0;
  border-bottom:1px solid rgba(97,118,146,.12);
  border-radius:0;
  background:rgba(255,255,255,.96);
  box-shadow:none;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-title,
.go4m.go4m--small[data-go4m-view="small"] .go4m-title{
  font-size:16px;
  font-weight:700;
  line-height:1;
  letter-spacing:-.2px;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-tabs,
.go4m.go4m--small[data-go4m-view="small"] .go4m-tabs{
  display:flex;
  justify-content:stretch;
  gap:7px;
  padding:7px 10px 9px;
  margin:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-tab,
.go4m.go4m--small[data-go4m-view="small"] .go4m-tab{
  height:35px;
  border-radius:11px;
  padding:0 12px;
  font-size:12.5px;
  line-height:18px;
  font-weight:700;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-panels,
.go4m.go4m--small[data-go4m-view="small"] .go4m-panels{
  padding:0 10px 9px;
  overflow:hidden;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-list,
.go4m.go4m--small[data-go4m-view="small"] .go4m-list{
  gap:7px;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-match,
.go4m.go4m--small[data-go4m-view="small"] .go4m-match{
  width:100%;
  margin:0;
  border:1px solid rgba(97,118,146,.13);
  border-radius:11px;
  background:var(--go4m-card);
  box-shadow:none;
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease,background-color .18s ease;
}
@media (hover:hover) and (pointer:fine){
  .go4m.go4m--table[data-go4m-view="table"] .go4m-match--linked:hover,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-match--linked:hover{
    transform:translateY(-1px);
    border-color:rgba(97,118,146,.28);
    box-shadow:0 10px 22px rgba(20,42,74,.065);
  }
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-empty,
.go4m.go4m--small[data-go4m-view="small"] .go4m-empty{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 16px;
  border:0;
  border-radius:0;
  background:linear-gradient(180deg,#fcfdff 0%,#f5f8fc 100%);
  color:#8c99ab;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-empty p,
.go4m.go4m--small[data-go4m-view="small"] .go4m-empty p{
  margin:0;
  font-weight:700;
  line-height:1.6;
}
.go4m.go4m--table[data-go4m-view="table"] .go4m-empty p{font-size:14px}
.go4m.go4m--small[data-go4m-view="small"] .go4m-empty p{font-size:13px}
.go4m.go4m--table[data-go4m-view="table"].go4m--dark,
.go4m.go4m--small[data-go4m-view="small"].go4m--dark{
  background:var(--go4m-surface);
  border-color:var(--go4m-border);
}
.go4m.go4m--table[data-go4m-view="table"].go4m--dark .go4m-head,
.go4m.go4m--small[data-go4m-view="small"].go4m--dark .go4m-head{
  background:var(--go4m-card);
  border-bottom-color:var(--go4m-border);
}
.go4m.go4m--table[data-go4m-view="table"].go4m--dark .go4m-empty,
.go4m.go4m--small[data-go4m-view="small"].go4m--dark .go4m-empty{
  background:var(--go4m-surface);
  color:var(--go4m-muted);
}
@media (max-width:767px){
  .go4m.go4m--table[data-go4m-view="table"] .go4m-panels,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-panels{
    padding:0 5px 2px;
  }
  .go4m.go4m--table[data-go4m-view="table"] .go4m-tabs,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-tabs{
    gap:5px;
    padding:6px 5px 7px;
  }
  .go4m.go4m--table[data-go4m-view="table"] .go4m-tab,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-tab{
    height:31px;
    border-radius:9px;
    padding:0 6px;
    font-size:11.25px;
    line-height:16px;
  }
}
@media (max-width:480px){
  .go4m.go4m--table[data-go4m-view="table"] .go4m-head,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-head{
    height:42px;
    min-height:42px;
    padding:0 11px;
  }
  .go4m.go4m--table[data-go4m-view="table"] .go4m-title,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-title{
    font-size:12.5px;
    letter-spacing:-.35px;
  }
  .go4m.go4m--table[data-go4m-view="table"] .go4m-tabs,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-tabs{
    gap:4px;
    padding:6px 5px 7px;
  }
  .go4m.go4m--table[data-go4m-view="table"] .go4m-tab,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-tab{
    height:30px;
    border-radius:8px;
    padding:0 5px;
    font-size:10.75px;
  }
  .go4m.go4m--table[data-go4m-view="table"] .go4m-empty,
  .go4m.go4m--small[data-go4m-view="small"] .go4m-empty{
    min-height:88px;
  }
}

/* Go4 Matches Slider View
   Unified fixture shell for the slider view while preserving the linked title arrow and existing slider card behavior. */
.go4m.go4m--slider[data-go4m-view="slider"]{
  overflow:hidden;
  position:relative;
  padding:0;
  border:1px solid rgba(97,118,146,.16);
  background:#f7f9fc;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(20,42,74,.035);
  font-family:var(--go4m-font);
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-head{
  height:46px;
  min-height:46px;
  overflow:hidden;
  padding:0 15px;
  margin:0;
  border:0;
  border-bottom:1px solid rgba(97,118,146,.12);
  border-radius:0;
  background:rgba(255,255,255,.96);
  box-shadow:none;
  gap:12px;
  justify-content:space-between;
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-title{
  font-size:13px;
  font-weight:800;
  line-height:1;
  letter-spacing:-.15px;
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider-title-link{
  gap:5px;
  min-width:0;
  justify-content:flex-start;
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider-title-link::before{
  width:2px;
  height:15px;
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider-title-link__icon{
  width:20px;
  height:20px;
  font-size:18px;
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-timezone{
  flex:0 0 auto;
  gap:0;
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-timezone__select{
  border-radius:11px;
  border-color:rgba(97,118,146,.17);
  background:rgba(255,255,255,.94);
  color:#3c546f;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.74);
}
.go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider{
  padding:8px 10px 10px;
  border-top:0;
}
.go4m.go4m--slider[data-go4m-view="slider"].go4m--dark{
  background:var(--go4m-surface);
  border-color:var(--go4m-border);
  box-shadow:none;
}
.go4m.go4m--slider[data-go4m-view="slider"].go4m--dark .go4m-head{
  background:var(--go4m-card);
  border-bottom-color:var(--go4m-border);
}
.go4m.go4m--slider[data-go4m-view="slider"].go4m--dark .go4m-timezone__select{
  background:rgba(255,255,255,.055);
  color:var(--go4m-muted);
  border-color:rgba(255,255,255,.1);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.go4m.go4m--slider[data-go4m-view="slider"].go4m--dark .go4m-match--slider{
  background:var(--go4m-card);
  border-color:var(--go4m-border);
}
.go4m.go4m--slider[data-go4m-view="slider"].go4m--dark .go4m-match--slider .go4m-team__logo{
  background:var(--go4m-soft);
  border-color:var(--go4m-border);
}
@media (max-width:767px){
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider{
    padding:6px 5px 8px;
  }
}
@media (max-width:480px){
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-head{
    height:42px;
    min-height:42px;
    padding:0 11px;
    gap:6px;
  }
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-title{
    font-size:11.4px;
    letter-spacing:-.25px;
  }
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider-title-link{
    gap:4px;
  }
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider-title-link::before{
    height:13px;
  }
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-slider-title-link__icon{
    width:17px;
    height:17px;
    font-size:15px;
  }
  .go4m.go4m--slider[data-go4m-view="slider"] .go4m-timezone__select{
    max-width:128px;
    border-radius:10px;
  }
}


/* Hide local-time regroupable content until the first browser timezone grouping is applied. */
.go4m[data-go4m-local-day-grouping="1"][data-go4m-local-grouped="0"] .go4m-panels,
.go4m[data-go4m-local-day-grouping="1"][data-go4m-local-grouped="0"] [data-go4m-slider-shell],
.go4m[data-go4m-local-day-grouping="1"][data-go4m-local-grouped="0"] [data-go4m-slider-empty] {
    opacity: 0;
    visibility: hidden;
}

/* Keep dynamic timezone regrouping hidden states authoritative across table and slider views. */
.go4m [hidden] {
    display: none !important;
}
