/* Set --page-bg-image if you want to swap the global background artwork */
:root {
  --page-bg-image: url("/images/background.jpg");
  --gold: #f7c570;
  --card-bg: rgba(10, 6, 4);
  --text-muted: #d5ccc3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #fdfdfd;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", "Helvetica Neue", Arial, sans-serif;
  background: #040201;
}

body {
  min-height: 100vh;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 56px 20px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-bg,
.background-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.background-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 209, 149, 0.2), transparent 55%),
    radial-gradient(circle at 78% 70%, rgba(255, 169, 61, 0.45), rgba(5, 3, 2, 0.95) 65%),
    linear-gradient(165deg, #120904 0%, #050301 90%);
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1048px, 100%);
}

.logo-badge {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
}

.logo {
  width: min(420px, 74vw);
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.55));
}

.card {
  position: relative;
  width: 100%;
  background: var(--card-bg);
  border-radius: 21px;
  padding: 30px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 210, 120, 0.35);
}

.status-tag {
  position: absolute;
  width: 200px;
  top: 0;
  right: 0;
  transform: translate(42%, -32%) rotate(-6deg);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.content {
  text-align: center;
  line-height: 1.8;
}

.eyebrow {
  color: var(--gold);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 8px;
  margin: 0 0 10px;
}

.subheading {
  color: var(--text-muted);
  font-size: clamp(18px, 2.4vw, 22px);
  margin: 0 0 6px;
}

.date {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 2px;
  margin: 6px 0 12px;
}

.title {
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 900;
  color: #ff5c17;
  text-transform: uppercase;
  margin: 4px 0 36px;
}

.description {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--text-muted);
  margin: 0 auto 52px;
  max-width: 720px;
  text-align: left;
}

.description p {
  margin: 8px 0;
}

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

.accent-red {
  color: #ff5b2f;
  font-weight: 800;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 68px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffe0a4 0%, #f1b960 100%);
  color: #5b2f03;
  font-size: 24px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.65);
  filter: brightness(1.05);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
}

.description-mobile {
  display: none;
}

@media (max-width: 900px) {
  .card {
    padding: 64px 48px;
  }

  .status-tag {
    width: 150px;
    transform: translate(35%, -32%) rotate(-6deg);
  }
}

@media (max-width: 600px) {
  .page {
    padding: 32px 14px 48px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero {
    gap: 18px;
    width: 100%;
  }

  .logo {
    width: min(320px, 68vw);
  }

  .card {
    padding: 50px 26px 50px;
    border-radius: 24px;
    box-shadow: 0 32px 60px rgba(0, 0, 0, 0.65);
  }

  .status-tag {
    width: 120px;
    transform: translate(20%, -18%) rotate(-6deg);
  }

  .eyebrow {
    letter-spacing: 4px;
  }

  .date {
    font-size: 30px;
  }

  .title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 42px;
  }

  .cta {
    width: 220px;
    height: 58px;
    font-size: 20px;
  }

  .description {
    display: none;
  }
  .description.description-mobile {
    display: block;
  }
}
