:root {
  color: #111827;
  background: #0071fe;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, #0071fe 0%, #0071fe 58%, #f4f7fb 58%, #f4f7fb 100%);
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #0071fe;
  box-shadow: 0 18px 60px rgba(0, 40, 120, 0.18);
}

.hero {
  position: relative;
  height: 327px;
  overflow: visible;
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-logo-bg {
  position: absolute;
  top: -36px;
  left: -66px;
  width: 248px;
  height: 126px;
  opacity: 0.95;
}

.hero-mascot {
  position: absolute;
  z-index: 2;
  top: 82px;
  left: 132px;
  width: 240px;
  height: 225px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 27, 76, 0.18));
}

.hero-copy {
  position: absolute;
  z-index: 3;
  top: 96px;
  left: 21px;
}

.eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -1.26px;
}

.tagline {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 20px;
}

.content {
  min-height: calc(100vh - 327px);
  padding: 20px 15px 28px;
  background: #f4f7fb;
  border-radius: 24px 24px 0 0;
}

.schedule-card {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
}

.schedule-card {
  padding: 18px 14px;
}

.field-label {
  display: block;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.schedule-copy p {
  margin: 6px 0 0;
  color: #8a94a6;
  font-size: 13px;
  line-height: 20px;
}

.schedule-actions {
  margin-top: 16px;
}

.schedule-actions.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary-button,
.secondary-button {
  display: grid;
  width: 100%;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.primary-button {
  background: #0071fe;
  color: #ffffff;
}

.secondary-button {
  border: 1px solid #d7e0ef;
  background: #ffffff;
  color: #0071fe;
}

.primary-button:active {
  background: #005bd2;
}

.secondary-button:active {
  background: #eef5ff;
}

.toast {
  position: fixed;
  right: 50%;
  bottom: 32px;
  z-index: 20;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.92);
  color: #ffffff;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  transform: translateX(50%);
}

@media (min-width: 768px) {
  body {
    display: grid;
    place-items: center;
    padding: 32px;
    background:
      radial-gradient(circle at 18% 18%, rgba(0, 113, 254, 0.16), transparent 24rem),
      radial-gradient(circle at 82% 12%, rgba(0, 113, 254, 0.12), transparent 28rem),
      #edf4ff;
  }

  .app-shell {
    min-height: min(860px, calc(100vh - 64px));
    border-radius: 28px;
  }

  .content {
    min-height: 420px;
  }
}

@media (max-width: 360px) {
  .hero-mascot {
    left: 112px;
    width: 224px;
  }

  .hero h1 {
    font-size: 36px;
  }

}
