html,
body {
  margin: 0;
  min-height: 100%;
  background: #1d1d1d;
  font-family: "industry", sans-serif;
  font-weight: 600;
  font-style: normal;
  overflow: hidden;
  filter: blur(1.2px) saturate(90%);
}

.video-container {
  position: relative;
  max-width: 1200px;
  height: 100vh;
  overflow: hidden;
  margin: 0 auto;
}

.overlay-content,
.internal-container,
.tv,
.crt {
  width: 100%;
  height: 100%;
}

.overlay-content {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.crt {
  position: relative;
  overflow: hidden;
}

.top {
  height: 49%;
  display: grid;
  grid-template-columns: 52% 48%;
  background: #11155e;
}

.promo {
  position: relative;
  background:
    radial-gradient(
      circle at 35% 45%,
      rgba(88, 129, 255, 0.45),
      transparent 34%
    ),
    linear-gradient(135deg, #1d218f 0%, #3434b8 55%, #17205d 100%);
  overflow: hidden;
}

.promo::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  left: -25%;
  top: -10%;
  border-radius: 50%;
  border: 36px solid rgba(93, 143, 255, 0.32);
  transform: rotate(-28deg);
}

.promo-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #e64100;
  text-shadow:
    3px 3px 0 #1d1d1d,
    0 0 10px rgb(230 65 0 / 40%);
}
.sched-logo {
  max-height: 160px;
  height: 45%;
  margin-bottom:20px;
}
.promo a {
  color: #fff;
  text-decoration:none;
}
.promo h1,
.promo h2 {
  margin: 0 0 20px;
  font-size: 40px;
  letter-spacing: 0em;
  transform: scaleY(1.4);
}
.promo h1 {
  font-size: 30px;
  margin: 0 0 10px;
}
.promo p {
  font-size: 35px;
  color: white;
  margin: 0;
}

.video-box {
  position: relative;
  background: linear-gradient(90deg, #23208f, #332fa2 55%, #1b1b78);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow:hidden;
}
.video-box video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.65);
  filter: blur(0.2px) saturate(1.1);
}

.guide {
  height: 52%;
  background: #07133a;
  border-top: 8px solid #cbd9d8;
  filter: contrast(1.08) saturate(0.88);
}

.time-row {
  height: 17%;
  display: grid;
  grid-template-columns: 21% repeat(3, 1fr);
  border-bottom: 7px solid #cbd9d8;
}

.time-row > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #4b719a 0%, #315a87 42%, #162d56 100%);
  border-right: 7px solid #cbd9d8;
  box-shadow:
    inset 4px 4px 0 rgba(255, 255, 255, 0.3),
    inset -5px -5px 0 rgba(0, 0, 0, 0.38);
  font-size: 42px;
  color: #ff8e00;
  text-shadow:
    2px 0 rgba(255, 0, 0, 0.25),
    -2px 0 rgba(0, 130, 255, 0.22),
    3px 3px 0 #182214,
    0 0 8px rgba(255, 255, 80, 0.35);
}

.clock {
  color: #dfefff;
}
.scroll-window {
  height: 83%;
  overflow: hidden;
  position: relative;
  background: #07133a;
}

.scroll-window::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.07),
    transparent 18%,
    rgba(0, 80, 255, 0.06) 74%,
    transparent
  );
  mix-blend-mode: screen;
  opacity: 0.35;
  z-index: 5;
}

.channel-list {
  animation: scrollGuide 90s linear infinite;
}

@keyframes scrollGuide {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.row {
  display: grid;
  grid-template-columns: 21% repeat(12, 1fr);
  border-bottom: 7px solid #cbd9d8;
  min-height: 110px;
}

.row.is-expanded {
  min-height: 240px;
}

.channel {
  grid-column: 1;
  background: #07133a;
  color: #e9e765;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 52px;
  text-shadow: 3px 3px #000;
  border-right: 7px solid #cbd9d8;
}

.channel span {
  font-size: 26px;
}

.program {
  grid-column: span 4;
  background: linear-gradient(90deg, #071139, #0e1b52);
  border-right: 7px solid #cbd9d8;
  padding: 14px 18px;
  display: flex;
  align-items: center;
}

.span-2 {
  grid-column: span 8;
}

.span-3 {
  grid-column: span 12;
}

.program-inner,
.channel strong,
.channel span {
  position: relative;
  z-index: 3;
  white-space: normal;
  line-height: 1.1;
  color: #e7eeee;
  text-shadow:
    2px 0 rgba(255, 0, 0, 0.28),
    -2px 0 rgba(0, 130, 255, 0.25),
    3px 3px 0 rgba(0, 0, 0, 0.85),
    0 0 6px rgba(255, 255, 255, 0.25);
  filter: blur(0.15px);
}

.channel strong,
.channel span {
  color: #ff8e00;
}

.program-inner {
  font-size: 38px;
}

.arrow-right,
.arrow-left {
  transform: scaleY(210%);
  height: 90%;
  position: absolute;
}
.arrow-left {
  margin-right: 8px;
  left: 0;
  float: left;
}
.arrow-right {
  margin-left: 8px;
  right: 0;
  float: right;
}
.guide-icon {
  height: 28px;
  margin: 0 4px;
  vertical-align: middle;
  image-rendering: pixelated;
  filter: drop-shadow(2px 0 rgba(255, 0, 0, 0.28))
    drop-shadow(-2px 0 rgba(0, 130, 255, 0.25))
    drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.75)) blur(0.15px);
}

.video-container > .screen-container {
  position: absolute;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.program-inner,
.channel strong,
.channel span,
.time-row > div {
  text-shadow:
    2px 0 0 rgba(255, 40, 40, 0.42),
    -2px 0 0 rgba(40, 120, 255, 0.42),
    0 2px 0 rgba(60, 255, 120, 0.18),
    2px 2px 0 rgba(0, 0, 0, 0.9),
    0 0 8px rgba(255, 255, 255, 0.28);
  filter: blur(0.22px);
  letter-spacing: 0em;
}
.guide-icon {
  image-rendering: pixelated;
}
#screen-effect::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  animation: flicker 0.15s infinite;
}
@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.84693;
  }
  45% {
    opacity: 0.96019;
  }
  50% {
    opacity: 0.08594;
  }
  55% {
    opacity: 0.20313;
  }
  60% {
    opacity: 0.71988;
  }
  65% {
    opacity: 0.53455;
  }
  70% {
    opacity: 0.37288;
  }
  75% {
    opacity: 0.71428;
  }
  80% {
    opacity: 0.70419;
  }
  85% {
    opacity: 0.7003;
  }
  90% {
    opacity: 0.36108;
  }
  95% {
    opacity: 0.24387;
  }
  100% {
    opacity: 0.27861;
  }
}
.program {
  background: linear-gradient(90deg, #071139 0%, #0e1b52 48%, #071139 100%);
}
.program--gamehome {
  background: linear-gradient(90deg, #262b42 0%, #4357ad 48%, #262b42 100%);
}
.program--gameaway {
  background: linear-gradient(90deg, #171a28 0%, #3c4775 48%, #171a28 100%);
}
.program--movie {
  background: linear-gradient(90deg, #3c2d68 0%, #5b4791 48%, #2c2255 100%);
}
.program--offair {
  background: linear-gradient(90deg, #4b2529 0%, #7c3b3b 48%, #3f2026 100%);
}
.program--promo {
  background: linear-gradient(90deg, #ba4200 0%, #d85c19 48%, #ba4200 100%);
}
@media (max-width: 800px) {
  html, body {
    filter: blur(1px) saturate(90%);
  }
  .top {
    height: 33%;
  }
  .sched-logo {
    margin-bottom: 8px;
  }
  .promo h1 {
    display: none;
  }
  .promo h2 {
    margin: 0 0 5px;
    font-size: 20px;
  }
  .promo p {
    font-size: 16px;
  }
  .guide {
    height: 67%;
  }
  #clock {
    display: none;
    font-size:0;
  }
  .time-row {
    grid-template-columns:18% 41% 41%;
    height: 13%;
  }
  .time1, .time2, .time3 {
    visibility: hidden;
    position: relative;
    font-size:0 !important;
  }
  .time1::after {
    content: "";
  }
  .time2::after {
    content: "12 PM";
  }
  .time3::after {
    content: "1 PM";
  }
  .time1::after, .time2::after, .time3::after {
    visibility: visible;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #4b719a 0%, #315a87 42%, #162d56 100%);
    border-right: 7px solid #cbd9d8;
    box-shadow: inset 4px 4px 0 rgba(255, 255, 255, 0.3), inset -5px -5px 0 rgba(0, 0, 0, 0.38);
    font-size: 28px;
    color: #ff8e00;
    width: 100%;
    height: 100%;
    margin-left: 7px;
  }
  .row {
    grid-template-columns: 18% repeat(8, 1fr);
  }
  .channel {
    font-size: 34px;
  }
  .channel span {
    font-size: 20px;
  }
  .program {
    grid-column: span 4;
  }
  .span-2, .span-3 {
    grid-column: span 8;
  }
  .program-inner {
    font-size:28px;
  }
  .arrow-right {
    margin-left: 5px;
  }
  .arrow-right, .arrow-left {
    transform: scaleY(110%);
    height: 30%;
  }
  .guide {
    border-top: 5px solid #cbd9d8;
  }
  .time-row, .row {
    border-bottom: 5px solid #cbd9d8;
  }
  .channel, .program, .time-row > div {
    border-right: 5px solid #cbd9d8;
  }
  .guide-icon {
    height: 24px;
  }
}