body {
  margin: 0;
  font-family: Arial;
  background: #0a0a0a;
  color: white;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  box-sizing: border-box;
}

.header {
  background: linear-gradient(90deg, #002f6c, #004aad);
  text-align: center;
  font-size: 56px;
  font-weight: bold;
  padding: 14px;
  letter-spacing: 3px;
}

.fixture {
  height: calc(1080px - 150px);
  display: grid;
  grid-template-rows: repeat(9, 1fr);
  row-gap: 10px;
  padding: 10px 0;
}

.matchRow {
  display: grid;
  grid-template-columns: 100px 1fr 80px 1fr 100px 220px 260px;
  align-items: center;
  font-size: 34px;
  font-weight: bold;
  padding: 8px 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.matchRow img {
  height: 60px;
}

.tonight {
  background: white;
  color: black;
  border-left: 10px solid red;
  animation: flashTonight 1.5s infinite;
}

@keyframes flashTonight {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.liveStrip {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: #00c853;
  color: #000;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 5px 14px;
  border-radius: 20px;
  animation: fadeSlideIn 0.6s ease;
}

.liveBanner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100px 100px 100px 100px 100px 1fr;
  grid-template-rows: auto auto auto;
  background: #e6e6e6;
  border-radius: 10px;
  padding: 35px 30px 0 30px;
  color: #111;
  align-items: center;
  border-left: 10px solid #00c853;
  border-top: 5px solid #00c853;
  overflow: visible;
}

.teamLeft,
.teamRight {
  font-size: 55px;
  font-weight: bold;
}

.teamLeft {
  grid-column: 1;
  text-align: right;
  padding-right: 10px;
}

.teamRight {
  grid-column: 7;
  text-align: left;
  padding-left: 10px;
}

.teamLogo {
  height: 55px;
  justify-self: center;
}

.teamLogo.left {
  grid-column: 2;
}

.teamLogo.right {
  grid-column: 6;
}

.score {
  font-size: 54px;
  font-weight: 900;
  text-align: center;
}

.score.left {
  grid-column: 3;
}

.score.right {
  grid-column: 5;
}

.aflLogo {
  grid-column: 4;
  height: 42px;
  justify-self: center;
}

.liveLeader,
.liveVenue {
  grid-column: 1 / -1;
  text-align: center;
}

.liveLeader {
  font-size: 30px;
  margin-top: 5px;
  font-weight: bold;
}

.liveVenue {
  font-size: 20px;
  opacity: 0.7;
  margin-bottom: 6px;
}

.liveTonight {
  display: inline-block;
  background: #e10600;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 14px;
  margin-left: 10px;
  animation: pulseTonight 1.4s infinite;
}

@keyframes pulseTonight {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}