:root {
  color-scheme: light;
  --sky-50: #f7fcff;
  --sky-100: #edf8ff;
  --sky-200: #d9efff;
  --sky-300: #b9e2ff;
  --sky-400: #83caff;
  --sky-500: #55aff2;
  --sky-600: #318bcf;
  --ink: #19384f;
  --ink-soft: #5a7890;
  --line: rgba(104, 178, 226, 0.34);
  --paper: rgba(255, 255, 255, 0.82);
  --paper-strong: rgba(255, 255, 255, 0.95);
  --shadow: 0 24px 70px rgba(50, 124, 172, 0.16);
  --radius: 28px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 255, 255, 0.96), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(153, 215, 255, 0.3), transparent 28rem),
    linear-gradient(155deg, #ffffff 0%, #eff9ff 45%, #dff3ff 100%);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(82, 161, 211, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 161, 211, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a,
input,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(49, 139, 207, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.profile-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(112, 181, 224, 0.27);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 32px rgba(71, 145, 190, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}

.profile-header__inner {
  width: min(1440px, calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.profile-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.profile-brand small {
  color: var(--sky-600);
  font-family: inherit;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.12em;
}

.profile-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
}

.profile-nav a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 27px 1px 24px;
  color: #547086;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.profile-nav a span {
  color: #91b9d2;
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 600;
}

.profile-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--sky-500);
  content: "";
  transition: transform 180ms ease;
}

.profile-nav a:hover,
.profile-nav a[aria-current="page"] {
  color: var(--ink);
}

.profile-nav a:hover::after,
.profile-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.profile-nav .profile-nav__mobile-home {
  display: none;
}

.archive-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #476c85;
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.archive-home:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(59, 139, 190, 0.14);
}

.profile-shell {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 110px;
}

.page-intro {
  position: relative;
  margin-bottom: 48px;
}

.page-intro::after {
  position: absolute;
  top: -36px;
  right: 0;
  z-index: -1;
  color: rgba(90, 171, 224, 0.08);
  content: attr(data-watermark);
  font-family: Georgia, serif;
  font-size: clamp(70px, 18vw, 230px);
  font-style: italic;
  line-height: 0.8;
  pointer-events: none;
}

.scene-label,
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
  color: #5d94b7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scene-label::after,
.section-label::after {
  width: 72px;
  height: 1px;
  background: var(--line);
  content: "";
}

.page-title {
  margin: 0;
  color: #1e4a67;
  font-family: Georgia, "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(56px, 9.2vw, 132px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.page-title em {
  color: #63afe1;
  font-weight: 500;
}

.page-lead {
  max-width: none;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.8;
}

.hero-photo {
  position: relative;
  min-height: min(66vw, 700px);
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid rgba(91, 169, 220, 0.28);
  border-radius: 36px;
  background: #dceefa;
  box-shadow: var(--shadow);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: 50% 45%;
  transition: opacity 1.5s ease, transform 1.2s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-photo img:nth-of-type(2) {
  object-position: 63% 45%;
}

.hero-photo:hover img {
  transform: scale(1.025);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 55, 80, 0.28));
  content: "";
}

.hero-quote {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 2;
  width: fit-content;
  max-width: min(520px, calc(100% - 48px));
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(37, 91, 128, 0.18);
  color: #234f6c;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  backdrop-filter: blur(14px);
}

.hero-quote[hidden] {
  display: none;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.45fr);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.paper-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cast-card {
  padding: 32px;
}

.cast-avatar {
  position: relative;
  width: 176px;
  aspect-ratio: 1;
  margin: 8px auto 22px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 36px rgba(55, 133, 185, 0.18);
}

.cast-avatar::after {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  color: #70bbe9;
  content: "♥";
  font-size: 28px;
  z-index: 2;
}

.cast-avatar img {
  position: absolute;
  inset: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 31%;
  transition: opacity 1.5s ease;
}

.cast-avatar img:nth-of-type(2) {
  object-position: 69% 29%;
}

.profile-cycle__image {
  opacity: 0;
}

.profile-cycle__image.is-active {
  opacity: 1;
}

.cast-name {
  margin: 0;
  text-align: center;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.cast-name-en {
  margin: 6px 0 28px;
  color: #82a7bf;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.48em;
}

.fact-list {
  margin: 0;
}

.fact-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid rgba(111, 176, 215, 0.22);
}

.fact-row dt {
  color: #78a8c5;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.fact-row dd {
  margin: 0;
  color: #294e65;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.profile-story {
  display: grid;
  gap: 28px;
}

.story-card,
.showtime-card,
.link-card,
.content-card {
  padding: clamp(26px, 4vw, 46px);
}

.story-card h2,
.content-card h2 {
  margin: 0 0 18px;
  color: #244f69;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(28px, 3.7vw, 48px);
  line-height: 1.25;
}

.story-card p,
.content-card>p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tag,
.lookbook-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(94, 168, 216, 0.3);
  border-radius: 999px;
  background: rgba(241, 250, 255, 0.88);
  color: #4b7c9c;
  font-size: 12px;
  font-weight: 750;
}

.showtime-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
}

.showtime-day {
  min-height: 94px;
  padding: 18px 10px;
  text-align: center;
}

.showtime-day+.showtime-day {
  border-left: 1px solid var(--line);
}

.showtime-day strong,
.showtime-day span {
  display: block;
}

.showtime-day strong {
  margin-bottom: 10px;
  color: #7ca8c1;
  font-size: 12px;
}

.showtime-day span {
  color: #28516a;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.showtime-day.is-off span {
  color: #9db0bd;
}

.section-block {
  margin-top: 76px;
}

/* Profile home: anniversary countdown */
.anniversary-section {
  margin-top: 56px;
}

.anniversary-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 34px 46px;
  padding: clamp(30px, 4.5vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 10%, rgba(255, 255, 255, 0.96) 0 58px, transparent 59px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(223, 244, 255, 0.88) 58%, rgba(236, 232, 255, 0.82));
}

.anniversary-card::before,
.anniversary-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.anniversary-card::before {
  top: -78px;
  right: -42px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(99, 172, 221, 0.18);
  border-radius: 50%;
}

.anniversary-card::after {
  right: 30%;
  bottom: -88px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(2px);
}

.anniversary-card__copy,
.anniversary-card__count,
.anniversary-milestones {
  position: relative;
  z-index: 1;
}

.anniversary-kicker {
  margin: 22px 0 8px;
  color: #77a9c8;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.anniversary-card h2 {
  margin: 0;
  color: #244f69;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(29px, 4vw, 50px);
  line-height: 1.24;
  word-break: keep-all;
}

.anniversary-message {
  margin: 16px 0 24px;
  color: #5f8298;
  font-size: 15px;
  line-height: 1.75;
}

.anniversary-progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(91, 164, 211, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 3px rgba(38, 100, 139, 0.08);
}

.anniversary-progress span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #70bce9, #8daeea 64%, #ae9de5);
  box-shadow: 0 0 14px rgba(102, 173, 224, 0.42);
  transition: width 700ms ease;
}

.anniversary-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: #7b9db2;
  font-size: 11px;
  font-weight: 650;
}

.anniversary-card__count {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 38px;
  border-left: 1px solid rgba(73, 151, 201, 0.2);
}

.anniversary-card__count>span {
  color: #86aabd;
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.anniversary-card__count strong {
  margin: 5px 0 0;
  color: #2e7099;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(60px, 7.5vw, 94px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.anniversary-card__count em {
  margin-top: 14px;
  color: #796ea9;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.anniversary-card__count time {
  margin-top: 5px;
  color: #5f8298;
  font-size: 14px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.anniversary-milestones {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.anniversary-milestone {
  appearance: none;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 5px 12px;
  padding: 17px 18px;
  border: 1px solid rgba(93, 166, 213, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: inherit;
  text-align: left;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.anniversary-milestone:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 154, 208, 0.42);
  box-shadow: 0 9px 20px rgba(64, 137, 186, 0.1);
}

.anniversary-milestone:focus-visible {
  outline: 3px solid rgba(77, 165, 220, 0.28);
  outline-offset: 3px;
}

.anniversary-milestone>span {
  grid-row: 1 / span 2;
  color: #9cb6c6;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
}

.anniversary-milestone strong {
  overflow: hidden;
  color: #315e79;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.anniversary-milestone time {
  color: #7897aa;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.anniversary-milestone[data-state="selected"] {
  border-color: rgba(73, 154, 208, 0.5);
  background: linear-gradient(135deg, rgba(226, 245, 255, 0.94), rgba(246, 239, 255, 0.96));
  box-shadow: 0 11px 24px rgba(64, 137, 186, 0.13);
  transform: translateY(-3px);
}

.anniversary-milestone[data-state="selected"]::after {
  align-self: center;
  grid-column: 1 / -1;
  margin-top: 5px;
  color: #5599c5;
  content: "SELECTED  ♥";
  font-family: Georgia, serif;
  font-size: 9px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.anniversary-milestone[data-state="past"] {
  opacity: 0.56;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  color: #244f69;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.1;
}

.text-link {
  color: #428fbe;
  font-size: 13px;
  font-weight: 800;
}

.menu-grid,
.external-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-tile,
.external-link {
  position: relative;
  min-height: 176px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(50, 124, 172, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-tile::before {
  position: absolute;
  right: -14px;
  bottom: -52px;
  color: rgba(93, 176, 230, 0.12);
  content: attr(data-mark);
  font-family: Georgia, serif;
  font-size: 118px;
  font-style: italic;
}

.menu-tile:hover,
.external-link:hover {
  transform: translateY(-5px);
  border-color: rgba(62, 151, 207, 0.55);
  box-shadow: 0 22px 52px rgba(48, 127, 176, 0.16);
}

.menu-tile small,
.external-link small {
  display: block;
  margin-bottom: 38px;
  color: #8bb2ca;
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.12em;
}

.menu-tile strong,
.external-link strong {
  display: block;
  color: #28516a;
  font-size: 20px;
}

.menu-tile span,
.external-link span {
  display: block;
  margin-top: 7px;
  color: #6f8ca0;
  font-size: 12px;
  line-height: 1.6;
}

/* Profile home: live week schedule */
.weekly-schedule-card {
  padding: 18px;
  overflow: hidden;
}

.weekly-schedule-range {
  margin: 0 0 14px;
  color: #6f97b0;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.weekly-schedule-scroll {
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
}

.weekly-schedule-grid {
  min-width: 896px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 9px;
}

.week-day {
  min-width: 0;
  min-height: 184px;
  padding: 13px 10px 11px;
  border: 1px solid rgba(104, 178, 226, 0.25);
  border-radius: 17px;
  background: rgba(247, 252, 255, 0.75);
}

.week-day.is-today {
  border-color: rgba(64, 153, 211, 0.58);
  background: linear-gradient(165deg, rgba(211, 239, 255, 0.92), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.week-day__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
}

.week-day__head strong {
  color: #315f7a;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 13px;
}

.week-day__head span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: #7d9aad;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
}

.week-day.is-today .week-day__head span {
  background: #56aade;
  color: #fff;
}

.week-day__events {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.week-event {
  min-width: 0;
  max-width: 100%;
  display: block;
  overflow: hidden;
  padding: 9px;
  border-left: 3px solid var(--event, #61afe0);
  border-radius: 9px;
  background: color-mix(in srgb, var(--event, #61afe0) 12%, white);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.week-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(50, 124, 172, 0.12);
}

.week-event[data-category="talk"] {
  --event: #51b995;
}

.week-event[data-category="game"] {
  --event: #568fe6;
}

.week-event[data-category="off"] {
  --event: #9faeb8;
}

.week-event[data-category="content"] {
  --event: #a17be1;
}

.week-event[data-category="full"] {
  --event: #f1a75a;
}

.week-event[data-category="mobile"] {
  --event: #55b9dc;
}

.week-event[data-category="seomumu"] {
  --event: #68b7d9;
}

.week-event strong,
.week-event span {
  display: block;
}

.week-event strong {
  overflow: hidden;
  color: #31566c;
  font-size: 11px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.week-event span {
  margin-top: 4px;
  overflow: hidden;
  color: #7693a5;
  font-size: 9px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.week-day__empty {
  padding: 24px 4px;
  color: #a0b4c0;
  font-size: 10px;
  text-align: center;
}

.profile-footer {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #86a7bb;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Loading transition */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.98), rgba(228, 246, 255, 0.98));
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__content {
  text-align: center;
}

.site-loader__heart {
  display: block;
  color: #79c2ef;
  font-size: 46px;
  line-height: 1;
  animation: loader-heart 900ms ease-in-out infinite;
}

.site-loader__text {
  display: block;
  margin-top: 14px;
  color: #5f8ba7;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.18em;
}

@keyframes loader-heart {

  0%,
  100% {
    transform: translateY(0) rotate(-9deg) scale(0.9);
  }

  50% {
    transform: translateY(-9px) rotate(9deg) scale(1.08);
  }
}

/* Falling hearts */
.heart-rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.falling-heart {
  position: absolute;
  top: -12vh;
  left: var(--left);
  color: rgba(112, 183, 226, var(--opacity));
  opacity: 0.46;
  filter: drop-shadow(0 2px 5px rgba(52, 133, 184, 0.14));
  font-size: var(--size);
  animation: heart-fall var(--duration) linear var(--delay) infinite;
}

@keyframes heart-fall {
  from {
    transform: translate3d(0, -12vh, 0) rotate(0deg);
  }

  to {
    transform: translate3d(var(--drift), 120vh, 0) rotate(760deg);
  }
}

/* Cursor and click particles */
.cursor-dot,
.cursor-ring {
  display: none;
}

.mumu-pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 52px;
  height: 52px;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-80px, -80px, 0);
  transition: opacity 120ms ease;
  will-change: transform;
}

.mumu-pointer.is-visible {
  opacity: 1;
}

.mumu-pointer__arrow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 22px;
  height: 30px;
  background: linear-gradient(135deg, #b9e6ff 0 42%, #75b6df 43% 68%, #8178c9 69% 100%);
  clip-path: polygon(0 0, 0 27px, 7px 20px, 12px 30px, 17px 27px, 12px 17px, 22px 17px);
  filter: drop-shadow(0 0 1px #397da9) drop-shadow(0 2px 2px rgba(56, 105, 139, 0.26));
}

.mumu-pointer__heart {
  position: absolute;
  top: 2px;
  left: 24px;
  z-index: 3;
  color: #9a8fe1;
  font-size: 12px;
  line-height: 1.35;
  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}

.mumu-pointer__mascot {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: hue-rotate(6deg) saturate(0.9) brightness(1.03) drop-shadow(0 0 2px rgba(255, 255, 255, 0.96)) drop-shadow(0 3px 5px rgba(72, 112, 160, 0.2));
  transition: transform 150ms ease;
}

.mumu-pointer.is-active .mumu-pointer__mascot {
  transform: translate(1px, -1px) rotate(-7deg) scale(1.08);
}

.click-heart {
  position: fixed;
  z-index: 9997;
  color: #8da9e8;
  font-size: 14px;
  pointer-events: none;
  animation: click-pop 720ms ease-out forwards;
}

@keyframes click-pop {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(0.45);
  }

  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r)) scale(1.15);
  }
}

/* Compact BGM control shared by every profile scene */
.profile-music {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 220;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 9px 8px 11px;
  border: 1px solid rgba(105, 177, 221, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(45, 119, 166, 0.17);
  backdrop-filter: blur(14px);
}

.profile-music__disc {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #73c5f3, #bfeaff);
  color: #fff;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.28);
  font-size: 16px;
}

.profile-music.is-playing .profile-music__disc {
  animation: music-spin 4s linear infinite;
}

.profile-music__copy {
  width: min(168px, 24vw);
  min-width: 108px;
}

.profile-music__copy strong,
.profile-music__copy span {
  display: block;
}

.profile-music__copy strong {
  overflow: hidden;
  color: #477b99;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-music__copy span {
  margin-top: 2px;
  color: #8aa5b6;
  font-size: 9px;
}

.profile-music__controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.profile-music__button {
  width: 32px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: #e8f6ff;
  color: #4386af;
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.profile-music__button:hover {
  transform: translateY(-1px);
  background: #d9f0ff;
}

.profile-music__button:disabled {
  opacity: 0.38;
}

.profile-music__toggle {
  width: 38px;
  background: #dff2ff;
  font-size: 13px;
}

.profile-music.is-playing .profile-music__toggle {
  background: #63b4e5;
  color: #fff;
}

@keyframes music-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Subpage controls */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.toolbar-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.soft-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #376985;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  border-color: transparent;
  background: linear-gradient(135deg, #74c2f1, #4ea5df);
  color: #fff;
  box-shadow: 0 12px 28px rgba(50, 145, 207, 0.24);
}

.soft-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(50, 124, 172, 0.16);
}

.search-field {
  width: min(460px, 100%);
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: inset 0 1px 0 #fff;
}

.search-field::placeholder {
  color: #91adbf;
}

.schedule-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.schedule-search-control {
  position: relative;
  min-width: 0;
  flex: 1 1 520px;
}

.schedule-search-control .search-field {
  width: min(520px, 100%);
  padding-left: 46px;
}

.schedule-search-control__icon {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 1;
  color: #65a9d3;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-52%);
  pointer-events: none;
}

.collab-members-button {
  flex: 0 0 auto;
  border-color: rgba(105, 175, 220, 0.38);
  background: linear-gradient(135deg, rgba(231, 247, 255, 0.94), rgba(242, 237, 255, 0.92));
  color: #527da4;
  box-shadow: 0 10px 24px rgba(70, 139, 184, 0.1);
}

.collab-members-button span {
  margin-right: 7px;
  color: #77bce5;
  font-family: Arial, sans-serif;
  font-size: 17px;
}

.status-box {
  padding: 38px 20px;
  border: 1px dashed rgba(78, 158, 210, 0.36);
  border-radius: 22px;
  color: #7193a8;
  text-align: center;
}

/* Calendar */
.calendar-card {
  padding: clamp(16px, 2.6vw, 30px);
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.calendar-toolbar .toolbar-group:last-child {
  justify-self: end;
}

.calendar-month {
  min-width: 170px;
  text-align: center;
}

.calendar-month strong,
.calendar-month span {
  display: block;
}

.calendar-month strong {
  font-family: Georgia, serif;
  font-size: 26px;
}

.calendar-month span {
  margin-top: 2px;
  color: #8aa9bb;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.calendar-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.calendar-grid {
  min-width: 800px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekday {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  color: #7199b1;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.calendar-day {
  min-height: 142px;
  padding: 10px;
  border-right: 1px solid rgba(104, 178, 226, 0.2);
  border-bottom: 1px solid rgba(104, 178, 226, 0.2);
  background: rgba(255, 255, 255, 0.34);
}

.calendar-day:nth-child(7n) {
  border-right: 0;
}

.calendar-day.is-other {
  background: rgba(226, 242, 251, 0.44);
}

.calendar-day.is-today {
  box-shadow: inset 0 0 0 2px rgba(76, 163, 220, 0.48);
}

.calendar-date {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 7px;
  border-radius: 50%;
  color: #5b7d91;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.is-today .calendar-date {
  background: #61afe0;
  color: #fff;
}

.calendar-event {
  width: 100%;
  margin: 3px 0 0;
  padding: 7px 8px;
  overflow: hidden;
  border: 0;
  border-left: 3px solid var(--event, #61afe0);
  border-radius: 7px;
  background: color-mix(in srgb, var(--event, #61afe0) 13%, white);
  color: #31566c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 170ms ease, filter 170ms ease, transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.calendar-event[data-category="talk"] {
  --event: #51b995;
}

.calendar-event[data-category="game"] {
  --event: #568fe6;
}

.calendar-event[data-category="off"] {
  --event: #9faeb8;
}

.calendar-event[data-category="content"] {
  --event: #a17be1;
}

.calendar-event[data-category="full"] {
  --event: #f1a75a;
}

.calendar-event[data-category="mobile"] {
  --event: #55b9dc;
}

.calendar-event[data-category="seomumu"] {
  --event: #68b7d9;
}

.calendar-event.is-collab::after {
  content: "♥";
  float: right;
  margin-left: 4px;
  color: #6aaed7;
}

.calendar-footer {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.upcoming-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.upcoming-item {
  --event: #61afe0;
  width: 100%;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(104, 178, 226, 0.24);
  border-left: 4px solid var(--event);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, opacity 170ms ease, filter 170ms ease, box-shadow 170ms ease;
}

.calendar-event.is-search-dimmed,
.upcoming-item.is-search-dimmed {
  opacity: 0.22;
  filter: saturate(0.35);
}

.calendar-event.is-search-match {
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--event, #61afe0) 45%, white), 0 8px 18px rgba(50, 124, 172, 0.18);
  transform: translateY(-1px);
}

.upcoming-item.is-search-match {
  border-color: color-mix(in srgb, var(--event) 58%, white);
  background: #fff;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--event) 18%, transparent);
  transform: translateY(-2px);
}

.upcoming-item[data-category="talk"] { --event: #51b995; }
.upcoming-item[data-category="game"] { --event: #568fe6; }
.upcoming-item[data-category="off"] { --event: #9faeb8; }
.upcoming-item[data-category="content"] { --event: #a17be1; }
.upcoming-item[data-category="full"] { --event: #f1a75a; }
.upcoming-item[data-category="mobile"] { --event: #55b9dc; }
.upcoming-item[data-category="seomumu"] { --event: #68b7d9; }

.upcoming-item:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 162, 215, 0.4);
  background: rgba(255, 255, 255, 0.82);
}

.upcoming-date {
  padding-top: 2px;
  color: #4d96c3;
  font-family: Georgia, serif;
  font-weight: 700;
}

.upcoming-body {
  min-width: 0;
}

.upcoming-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.upcoming-title {
  display: inline-block;
  color: #31566c;
  font-size: 15px;
  font-weight: 800;
}

.upcoming-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.upcoming-badges .schedule-chip {
  min-height: 23px;
  padding: 0 8px;
  background: color-mix(in srgb, var(--event) 12%, white);
  color: color-mix(in srgb, var(--event) 72%, #31566c);
}

.upcoming-note-row,
.upcoming-members {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 9px;
}

.upcoming-members[hidden] {
  display: none;
}

.upcoming-meta-label {
  min-width: 36px;
  padding-top: 2px;
  color: #8aa6b7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.upcoming-note {
  display: inline-block;
  color: #7591a2;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.upcoming-note.is-empty {
  color: #a0b2bd;
}

.upcoming-members {
  align-items: center;
}

.upcoming-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.schedule-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  background: #e8f6ff;
  color: #4f8eb4;
  font-size: 10px;
  font-weight: 750;
}

/* Lookbook */
.closet-category-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.closet-category-bar>p {
  margin: 0 2px 5px 0;
  color: #89a5b6;
  font-size: 11px;
}

.closet-category-tabs {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(104, 178, 226, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.closet-category-tab {
  min-width: 104px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: #7193a8;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.closet-category-tab strong {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(219, 241, 255, 0.84);
  color: #5d9bc2;
  font-family: Georgia, serif;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.closet-category-tab:hover {
  transform: translateY(-1px);
  color: #4385ad;
}

.closet-category-tab.is-active {
  border-color: rgba(92, 166, 213, 0.38);
  background: linear-gradient(135deg, rgba(226, 245, 255, 0.98), rgba(243, 239, 255, 0.94));
  color: #356f93;
  box-shadow: 0 8px 20px rgba(61, 135, 182, 0.12);
}

.closet-category-tab.is-active strong {
  background: #62afe0;
  color: #fff;
}

.closet-toolbar {
  padding: 15px 17px;
  border: 1px solid rgba(104, 178, 226, 0.24);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.58);
}

.closet-search-control {
  position: relative;
  width: min(560px, 100%);
}

.closet-search-control>span {
  position: absolute;
  top: 50%;
  left: 18px;
  z-index: 1;
  color: #67a9d2;
  font-family: Arial, sans-serif;
  font-size: 19px;
  transform: translateY(-52%);
  pointer-events: none;
}

.closet-search-control .search-field {
  width: 100%;
  padding-left: 47px;
}

.closet-result-count {
  color: #6389a0;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lookbook-grid>.status-box {
  grid-column: 1 / -1;
}

.lookbook-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 15px 38px rgba(52, 129, 176, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lookbook-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(52, 129, 176, 0.17);
}

.lookbook-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, #eaf7ff, #fff);
}

.lookbook-category-mark {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 3;
  min-width: 48px;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(226, 245, 255, 0.9);
  color: #4082aa;
  box-shadow: 0 7px 18px rgba(42, 104, 143, 0.12);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.lookbook-category-mark--hair,
.lookbook-badge--hair {
  background: rgba(242, 232, 255, 0.92);
  color: #8069b0;
}

.lookbook-category-mark--lens,
.lookbook-badge--lens {
  background: rgba(225, 247, 242, 0.94);
  color: #4c9585;
}

.lookbook-badge--outfit {
  background: #e5f5ff;
  color: #4389b1;
}

.lookbook-media__blur,
.lookbook-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lookbook-media__blur {
  transform: scale(1.12);
  object-fit: cover;
  filter: blur(18px);
  opacity: 0.22;
}

.lookbook-media__image {
  padding: 16px;
  object-fit: contain;
}

.lookbook-copy {
  padding: 18px;
}

.lookbook-copy h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.lookbook-copy p {
  margin: 0;
  color: #7893a4;
  font-size: 12px;
  line-height: 1.65;
}

.lookbook-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 13px;
}

.lookbook-badge {
  min-height: 26px;
  padding: 0 9px;
  font-size: 10px;
}

.modal-dialog {
  width: min(1100px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f8fcff;
  box-shadow: 0 32px 90px rgba(28, 83, 119, 0.3);
}

.profile-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(26, 67, 94, 0.28);
  backdrop-filter: blur(4px);
}

.profile-modal-layer[hidden] {
  display: none;
}

.profile-modal-layer .modal-dialog {
  margin: 0;
}

body.has-profile-modal {
  overflow: hidden;
}

.modal-dialog::backdrop {
  background: rgba(26, 67, 94, 0.36);
  backdrop-filter: blur(6px);
}

.modal-dialog__inner {
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  overflow: auto;
}

.modal-dialog__image {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: linear-gradient(145deg, #e7f6ff, #fff);
}

.lookbook-gallery__stage {
  position: relative;
  min-width: 0;
  min-height: 480px;
  display: grid;
  flex: 1 1 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(104, 178, 226, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.lookbook-gallery__stage > img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 170px);
  display: block;
  object-fit: contain;
}

.lookbook-gallery.is-empty .lookbook-gallery__stage::after {
  content: "이미지가 등록되지 않았어요";
  color: #8aa7b8;
  font-size: 12px;
}

.lookbook-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(93, 166, 212, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #3d83ad;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(54, 121, 165, 0.18);
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.lookbook-gallery__nav:hover {
  border-color: #6ab5e5;
  background: #fff;
  color: #1f678f;
}

.lookbook-gallery__nav--prev {
  left: 13px;
}

.lookbook-gallery__nav--next {
  right: 13px;
}

.lookbook-gallery__nav[hidden],
.lookbook-gallery__counter[hidden],
.lookbook-gallery__thumbs[hidden] {
  display: none;
}

.lookbook-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 2;
  min-width: 50px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(33, 79, 106, 0.7);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(8px);
}

.lookbook-gallery__thumbs {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  padding: 2px 1px 3px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.lookbook-gallery__thumb {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(104, 178, 226, 0.26);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.lookbook-gallery__thumb:hover,
.lookbook-gallery__thumb.is-active {
  border-color: #5faee0;
  box-shadow: 0 0 0 2px rgba(102, 182, 229, 0.18);
  transform: translateY(-1px);
}

.lookbook-gallery__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 9px;
  object-fit: cover;
}

.modal-dialog__copy {
  min-width: 0;
  padding: 42px 38px;
}

.modal-dialog__copy h2 {
  margin: 0 0 14px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 34px;
}

.modal-dialog__copy p {
  color: #668599;
  line-height: 1.8;
  white-space: pre-wrap;
}

.lookbook-detail-description {
  min-height: 96px;
  margin: 18px 0 0;
  padding: 18px 19px;
  border: 1px solid rgba(104, 178, 226, 0.24);
  border-radius: 18px;
  background: rgba(232, 247, 255, 0.68);
  color: #476f86 !important;
  font-size: 14px;
  line-height: 1.9 !important;
}

.lookbook-detail-description.is-empty {
  color: #91a8b6 !important;
}

.lookbook-detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 18px 0 0;
}

.lookbook-detail-meta:empty {
  display: none;
}

.lookbook-detail-meta__item {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(104, 178, 226, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.lookbook-detail-meta__item dt {
  color: #8aa6b7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lookbook-detail-meta__item dd {
  margin: 5px 0 0;
  overflow: hidden;
  color: #416b84;
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lookbook-detail-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.lookbook-detail-note[hidden] {
  display: none;
}

.lookbook-detail-note h3,
.lookbook-detail-label {
  margin: 0 0 9px;
  color: #7d9daf !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.lookbook-detail-note p {
  margin: 0;
  color: #54798f;
  font-size: 12px;
}

.lookbook-detail-label {
  margin-top: 20px !important;
}

.modal-dialog__copy .lookbook-badges {
  margin-top: 0;
}

.lookbook-gallery__thumbs--detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  z-index: 2;
}

/* Schedule detail stays below the shared mascot cursor. */
.event-detail-layer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(26, 67, 94, 0.2);
  backdrop-filter: blur(2px);
}

.event-detail-layer[hidden] {
  display: none;
}

.event-detail-dialog {
  width: min(600px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(102, 177, 223, 0.36);
  border-radius: 28px;
  background: #f8fcff;
  box-shadow: 0 30px 90px rgba(28, 83, 119, 0.28);
}

.event-detail-layer:not([hidden]) .event-detail-dialog {
  animation: schedule-sheet-in 240ms ease-out;
}

body.has-schedule-detail {
  overflow: hidden;
}

.event-detail {
  position: relative;
  max-height: calc(100vh - 36px);
  padding: 36px;
  overflow-y: auto;
}

.event-detail__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-width: 70px;
}

.event-detail h2 {
  margin: 11px 82px 8px 0;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.25;
}

.event-detail__date {
  margin: 0;
  color: #5f9cc0;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.event-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.event-detail__section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.event-detail__section h3 {
  margin: 0 0 10px;
  color: #5f849b;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-detail__section p {
  margin: 0;
  color: #41677d;
  line-height: 1.8;
  white-space: pre-wrap;
}

.event-detail__members {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.event-detail__empty {
  color: #91a8b6 !important;
  font-size: 13px;
}

.collab-member-dialog {
  width: min(700px, calc(100% - 28px));
}

.collab-member-summary {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(105, 177, 223, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(231, 247, 255, 0.82), rgba(244, 239, 255, 0.72));
}

.collab-member-summary[hidden] {
  display: none;
}

.collab-member-summary > strong {
  display: block;
  margin-bottom: 12px;
  color: #446f89;
  font-size: 13px;
}

.collab-member-summary__chips,
.collab-event-item__members {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.collab-event-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.collab-event-item {
  width: 100%;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 15px;
  padding: 15px 16px;
  border: 1px solid rgba(104, 178, 226, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: inherit;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.collab-event-item:hover {
  border-color: rgba(78, 161, 214, 0.48);
  background: #fff;
  transform: translateY(-2px);
}

.collab-event-item__date {
  color: #4d96c3;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.collab-event-item__body,
.collab-event-item__body > strong {
  display: block;
}

.collab-event-item__body > strong {
  margin-bottom: 9px;
  color: #31566c;
  font-size: 14px;
}

@keyframes schedule-sheet-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Karma search */
.karma-shortcuts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.karma-shortcut {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(104, 178, 226, 0.3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 38px rgba(50, 124, 172, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.karma-shortcut:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 157, 210, 0.56);
  box-shadow: 0 22px 48px rgba(48, 127, 176, 0.16);
}

.karma-shortcut__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 165, 215, 0.32);
  border-radius: 20px;
  background: linear-gradient(145deg, #e9f7ff, #cfeeff);
  color: #438fbe;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.karma-shortcut--roulette .karma-shortcut__icon {
  border-color: rgba(137, 125, 207, 0.3);
  background: linear-gradient(145deg, #f4f1ff, #e0e2ff);
  color: #7b75c7;
}

.karma-shortcut__copy {
  min-width: 0;
}

.karma-shortcut__copy small,
.karma-shortcut__copy strong,
.karma-shortcut__copy span {
  display: block;
}

.karma-shortcut__copy small {
  margin-bottom: 5px;
  color: #8ab0c8;
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.12em;
}

.karma-shortcut__copy strong {
  color: #2f5d78;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 19px;
}

.karma-shortcut__copy span {
  margin-top: 5px;
  overflow: hidden;
  color: #7894a6;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.karma-shortcut__arrow {
  align-self: start;
  color: #68a9d1;
  font-size: 16px;
  font-weight: 800;
}

.karma-shortcut--roulette .karma-shortcut__arrow {
  color: #8b83ce;
}

.karma-search-card {
  padding: clamp(24px, 5vw, 60px);
}

.karma-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.karma-form .search-field {
  width: 100%;
}

.karma-hint {
  margin: 16px 0 0;
  color: #7b9aad;
  text-align: center;
  font-size: 12px;
}

.karma-results {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.karma-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(52, 129, 176, 0.1);
}

.karma-card__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.karma-card__head h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
}

.karma-card__head span {
  color: #83a3b7;
  font-family: Georgia, serif;
  font-size: 13px;
}

.karma-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.karma-item {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(100, 174, 221, 0.24);
  border-radius: 16px;
  background: rgba(233, 247, 255, 0.62);
}

.karma-item span,
.karma-item strong {
  display: block;
}

.karma-item span {
  color: #7294a8;
  font-size: 11px;
  font-weight: 750;
}

.karma-item strong {
  margin-top: 7px;
  color: #2b5a76;
  font-family: Georgia, serif;
  font-size: 24px;
}

.karma-note {
  margin-top: 14px;
  padding: 15px 17px;
  border-radius: 14px;
  background: #fff9e9;
  color: #836f43;
  font-size: 13px;
  line-height: 1.7;
}

.updated-label {
  margin-top: 18px;
  color: #87a6b8;
  text-align: right;
  font-size: 11px;
}

/* Signature collection */
.signature-list-heading {
  align-items: flex-end;
}

.signature-list-count {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0 2px 5px 0;
  color: #6caed7;
  white-space: nowrap;
}

.signature-list-count strong {
  color: #244f69;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.05em;
}

.signature-list-count span {
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.signature-card {
  --signature-accent: #66b6e5;
  --signature-soft: #dff3ff;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--signature-accent) 38%, white);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(50, 124, 172, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.signature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(50, 124, 172, 0.17);
}

.signature-card[data-tone="aqua"] { --signature-accent: #55bda9; --signature-soft: #dcf7f2; }
.signature-card[data-tone="blue"] { --signature-accent: #5d92df; --signature-soft: #e2ecff; }
.signature-card[data-tone="lilac"] { --signature-accent: #9a82d8; --signature-soft: #eee8ff; }
.signature-card[data-tone="star"] { --signature-accent: #e3ad57; --signature-soft: #fff2d9; }
.signature-card[data-tone="moon"] { --signature-accent: #747bd0; --signature-soft: #e4e6ff; }

.signature-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--signature-accent) 24%, white);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.92) 0 4px, transparent 5px),
    radial-gradient(circle at 83% 28%, color-mix(in srgb, var(--signature-accent) 28%, transparent) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.88) 0 5px, transparent 6px),
    linear-gradient(145deg, color-mix(in srgb, var(--signature-soft) 72%, white), #fafdff);
  color: color-mix(in srgb, var(--signature-accent) 74%, #31566c);
  text-align: center;
}

.signature-card__media::after {
  content: "♡";
  position: absolute;
  right: 18px;
  bottom: 7px;
  color: color-mix(in srgb, var(--signature-accent) 24%, transparent);
  font-family: Arial, sans-serif;
  font-size: 66px;
  line-height: 1;
  transform: rotate(-12deg);
}

.signature-card__media.has-image::after {
  content: none;
}

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

.signature-card__placeholder-number {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.055em;
}

.signature-card__placeholder-text {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.signature-card__body {
  padding: 20px 22px 22px;
  background:
    radial-gradient(circle at 94% 8%, color-mix(in srgb, var(--signature-soft) 52%, transparent), transparent 33%),
    rgba(255, 255, 255, 0.96);
}

.signature-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: color-mix(in srgb, var(--signature-accent) 82%, #31566c);
  font-family: Georgia, serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.signature-card__eyebrow span:last-child {
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
}

.signature-card__title {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 13px;
}

.signature-card__amount {
  display: block;
  color: #244f69;
  font-family: "Noto Sans KR", sans-serif;
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.signature-card__unit {
  display: block;
  padding-bottom: 4px;
  color: var(--signature-accent);
  font-family: Georgia, serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.signature-card__description {
  min-height: 40px;
  margin: 16px 0 0;
  color: #66869a;
  font-size: 13px;
  line-height: 1.6;
}

/* Legacy placeholder */
.coming-soon {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.coming-soon__heart {
  display: block;
  color: #6ab5e5;
  font-size: 62px;
  animation: loader-heart 1.4s ease-in-out infinite;
}

.coming-soon h2 {
  margin: 18px 0 8px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(30px, 5vw, 52px);
}

.coming-soon p {
  max-width: 520px;
  margin: 0 auto;
  color: #6f8da0;
  line-height: 1.8;
}

@media (pointer: fine) {

  html:not(.has-mumu-pointer),
  html:not(.has-mumu-pointer) body,
  html:not(.has-mumu-pointer) a,
  html:not(.has-mumu-pointer) button,
  html:not(.has-mumu-pointer) input,
  html:not(.has-mumu-pointer) select,
  html:not(.has-mumu-pointer) textarea,
  html:not(.has-mumu-pointer) [role="button"] {
    cursor: url("/static/img/profile/mumuring-cursor.png") 0 0, auto !important;
  }

  html.has-mumu-pointer,
  html.has-mumu-pointer body,
  html.has-mumu-pointer * {
    cursor: none !important;
  }

  html.has-mumu-pointer::-webkit-scrollbar,
  html.has-mumu-pointer::-webkit-scrollbar-track,
  html.has-mumu-pointer::-webkit-scrollbar-thumb,
  html.has-mumu-pointer *::-webkit-scrollbar,
  html.has-mumu-pointer *::-webkit-scrollbar-track,
  html.has-mumu-pointer *::-webkit-scrollbar-thumb {
    cursor: none !important;
  }
}

@media (max-width: 1060px) {
  .profile-header__inner {
    grid-template-columns: auto 1fr;
  }

  .archive-home {
    display: none;
  }

  .profile-nav .profile-nav__mobile-home {
    display: inline-flex;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .cast-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    column-gap: 30px;
    align-items: center;
  }

  .cast-avatar,
  .cast-name,
  .cast-name-en {
    grid-column: 1;
  }

  .fact-list {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .menu-grid,
  .external-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lookbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 116px;
  }

  .profile-header__inner {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
  }

  .profile-brand {
    font-size: 22px;
  }

  .profile-nav {
    width: calc(100vw - 14px);
    margin-left: -7px;
    padding: 0 7px;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .profile-nav::-webkit-scrollbar {
    display: none;
  }

  .profile-nav a {
    padding: 18px 0 17px;
    font-size: 13px;
  }

  .profile-nav a::after {
    bottom: 10px;
  }

  .profile-shell {
    width: calc(100% - 28px);
    padding: 48px 0 80px;
  }

  .page-intro {
    margin-bottom: 34px;
  }

  .page-title {
    font-size: clamp(50px, 18vw, 82px);
  }

  .hero-photo {
    min-height: 70vh;
    border-radius: 24px;
  }

  .hero-photo img {
    object-position: 52% 50%;
  }

  .hero-photo img:nth-of-type(2) {
    object-position: 68% 50%;
  }

  .hero-quote {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 14px 16px;
  }

  .cast-card {
    display: block;
    padding: 24px;
  }

  .showtime-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .showtime-day:nth-child(5) {
    border-left: 0;
  }

  .showtime-day:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .anniversary-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .anniversary-card__count {
    padding: 24px 0 0;
    border-top: 1px solid rgba(73, 151, 201, 0.2);
    border-left: 0;
  }

  .anniversary-milestones {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .external-links,
  .lookbook-grid,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-list-heading {
    width: 100%;
    align-items: flex-end;
    flex-direction: row;
  }

  .signature-list-count {
    margin-bottom: 3px;
  }

  .signature-list-count strong {
    font-size: 32px;
  }

  .signature-list-count span {
    font-size: 8px;
  }

  .menu-tile,
  .external-link {
    min-height: 150px;
  }

  .profile-footer {
    width: calc(100% - 28px);
    flex-direction: column;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .closet-category-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .closet-category-bar>p {
    margin: 0 4px;
  }

  .closet-category-tabs {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .closet-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .closet-category-tab {
    min-width: 92px;
    flex: 1 0 auto;
  }

  .closet-toolbar {
    padding: 13px;
  }

  .closet-toolbar .toolbar-group {
    padding: 0 4px;
  }

  .toolbar-group {
    justify-content: space-between;
  }

  .calendar-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-toolbar .calendar-month {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .calendar-toolbar .toolbar-group:first-child {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .calendar-toolbar .toolbar-group:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  .search-field {
    width: 100%;
  }

  .schedule-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-search-control {
    flex-basis: auto;
  }

  .schedule-search-control .search-field,
  .collab-members-button {
    width: 100%;
  }

  .collab-event-item {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 11px;
    padding: 14px;
  }

  .modal-dialog__inner {
    grid-template-columns: 1fr;
  }

  .modal-dialog__image {
    min-height: 360px;
  }

  .lookbook-gallery__stage {
    min-height: 320px;
  }

  .modal-dialog__copy {
    padding: 30px 22px;
  }

  .event-detail-layer {
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .event-detail-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    margin: 0;
    border-radius: 24px;
  }

  .event-detail {
    max-height: calc(100vh - 20px);
    padding: 30px 22px;
  }

  .event-detail h2 {
    margin-right: 72px;
  }

  .profile-music {
    left: 10px;
    bottom: 10px;
  }

  .profile-music__copy {
    display: none;
  }

  .karma-form {
    grid-template-columns: 1fr;
  }

  .karma-shortcuts {
    grid-template-columns: 1fr;
  }

  .karma-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .anniversary-card {
    padding: 24px 20px;
  }

  .anniversary-progress-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .anniversary-card__count strong {
    font-size: 58px;
  }

  .fact-row {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .showtime-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showtime-day:nth-child(odd) {
    border-left: 0;
  }

  .showtime-day:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .karma-items {
    grid-template-columns: 1fr;
  }

  .lookbook-detail-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .heart-rain,
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}
