@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap");
:root {
  --cream: #f5f2e9;
  --ink: #14231f;
  --red: #c33332;
  --blue: #234ba5;
  --line: #dedfd6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #eba931;
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.brand {
  border: 0;
  background: none;
  font-weight: 800;
  font-size: 27px;
  position: relative;
  letter-spacing: -1px;
  padding-left: 40px;
  text-align: left;
  color: var(--ink);
}
.brand-icon {
  font-size: 45px;
  position: absolute;
  left: 0;
  top: -6px;
  color: var(--red);
}
.brand-sub {
  display: block;
  font-size: 8px;
  letter-spacing: 2px;
  margin-top: 4px;
}
.account {
  display: flex;
  align-items: center;
  gap: 22px;
}
.demo-tag {
  font-size: 10px;
  letter-spacing: 1.4px;
  color: #727b70;
}
.button {
  border: 0;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
}
.red {
  background: var(--red);
  color: white;
}
.cream {
  background: var(--cream);
  color: var(--ink);
}
.text-button {
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 700;
}
.shell {
  display: flex;
}
aside {
  width: 215px;
  flex-shrink: 0;
  border-right: 1px solid var(--line);
  min-height: calc(100vh - 94px);
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  transition: width 0.2s;
}
#collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  color: #6e786c;
  font-size: 16px;
  padding: 0 12px 28px;
}
#collapse span {
  font-size: 9px;
  letter-spacing: 1.5px;
}
.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 0;
  background: none;
  width: 100%;
  padding: 17px 13px;
  color: #647068;
  border-radius: 4px;
  text-align: left;
}
.nav b {
  font-weight: 500;
  font-size: 14px;
}
.nav.active {
  background: #e7e9df;
  color: var(--ink);
}
.nav em {
  font-style: normal;
  font-size: 8px;
  color: var(--red);
  margin-left: auto;
}
.sidebar-bottom {
  margin-top: auto;
  padding: 110px 12px 10px;
}
.sidebar-bottom p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 1.1;
}
.sidebar-bottom small {
  font-size: 8px;
  letter-spacing: 1px;
  color: #858c80;
}
.flag {
  display: grid;
  grid-template-columns: 14px 14px;
  gap: 3px;
  width: max-content;
  background: white;
}
.flag i {
  height: 9px;
  background: var(--blue);
}
.flag i:nth-child(2),
.flag i:nth-child(3) {
  background: var(--red);
}
aside.collapsed {
  width: 72px;
}
aside.collapsed b,
aside.collapsed em,
aside.collapsed #collapse span,
aside.collapsed .sidebar-bottom {
  display: none;
}
main {
  min-width: 0;
  flex: 1;
  padding: 26px;
}
.hero {
  height: 610px;
  position: relative;
  overflow: hidden;
  background: #23362c;
  border-radius: 5px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center 45%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 24, 17, 0.88),
    rgba(9, 24, 17, 0.22) 70%
  );
}
.hero-copy {
  position: relative;
  color: var(--cream);
  padding: 55px 54px;
  height: 100%;
  max-width: 680px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #e0b87c;
}
h1 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(76px, 8vw, 122px);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.92;
  margin: 35px 0 22px;
}
h1 i {
  color: #e7c190;
  font-style: normal;
}
.hero-description {
  line-height: 1.65;
  color: #d6d9d1;
  font-size: 16px;
}
.hero .button {
  margin-top: 16px;
  min-width: 220px;
  display: flex;
  justify-content: space-between;
}
.hero-bottom {
  position: absolute;
  bottom: 28px;
  left: 54px;
  right: 20px;
  display: flex;
  gap: 24px;
  font-size: 9px;
  letter-spacing: 1.8px;
  color: #c0c8b9;
}
.hero-stamp {
  position: absolute;
  right: 35px;
  bottom: 42px;
  transform: rotate(-12deg);
  border: 1px solid #d9c9a1;
  border-radius: 50%;
  height: 135px;
  width: 135px;
  text-align: center;
  padding: 23px;
  color: #f3dfb7;
  font-size: 12px;
  letter-spacing: 2px;
}
.hero-stamp i {
  display: block;
  font-family: Georgia, serif;
  font-size: 37px;
  letter-spacing: -2px;
}
.hero-stamp small {
  display: block;
  font-size: 8px;
  margin-top: 6px;
}
.ticker {
  display: flex;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.ticker span:first-child {
  color: var(--red);
  font-weight: 700;
}
.ticker b {
  font-weight: 500;
}
.ticker span:last-child {
  font-size: 8px;
  letter-spacing: 1px;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr 150px;
  gap: 36px;
  padding: 32px 0;
  align-items: center;
}
.intro h2,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 40px;
  line-height: 1.1;
  margin: 12px 0;
  font-weight: 700;
}
.intro > p {
  font-size: 14px;
  line-height: 1.8;
  color: #697268;
}
.photo-small {
  height: 125px;
  background: url("assets/secondary.jpg") center/cover;
  border-radius: 3px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #868d80;
  font-size: 10px;
}
.site-footer strong {
  font-size: 16px;
  color: var(--ink);
}
#wallet {
  display: flex;
  align-items: center;
  gap: 12px;
}
#wallet > span:first-child {
  font-size: 26px;
}
#wallet small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #778274;
}
#wallet strong {
  font-size: 21px;
}
.credit {
  font-size: 11px;
  color: #788074;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2px 0 26px;
}
.live-label {
  font-size: 10px;
  background: #e4e9db;
  border: 1px solid #d5decc;
  padding: 9px 12px;
  border-radius: 3px;
  color: #496043;
}
.arena-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 24px;
}
.broadcast {
  position: relative;
  aspect-ratio: 16/9;
  background: radial-gradient(
    ellipse at bottom,
    #638766 0%,
    #203c32 65%,
    #14251e
  );
  overflow: hidden;
  border-radius: 5px;
  color: white;
}
.broadcast-top,
.broadcast-bottom {
  position: absolute;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 1px;
  z-index: 2;
}
.broadcast-top {
  top: 18px;
}
.broadcast-top b {
  background: var(--red);
  padding: 3px 5px;
  margin-left: 5px;
}
.broadcast-bottom {
  bottom: 15px;
}
.broadcast-bottom button {
  background: #ffffff18;
  border: 1px solid #ffffff33;
  color: white;
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 3px;
}
.arena-title {
  position: absolute;
  top: 20%;
  width: 100%;
  text-align: center;
  font-family: "Barlow Condensed";
  font-size: clamp(30px, 4vw, 59px);
  font-weight: 800;
  letter-spacing: 2px;
  color: #f6e6bf;
}
.arena-title i {
  font-style: normal;
  color: #dcaf77;
}
.arena-title small {
  display: block;
  font-family: "DM Sans";
  font-size: 8px;
  letter-spacing: 2px;
  margin-top: 6px;
}
.track {
  position: absolute;
  bottom: 10%;
  height: 40%;
  width: 100%;
  border-bottom: 2px solid #e8d3a860;
  background: linear-gradient(0deg, #c0a27344, transparent 25%);
}
.runner {
  position: absolute;
  width: 25%;
  bottom: 0;
  animation: run 5s infinite ease-in-out;
}
.runner img {
  width: 100%;
  filter: drop-shadow(0 10px 3px #0004);
}
.red-runner {
  left: 7%;
}
.blue-runner {
  right: 7%;
  animation-name: runBlue;
}
.blue-runner img {
  transform: scaleX(-1);
  filter: hue-rotate(180deg) drop-shadow(0 10px 3px #0004);
}
.stars {
  position: absolute;
  top: -15%;
  left: 20%;
  color: #ffe09b;
  opacity: 0;
  font-size: 25px;
  animation: stars 5s infinite;
}
.paused .runner,
.paused .stars {
  animation-play-state: paused;
}
@keyframes run {
  0%,
  100% {
    transform: translateX(0) rotate(-3deg);
  }
  35%,
  65% {
    transform: translateX(105%) rotate(8deg);
  }
  50% {
    transform: translateX(90%) rotate(-9deg);
  }
}
@keyframes runBlue {
  0%,
  100% {
    transform: translateX(0) rotate(3deg);
  }
  35%,
  65% {
    transform: translateX(-105%) rotate(-8deg);
  }
  50% {
    transform: translateX(-90%) rotate(9deg);
  }
}
@keyframes stars {
  0%,
  30%,
  80%,
  100% {
    opacity: 0;
  }
  40%,
  65% {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.market-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 14px;
}
.market-heading h3 {
  margin: 0;
  font-size: 16px;
}
.market-heading > span {
  font-size: 10px;
  color: #6b7569;
}
.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #6b8b61;
  border-radius: 50%;
  margin-left: 5px;
}
.odds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.odds-card {
  border: 1px solid #fff4;
  position: relative;
  min-height: 170px;
  border-radius: 8px;
  color: white;
  text-align: left;
  padding: 18px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.red-card {
  background: linear-gradient(135deg, #d64b49, #aa2426);
  box-shadow:
    0 7px 0 #792b29,
    0 12px 16px #7b2e2225;
}
.blue-card {
  background: linear-gradient(135deg, #3863bb, #193d85);
  box-shadow:
    0 7px 0 #183164,
    0 12px 16px #1c355325;
}
.odds-card:hover {
  transform: translateY(-3px);
}
.odds-card[aria-pressed="true"] {
  outline: 3px solid #d2ab61;
  outline-offset: 4px;
}
.odds-card > span {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1px;
}
.odds-card small {
  font-size: 8px;
  opacity: 0.7;
}
.odds-card strong {
  font-family: "Barlow Condensed";
  font-size: 60px;
  display: block;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.odds-card footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff30;
  padding-top: 10px;
  font-size: 11px;
}
.odds-card footer span {
  font-size: 7px;
  align-self: center;
  letter-spacing: 1px;
}
.fineprint {
  font-size: 10px;
  line-height: 1.7;
  color: #828b7d;
  margin: 22px 0 30px;
}
.betslip {
  align-self: start;
  border: 1px solid var(--line);
  background: #faf9f3;
  border-radius: 5px;
  padding: 20px;
}
.slip-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.slip-title h3 {
  font-size: 16px;
  margin: 0;
}
.slip-title span {
  background: #e6e8df;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 4px;
}
#empty-slip {
  text-align: center;
  padding: 50px 0;
}
#empty-slip h3 {
  font-size: 16px;
}
#empty-slip p {
  font-size: 12px;
  line-height: 1.7;
  color: #8a9085;
}
.ticket-icon {
  font-size: 45px;
  color: #9ca68f;
}
.slip-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 10px;
  color: #858e7e;
  text-align: center;
}
.selection {
  margin: 20px 0;
  background: #eaece3;
  padding: 14px;
  border-radius: 3px;
}
.selection small {
  display: block;
  font-size: 8px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.selection strong {
  font-size: 14px;
}
.selection > span {
  float: right;
  font-weight: bold;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
label > span {
  float: right;
  font-size: 8px;
  letter-spacing: 1px;
  color: #8b9385;
}
.stake-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #cdd1c4;
  border-radius: 3px;
  background: white;
  padding: 0 12px;
}
.stake-wrap span {
  font-size: 11px;
  color: #939b8b;
}
input {
  width: 100%;
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
}
.stake-wrap input {
  border: 0;
  font-size: 20px;
  min-width: 0;
}
.quick-stakes {
  display: flex;
  gap: 6px;
  margin: 10px 0 22px;
}
.quick-stakes button {
  flex: 1;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 3px;
  padding: 7px;
  font-size: 11px;
}
.return {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.small-note {
  font-size: 9px;
  color: #87917f;
}
.wide {
  width: 100%;
  margin: 12px 0;
}
.betslip #bet-error {
  font-size: 12px;
  color: var(--red);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 10px;
  max-width: 450px;
  width: calc(100% - 32px);
  padding: 40px;
  background: var(--cream);
  color: var(--ink);
}
dialog::backdrop {
  background: #101d19aa;
  backdrop-filter: blur(5px);
}
dialog > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.7;
  color: #77806e;
}
dialog small {
  font-size: 11px;
  line-height: 1.6;
  display: block;
  color: #788172;
}
.close {
  position: absolute;
  right: 16px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 28px;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 17px 25px;
  border-radius: 5px;
  box-shadow: 0 8px 25px #0002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
  font-size: 14px;
}
#toast.show {
  opacity: 1;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 60px;
}
.data-table th,
.data-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.data-table th {
  font-size: 10px;
  letter-spacing: 1px;
  color: #79816f;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.stat {
  padding: 30px;
  border: 1px solid var(--line);
  background: #faf9f3;
}
.stat small {
  font-size: 11px;
}
.stat strong {
  display: block;
  font-family: "Barlow Condensed";
  font-size: 48px;
  margin-top: 10px;
}
@media (min-width: 1550px) {
  main {
    max-width: 1500px;
    margin: auto;
  }
  .hero {
    height: 700px;
  }
}
@media (max-width: 1100px) {
  aside {
    width: 175px;
  }
  .arena-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
  .demo-tag {
    display: none;
  }
  .hero-copy {
    padding: 45px 35px;
  }
  .hero-bottom {
    left: 35px;
  }
  .intro {
    grid-template-columns: 1fr 1fr;
  }
  .photo-small {
    display: none;
  }
  .odds-card small {
    display: none;
  }
}
@media (max-width: 850px) {
  header {
    padding: 0 20px;
    height: 80px;
  }
  .brand {
    font-size: 23px;
  }
  .account {
    gap: 8px;
  }
  .brand-sub {
    font-size: 7px;
  }
  aside {
    width: 65px;
    padding: 25px 8px;
  }
  aside .nav b,
  aside .nav em,
  aside #collapse span,
  aside .sidebar-bottom {
    display: none;
  }
  main {
    padding: 16px;
  }
  .hero {
    height: 570px;
  }
  .hero-stamp {
    display: none;
  }
  .arena-layout {
    grid-template-columns: 1fr;
  }
  .betslip {
    margin-bottom: 24px;
  }
  .site-footer span:nth-child(2) {
    display: none;
  }
  #wallet small {
    display: none;
  }
  #wallet strong {
    font-size: 16px;
  }
  #wallet {
    gap: 5px;
  }
  .page-heading h2 {
    font-size: 34px;
  }
  .live-label {
    font-size: 8px;
  }
}
@media (max-width: 540px) {
  header {
    flex-wrap: wrap;
    height: auto;
    min-height: 90px;
    padding: 15px;
    gap: 12px;
  }
  .brand {
    font-size: 21px;
  }
  .account .button {
    padding: 12px;
  }
  .text-button {
    font-size: 12px;
  }
  #wallet {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  aside {
    width: 50px;
    padding: 24px 2px;
  }
  aside.collapsed {
    width: 50px;
  }
  .nav {
    padding: 16px;
  }
  #collapse {
    padding: 0 12px 24px;
  }
  .hero {
    height: 530px;
  }
  .hero-copy {
    padding: 35px 24px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  h1 {
    font-size: 78px;
    margin-top: 48px;
  }
  .hero-bottom {
    left: 24px;
    gap: 12px;
    font-size: 7px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .ticker {
    gap: 16px;
  }
  .intro h2 {
    font-size: 36px;
  }
  .page-heading {
    display: block;
  }
  .live-label {
    display: inline-block;
    margin-top: 12px;
  }
  .arena-title {
    font-size: 25px;
    top: 22%;
  }
  .arena-title small {
    font-size: 5px;
  }
  .broadcast-top,
  .broadcast-bottom {
    font-size: 6px;
    left: 10px;
    right: 10px;
  }
  .broadcast-bottom button {
    font-size: 7px;
  }
  .market-heading {
    display: block;
  }
  .market-heading > span {
    display: block;
    margin-top: 7px;
  }
  .odds-grid {
    gap: 12px;
  }
  .odds-card {
    padding: 12px;
    min-height: 150px;
  }
  .odds-card strong {
    font-size: 47px;
  }
  .odds-card footer {
    display: block;
  }
  .odds-card footer span {
    display: block;
    margin-top: 7px;
  }
  .odds-card > span {
    font-size: 8px;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .data-table td,
  .data-table th {
    padding: 12px 5px;
    font-size: 11px;
  }
  .site-footer {
    font-size: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .red-runner {
    left: 23%;
  }
  .blue-runner {
    right: 23%;
  }
}
.chicken {
  font-size: clamp(55px, 8vw, 130px);
  display: block;
  line-height: 1;
  transform: scaleX(-1);
  filter: drop-shadow(0 10px 4px #0004);
}
.blue-runner .chicken {
  transform: none;
  filter: hue-rotate(160deg) drop-shadow(0 10px 4px #0004);
}
.odds-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.odds-card strong {
  font-size: clamp(56px, 6vw, 92px);
}
.odds-card footer {
  font-size: 14px;
}
.hero-description,
.intro > p {
  font-size: 16px;
}
.fineprint,
.small-note,
.site-footer,
.market-heading > span,
#empty-slip p,
.slip-bottom {
  font-size: 12px;
}
.nav b,
.broadcast-bottom button,
.quick-stakes button {
  font-size: 14px;
}
.selection small,
.selection > span,
.return {
  font-size: 12px;
}
.odds-card > span,
.odds-card small,
.odds-card footer span {
  font-size: 10px;
}
@media (max-width: 540px) {
  .odds-card {
    min-height: 170px;
  }
  .odds-card strong {
    font-size: 48px;
  }
  .broadcast-bottom button {
    font-size: 9px;
  }
  .site-footer {
    font-size: 10px;
  }
  .odds-card > span,
  .odds-card footer span {
    font-size: 8px;
  }
}

/* Coliseo: minimal Dominican red, blue and white entrance. */
:root {
  --red: #ce2639;
  --blue: #123d8d;
}
.guest {
  background: #fff;
}
.guest header {
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid #e8ebf0;
  background: #fff;
}
.guest header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 4px;
  background: var(--red);
}
.guest aside,
.guest .site-footer {
  display: none;
}
.guest main {
  padding: 0;
  max-width: none;
}
.guest .brand-icon {
  display: none;
}
.guest .brand {
  padding-left: 0;
  color: var(--blue);
  letter-spacing: 1px;
  font-size: 25px;
}
.guest .brand-sub {
  font-size: 8px;
  letter-spacing: 2px;
}
.guest .demo-tag {
  display: none;
}
.guest #landing {
  min-height: calc(100dvh - 98px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: #fff;
}
.login-card {
  width: 100%;
  max-width: 350px;
  text-align: center;
}
.login-flag {
  display: grid;
  grid-template-columns: 21px 21px;
  gap: 5px;
  width: max-content;
  margin: 0 auto 30px;
}
.login-flag i {
  height: 15px;
  background: var(--blue);
}
.login-flag i:nth-child(2),
.login-flag i:nth-child(3) {
  background: var(--red);
}
.login-card .eyebrow {
  justify-content: center;
  color: #7c8493;
  font-size: 10px;
  letter-spacing: 2px;
}
.login-card h1 {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  letter-spacing: 3px;
  color: var(--blue);
  line-height: 1.2;
  margin: 16px 0;
}
.login-description {
  font-size: 16px;
  color: #687184;
  margin: 16px 0 36px;
}
.login-card .button {
  font-size: 15px;
  padding: 17px;
  margin: 0 0 12px;
  border-radius: 4px;
}
.blue {
  background: var(--blue);
  color: white;
}
.outline {
  background: white;
  color: var(--red);
  border: 1px solid var(--red);
}
.login-note {
  font-size: 12px;
  color: #8a909b;
  margin-top: 24px;
}
.guest dialog {
  background: white;
}
.guest dialog .eyebrow {
  color: var(--blue);
}
@media (max-width: 540px) {
  .guest header {
    min-height: 80px;
    flex-wrap: nowrap;
  }
  .guest .brand {
    font-size: 20px;
  }
  .guest .brand-sub {
    font-size: 6px;
  }
  .guest #landing {
    min-height: calc(100dvh - 80px);
  }
  .login-card h1 {
    font-size: 42px;
  }
}
.language-toggle {
  display: flex;
  align-items: center;
  border: 1px solid #dce1eb;
  border-radius: 5px;
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}
.language-toggle button {
  background: transparent;
  color: #647086;
  border: 0;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 9px;
}
.language-toggle button[aria-pressed="true"] {
  background: var(--blue);
  color: white;
}
.guest .brand-sub {
  letter-spacing: 1px;
}
.guest .account {
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 540px) {
  .guest header {
    flex-wrap: wrap;
  }
  .guest .account {
    gap: 7px;
  }
  .language-toggle button {
    padding: 6px;
  }
  .guest .brand-sub {
    max-width: 160px;
    line-height: 1.6;
  }
  .account {
    flex-wrap: wrap;
  }
  header {
    height: auto;
    min-height: 94px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
/* Compact, tactile odds controls. */
.odds-grid {
  gap: 16px;
  align-items: start;
}
.odds-card {
  aspect-ratio: auto;
  min-height: 0;
  height: 128px;
  padding: 13px 16px;
  border-radius: 7px;
  transition: filter 0.15s;
  transform: translateY(0);
  border-top: 1px solid #ffffff75;
  border-left: 1px solid #ffffff35;
  border-right: 1px solid #0002;
  border-bottom: 1px solid #0003;
}
.red-card {
  --base: #7c1d28;
  --glow: #93233430;
  background: linear-gradient(155deg, #e65060 0%, #c92c40 55%, #ae2033 100%);
}
.blue-card {
  --base: #142c61;
  --glow: #123d8d30;
  background: linear-gradient(155deg, #4873c5 0%, #2853a2 55%, #193d83 100%);
}
.odds-card {
  box-shadow:
    inset 0 1px 0 #ffffff35,
    0 6px 0 var(--base),
    0 10px 14px var(--glow);
}
.odds-card:hover {
  transform: translateY(0);
  filter: brightness(1.06);
}
.odds-card strong {
  font-size: 44px;
  line-height: 1.05;
}
.odds-card footer {
  padding-top: 8px;
  font-size: 12px;
}
.odds-card.odds-updated {
  animation: odds-hop 350ms ease-out;
}
.odds-card.is-pressed,
.odds-card:active {
  animation: none;
  transform: translateY(5px);
  box-shadow:
    inset 0 2px 5px #0002,
    0 1px 0 var(--base),
    0 3px 5px var(--glow);
  filter: brightness(0.98);
}
@keyframes odds-hop {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
    box-shadow:
      inset 0 1px 0 #ffffff35,
      0 9px 0 var(--base),
      0 14px 17px var(--glow);
  }
  70% {
    transform: translateY(1px);
  }
}
@media (max-width: 540px) {
  .odds-grid {
    gap: 12px;
  }
  .odds-card {
    height: 120px;
    padding: 11px;
  }
  .odds-card strong {
    font-size: 36px;
  }
  .odds-card footer {
    font-size: 11px;
  }
  .odds-card footer span {
    margin-top: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .odds-card.odds-updated {
    animation: none;
  }
  .odds-card.is-pressed,
  .odds-card:active {
    transform: none;
    box-shadow:
      inset 0 2px 5px #0003,
      0 2px 0 var(--base);
  }
}
/* Supplied Coliseo identity, preserved at its original proportions. */
.brand,
.guest .brand {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.header-logo {
  display: block;
  width: 94px;
  height: 57px;
  object-fit: contain;
  border-radius: 3px;
}
.brand .brand-sub,
.guest .brand-sub {
  font-size: 7px;
  letter-spacing: 0.7px;
  margin: 0;
  line-height: 1.3;
}
.landing-logo {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 25px;
}
.footer-logo {
  width: 76px;
  height: auto;
  display: block;
  border-radius: 3px;
}
.auth-logo {
  display: block;
  width: 110px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 3px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@media (max-width: 540px) {
  .header-logo {
    width: 76px;
    height: 46px;
  }
  .brand .brand-sub,
  .guest .brand-sub {
    font-size: 6px;
    max-width: 130px;
  }
  .landing-logo {
    width: 220px;
  }
}
/* Coliseo clubhouse: practical information, clear prices, restrained surfaces. */
:root {
  --cream: #f3f5f8;
  --ink: #202d41;
  --line: #dce2eb;
}
body {
  background: var(--cream);
  color: var(--ink);
}
header {
  background: white;
  height: 100px;
  position: relative;
  z-index: 5;
}
aside {
  background: #fff;
  min-height: calc(100vh - 100px);
  width: 190px;
  padding: 28px 12px;
}
.nav.active {
  background: #eaf0fb;
  color: #163e86;
}
.nav b {
  font-weight: 600;
}
.sidebar-bottom p {
  color: #174184;
}
main {
  padding: 28px;
  max-width: 1600px;
}
.page-heading {
  margin: 0 0 22px;
}
.page-heading h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.7px;
  line-height: 1.3;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
}
.live-label {
  background: #eaf0fb;
  border-color: #d2ddec;
  color: #214986;
  font-size: 12px;
}
.arena-layout {
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
}
.tools-rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.broadcast {
  background: radial-gradient(ellipse at bottom, #507b7d, #243e51 65%, #182a3c);
  border: 1px solid #1e354d;
}
.broadcast-top,
.broadcast-bottom {
  font-size: 12px;
  letter-spacing: 0.4px;
}
.broadcast-top > span:last-child {
  font-size: 11px;
}
.broadcast-bottom button {
  font-size: 12px;
  border-radius: 5px;
  padding: 7px 9px;
}
.broadcast-badge {
  position: absolute;
  right: 18px;
  top: 52px;
  opacity: 0.3;
  letter-spacing: 2px;
  font-size: 10px;
}
.arena-title small {
  font-size: 10px;
}
.broadcast .track {
  bottom: 18%;
  height: 35%;
}
.broadcast .runner {
  width: 23%;
}
.chicken {
  font-size: clamp(58px, 7.5vw, 130px);
}
.volume-control {
  position: absolute;
  bottom: 61px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  z-index: 3;
}
.volume-control label {
  margin: 0;
  font-size: 13px;
}
.volume-control input {
  width: 78px;
  height: 12px;
  padding: 0;
  accent-color: #c9d9f5;
  background: transparent;
}
.match-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  background: white;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 6px 6px;
}
.match-strip > div:first-child {
  position: relative;
  padding-left: 19px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #457b62;
  position: absolute;
  top: 5px;
  left: 0;
}
.match-strip strong {
  display: block;
  font-size: 13px;
}
.match-strip small {
  display: block;
  color: #738097;
  font-size: 12px;
  margin-top: 3px;
}
.match-strip > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.match-strip .countdown {
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.market-heading {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 14px;
}
.market-heading h3 {
  font-size: 17px;
}
.market-heading > span {
  display: none;
}
#odds-format {
  margin-left: auto;
}
.segmented {
  display: flex;
  padding: 3px;
  border: 1px solid #d9e1ed;
  background: #f2f5fa;
  border-radius: 6px;
  gap: 2px;
}
.segmented button {
  border: 0;
  padding: 7px 10px;
  background: transparent;
  border-radius: 4px;
  color: #5e6f87;
  font-size: 12px;
  font-weight: 600;
}
.segmented button[aria-pressed="true"] {
  background: white;
  box-shadow: 0 1px 4px #1932501a;
  color: #153e84;
}
.odds-card {
  height: 122px;
}
.odds-card > span,
.odds-card small {
  font-size: 11px;
  letter-spacing: 0.3px;
}
.odds-card footer span {
  font-size: 10px;
  letter-spacing: 0.3px;
}
.odds-card footer {
  font-size: 13px;
}
.odds-card strong {
  font-size: 42px;
}
.fineprint {
  font-size: 12px;
  color: #738097;
  margin: 19px 0;
}
.panel,
.betslip {
  background: white;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
.panel {
  padding: 20px;
}
.betslip {
  padding: 19px;
  min-width: 0;
  width: 100%;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.panel-heading h3 {
  font-size: 16px;
  margin: 0;
}
.panel-heading p {
  font-size: 12px;
  color: #718097;
  margin: 6px 0 0;
}
.subtle-tag {
  font-size: 11px;
  background: #f1f4f8;
  border: 1px solid #e6eaf1;
  color: #68758a;
  padding: 5px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.panel-note {
  font-size: 13px;
  line-height: 1.7;
  color: #6a7890;
  margin: 16px 0 0;
}
.info-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  margin: -4px 0 20px;
}
.info-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  font-size: 14px;
  color: #738095;
  font-weight: 600;
  padding: 8px 0 16px;
}
.info-tabs button[aria-selected="true"] {
  color: var(--blue);
  border-color: var(--blue);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.competitor {
  color: var(--ink);
  background: #fff;
  border: 1px solid #e1e6ee;
  border-radius: 5px;
  padding: 16px;
}
.competitor.red {
  border-top: 3px solid var(--red);
}
.competitor.blue {
  border-top: 3px solid var(--blue);
}
.corner-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.corner-name h4 {
  margin: 0;
  font-size: 16px;
}
.corner-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
}
.competitor p {
  font-size: 12px;
  color: #7e899b;
  margin: 8px 0 18px;
}
.record {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.record strong {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1px;
}
.record small {
  font-size: 12px;
  letter-spacing: 0;
  color: #718097;
  margin-left: 3px;
}
.record > span {
  font-size: 12px;
  color: #718097;
}
.form-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  margin-top: 15px;
}
.form-row > div {
  display: flex;
  gap: 4px;
}
.form-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  width: 22px;
  height: 24px;
  font-size: 11px;
  font-weight: 600;
}
.form-win {
  background: #e6f1eb;
  color: #357454;
}
.form-loss {
  background: #f3e9ec;
  color: #9d5563;
}
.price-metric {
  border-top: 1px solid #e4e8ef;
  margin-top: 16px;
  padding-top: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  line-height: 1.5;
}
.price-metric strong {
  font-size: 18px;
  margin-left: auto;
}
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}
.chart-legend span:before {
  content: "";
  display: inline-block;
  height: 3px;
  width: 16px;
  vertical-align: middle;
  margin-right: 7px;
}
.red-key:before {
  background: var(--red);
}
.blue-key:before {
  background: var(--blue);
}
.odds-chart {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}
.odds-chart polyline {
  fill: none;
  stroke-width: 2.5;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.odds-chart text {
  font:
    11px "DM Sans",
    sans-serif;
  fill: #718097;
}
.quote-table {
  font-size: 12px;
}
.quote-table > div {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid #e7ebf1;
}
.quote-table > div:first-child {
  color: #77849b;
}
.rules-list details {
  border-top: 1px solid #e3e8f0;
  padding: 16px 0;
}
.rules-list details:first-child {
  border-top: 0;
}
.rules-list summary {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.rules-list p {
  font-size: 14px;
  line-height: 1.8;
  color: #69778b;
}
.selection {
  position: relative;
  background: #edf2fa;
  padding-right: 30px;
}
.selection strong {
  font-size: 14px;
}
.selection > span {
  font-size: 14px;
}
#remove-selection {
  position: absolute;
  right: 3px;
  top: 3px;
  padding: 0 6px;
  border: 0;
  background: none;
  color: #718097;
  font-size: 20px;
}
label {
  font-size: 14px;
}
label > span {
  font-size: 11px;
}
.stake-wrap {
  border-color: #c9d4e5;
}
.stake-wrap:focus-within {
  outline: 2px solid #4171be;
  outline-offset: 2px;
}
.stake-wrap input:focus {
  outline: none;
}
.quick-stakes {
  margin-bottom: 18px;
}
.quick-stakes button:hover {
  background: #eaf0fa;
  border-color: #b8c9e4;
}
.return {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.return strong {
  font-size: 19px;
  color: #123d8d;
}
.stake-insight {
  margin: 17px 0;
  display: grid;
  gap: 9px;
}
.stake-insight > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #708098;
}
.stake-insight strong {
  color: #33425a;
  font-weight: 500;
}
.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.small-note {
  font-size: 12px;
  line-height: 1.6;
  color: #77849a;
}
.slip-title h3 {
  font-size: 17px;
}
.slip-bottom {
  font-size: 12px;
}
.ticket-icon {
  color: #9aaac1;
}
#empty-slip {
  padding: 30px 0;
}
#empty-slip p {
  font-size: 13px;
  color: #718097;
}
.count-badge {
  background: #edf2fa;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
}
#open-bets {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
#open-bets h3 {
  font-size: 14px;
}
.open-ticket {
  border: 1px solid #e0e6ee;
  padding: 12px;
  border-radius: 4px;
  margin-top: 10px;
  background: #f9fbfd;
}
.open-ticket > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 8px;
}
.open-ticket small {
  font-size: 11px;
  color: #718097;
}
.open-ticket strong {
  font-size: 13px;
}
.empty-copy {
  font-size: 13px;
  color: #7b889d;
  line-height: 1.7;
  margin: 5px 0;
}
.link-button {
  border: 0;
  background: none;
  padding: 12px 0;
  color: #245198;
  font-size: 13px;
  font-weight: 600;
}
.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.calc-fields label {
  font-size: 12px;
  line-height: 1.6;
}
.calc-fields input {
  margin-top: 7px;
  min-width: 0;
  padding: 10px;
  font-size: 16px;
  border-color: #d3ddea;
}
.side-tool .panel-note {
  margin: 0 0 16px;
}
.calc-button {
  background: #edf2fa;
  color: var(--blue);
  width: 100%;
  padding: 11px;
  margin: 8px 0;
}
.field-warning {
  color: #b02f44;
  font-size: 12px;
  line-height: 1.6;
}
#calc-result dl {
  font-size: 12px;
  margin-bottom: 0;
}
#calc-result dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
#calc-result dt {
  color: #718097;
}
#calc-result dd {
  font-weight: 600;
  margin: 0;
}
#round-tape {
  margin: 20px 0;
}
.result-tape {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.result-chip {
  background: #f8f9fc;
  border: 1px solid #dce3ee;
  border-left: 3px solid var(--red);
  border-radius: 4px;
  flex-shrink: 0;
  padding: 10px 13px;
  color: var(--ink);
}
.result-chip.blue {
  border-left-color: var(--blue);
}
.result-chip span {
  display: block;
  font-size: 11px;
  color: #718097;
  margin-bottom: 5px;
}
.result-chip strong {
  font-size: 13px;
}
.stats-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 24px 0;
}
.stats-overview > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 23px;
}
.stats-overview small {
  font-size: 12px;
  color: #718097;
  display: block;
}
.stats-overview strong {
  font-size: 25px;
  letter-spacing: -0.7px;
  display: block;
  margin-top: 10px;
}
.history-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.history-toolbar label,
.panel-heading label {
  font-size: 12px;
  color: #64748b;
}
select {
  font: inherit;
  background: white;
  color: #33425a;
  border: 1px solid #d8e0eb;
  border-radius: 4px;
  padding: 8px;
  margin-left: 8px;
}
.table-scroll {
  overflow: auto;
}
.data-table {
  margin: 16px 0;
  width: 100%;
  white-space: nowrap;
}
.data-table th {
  font-size: 12px;
  color: #74829a;
  letter-spacing: 0;
}
.data-table td {
  font-size: 14px;
}
.data-table th,
.data-table td {
  padding: 17px 13px;
  border-color: #e3e9f1;
}
.data-table td:first-child {
  padding-left: 0;
}
.data-table td small {
  display: block;
  font-size: 11px;
  color: #8390a3;
  margin-top: 6px;
}
.bet-status {
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.bet-status.pending {
  background: #edf2fa;
  color: #345f9b;
}
.bet-status.won {
  background: #e8f1ec;
  color: #34734f;
}
.bet-status.lost {
  background: #f4e9eb;
  color: #a25360;
}
.reset-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.reset-row p {
  font-size: 12px;
  color: #718097;
}
.empty-state {
  text-align: center;
  padding: 50px 20px;
}
.empty-state p {
  font-size: 14px;
  color: #7d889a;
  line-height: 1.7;
}
.empty-state strong {
  font-size: 18px;
}
.schedule-list {
  margin: 26px 0;
}
.schedule-card {
  display: flex;
  gap: 25px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 25px;
  margin-bottom: 16px;
}
.schedule-card > div:nth-child(2) {
  flex: 1;
}
.schedule-time {
  min-width: 95px;
  border-right: 1px solid var(--line);
  padding-right: 22px;
}
.schedule-time small {
  display: block;
  font-size: 12px;
  color: #718097;
  margin-bottom: 10px;
}
.schedule-time strong {
  font-size: 22px;
  color: #244574;
}
.schedule-card h3 {
  font-size: 19px;
  margin: 14px 0 10px;
}
.schedule-card h3 span {
  font-size: 13px;
  color: #8a94a5;
  margin: 0 7px;
}
.schedule-card p {
  font-size: 13px;
  color: #718097;
  margin: 0;
}
.site-footer {
  padding: 20px 0;
  margin-top: 25px;
  font-size: 12px;
}
.guest main {
  padding: 0;
}
.guest .site-footer {
  display: none;
}
.guest #landing {
  background: linear-gradient(180deg, #fff, #f7f9fc);
}
.guest .login-card {
  padding: 28px;
}
.guest .landing-logo {
  width: 240px;
}
.guest .login-card .eyebrow {
  font-size: 11px;
  line-height: 1.6;
}
.auth-logo {
  width: 130px;
}
dialog {
  background: white;
}
dialog small {
  font-size: 12px;
}
.brand .brand-sub,
.guest .brand-sub {
  font-size: 9px;
  letter-spacing: 0.3px;
}
.header-logo {
  width: 95px;
}
.demo-tag {
  font-size: 11px;
}
.language-toggle button {
  font-size: 13px;
}
.sidebar-bottom small {
  font-size: 10px;
}
#collapse span {
  font-size: 10px;
}
.nav em {
  font-size: 9px;
}
@media (min-width: 1450px) {
  .arena-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
  .broadcast {
    max-height: 470px;
  }
}
@media (max-width: 1150px) {
  aside {
    width: 155px;
  }
  .arena-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
  }
  main {
    padding: 20px;
  }
  .compare-grid {
    gap: 10px;
  }
  .competitor {
    padding: 12px;
  }
  .corner-name h4 {
    font-size: 14px;
  }
  .record {
    flex-wrap: wrap;
  }
  .record strong {
    font-size: 21px;
  }
  .form-row {
    flex-wrap: wrap;
  }
  .panel {
    padding: 17px;
  }
  .odds-card footer span {
    display: none;
  }
  .broadcast-top > span:last-child {
    font-size: 9px;
  }
  .broadcast-top {
    font-size: 11px;
  }
  .panel-heading {
    flex-wrap: wrap;
  }
  .stats-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 950px) {
  aside {
    width: 66px;
  }
  .nav b,
  .nav em,
  #collapse span,
  .sidebar-bottom {
    display: none;
  }
  .arena-layout {
    grid-template-columns: minmax(0, 1fr) 275px;
  }
  .nav {
    padding: 16px 12px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .price-metric {
    margin-top: 10px;
    padding-top: 10px;
  }
  .competitor p {
    margin-bottom: 10px;
  }
}
@media (max-width: 780px) {
  .arena-layout {
    grid-template-columns: 1fr;
  }
  .tools-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
  .betslip {
    margin: 0;
  }
  .side-tool {
    margin: 0;
  }
  .broadcast-top > span:last-child {
    font-size: 11px;
  }
  .broadcast-top,
  .broadcast-bottom {
    font-size: 12px;
  }
  .schedule-card {
    flex-wrap: wrap;
  }
  .schedule-card > .button {
    margin-left: auto;
  }
  .stats-overview > div {
    padding: 18px;
  }
  .broadcast-badge {
    display: none;
  }
}
@media (max-width: 540px) {
  header {
    min-height: 90px;
    height: auto;
    padding: 12px;
    gap: 10px;
  }
  .account {
    gap: 8px;
  }
  .brand .brand-sub,
  .guest .brand-sub {
    font-size: 7px;
  }
  .guest header {
    flex-wrap: nowrap;
  }
  .guest .account {
    gap: 4px;
  }
  .guest .account .button {
    padding: 10px;
    font-size: 12px;
  }
  .guest .account .text-button {
    font-size: 12px;
  }
  .language-toggle button {
    padding: 6px;
    font-size: 12px;
  }
  aside {
    width: 48px;
    padding: 20px 0;
  }
  .nav {
    padding: 16px;
  }
  .nav span {
    font-size: 16px;
  }
  main {
    padding: 14px;
    min-width: 0;
  }
  .page-heading h2 {
    font-size: 21px;
  }
  .page-heading .eyebrow {
    font-size: 10px;
  }
  .page-heading .live-label {
    margin-top: 10px;
  }
  .tools-rail {
    grid-template-columns: 1fr;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .broadcast-top > span:last-child {
    font-size: 8px;
  }
  .broadcast-top {
    font-size: 10px;
  }
  .broadcast-bottom {
    font-size: 8px;
  }
  .broadcast-bottom button {
    font-size: 10px;
    padding: 5px;
  }
  .broadcast-bottom > span {
    display: none;
  }
  .broadcast-top,
  .broadcast-bottom {
    left: 10px;
    right: 10px;
  }
  .broadcast {
    min-height: 205px;
  }
  .arena-title {
    top: 28%;
    font-size: 29px;
  }
  .arena-title small {
    font-size: 8px;
  }
  .chicken {
    font-size: 68px;
  }
  .volume-control {
    bottom: 44px;
    right: 12px;
  }
  .volume-control input {
    width: 60px;
  }
  .match-strip {
    padding: 12px;
    gap: 10px;
  }
  .match-strip strong {
    font-size: 12px;
  }
  .match-strip small {
    font-size: 11px;
  }
  .match-strip > div:last-child {
    display: block;
    text-align: right;
  }
  .match-strip .countdown {
    font-size: 19px;
  }
  .market-heading {
    gap: 9px;
  }
  .market-heading h3 {
    font-size: 16px;
  }
  #odds-format {
    margin-left: 0;
  }
  .odds-card {
    height: 108px;
    padding: 10px;
  }
  .odds-card strong {
    font-size: 35px;
  }
  .odds-card > span {
    font-size: 10px;
  }
  .odds-card footer {
    font-size: 12px;
  }
  .info-tabs {
    gap: 15px;
  }
  .info-tabs button {
    font-size: 12px;
  }
  .panel-heading h3 {
    font-size: 15px;
  }
  .quote-table {
    font-size: 11px;
  }
  .quote-table > div {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 5px;
  }
  .quote-table strong {
    font-size: 10px;
  }
  .stats-overview {
    gap: 10px;
  }
  .stats-overview > div {
    padding: 13px;
  }
  .stats-overview strong {
    font-size: 21px;
  }
  .stats-overview small {
    font-size: 11px;
  }
  .history-toolbar label {
    width: 100%;
  }
  .reset-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .schedule-card {
    padding: 17px;
    gap: 16px;
  }
  .schedule-time {
    min-width: 70px;
    padding-right: 12px;
  }
  .schedule-time strong {
    font-size: 17px;
  }
  .schedule-card h3 {
    font-size: 16px;
  }
  .schedule-card > .subtle-tag {
    margin-left: auto;
  }
  .site-footer span {
    font-size: 10px;
  }
  .guest .login-card {
    padding: 20px;
  }
  .guest .landing-logo {
    width: 210px;
  }
}
/* Selected corners stay grounded and glow in their team color. */
.red-card {
  --selection-glow: #e7435966;
  --selection-ring: #f26779;
}
.blue-card {
  --selection-glow: #396de677;
  --selection-ring: #7099ef;
}
.odds-card[aria-pressed="true"] {
  outline: 2px solid var(--selection-ring);
  outline-offset: 3px;
  box-shadow:
    inset 0 1px 0 #ffffff35,
    0 6px 0 var(--base),
    0 0 12px 5px var(--selection-glow),
    0 10px 18px var(--glow);
}
.odds-card.odds-updated {
  animation: none;
}
.odds-card[aria-pressed="true"].is-pressed,
.odds-card[aria-pressed="true"]:active {
  box-shadow:
    inset 0 2px 5px #0002,
    0 1px 0 var(--base),
    0 0 12px 4px var(--selection-glow);
}
.tools-rail {
  display: flex;
  flex-direction: column;
}
.schedule-days {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 4px 14px;
  margin: 24px -4px 20px;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
}
.schedule-day {
  flex: 1 0 90px;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: #64748b;
  text-transform: capitalize;
}
.schedule-day span {
  font-size: 13px;
  font-weight: 600;
}
.schedule-day strong {
  font-size: 25px;
  color: var(--ink);
  font-weight: 600;
}
.schedule-day small {
  font-size: 12px;
}
.schedule-day:hover {
  border-color: #a7bbdd;
  background: #f3f7fe;
}
.schedule-day[aria-pressed="true"] {
  background: #123d8d;
  border-color: #123d8d;
  color: white;
}
.schedule-day[aria-pressed="true"] strong {
  color: white;
}
.schedule-date {
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px;
}
@media (max-width: 540px) {
  .schedule-day {
    flex: 0 0 78px;
    min-width: 78px;
    padding: 12px 8px;
  }
  .schedule-days {
    gap: 8px;
  }
  .schedule-day span {
    font-size: 12px;
  }
}

/* Center the capped broadcast over both corners, with controls directly below. */
.arena-layout > div:first-child {
  min-width: 0;
}
.arena-layout .broadcast {
  width: 100%;
  max-width: 835.5556px;
  margin-inline: auto;
}
.broadcast + .odds-grid {
  margin-top: 12px;
}

/* Minimal broadcast audio controls, anchored along the bottom edge. */
.broadcast .volume-control {
  bottom: 12px;
  right: 14px;
  gap: 8px;
}
#mute-sound {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #ffffff40;
  border-radius: 5px;
  background: #12243580;
  color: white;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
#mute-sound:hover {
  background: #ffffff25;
}
#mute-sound:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}
#mute-sound[aria-pressed="true"] {
  color: #b8c8d5;
}
