/* Reset */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  background: #101010;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 42px;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  background: url("/images/background.jpg") center/cover no-repeat;
  z-index: 0;
}

.panel {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: min(540px, 44vw);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  padding: 28px 32px 30px;
  backdrop-filter: blur(2px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #1ea0ce;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.subheading {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #d8d8d8;
}

.date-card {
  background: #e6e6e6;
  color: #323232;
  text-align: center;
  border-radius: 6px;
  padding: 16px 12px 10px;
}

.date {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.time {
  margin: 6px 0 0;
  font-size: 64px;
  font-weight: 900;
}

.body-text {
  margin: 22px 0 26px;
  font-size: 17px;
  line-height: 1.8;
  color: #eaeaea;
}

.body-text p {
  margin: 6px 0;
}

.highlight {
  color: #1ca4e3;
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 54px;
  padding: 0 24px;
  background: linear-gradient(180deg, #1ab6f4 0%, #0d8cc7 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.42);
  filter: brightness(1.04);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.closed-sign {
  display: none;
}

.mobile-logo {
  display: none;
  position: absolute;
  top: 0px;
  z-index: 1;
  width: 134px;
  left: calc(50% - 67px);
  top: 15px;
}

.body-text.body-text-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .page {
    padding: 28px 24px;
  }

  .panel {
    width: min(520px, 70vw);
  }
}

@media (max-width: 768px) {
  .mobile-logo {
    display: block;
  }

  .page {
    align-items: center;
    padding: 20px 16px 32px;
  }

  .panel {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
  }

  .body-text {
    display: none;
  }
  .body-text.body-text-mobile {
    display: block;
  }
}

@media (max-width: 540px) {
  .mobile-logo {
    display: block;
  }

  .page {
    padding: 18px 12px 28px;
  }

  .panel {
    padding: 22px 18px;
  }

  .date {
    font-size: 22px;
  }

  .time {
    font-size: 48px;
  }

  .body-text {
    font-size: 15px;
  }

  .cta {
    width: 100%;
    max-width: 260px;
  }

  .body-text {
    display: none;
  }
  .body-text.body-text-mobile {
    display: block;
  }
}
