/* ============================================================
   DESIGN TOKENS — Figma v1.0
   ============================================================ */
:root {
  /* Colors */
  --primary: #a78bfa;
  --primary-soft: #2d1f5e;
  --accent: #f472b6;
  --cyan: #67e8f9;
  --pink: #f472b6;
  --ink: #f0edf6;
  --ink-sub: #c4b5d9;
  --muted: #8b7da8;
  --card: #1a1225;
  --bg-subtle: #140e1f;
  --border: #2d2340;
  --notice-bg: #231830;
  --notice-border: #3d2855;
  --notice-ink: #e8b4d0;

  /* Gradients */
  --gradient-brand: linear-gradient(120deg, #67e8f9, #a78bfa, #f472b6);
  --gradient-bg: linear-gradient(160deg, #0d0a18, #1a0e24, #0c0d1e);
  --gradient-btn: linear-gradient(120deg, #7c3aed, #ec4899);

  /* Typography */
  --font: "Pretendard", "Apple SD Gothic Neo", -apple-system, sans-serif;
  --fs-xs: 0.78rem; /* 12.5px */
  --fs-sm: 0.84rem; /* 13.4px */
  --fs-base: 0.92rem; /* 14.7px */
  --fs-md: 1rem; /* 16px */
  --fs-lg: 1.06rem; /* 17px */
  --fs-xl: 1.35rem; /* 21.6px */
  --fs-2xl: 1.7rem; /* 27.2px */
  --fs-3xl: 2.2rem; /* 35.2px */

  /* Spacing */
  --sp-xs: 5.6px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 24px;
  --sp-2xl: 40px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 36px rgba(0, 0, 0, 0.6);

  /* Layout */
  --max-w: 1200px;
  --header-h: 56px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--ink);
  background: #0d0a18 url("../images/party-hero.webp") center top / 100% auto
    repeat-y;
  min-height: 100dvh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}
input {
  font-family: var(--font);
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: var(--fs-md);
  border-radius: var(--r-full);
  transition:
    filter 0.18s,
    transform 0.14s,
    box-shadow 0.18s;
  white-space: nowrap;
  letter-spacing: -0.01em;
  padding: 0 var(--sp-xl);
  cursor: pointer;
  border: none;
}
.btn:hover {
  filter: brightness(1.1);
}
.btn:active {
  transform: scale(0.97);
}
.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  height: 48px;
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  height: 48px;
  background: var(--card);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-ghost {
  background: none;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--sp-xs) var(--sp-sm);
}

.btn-small {
  height: 32px;
  font-size: var(--fs-sm);
  padding: 0 var(--sp-md);
  border-radius: var(--r-full);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   BADGES & CHIPS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px var(--sp-md);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge-brand {
  background: rgba(124, 91, 245, 0.15);
  color: var(--primary);
  border: 1px solid rgba(124, 91, 245, 0.25);
}
.badge-accent {
  background: rgba(232, 67, 147, 0.13);
  color: var(--accent);
  border: 1px solid rgba(232, 67, 147, 0.25);
}
.badge-cyan {
  background: rgba(77, 217, 245, 0.13);
  color: #189bb5;
  border: 1px solid rgba(77, 217, 245, 0.3);
}
.badge-cyan {
  color: var(--cyan);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px var(--sp-lg);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

/* ============================================================
   HEADER — sticky, blur(18px), 56px height
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.2s,
    backdrop-filter 0.3s;
}
.site-header.scrolled,
.site-header.header-solid {
  background: rgba(20, 14, 31, 0.88);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo light/dark swap */
.logo {
  height: 40px;
  width: auto;
}
.logo-light {
  display: none;
}
.logo-dark {
  display: block;
}
.footer-logo.logo-light {
  display: none;
}
.footer-logo.logo-dark {
  display: block;
}

/* Back / home nav links */
.back-btn,
.home-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--sp-sm) 0;
  min-height: 44px;
  transition: opacity 0.15s;
}
.back-btn:hover,
.home-btn:hover {
  opacity: 0.7;
}

/* ============================================================
   HERO — 90vh
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  max-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/logo-dark.webp") 50% -20% / contain no-repeat;
  background: image-set(
      url("../images/logo-dark.webp") type("image/webp"),
      url("../images/logo-dark.png") type("image/png")
    )
    50% -20% / contain no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 10, 24, 0.1) 0%,
    rgba(13, 10, 24, 0.4) 40%,
    rgba(13, 10, 24, 0.75) 70%,
    rgba(13, 10, 24, 1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--sp-xl) 64px;
  text-align: center;
}
.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: var(--sp-lg);
  filter: drop-shadow(0 0 24px rgba(167, 139, 250, 0.4));
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan);
}
.hero-badge-dot.fri {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.hero-badge-dot.sat {
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
}
.hero-badge-dot.sun {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.hero-title {
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-md);
}
.hero-title-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--sp-xl);
  font-weight: 400;
}

/* Scarcity badge */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.25);
  margin-bottom: var(--sp-xl);
  animation: scarcity-pulse 2s ease-in-out infinite;
}
.scarcity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 0 0 6px #ff6b6b;
  animation: scarcity-blink 1.5s ease-in-out infinite;
}
@keyframes scarcity-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes scarcity-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* Hero ticket cards */
.hero-tickets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  max-width: 340px;
  margin: 0 auto;
}
.ticket-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.ticket-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(167, 139, 250, 0.1);
}
.ticket-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}
.ticket-price {
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ticket-male .ticket-price {
  color: var(--cyan);
}
.ticket-female .ticket-price {
  color: var(--accent);
}
.ticket-cta {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary);
  margin-top: 2px;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: var(--sp-2xl) 0;
}

.section-label {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.section-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
  line-height: 1.3;
}
.section-desc {
  color: var(--ink-sub);
  line-height: 1.75;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  background: transparent;
}
.intro-body {
  margin-bottom: var(--sp-xl);
}
.intro-body p + p {
  margin-top: var(--sp-md);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  background: transparent;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.faq-item {
  background: var(--card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-lg) var(--sp-xl);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  gap: var(--sp-md);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}
.faq-q-text {
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 0.22s,
    background 0.18s;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: var(--sp-md) var(--sp-xl) var(--sp-lg);
  border-top: 1px solid var(--border);
  color: var(--ink-sub);
  font-size: var(--fs-base);
  line-height: 1.75;
  padding-top: var(--sp-md);
}

/* ============================================================
   PRICE CARDS
   ============================================================ */
.price-section {
  background: transparent;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.price-card {
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: var(--card);
  padding: var(--sp-xl) var(--sp-lg);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.price-card-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-bottom: var(--sp-md);
}
.price-card-name {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-label {
  font-size: var(--fs-xs);
  color: var(--muted);
  min-width: 22px;
}
.price-val {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--primary);
}
.price-val-accent {
  color: var(--accent);
}
.price-note {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: var(--sp-sm);
  line-height: 1.5;
}
.price-card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-brand);
  opacity: 0.08;
  border-radius: 0 var(--r-lg) 0 100%;
}
.price-info {
  margin-top: var(--sp-lg);
  padding: var(--sp-lg);
  background: var(--notice-bg);
  border: 1px solid var(--notice-border);
  border-radius: var(--r-md);
  color: var(--notice-ink);
  font-size: var(--fs-sm);
  line-height: 1.7;
}
.price-info::before {
  content: "ℹ️ ";
  font-size: 1em;
}

/* ============================================================
   GALLERY CAROUSEL
   ============================================================ */
.gallery-section {
  background: transparent;
  overflow: hidden;
}
.gallery-track-wrap {
  overflow: hidden;
  margin: 0 calc(-1 * var(--sp-xl));
}
.gallery-track {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--sp-sm) var(--sp-xl) var(--sp-lg);
  cursor: grab;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-track:active {
  cursor: grabbing;
}
.gallery-card {
  flex: 0 0 calc(85vw);
  max-width: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
  background: var(--card);
  transition: transform 0.2s;
  position: relative;
}
.gallery-card:hover {
  transform: scale(1.02);
}
.gallery-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.gallery-caption {
  padding: var(--sp-md) var(--sp-lg);
  font-size: var(--fs-sm);
  color: var(--ink-sub);
  font-weight: 500;
}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: var(--sp-md);
}
.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.gallery-dot.active {
  width: 20px;
  background: var(--primary);
  border-radius: 3px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: transparent;
}
.cta-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  text-align: center;
  box-shadow:
    0 0 40px rgba(167, 139, 250, 0.08),
    0 0 80px rgba(244, 114, 182, 0.04);
}
.cta-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-md);
}
.cta-sub {
  color: var(--ink-sub);
  margin-bottom: var(--sp-xl);
  line-height: 1.7;
}
.share-row {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--ink-sub);
  transition: all 0.18s;
  cursor: pointer;
  font-family: var(--font);
}
.share-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   STICKY CTA — fixed bottom, translateY(100%) → .visible
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: var(--sp-md) var(--sp-xl);
  background: rgba(20, 14, 31, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  max-width: var(--max-w);
  margin: 0 auto;
}
.sticky-cta-text {
  font-size: var(--fs-sm);
  color: var(--muted);
}
.sticky-cta-text strong {
  display: block;
  color: var(--ink);
  font-size: var(--fs-md);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: var(--sp-2xl) var(--sp-xl);
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-xs);
}
.footer-logo {
  margin: 0 auto var(--sp-md);
  opacity: 0.5;
  height: 22px;
}

/* ============================================================
   SCROLL ANIMATION — fade-up
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s,
    transform 0.5s;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FORM PAGE — page-wrap, header, payment card compact
   ============================================================ */
.form-logo-wrap {
  text-align: center;
  padding: var(--sp-xl) 0 var(--sp-sm);
}
.form-page-logo {
  width: 120px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 16px rgba(167, 139, 250, 0.35));
}
.page-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-xl) 0;
}

/* Form header */
.form-header {
  margin-bottom: var(--sp-xl);
  padding-top: var(--sp-sm);
}
.form-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}
.form-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-subtitle {
  color: var(--ink-sub);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* Payment card compact (form page) */
.payment-card {
  background: var(--notice-bg);
  border: 1.5px solid var(--notice-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-xl);
  margin-bottom: var(--sp-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}
.payment-left {
  flex: 1;
  min-width: 0;
}
.payment-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--notice-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.payment-bank {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.payment-account {
  font-size: var(--fs-base);
  color: var(--muted);
  margin-top: 2px;
}
.payment-holder {
  font-size: var(--fs-xs);
  color: var(--notice-ink);
  margin-top: 2px;
  font-weight: 600;
}
.copy-btn {
  flex-shrink: 0;
  height: 36px;
  padding: 0 var(--sp-md);
  border-radius: var(--r-full);
  border: 1.5px solid var(--notice-border);
  background: var(--card);
  color: var(--notice-ink);
  font-size: var(--fs-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.18s;
  font-family: var(--font);
  cursor: pointer;
}
.copy-btn:hover {
  background: var(--notice-border);
  transform: scale(1.03);
}
.copy-btn:active {
  transform: scale(0.97);
}

/* ============================================================
   FORM BODY
   ============================================================ */
.form-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.field-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
}
.field-required {
  color: var(--accent);
  font-size: var(--fs-sm);
}
.field-optional {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 400;
}
.field-help {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.5;
}

/* Text inputs — h:48px */
.text-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0 var(--sp-lg);
  font-family: var(--font);
  font-size: var(--fs-md);
  color: var(--ink);
  background: var(--bg-subtle);
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.text-input::placeholder {
  color: var(--muted);
}
.text-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 91, 245, 0.12);
}
.text-input:invalid:not(:placeholder-shown) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.1);
}
.text-input-row {
  display: flex;
  gap: var(--sp-md);
}
.text-input-row .text-input {
  flex: 1;
  min-height: 48px;
}
.text-input-row .field-group {
  min-width: 0;
}

/* ============================================================
   RADIO CARDS
   ============================================================ */
.radio-grid {
  display: grid;
  gap: var(--sp-sm);
}
.radio-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.radio-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.radio-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

.radio-card-label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: var(--sp-md) var(--sp-sm);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: all 0.18s;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  gap: 4px;
}
.radio-card-label:hover:not(.disabled) {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.2);
}
.radio-card-label.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow:
    0 0 0 1px var(--primary),
    0 0 16px rgba(167, 139, 250, 0.25);
}
.radio-card-label.disabled {
  opacity: 0.38;
  cursor: not-allowed;
  background: var(--bg-subtle);
}
.radio-card-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-card-label:has(.radio-card-input:focus-visible) {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.radio-card-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.radio-card-sub {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.3;
}
.radio-card-price {
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--primary);
  margin-top: 2px;
}
.radio-card-label.selected .radio-card-price {
  color: var(--primary);
}
.radio-card-badge-sold {
  display: inline-block;
  padding: 1px 7px;
  background: var(--muted);
  color: #fff;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   GENDER PRICE BOX
   ============================================================ */
.gender-price-box {
  padding: var(--sp-md) var(--sp-lg);
  background: var(--bg-subtle);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  margin-top: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--ink-sub);
}
.gender-price-box .dynamic-price {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   DISCOUNT
   ============================================================ */
.discount-wrap {
  position: relative;
}
.discount-icon {
  position: absolute;
  right: var(--sp-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

/* ============================================================
   SUBMIT
   ============================================================ */
.submit-section {
  margin-top: var(--sp-sm);
}
.submit-btn {
  width: 100%;
  height: 52px;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: var(--fs-lg);
  font-weight: 800;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition:
    filter 0.18s,
    transform 0.14s,
    box-shadow 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.submit-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 28px rgba(124, 91, 245, 0.3);
}
.submit-btn:active {
  transform: scale(0.97);
}
.submit-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-top: var(--sp-md);
  line-height: 1.6;
}

/* Refund policy */
.refund-policy {
  margin-top: var(--sp-2xl);
  padding: var(--sp-xl);
  background: var(--bg-subtle);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.refund-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-sub);
  margin-bottom: var(--sp-md);
}
.refund-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-md) 0;
}
.refund-list li {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
.refund-list li::before {
  content: "\2022\00a0";
}
.refund-notice {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.6;
}

/* Party rules */
.party-rules {
  margin-top: var(--sp-xl);
  padding: var(--sp-xl);
  background: var(--bg-subtle);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.party-rules-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--sp-md);
}
.party-rules-list {
  padding-left: 1.4em;
  margin: 0;
}
.party-rules-list li {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.9;
}

/* Photo upload */
.field-hint {
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: var(--sp-sm);
}
.photo-upload {
  display: block;
  cursor: pointer;
}
.photo-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  min-height: 120px;
  border: 2px dashed var(--border);
  border-radius: var(--r-md);
  background: var(--bg-subtle);
  color: var(--muted);
  transition:
    border-color 0.2s,
    background 0.2s;
  padding: var(--sp-lg);
  overflow: hidden;
}
.photo-upload-inner:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.photo-upload-inner img {
  max-height: 160px;
  border-radius: var(--r-sm);
  object-fit: cover;
}
.photo-upload-text {
  font-size: var(--fs-sm);
  font-weight: 600;
}

/* Radio card scarcity badge */
.radio-card-badge.scarcity {
  font-size: 0.65rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-top: 4px;
}
.radio-card-badge.scarcity.urgent {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.15);
  animation: pulse-badge 1.5s infinite;
}
.radio-card-badge.closed {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(139, 125, 168, 0.15);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-top: 4px;
  text-decoration: line-through;
}
.radio-card-badge.available {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-top: 4px;
}
@keyframes pulse-badge {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Review section */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  transition: transform 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
}
.review-stars {
  color: #fbbf24;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
  letter-spacing: 2px;
}
.review-text {
  font-size: var(--fs-base);
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
  font-style: italic;
}
.review-author {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-weight: 600;
}

/* Instagram follow */
.instagram-follow {
  text-align: center;
  padding: var(--sp-xl);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-xl);
}
.instagram-follow-text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.btn-instagram:hover {
  opacity: 0.9;
}
.btn-instagram:active {
  transform: scale(0.97);
}

/* Field error */
.field-error {
  font-size: var(--fs-xs);
  color: var(--accent);
  display: none;
  align-items: center;
  gap: 4px;
}
.field-error.show {
  display: flex;
}
.field-error::before {
  content: "⚠";
  font-size: 10px;
}

/* Spinner */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.submit-btn.loading .spinner {
  display: block;
}
.submit-btn.loading .btn-text {
  display: none;
}

/* ============================================================
   COMPLETE PAGE — success hero
   ============================================================ */
.success-hero {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}
.success-emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: var(--sp-lg);
  animation: bounce 0.6s ease forwards;
}
@keyframes bounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.success-title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-md);
  line-height: 1.25;
}
.success-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.success-sub {
  color: var(--ink-sub);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

/* Confetti bar — 4px gradient with shimmer */
.confetti-bar {
  height: 4px;
  width: 100%;
  background: var(--gradient-brand);
  border-radius: var(--r-full);
  margin: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}
.confetti-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

/* Payment card large (complete page) */
.payment-card.payment-card-large {
  display: block;
  background: var(--notice-bg);
  border: 1.5px solid var(--notice-border);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-md);
}
.payment-title {
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--notice-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.payment-bank-row {
  display: flex;
  align-items: baseline;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}
.payment-bank-name {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--ink);
}
/* .payment-account on complete page shows xl font */
.payment-card-large .payment-account {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.payment-card-large .payment-holder {
  font-size: var(--fs-sm);
  color: var(--muted);
  font-weight: 400;
  margin-top: 0;
}
.payment-amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px dashed var(--notice-border);
}
.payment-amount-label {
  font-size: var(--fs-sm);
  color: var(--ink-sub);
  font-weight: 600;
}
.payment-amount-val {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--accent);
}

/* Summary card */
.summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-xl);
  box-shadow: var(--shadow-sm);
}
.summary-header {
  padding: var(--sp-md) var(--sp-xl);
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.summary-body {
  padding: var(--sp-lg) var(--sp-xl);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: var(--sp-md);
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-key {
  font-size: var(--fs-sm);
  color: var(--muted);
  flex-shrink: 0;
}
.summary-val {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.summary-empty {
  padding: var(--sp-xl);
  text-align: center;
  color: var(--muted);
  font-size: var(--fs-sm);
}

/* Action stack */
.action-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.btn-ghost-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 600;
  background: none;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition:
    filter 0.18s,
    transform 0.14s;
}
.btn-ghost-sm:hover {
  filter: brightness(1.08);
}
.btn-ghost-sm:active {
  transform: scale(0.97);
}

/* Notice box (complete page) */
.notice-box {
  background: var(--notice-bg);
  border: 1px solid var(--notice-border);
  border-radius: var(--r-md);
  padding: var(--sp-lg) var(--sp-xl);
  margin-bottom: var(--sp-xl);
  color: var(--notice-ink);
  font-size: var(--fs-sm);
  line-height: 1.75;
}
.notice-box-title {
  font-weight: 700;
  margin-bottom: var(--sp-xs);
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Fade-in animations */
.fade-in {
  animation: fadeIn 0.5s ease both;
}
.fade-in-d1 {
  animation-delay: 0.1s;
}
.fade-in-d2 {
  animation-delay: 0.25s;
}
.fade-in-d3 {
  animation-delay: 0.4s;
}
.fade-in-d4 {
  animation-delay: 0.55s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   2부 PARTICIPATION STYLES
   ============================================================ */
.part2-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.part2-check-label {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--card);
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
}
.part2-check-label:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.part2-check-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.part2-check-text {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 600;
}
.part2-methods {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}

/* ============================================================
   RESPONSIVE — Tablet @768px
   ============================================================ */
@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .price-grid {
    max-width: 560px;
  }
  .gallery-card {
    flex: 0 0 300px;
  }
  .hero-content {
    padding: 0 var(--sp-2xl) 64px;
  }
  .hero-tickets {
    max-width: 400px;
  }
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-wrap {
    padding: var(--sp-2xl) var(--sp-xl) 0;
  }
  .radio-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Desktop @1200px
   ============================================================ */
@media (min-width: 1200px) {
  .hero-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--sp-2xl);
    padding-right: var(--sp-2xl);
  }
  .hero-title {
    font-size: 3.6rem;
  }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .price-grid {
    grid-template-columns: 280px 280px;
    gap: var(--sp-xl);
  }
  .gallery-card {
    flex: 0 0 360px;
    max-width: 360px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .cta-card {
    padding: 64px 80px;
  }
}

/* ============================================================
   CALENDAR DATE PICKER
   ============================================================ */
.calendar-wrap {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  user-select: none;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
}
.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition:
    background 0.15s,
    color 0.15s;
}
.cal-nav:hover {
  background: var(--primary);
  color: #fff;
}
.cal-month-label {
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--ink);
}
.cal-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: var(--sp-sm);
}
.cal-day-header {
  text-align: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--muted);
  padding: 4px 0;
}
.cal-day-header.sun {
  color: #ff6b6b;
}
.cal-day-header.sat {
  color: #67b7fa;
}
.cal-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-cell {
  aspect-ratio: 1;
  min-height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-sub);
  background: none;
  border: none;
  cursor: default;
  position: relative;
  transition:
    background 0.15s,
    color 0.15s;
  padding: 2px;
  font-family: var(--font);
}
.cal-cell.sun {
  color: #ff6b6b;
}
.cal-cell.sat {
  color: #67b7fa;
}
.cal-cell.inactive {
  opacity: 0.22;
  cursor: not-allowed;
}
.cal-cell.available {
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}
.cal-cell.available:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.cal-cell.selected {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.45);
}
.cal-today-label {
  font-size: 8px;
  color: var(--muted);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.cal-cell.selected .cal-today-label {
  color: rgba(255, 255, 255, 0.65);
}
/* Calendar status dots */
.cal-status-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  margin: 2px auto 0;
}
.cal-status-dot.urgent {
  background: #facc15;
}
.cal-cell.cal-urgent {
  border-color: rgba(244, 63, 94, 0.5);
  color: #f43f5e;
}
.cal-cell.cal-urgent span:first-child {
  color: #f43f5e;
}
.cal-selected-info {
  display: none;
  margin-top: var(--sp-md);
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--primary);
}
.cal-hint {
  margin-top: var(--sp-md);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ============================================================
   TERMS & AGREEMENT
   ============================================================ */
.terms-group {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.terms-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-md);
}
.terms-all-wrap {
  padding-bottom: var(--sp-md);
  margin-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border);
}
.terms-check-row {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  cursor: pointer;
  user-select: none;
}
.terms-check-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.terms-check-row span {
  font-size: var(--fs-sm);
  color: var(--ink);
  font-weight: 600;
}
.terms-all-wrap .terms-check-row span {
  font-size: var(--fs-base);
  font-weight: 700;
}
.terms-item {
  margin-bottom: var(--sp-sm);
}
.terms-item:last-child {
  margin-bottom: 0;
}
.terms-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
}
.terms-view-btn {
  flex-shrink: 0;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  font-family: var(--font);
}
.terms-view-btn:hover {
  opacity: 0.7;
}
.terms-content {
  display: none;
  background: var(--bg-subtle);
  border-radius: var(--r-sm);
  padding: var(--sp-md);
  margin-top: var(--sp-sm);
  font-size: var(--fs-xs);
  color: var(--ink-sub);
  line-height: 1.75;
  white-space: pre-wrap;
  max-height: 180px;
  overflow-y: auto;
}
.terms-content.open {
  display: block;
}

/* Instagram hint */
.instagram-hint {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: var(--sp-sm);
}
.instagram-hint p {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}
.instagram-hint p::before {
  content: "▶";
  flex-shrink: 0;
  font-size: 9px;
  margin-top: 3px;
  color: var(--primary);
}

/* ============================================================
   PARTY PHOTO SECTION (index.html)
   ============================================================ */
.photo-section {
  padding: 0;
}
.photo-scroll-list {
  display: flex;
  flex-direction: column;
}
.photo-scroll-item {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.photo-scroll-item img {
  width: 100%;
  height: auto;
  display: block;
}
