/* ========== 全局重置 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #4a2e08;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #f5e7c8;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
}

/* ========== 主容器 ========== */
.scroll-container {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.page {
  position: relative;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 8vh 4vw 6vh;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

/* 全页统一背景：金色图 */
.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 14, 2, 0.52) 0%, rgba(30, 14, 2, 0.32) 50%, rgba(30, 14, 2, 0.52) 100%),
    url("背景.jpg") center/cover no-repeat;
  z-index: 0;
}

/* 装饰粒子（伪元素模拟星光） */
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 220, 150, 0.6), transparent),
    radial-gradient(1px 1px at 60% 50%, rgba(255, 235, 180, 0.5), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(255, 210, 130, 0.5), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255, 240, 190, 0.6), transparent),
    radial-gradient(2px 2px at 70% 80%, rgba(255, 220, 150, 0.4), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 235, 180, 0.5), transparent);
  background-size: 400px 400px;
  animation: twinkle 4s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes twinkle {
  0%   { opacity: 0.4; }
  100% { opacity: 0.9; }
}

/* 页码 */
.page-index {
  position: absolute;
  top: 3vh;
  right: 6vw;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 245, 214, 0.9);
  z-index: 5;
  font-weight: 300;
}

/* ========== 通用文字 ========== */
.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: #fff5d6;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 300;
}

.section-title {
  font-size: 30px;
  letter-spacing: 8px;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(180deg, #fff5d6 0%, #e6c079 55%, #a07030 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85));
  margin-bottom: 10px;
}

.section-sub {
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255, 245, 214, 0.95);
  text-align: center;
  font-weight: 300;
}

/* ========== 第1页：封面 ========== */
.cover-bg {
  position: absolute;
  inset: 0;
  background-image: url("海报.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.75);
  z-index: 1;
  transform: scale(1.05);
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(10, 6, 3, 0.75) 100%),
    linear-gradient(180deg, rgba(10, 6, 3, 0.5) 0%, rgba(10, 6, 3, 0.2) 40%, rgba(10, 6, 3, 0.9) 100%);
  z-index: 2;
}

.cover-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 5vh 0;
}

.brand-logo {
  text-align: center;
  margin-bottom: 8px;
}

.brand-en {
  font-size: 11px;
  letter-spacing: 5px;
  color: #fff5d6;
  font-weight: 400;
}

.brand-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a54a, transparent);
  margin: 8px auto 0;
}

.cover-year {
  font-size: 20px;
  letter-spacing: 6px;
  color: #f5e7c8;
  font-weight: 300;
}

.cover-title {
  text-align: center;
  line-height: 1.1;
}

.cover-title span {
  display: block;
  font-size: 48px;
  letter-spacing: 12px;
  font-weight: 700;
  background: linear-gradient(180deg, #fff5d6 0%, #f0c878 40%, #c89040 80%, #8f5f20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.85));
  padding-left: 12px;
}

.cover-title-sub {
  font-size: 20px !important;
  letter-spacing: 8px !important;
  font-weight: 400 !important;
  margin-top: 8px;
}

.cover-slogan-box {
  text-align: center;
  padding: 16px 32px;
  border-top: 1px solid rgba(212, 165, 74, 0.5);
  border-bottom: 1px solid rgba(212, 165, 74, 0.5);
  position: relative;
}

.cover-slogan-box::before,
.cover-slogan-box::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d4a54a;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 8px #d4a54a;
}

.cover-slogan-box::before { left: -3px; }
.cover-slogan-box::after  { right: -3px; }

.cover-slogan-main {
  font-size: 22px;
  letter-spacing: 6px;
  color: #f5e7c8;
  font-weight: 500;
  margin-bottom: 8px;
}

.cover-slogan-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245, 231, 200, 0.85);
  font-weight: 300;
}

.cover-date-wrap {
  text-align: center;
  margin-top: 12px;
}

.cover-date-label {
  font-size: 12px;
  letter-spacing: 4px;
  color: #fff5d6;
  margin-bottom: 6px;
}

.cover-date {
  font-size: 32px;
  letter-spacing: 4px;
  font-weight: 300;
  color: #fff5d6;
  font-family: "Georgia", "Times New Roman", serif;
  text-shadow: 0 0 15px rgba(212, 165, 74, 0.6);
}

/* 下滑提示 */
.scroll-hint {
  position: absolute;
  bottom: 4vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 245, 214, 0.95);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint span {
  display: block;
  margin-bottom: 6px;
}

.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid #d4a54a;
  border-bottom: 1.5px solid #d4a54a;
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========== 第2页：邀请函 ========== */
.deco-frame {
  position: relative;
  z-index: 2;
  flex: 1;
  margin: 4vh 0;
  border: 1px solid rgba(212, 165, 74, 0.4);
  padding: 7vh 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.deco-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 165, 74, 0.25);
  pointer-events: none;
}

.deco-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #d4a54a;
  border-style: solid;
  border-width: 0;
}

.deco-corner.tl { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.deco-corner.tr { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.deco-corner.bl { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.deco-corner.br { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.invite-content {
  text-align: center;
}

.invite-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 24px;
  letter-spacing: 8px;
  color: #fff5d6;
  text-shadow: 0 0 12px rgba(212, 165, 74, 0.8);
  margin-bottom: 24px;
}

.invite-icon {
  margin-top: -7vh;
  margin-left: 35px;
  height: 16vh;
  width: auto;
}

.invite-line {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a54a, transparent);
}

.invite-title {
  font-size: 28px;
  letter-spacing: 6px;
  font-weight: 600;
  background: linear-gradient(180deg, #fff5d6 0%, #e6c079 50%, #a07030 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85));
  margin-bottom: 20px;
  white-space: nowrap;
}

.invite-divider {
  text-align: center;
  color: #fff5d6;
  font-size: 14px;
  margin-bottom: 28px;
  position: relative;
}

.invite-divider::before,
.invite-divider::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a54a);
  vertical-align: middle;
  margin: 0 8px;
}

.invite-divider::after {
  background: linear-gradient(90deg, #d4a54a, transparent);
}

.diamond {
  font-size: 10px;
}

.invite-body {
  text-align: left;
}

.invite-body p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1.5px;
  color: rgba(245, 231, 200, 0.92);
  text-indent: 2em;
  margin-bottom: 12px;
  font-weight: 300;
}

.invite-body b {
  color: #f0c878;
  font-weight: 600;
}

.invite-signature {
  margin-top: 32px;
  text-align: right;
}

.invite-signature-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a54a);
  margin: 0 0 12px auto;
}

.invite-signature-text {
  font-size: 13px;
  letter-spacing: 3px;
  color: #fff5d6;
  text-shadow: 0 0 12px rgba(212, 165, 74, 0.8);
  font-weight: 300;
}

/* ========== 第3页：佳丽风采 ========== */
.page-beauty {
  padding: 6vh 0 6vh;
}

.beauty-header {
  padding: 0 6vw;
  z-index: 2;
  position: relative;
}

.beauty-marquee {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 20px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-row {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 14px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  will-change: transform;
}

.marquee-row-1 .marquee-track {
  animation: marqueeLeft 60s linear infinite;
}

.marquee-row-2 .marquee-track {
  animation: marqueeRight 60s linear infinite;
}

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.beauty-card {
  flex-shrink: 0;
  height: 100%;
  aspect-ratio: 2 / 3;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 74, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 12px rgba(212, 165, 74, 0.15);
}

.beauty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beauty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 6, 3, 0.85) 100%);
  pointer-events: none;
}

.beauty-card-name {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: #f5e7c8;
  z-index: 2;
  font-weight: 300;
}

.beauty-footer {
  padding: 0 6vw;
  z-index: 2;
  position: relative;
  text-align: center;
}

.beauty-quote {
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff5d6;
  font-style: italic;
  font-weight: 300;
}

/* ========== 第4页：活动流程 ========== */
.schedule-header {
  z-index: 2;
  position: relative;
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 24px;
}

.timeline-line {
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #d4a54a 15%, #d4a54a 85%, transparent);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
}

.timeline-dot {
  position: absolute;
  left: -21px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff5d6 0%, #d4a54a 60%, #8f5f20 100%);
  box-shadow: 0 0 12px rgba(212, 165, 74, 0.8);
  z-index: 3;
}

.timeline-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(212, 165, 74, 0.4);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.timeline-time {
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff5d6;
  margin-bottom: 6px;
  font-family: "Georgia", "Times New Roman", serif;
}

.timeline-card {
  background: linear-gradient(135deg, rgba(212, 165, 74, 0.35) 0%, rgba(140, 100, 30, 0.25) 100%);
  border: 1px solid rgba(212, 165, 74, 0.6);
  border-radius: 6px;
  padding: 14px 16px;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.timeline-icon {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #d4a54a;
  font-size: 14px;
  opacity: 0.7;
}

.timeline-title {
  font-size: 18px;
  letter-spacing: 3px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255, 245, 214, 0.95);
  font-weight: 300;
}

/* ========== 第5页：席位预定 ========== */
.seat-header {
  z-index: 2;
  position: relative;
  margin-bottom: 24px;
}

.seat-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(212, 165, 74, 0.2) 0%, rgba(60, 40, 20, 0.4) 100%);
  border: 1px solid rgba(212, 165, 74, 0.5);
  border-radius: 12px;
  padding: 28px 24px 24px;
  text-align: center;
  box-shadow:
    0 0 40px rgba(212, 165, 74, 0.15),
    inset 0 1px 0 rgba(255, 245, 214, 0.1);
  backdrop-filter: blur(4px);
}

.seat-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(212, 165, 74, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.seat-crown {
  font-size: 30px;
  color: #f0c878;
  text-shadow: 0 0 15px rgba(240, 200, 120, 0.6);
  margin-bottom: 8px;
}

.seat-card-title {
  font-size: 18px;
  letter-spacing: 4px;
  color: #f5e7c8;
  font-weight: 500;
  margin-bottom: 16px;
}

.seat-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: #fff5d6;
  margin-bottom: 4px;
}

.seat-price-currency {
  font-size: 20px;
  color: #fff5d6;
}

.seat-price-num {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(180deg, #fff5d6 0%, #f0c878 50%, #c89040 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.85));
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 2px;
}

.seat-price-unit {
  font-size: 14px;
  color: #fff5d6;
  letter-spacing: 2px;
  margin-left: 4px;
}

.seat-price-note {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 245, 214, 0.9);
  margin-bottom: 18px;
}

.seat-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a54a, transparent);
  margin: 12px 0 18px;
}

.seat-benefits {
  text-align: left;
}

.seat-benefit-title {
  font-size: 13px;
  letter-spacing: 4px;
  color: #fff5d6;
  text-align: center;
  margin-bottom: 16px;
}

.seat-benefit-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: rgba(245, 231, 200, 0.9);
}

.seat-benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  color: #fff5d6;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 6px;
}

.seat-benefit-item b {
  color: #f0c878;
  font-weight: 600;
}

.seat-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 12px;
  letter-spacing: 4px;
  color: #fff5d6;
  text-shadow: 0 0 12px rgba(212, 165, 74, 0.8);
  margin-top: 20px;
  font-weight: 300;
}

/* ========== 第6页：场馆定位 ========== */
.location-header {
  z-index: 2;
  position: relative;
  margin-bottom: 24px;
}

.location-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(212, 165, 74, 0.15) 0%, rgba(60, 40, 20, 0.35) 100%);
  border: 1px solid rgba(212, 165, 74, 0.5);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 40px rgba(212, 165, 74, 0.12);
}

.location-pin {
  color: #f0c878;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 12px rgba(240, 200, 120, 0.6));
  display: inline-block;
}

.location-name {
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 600;
  background: linear-gradient(180deg, #fff5d6 0%, #e6c079 60%, #a07030 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85));
  margin-bottom: 4px;
}

.location-sub-name {
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255, 245, 214, 0.95);
  font-weight: 300;
}

.location-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a54a, transparent);
  margin: 18px 0;
}

.location-address {
  margin-bottom: 22px;
}

.location-address-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: #fff5d6;
  margin-bottom: 8px;
}

.location-address-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1.5px;
  color: rgba(255, 245, 214, 0.95);
  font-weight: 300;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(90deg, #d4a54a 0%, #f0c878 50%, #d4a54a 100%);
  color: #1a0f05;
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(212, 165, 74, 0.4);
  transition: transform 0.15s ease;
}

.location-btn:active {
  transform: scale(0.97);
}

.location-btn-icon {
  font-size: 16px;
}

.location-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
}

.footer-logo {
  font-size: 14px;
  letter-spacing: 4px;
  color: #fff5d6;
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-sponsor {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 1px;
  color: rgba(255, 245, 214, 0.9);
  margin-bottom: 12px;
}

.footer-sponsor-sm {
  font-size: 9px;
  color: rgba(255, 245, 214, 0.8);
}

.footer-copyright {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255, 245, 214, 0.7);
}

/* ========== 侧边翻页指示器 ========== */
.page-dots {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 231, 200, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-dot.active {
  background: #d4a54a;
  box-shadow: 0 0 8px #d4a54a;
  transform: scale(1.4);
}

/* ========== 入场动画 ========== */
.anim-item {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.anim-item[data-anim="fadeUp"]   { transform: translateY(40px); }
.anim-item[data-anim="fadeDown"] { transform: translateY(-40px); }
.anim-item[data-anim="fadeLeft"] { transform: translateX(-40px); }
.anim-item[data-anim="zoomIn"]   { transform: scale(0.85); }

.anim-item.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ========== 兼容小屏幕 ========== */
@media (max-height: 700px) {
  .cover-title span { font-size: 40px; }
  .cover-slogan-main { font-size: 18px; }
  .cover-date { font-size: 26px; }
  .section-title { font-size: 26px; }
  .invite-body p { font-size: 13px; line-height: 1.9; }
  .timeline-title { font-size: 16px; }
  .seat-price-num { font-size: 40px; }
  .location-name { font-size: 20px; }
}

@media (max-width: 360px) {
  .invite-title { font-size: 24px; letter-spacing: 4px; }
}

@media (max-height: 600px) {
  .page { padding: 5vh 4vw 4vh; }
  .cover-title span { font-size: 34px; letter-spacing: 8px; }
  .cover-content { gap: 14px; }
  .invite-body p { font-size: 12px; }
  .seat-price-num { font-size: 34px; }
}
