html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #f0f5f9;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 76px;
}

#main {
  flex: 1;
}

#eventInfo {
  margin: var(--space-md) auto var(--spacing-md, var(--space-md));
  padding-left: var(--event-layout-padding);
  padding-right: var(--event-layout-padding);
}

.event-heading {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: var(--spacing-sm, var(--space-sm)) 0
    var(--spacing-md, var(--space-md));
  color: var(--text-primary, var(--text));
  transition:
    background-color 0.22s ease,
    transform 0.22s ease;
  overflow: hidden;
}

.event-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: color-mix(
    in srgb,
    var(--border-color, var(--border)) 76%,
    transparent
  );
}

.event-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: var(--space-xs);
  width: 4px;
  height: calc(100% - var(--spacing-md, var(--space-md)) - var(--space-xs));
  border-radius: 999px;
  background: color-mix(
    in srgb,
    var(--primary-color, var(--primary)) 78%,
    transparent
  );
}

.event-heading.is-clickable {
  cursor: pointer;
}

.event-heading.is-clickable:hover {
  background: color-mix(in srgb, var(--surface) 68%, transparent);
  transform: translateY(-1px);
}

.event-heading-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-md, var(--space-md));
  padding-left: calc(var(--spacing-sm, var(--space-sm)) + 4px);
}

.event-heading-info {
  flex: 1 1 auto;
  min-width: 0;
}

.event-heading-title {
  margin: 0;
  color: var(--text-primary, var(--text));
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.01em;
  line-height: 1.2;
  word-break: break-word;
}

.event-heading-meta {
  margin-top: var(--spacing-sm, var(--space-sm));
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm, var(--space-sm)) var(--spacing-md, var(--space-md));
}

.event-heading-meta-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: var(--fw-regular);
  line-height: 1.35;
}

.event-heading-meta-item .bi {
  color: color-mix(
    in srgb,
    var(--primary-color, var(--primary)) 72%,
    var(--text-muted) 28%
  );
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.event-heading-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--spacing-sm, var(--space-sm));
  min-height: 32px;
}

.event-heading-actions:empty {
  display: none;
}

.event-heading-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-color, var(--border));
  background: color-mix(in srgb, var(--surface) 74%, var(--background) 26%);
  color: var(--text-primary, var(--text));
  font-size: 0.76rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  white-space: nowrap;
}

.event-heading-status--live {
  background: color-mix(
    in srgb,
    var(--primary-color, var(--primary)) 12%,
    var(--background) 88%
  );
  border-color: color-mix(
    in srgb,
    var(--primary-color, var(--primary)) 38%,
    var(--border-color, var(--border)) 62%
  );
  color: color-mix(
    in srgb,
    var(--primary-color, var(--primary)) 88%,
    var(--text-primary, var(--text)) 12%
  );
}

.event-heading-status--upcoming {
  background: color-mix(in srgb, var(--accent) 14%, var(--background) 86%);
  border-color: color-mix(
    in srgb,
    var(--accent) 36%,
    var(--border-color, var(--border)) 64%
  );
  color: color-mix(
    in srgb,
    var(--accent) 86%,
    var(--text-primary, var(--text)) 14%
  );
}

.event-heading-status--finished {
  background: color-mix(in srgb, var(--text-muted) 16%, var(--background) 84%);
  border-color: color-mix(
    in srgb,
    var(--text-muted) 42%,
    var(--border-color, var(--border)) 58%
  );
  color: color-mix(
    in srgb,
    var(--text-primary, var(--text)) 84%,
    var(--text-muted) 16%
  );
}

.event-heading--compact {
  padding: var(--space-xs) 0 var(--spacing-sm, var(--space-sm));
}

.event-heading--compact .event-heading-title {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.event-heading--compact .event-heading-meta {
  margin-top: var(--space-xs);
}

.event-heading--large {
  padding: var(--spacing-md, var(--space-md)) 0
    calc(var(--spacing-md, var(--space-md)) + 4px);
}

.event-heading--large .event-heading-title {
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
}

.event-heading-placeholder {
  margin: 0;
  color: var(--text-muted);
  text-align: center;
  font-weight: var(--fw-bold);
  letter-spacing: 0.01em;
}

@media (max-width: 991.98px) {
  #eventInfo {
    margin-bottom: var(--spacing-sm, var(--space-sm));
  }

  .event-heading {
    padding: var(--space-xs) 0 var(--spacing-sm, var(--space-sm));
  }

  .event-heading--large {
    padding: var(--spacing-sm, var(--space-sm)) 0
      var(--spacing-md, var(--space-md));
  }
}

@media (max-width: 767.98px) {
  #eventInfo {
    margin-bottom: var(--spacing-sm, var(--space-sm));
    padding-top: var(--space-xs);
  }

  .event-heading-main {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-sm, var(--space-sm));
  }

  .event-heading-title {
    font-size: clamp(1.06rem, 4.4vw, 1.28rem);
  }

  .event-heading-meta {
    gap: var(--space-xs) var(--spacing-sm, var(--space-sm));
    margin-top: var(--space-xs);
  }

  .event-heading-meta-item {
    font-size: 0.85rem;
  }

  .event-heading-actions {
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
  }
}

.filterBTN .btn {
  background-color: var(--nav-active);
  border: none;
  min-width: 80%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#agegroupSELECT {
  margin: 15px;
  max-width: calc(100% - 30px);
}

.weightFilter {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.weightFilter > * {
  flex-grow: 1;
  text-align: center;
}

/* .weightFilter > div:hover {
  cursor: pointer;
  background-color: #31b0d4;
} */

/*@media (min-width: 769px) {
  #agegroupSELECT {
    display: none;
  }

  .weightFilter {
    display: flex !important;
  }
}*/

.filterBTN {
  padding: 10px;
  /* background-color: var(--nav-active); */
  /* background-color: #ffffff; */
  color: #fff;
}

#wrapper {
  position: relative;
  min-height: 100vh;
  /*padding-bottom: 270px;*/
}

/* #banner{
  margin-top: -100px;
 
  z-index: 10;
  backdrop-filter: blur(10px);
  mask: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,0.8) 60%, 
    rgba(0,0,0,0) 100%);
  -webkit-mask: linear-gradient(to bottom, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,0.8) 60%, 
    rgba(0,0,0,0) 100%);
}


#banner p {
  margin-left: 15px;
  font-size: 1.2rem;
  font-weight: 500;
 
}
@media screen and (max-width: 991.98px) {
    
  #banner .title {
    margin-top: 100px;
    font-size: 1.2rem;
  }
  #banner p {
    margin-left: 0px;
    font-size: 0.7rem;
    font-weight: 400;
   
  }
  
} */

.menu2 {
  background-color: #d0e0ec;
}

.menu2 a {
  padding: 10px;
  color: #444;
}

.menu2 a:hover {
  background-color: #f0f5f9;
}

#clubs {
  width: 100%;
}

#matches {
  overflow-x: auto;
}

#clubHeader {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
}

#headerTitle {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 20px;
  width: 100%;
}

.modern-footer {
  background: #f8f9fa;
  border-top: 3px solid #e9ecef;
  padding: 25px 0;
  margin-top: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 0.8;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer-links a:hover {
  color: #495057;
  background: #e9ecef;
}

.footer-links .divider {
  color: #dee2e6;
  font-weight: bold;
}

@media (max-width: 768px) {
  .footer-links {
    gap: 0px;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
    gap: 15px;
  }
}

.darkfooter {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #2c3144;
  padding-top: 30px;
  text-align: left;
}

#footer img {
  max-height: 40px;
}

#footer .pull-right a:not(:last-child):after {
  content: "|";
}

h3 {
  margin-top: 20px;
}

/* 
.card {
  margin-top: 20px;
  margin-bottom: 10px;
}

.card {
  border: none;
}

.card-header {
  background-color: #4F5F74;
  color: #fff;
  border-bottom: 0;
  border-radius: .25rem .25rem 0 0;
} */

h3 {
  font-family: inherit;
  line-height: 1.1;
  font-size: 1.3rem;
  vertical-align: middle;
  margin: 7px 0;
}

#systemNotificationBar {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 960px);
  background: linear-gradient(
    130deg,
    color-mix(in srgb, var(--success) 82%, var(--secondary) 18%),
    color-mix(in srgb, var(--success) 68%, var(--secondary) 32%)
  );
  color: var(--footer-title);
  min-height: 60px;
  text-align: center;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: var(--fw-extrabold);
  line-height: 1.35;
  border: 1px solid color-mix(in srgb, var(--footer-title) 20%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#systemNotificationBar.danger {
  background: linear-gradient(
    130deg,
    color-mix(in srgb, var(--dot-red) 82%, var(--secondary) 18%),
    color-mix(in srgb, var(--dot-red) 68%, var(--secondary) 32%)
  );
}

#systemNotificationBar.info {
  background: linear-gradient(
    130deg,
    color-mix(in srgb, var(--primary) 82%, var(--secondary) 18%),
    color-mix(in srgb, var(--primary) 66%, var(--secondary) 34%)
  );
  font-size: 0.94rem;
  font-style: normal;
  font-weight: var(--fw-bold);
}

#systemNotificationDIV .alert {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #systemNotificationBar {
    top: 8px;
    width: calc(100% - 16px);
    padding: 10px 12px;
    font-size: 0.9rem;
    min-height: 52px;
  }
}

.c_loader {
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid #4a4a4a;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: auto;
  margin-top: 25%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  text-align: center;
  margin: 30px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
}

.not-removed {
  color: #ff0000 !important;
  text-decoration: line-through;
}

.team img {
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.4);
}

/* .weightActive {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0a53be;
} */

.agegroups-container,
#agegroupsDIV {
  position: relative;
  padding: clamp(12px, 1.8vw, 20px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: clamp(10px, 1.4vw, 16px);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  border: 1px solid var(--agegroup-panel-border);
  border-radius: var(--radius-sm);
  background: var(--agegroup-panel-bg);
  box-shadow: var(--agegroup-panel-shadow);
}

#agegroupsDIV {
  width: calc(100% - (2 * var(--event-layout-padding)));
  max-width: calc(var(--container-max) - (2 * var(--event-layout-padding)));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  grid-template-areas:
    "categoryLabel weightLabel"
    "categorySelect weightRow";
  column-gap: clamp(10px, 1.4vw, 16px);
  row-gap: 8px;
  background: color-mix(in srgb, var(--primary) 8%, var(--agegroup-panel-bg));
}

#agegroupsDIV .agegroup-label {
  margin: 0 0 2px 4px;
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

#agegroupsDIV .agegroup-label-category {
  grid-area: categoryLabel;
}

#agegroupsDIV .agegroup-label-weight {
  grid-area: weightLabel;
}

#agegroupsDIV.js-hidden {
  display: none;
}

#agegroupsDIV .agegroup .weight:first-child {
  display: none;
}

.divTotalAthlete {
  max-width: 100%;
  border-radius: var(--radius-sm);
}

.divTotalAthlete .statTotAth {
  border: 1px solid #e1e8ed;
  border-radius: var(--radius-sm);
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px 5px 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.divTotalAthlete h3 {
  color: var(--nav-text);
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 15px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--nav-active);
}

.divTotalAthlete .statItemWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.divTotalAthlete .statItemWrap .statItem {
  background: white;
  padding: 5px 6px;
  box-shadow: var(--shadow);
  transition: none;
  flex: 0 0 auto;
  min-width: fit-content;
  border-radius: var(--radius-sm);
}

.divTotalAthlete .statItemWrap .statHead {
  font-weight: 500;
  color: var(--nav-text);
  font-size: 14px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  background-color: white;
  margin-right: 0 !important;
}

.divTotalAthlete .statItemWrap .statCount {
  background: var(--nav-hover-bg);
  box-shadow: var(--shadow-sm);
  color: var(--nav-active);
  padding: 4px 8px !important;
  border-radius: var(--sharp-border-radius);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  flex-shrink: 0;
  margin-right: 0 !important;
  border-radius: var(--radius-sm);
}

#agegroupsDIV select.ageselector {
  grid-area: categorySelect;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--agegroup-select-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
  text-align-last: left;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-bottom: 0 !important;
  color: var(--agegroup-select-text);
  background-color: var(--agegroup-select-bg);
  padding: 12px 42px 12px 14px;
  min-height: auto;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#agegroupsDIV select.ageselector:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

#agegroupsDIV .agegroup.justify-content-center.d-flex {
  grid-area: weightRow;
  padding: 0;
  border-radius: var(--radius);
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: start !important;
  overflow-x: auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--agegroup-pill-border) transparent;
}

#agegroupsDIV .agegroup .weight {
  background: var(--agegroup-pill-bg);
  color: var(--agegroup-pill-text);
  border: 1px solid var(--agegroup-pill-border);
  border-radius: 999px;
  padding: 0.55rem 1.5rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
  min-height: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}
.filterBTN .btn:hover,
#agegroupsDIV .agegroup .weight:hover {
  box-shadow: var(--shadow-sm);
  background: var(--agegroup-pill-hover-bg);
}

#agegroupsDIV .agegroup .weight.weightActive {
  background-color: var(--agegroup-pill-active-bg);
  color: var(--agegroup-pill-active-text);
  border-color: var(--agegroup-pill-active-bg);
  box-shadow: var(--shadow-primary);
}

#agegroupsDIV .agegroup .weight:focus-visible,
#agegroupsDIV select.ageselector:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--primary) 32%, transparent);
  outline-offset: 1px;
}

#bracketInfoDIV {
  padding: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 20px;
}

#bracketSystemInfo div {
  background: none;
  border: none;
  margin-bottom: 0;
  padding: 0;
  color: var(--nav-active);
}

.btn-outline-secondary {
  border-radius: var(--radius-sm) !important;
}

#collapseAgegroups {
  display: none;
}

#displayAgegroups {
  display: none;
}

#displayAgegroups div {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  #agegroupsDIV {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--agegroup-panel-border);
    max-width: calc(100% - 40px);
    max-height: 80vh;
    overflow-y: auto;
    padding: 14px !important;
    margin: 0 !important;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(1px);
    display: flex;
    flex-direction: column;
    flex: none;
    background: color-mix(
      in srgb,
      var(--primary) 10%,
      var(--agegroup-panel-bg)
    );
    width: auto;
    max-width: calc(100% - 40px);
    /* display: flex; */
  }

  #agegroupsDIV .agegroup-label {
    display: none;
  }

  #agegroupsDIV select.ageselector {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  #agegroupsDIV .agegroup.justify-content-center.d-flex {
    width: 100%;
  }

  #collapseAgegroups {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--agegroup-toggle-text);
    background-color: var(--agegroup-toggle-bg);
    border-radius: 20px;
    border: 1px solid var(--agegroup-toggle-border);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    z-index: 110;
  }

  #displayAgegroups {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--agegroup-panel-border);
    max-height: 80vh;
    width: fit-content;
    min-width: 200px;
    text-wrap: nowrap;
    padding: 5px !important;
    margin: 0 !important;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(1px) !important;
    -webkit-backdrop-filter: blur(1px) !important;
    background: var(--agegroup-mobile-fab-bg);
    color: var(--agegroup-mobile-fab-text);
    font-weight: 600;
    font-size: 14px;
    display: none;
    /* display: flex !important;
    align-items: center !important;
    justify-content: center !important; */
  }
}

@media (min-width: 991.98px) {
  #agegroupsDIV {
    display: grid !important;
  }
  #collapseAgegroups {
    display: none !important;
  }
  #displayAgegroups {
    display: none !important;
  }
}

.contests .card,
.statsWrapper {
  margin-bottom: 15px;
}

.card .card-header {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  background-color: var(--card-header-bg);
  color: var(--surface);
}

.card .card-footer {
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  background-color: var(--card-header-bg);
  color: var(--surface);
}

#contestDIV .fightInfo {
  background-color: var(--card-header-bg);
  color: var(--surface);
  font-weight: 600;
  font-size: 1.1rem;
}

#modulesDIV .card {
  margin: 10px 0;
}

#lastActualization {
  color: var(--surface);
}

.favoritesInfo {
  color: var(--surface);
}

.swiper p,
.swiper .title {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
}
.swiper p {
  color: black !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6) !important;
}


#teamsDIV .card,
#athletesDIV2 .card {
  margin-bottom: 12px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

#teamsDIV .teamVS .teamName {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--nav-text);
}

.teamVS {
  background-color: var(--card-header-bg);
  border-radius: var(--radius-sm);
}

.teamVS .team {
  /* background-color: rgba(255, 255, 255, 0.422); */
  padding: 5px 30px;
  height: 100%;
  /* box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3); */
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.teamVS span[data-teamid] {
  color: var(--surface);
}
