* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fbbe18;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 10;
}

header img {
  width: 500px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

header h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
  text-align: right;
}

main#schedule-main,
main#stickers-main {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  overflow: hidden;
}

main#schedule-main {
  padding: 40px 50px;
}

.schedule {
  max-width: 1100px;
  margin: 0 auto;
}

.schedule-item {
  border-bottom: 2px solid #333;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.top-line {
  display: flex;
  align-items: baseline;
  gap: 25px;
}

.name {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
}

.time {
  font-size: 36px;
  font-weight: 700;
  color: #fbbe18;
}

.location {
  margin-top: 8px;
  color: #999;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description {
  margin-top: 10px;
  max-width: 800px;
  color: #ddd;
  font-size: 18px;
  line-height: 1.4;
}

.ticker {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: #fbbe18;
  color: #050505;
  border-top: 4px solid #050505;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 20;
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  margin-right: 30px;
  font-size: 21px;
  font-weight: 600;
}

.ticker-item strong {
  margin-right: 12px;
  font-size: 23px;
  font-weight: 900;
}

.separator {
  margin-right: 30px;
  font-size: 28px;
  font-weight: 900;
}

@media (max-width: 700px) {
  header {
    height: 110px;
    padding: 0 25px;
    gap: 20px;
  }

  header img {
    width: 90px;
    height: 65px;
  }

  header h1 {
    font-size: 42px;
  }

  main {
    top: 110px;
    bottom: 65px;
    padding: 25px;
  }

  .schedule-item {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .name {
    font-size: 29px;
  }

  .time {
    font-size: 27px;
  }

  .location {
    font-size: 14px;
  }

  .description {
    font-size: 15px;
  }

  .ticker {
    height: 65px;
  }
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.zoom-image {
  position: absolute;
  pointer-events: none;
  user-select: none;
  will-change: left, top, width, height;
}
