/* HARD TV LOCK */
html, body {
  width: 1920px;
  height: 1080px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: black;
}

#canvas, #tv {
  width: 1920px;
  height: 1080px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

/* BASE */
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: #fff;
}

#canvas {
  background: radial-gradient(1200px 600px at 50% 0%, #0b1c3d 0%, #04070f 70%);
}

/* HEADER */
.header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 96px;
  border-bottom: 1px solid rgba(90,160,255,0.35);
}

.logo {
  height: 64px;
  width: auto;
}

.liveinfo {
  font-size: 22px;
  color: #A0A4B8;
  letter-spacing: 1px;
}

/* MAIN */
.main {
  position: relative;
  width: 100%;
  height: calc(1080px - 110px - 90px);
}

/* NEWS */
.news {
  padding: 120px 160px;
}

.news .label {
  font-size: 26px;
  letter-spacing: 3px;
  color: #3A8DFF;
  margin-bottom: 32px;
}

.news h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 1100px;
  color: #fff;
}

/* SIDE (UPCOMING) */
.side {
  position: absolute;
  right: 96px;
  top: 240px;
  width: 420px;
}

.side .label {
  font-size: 26px;
  letter-spacing: 3px;
  color: #3A8DFF;
  margin-bottom: 28px;
}

.side .time {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.side .title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

.side .subtitle {
  font-size: 24px;
  opacity: 0.85;
  margin-top: 6px;
  color: #fff;
}

/* TICKER */
#ticker {
  position: absolute;
  bottom: 0;
  height: 90px;
  width: 100%;
  border-top: 2px solid #3A8DFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.6);
}

#ticker .track {
  display: flex;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
}

#ticker span {
  font-size: 28px;
  padding-right: 64px;
  color: #d0dcff;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
