:root {
  --bg: #020814;
  --bg2: #061b38;
  --panel: rgba(4, 16, 36, .82);
  --panel2: rgba(7, 30, 62, .72);
  --blue: #0aa8ff;
  --blue2: #00d5ff;
  --cyan: #42efff;
  --text: #f5f8ff;
  --muted: #a7b8d2;
  --border: rgba(0, 170, 255, .22);
  --border2: rgba(0, 213, 255, .34);
  --danger: #ff2d5f;
  --green: #61ff54;
  --gold: #d7b36f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { min-height: 100%; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 205, 255, .16), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(28, 95, 255, .18), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(0, 180, 255, .08), transparent 38%),
    linear-gradient(135deg, #03101f 0%, #06172d 42%, #0b1d4a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 220, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 220, 255, .045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 20%, #000, transparent 72%);
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 15%, transparent 0 26%, rgba(0, 213, 255, .08) 26.2%, transparent 26.6%),
    radial-gradient(circle at 14% 88%, transparent 0 32%, rgba(0, 213, 255, .06) 32.1%, transparent 32.5%);
}

a { color: inherit; text-decoration: none; }

.site-shell {
  width: min(1460px, calc(100% - 48px));
  margin: 14px auto 0;
  position: relative;
  z-index: 1;
}

/* Top bar */

.topbar {
  min-height: 44px;
  padding: 7px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(2, 10, 24, .9), rgba(4, 18, 42, .82));
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.brand img {
  width: 170px;
  max-width: 30vw;
  display: block;
}

.top-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-pill,
.btn {
  border: 1px solid var(--border2);
  border-radius: 12px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1.25px;
  padding: 9px 18px;
  transition: .22s ease;
  white-space: nowrap;
}

.nav-pill {
  background: rgba(3, 14, 32, .72);
}

.nav-pill-primary,
.btn-primary {
  background: linear-gradient(135deg, #1bc7ff, #087dff);
  border-color: rgba(0, 180, 255, .8);
  color: white;
  box-shadow: 0 14px 34px rgba(0, 150, 255, .22);
}

.nav-pill:hover,
.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

/* Hero */

.hero-panel {
  min-height: 545px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 50%, rgba(13, 111, 203, .26), transparent 36%),
    linear-gradient(135deg, rgba(2, 10, 24, .92), rgba(6, 26, 55, .72));
  box-shadow: 0 26px 90px rgba(0, 0, 0, .32);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 41% 59%;
  align-items: center;
  padding: 56px 54px;
  margin-bottom: 26px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 204, 255, .08), transparent 22%, transparent 72%, rgba(0, 119, 255, .12)),
    radial-gradient(circle at 83% 64%, transparent 0 34%, rgba(0, 213, 255, .13) 34.2%, transparent 34.6%);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  color: var(--blue2);
  letter-spacing: 4px;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 18px;
}

.live-kicker {
  color: white;
  letter-spacing: 4px;
  font-weight: 900;
  font-size: .82rem;
  margin-bottom: 8px;
}

.live-kicker span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--danger);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 16px rgba(255, 45, 95, .8);
}

h1 {
  font-size: clamp(4.4rem, 7vw, 7.8rem);
  line-height: .91;
  letter-spacing: -5px;
  margin-bottom: 28px;
  text-shadow: 0 5px 0 rgba(0, 170, 255, .22);
}

h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 520px;
  color: #d6e4f7;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn-secondary {
  background: rgba(2, 12, 30, .62);
}

/* Bracket illustration */

.bracket-showcase {
  position: relative;
  z-index: 1;
  height: 420px;
  opacity: .82;
}

.round-label {
  position: absolute;
  color: #7defff;
  letter-spacing: 4px;
  font-size: .7rem;
  font-weight: 900;
  opacity: .65;
}

.round-label.qf { left: 10%; top: 3%; }
.round-label.sf { left: 48%; top: 13%; }
.round-label.gf { right: 4%; top: 23%; }

.bracket-match {
  position: absolute;
  width: 230px;
  border: 1px solid rgba(0, 207, 255, .28);
  border-radius: 12px;
  background: rgba(3, 14, 33, .72);
  box-shadow: inset 0 0 40px rgba(0, 160, 255, .05), 0 0 25px rgba(0, 160, 255, .08);
  padding: 11px;
}

.bracket-match div {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b9cbe5;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.bracket-match div:last-child { border-bottom: 0; }
.bracket-match span { font-size: .84rem; opacity: .8; }
.bracket-match strong { color: white; font-size: 1rem; }

.match-a { left: 9%; top: 45px; }
.match-b { left: 9%; top: 140px; }
.match-c { left: 9%; top: 235px; }
.match-d { left: 9%; top: 330px; }
.match-e { left: 47%; top: 108px; }
.match-f { left: 47%; top: 285px; }
.match-g { right: 0; top: 200px; }

.connector {
  position: absolute;
  border-color: rgba(112, 225, 255, .6);
  filter: drop-shadow(0 0 8px rgba(0, 200, 255, .45));
}

.c1 { left: 37%; top: 89px; width: 70px; height: 94px; border-top: 2px solid; border-right: 2px solid; }
.c2 { left: 37%; top: 183px; width: 70px; border-top: 2px solid; }
.c3 { left: 37%; top: 279px; width: 70px; height: 94px; border-top: 2px solid; border-right: 2px solid; }
.c4 { left: 37%; top: 373px; width: 70px; border-top: 2px solid; }
.c5 { left: 76%; top: 152px; width: 72px; height: 91px; border-top: 2px solid; border-right: 2px solid; }
.c6 { left: 76%; top: 331px; width: 72px; height: 0; border-top: 2px solid; }

/* Live section */

.live-panel,
.list-card,
.capability-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(2, 10, 24, .9), rgba(5, 23, 52, .74));
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.live-panel {
  border-radius: 24px;
  padding: 34px 34px 28px;
  margin-bottom: 26px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}

.section-head h2,
.list-card h2 {
  font-size: clamp(1.7rem, 2.3vw, 2.5rem);
  line-height: 1.05;
}

.section-arrows {
  display: flex;
  gap: 10px;
}

.section-arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  background: rgba(0, 137, 255, .14);
  color: white;
  font-size: 2rem;
  line-height: 1;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stream-card {
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(6, 20, 44, .9);
  transition: .22s ease;
}

.stream-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 213, 255, .48);
  box-shadow: 0 22px 55px rgba(0, 153, 255, .14);
}

.stream-art {
  height: 165px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 50% 40%, rgba(0, 210, 255, .35), transparent 23%),
    linear-gradient(135deg, #142d5e, #071321 62%, #231449);
  overflow: hidden;
}

.stream-art::before {
  content: "";
  position: absolute;
  inset: 20% -20%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 36px),
    linear-gradient(130deg, transparent 35%, rgba(0, 213, 255, .28), transparent 65%);
  transform: skewY(-7deg);
}

.art-two {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 52% 36%, rgba(255, 158, 42, .34), transparent 26%),
    linear-gradient(135deg, #24325d, #071321 62%, #052b50);
}
.art-three {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 54% 38%, rgba(187, 63, 255, .38), transparent 28%),
    linear-gradient(135deg, #27315e, #071321 62%, #421459);
}

.live-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--danger);
  color: white;
  font-weight: 900;
  font-size: .78rem;
  border-radius: 9px;
  padding: 8px 12px;
}

.viewer-count {
  position: absolute;
  right: 16px;
  top: 16px;
  color: white;
  background: rgba(0,0,0,.42);
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 800;
  font-size: .8rem;
}

.stream-body { padding: 20px; }

.event-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}

.event-row img,
.mini-row img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0, 160, 255, .1);
  border: 1px solid var(--border);
  padding: 7px;
}

.event-row h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.event-row p,
.stream-meta span,
.mini-row span,
.capability-card p {
  color: var(--muted);
}

.stream-meta {
  display: grid;
  gap: 8px;
  font-size: 1rem;
}

/* Capability cards */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.capability-card {
  border-radius: 22px;
  min-height: 315px;
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: .22s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 213, 255, .44);
  box-shadow: 0 26px 60px rgba(0, 174, 255, .13);
}

.cap-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin-bottom: 28px;
  background: radial-gradient(circle at 35% 25%, #38edff, #0752b5 72%);
  box-shadow: 0 0 35px rgba(0, 170, 255, .38);
  position: relative;
}

.cap-icon::before,
.cap-icon::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 4px solid white;
  border-radius: 4px;
}

.cap-icon.trophy::before {
  border-radius: 0 0 12px 12px;
  border-top: 0;
}
.cap-icon.trophy::after {
  inset: 16px 28px 36px;
  border-radius: 50%;
  border-width: 3px;
}
.cap-icon.camera::before {
  inset: 24px 20px;
  border-radius: 8px;
}
.cap-icon.camera::after {
  inset: 27px 12px 27px 45px;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 0;
  border-radius: 0;
}
.cap-icon.group::before {
  inset: 23px 18px 19px;
  border-radius: 50% 50% 8px 8px;
}
.cap-icon.group::after {
  inset: 18px 28px 38px;
  border-radius: 50%;
}
.cap-icon.globe::before {
  inset: 17px;
  border-radius: 50%;
}
.cap-icon.globe::after {
  inset: 17px 31px;
  border-radius: 50%;
  border-left: 3px solid white;
  border-right: 3px solid white;
  border-top: 0;
  border-bottom: 0;
}

.capability-card h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.capability-card p {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 260px;
  margin-bottom: 28px;
}

.capability-card a,
.text-link {
  color: var(--blue2);
  font-weight: 900;
  letter-spacing: 1.5px;
}

.capability-card a {
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 26px;
}

/* Lists */

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.list-card {
  border-radius: 22px;
  padding: 30px 34px;
}

.mini-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(0, 170, 255, .15);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  margin-top: 12px;
}

.mini-row strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.mini-row b {
  text-align: right;
  font-size: 1.15rem;
}
.mini-row small {
  display: block;
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: 1px;
}

.thumb {
  width: 72px;
  height: 50px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(0, 213, 255, .35), rgba(0,0,0,.1)),
    linear-gradient(45deg, #083a69, #251449);
  border: 1px solid var(--border);
}
.thumb-two { background: linear-gradient(45deg, #1d4070, #1288c6); }
.thumb-three { background: linear-gradient(45deg, #3d1230, #e91d4f); }

.avatar-chip {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border2);
  color: var(--blue2);
  font-weight: 900;
  font-size: 1.2rem;
  background: rgba(0, 143, 255, .12);
}
.avatar-chip.small {
  width: 58px;
  height: 58px;
}

.status-live,
.status-progress {
  font-style: normal;
  font-weight: 900;
  font-size: .72rem;
  border-radius: 999px;
  padding: 8px 14px;
  letter-spacing: 1px;
}
.status-live {
  color: #ff4976;
  border: 1px solid rgba(255, 45, 95, .6);
}
.status-progress {
  color: var(--green);
  border: 1px solid rgba(97, 255, 84, .45);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(0,170,255,.18);
  padding: 30px 32px 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand img {
  width: 190px;
}

.footer nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 1px;
  font-size: .82rem;
}

.footer p {
  text-align: right;
  color: rgba(167,184,210,.78);
}

/* Responsive */

@media (max-width: 1120px) {
  .hero-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .bracket-showcase {
    min-height: 420px;
  }
  .live-grid,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 24px, 1460px);
    margin-top: 12px;
  }
  .topbar {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .brand img {
    width: 175px;
    max-width: 44vw;
  }
  .nav-pill,
  .btn {
    padding: 11px 16px;
    font-size: .72rem;
  }
  .hero-panel {
    padding: 34px 24px;
    min-height: auto;
  }
  h1 {
    font-size: clamp(3.1rem, 18vw, 5rem);
    letter-spacing: -3px;
  }
  .hero-text {
    font-size: 1rem;
  }
  .bracket-showcase {
    transform: scale(.75);
    transform-origin: left center;
    width: 132%;
    margin-bottom: -70px;
  }
  .live-panel,
  .list-card {
    padding: 24px 18px;
  }
  .live-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: flex-start;
  }
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer p {
    text-align: center;
  }
  .footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .topbar {
    gap: 12px;
    align-items: flex-start;
  }
  .top-actions {
    gap: 8px;
  }
  .bracket-showcase {
    display: none;
  }
  .hero-panel {
    display: block;
  }
  .mini-row {
    grid-template-columns: auto 1fr;
  }
  .mini-row b,
  .mini-row em {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}


/* Home page refinement: compact shell, clean bracket, real live data cards */

[hidden] { display: none !important; }

.site-shell {
  margin-top: 16px;
}

.topbar {
  min-height: 56px;
  padding: 10px 26px;
  border-radius: 16px;
  margin-bottom: 22px;
}

.brand img {
  width: 190px;
}

.nav-pill,
.btn {
  padding: 11px 22px;
  border-radius: 12px;
}

.hero-panel {
  min-height: 470px;
  padding: 44px 46px;
  margin-bottom: 22px;
}

.hero-text {
  margin-bottom: 26px;
}

.clean-bracket {
  height: 360px;
  opacity: .9;
  transform: translateY(4px);
}

.clean-bracket .bracket-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.clean-bracket .bracket-lines path {
  fill: none;
  stroke: rgba(105, 226, 255, .6);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(0, 213, 255, .42));
}

.clean-bracket .round-label.qf { left: 6%; top: 0; }

/* Semi Final and Grand Final labels use the base .round-label.sf/.gf positions. */

.clean-bracket .bracket-match {
  width: 205px;
  min-height: 66px;
  border-color: rgba(0, 213, 255, .28);
  background: rgba(2, 11, 27, .74);
}

.clean-bracket .match-a { left: 2%; top: 38px; }
.clean-bracket .match-b { left: 2%; top: 130px; }
.clean-bracket .match-c { left: 2%; top: 206px; }
.clean-bracket .match-d { left: 2%; top: 298px; }
.clean-bracket .match-e { left: 40%; top: 84px; }
.clean-bracket .match-f { left: 40%; top: 252px; }
.clean-bracket .match-g { right: 0; top: 168px; }

/* Final landing bracket alignment tune */
.clean-bracket .round-label.sf { left: 43%; top: 34px; }
.clean-bracket .round-label.gf { right: 4%; top: 112px; }
.clean-bracket .match-e { left: 40%; top: 72px; }
.clean-bracket .match-f { left: 40%; top: 236px; }
.clean-bracket .match-g { right: 5%; top: 150px; }


.connector {
  display: none;
}

.live-panel {
  padding: 26px;
  margin-bottom: 22px;
}

.section-head {
  margin-bottom: 20px;
}

.section-arrows {
  display: none;
}

.stream-card {
  min-height: 310px;
}

.stream-card-link {
  color: inherit;
  display: block;
  height: 100%;
}

.real-stream-card .stream-art {
  height: 122px;
}

.real-stream-card .event-row img,
.real-stream-card .event-row .avatar-chip {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.real-stream-card .stream-meta small {
  color: #d5e8ff;
  font-size: .95rem;
}

.art-1 {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 50% 40%, rgba(0, 210, 255, .35), transparent 23%),
    linear-gradient(135deg, #142d5e, #071321 62%, #231449);
}
.art-2 {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 52% 36%, rgba(255, 158, 42, .34), transparent 26%),
    linear-gradient(135deg, #24325d, #071321 62%, #052b50);
}
.art-3 {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    radial-gradient(circle at 54% 38%, rgba(187, 63, 255, .38), transparent 28%),
    linear-gradient(135deg, #27315e, #071321 62%, #421459);
}

.compact-capabilities {
  margin-bottom: 22px;
}

.compact-capabilities .capability-card {
  min-height: 230px;
  padding: 26px 22px;
}

.compact-capabilities .cap-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
}

.compact-capabilities .cap-icon::before,
.compact-capabilities .cap-icon::after {
  transform: scale(.78);
}

.compact-capabilities .capability-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.compact-capabilities .capability-card p {
  margin-bottom: 0;
  font-size: .93rem;
}

.compact-capabilities .capability-card a {
  display: none;
}

.compact-footer {
  padding-top: 24px;
}

@media (max-width: 1120px) {
  .clean-bracket {
    transform: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 52px;
    padding: 10px 14px;
  }

  .brand img {
    width: 160px;
  }

  .hero-panel {
    padding: 30px 22px;
  }

  .clean-bracket {
    transform: scale(.76);
    transform-origin: left center;
    width: 132%;
    margin-bottom: -64px;
  }
}


/* Final staging polish: compact nav + corrected bracket alignment */
.site-shell {
  margin-top: 14px;
}

.topbar {
  min-height: 40px;
  padding: 6px 22px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.brand img {
  width: 150px;
}

.top-actions {
  gap: 9px;
}

.nav-pill {
  padding: 7px 16px;
  border-radius: 10px;
  font-size: .68rem;
  letter-spacing: 1.2px;
}

.clean-bracket {
  height: 335px;
  transform: translateY(-4px);
}

.clean-bracket .round-label.qf { left: 4%; top: -2px; }
.clean-bracket .round-label.sf { left: 42%; top: 3px; }
.clean-bracket .round-label.gf { right: 2%; top: 10%; }

.clean-bracket .match-a { left: 2%; top: 30px; }
.clean-bracket .match-b { left: 2%; top: 118px; }
.clean-bracket .match-c { left: 2%; top: 204px; }
.clean-bracket .match-d { left: 2%; top: 292px; }
.clean-bracket .match-e { left: 40%; top: 74px; }
.clean-bracket .match-f { left: 40%; top: 248px; }
.clean-bracket .match-g { right: 0; top: 158px; }

@media (max-width: 760px) {
  .topbar {
    min-height: 38px;
    padding: 6px 12px;
  }

  .brand img {
    width: 132px;
  }

  .nav-pill {
    padding: 7px 10px;
    font-size: .62rem;
  }
}
