:root {
  --pink-50: #fff8fb;
  --pink-100: #fde7ef;
  --pink-200: #fbd4e3;
  --pink-300: #f7bdd1;
  --pink-400: #f29abb;
  --pink-500: #e97da6;
  --pink-600: #d86190;
  --rose-700: #a9476c;
  --ink: #563744;
  --ink-soft: #805c6b;
  --white: #ffffff;
  --cream: #fffdfd;
  --line: rgba(212, 112, 151, 0.2);
  --shadow-sm: 0 10px 30px rgba(190, 90, 131, 0.1);
  --shadow-lg: 0 30px 80px rgba(190, 90, 131, 0.17);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --content: min(1200px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

html.is-embedded {
  --content: min(1200px, calc(100vw - 16px));
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.98) 0 7%, transparent 20%),
    radial-gradient(circle at 92% 20%, rgba(255, 255, 255, 0.78) 0 8%, transparent 22%),
    linear-gradient(180deg, #fbd4e3 0%, #fff8fb 29%, #fffdfd 64%, #fde8f0 100%);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--rose-700);
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(169, 71, 108, 0.5);
  outline-offset: 4px;
}

.sky-decor {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.sparkle,
.heart {
  position: absolute;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 5px 9px rgba(214, 97, 144, 0.16));
  animation: float 5s ease-in-out infinite;
}

.sparkle-one { top: 14%; left: 5%; font-size: 24px; }
.sparkle-two { top: 36%; right: 6%; font-size: 30px; animation-delay: -2.1s; }
.heart-one { top: 71%; left: 4%; font-size: 18px; animation-delay: -1.2s; }
.heart-two { top: 84%; right: 4%; font-size: 20px; animation-delay: -3s; }

.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: var(--content);
  min-height: 72px;
  margin: 18px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(180, 87, 124, 0.12);
  backdrop-filter: blur(18px);
}

html.is-embedded .site-nav {
  margin-top: 8px;
}

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

.brand img {
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(211, 93, 139, 0.2);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--pink-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-nav nav a:hover {
  color: var(--rose-700);
  background: var(--pink-100);
  transform: translateY(-1px);
}

.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 17px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  box-shadow: 0 8px 20px rgba(220, 91, 143, 0.25);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-live:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 30px rgba(220, 91, 143, 0.32);
}

main {
  position: relative;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  width: var(--content);
  min-height: min(760px, calc(100vh - 90px));
  margin: 0 auto;
  padding: 90px 0 98px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-500);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero h1,
.content-section h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 1.08;
}

.hero h1 span {
  position: relative;
  color: var(--pink-600);
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.8);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 2px;
  left: -2px;
  z-index: -1;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  box-shadow: 0 10px 26px rgba(220, 91, 143, 0.25);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--rose-700);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-today {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 470px;
  margin-top: 25px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink-600);
  box-shadow: 0 0 0 5px rgba(216, 97, 144, 0.13);
}

.hero-today div {
  display: grid;
  gap: 3px;
}

.hero-today small {
  color: var(--pink-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-today strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-loader {
  width: 16px;
  height: 16px;
  border: 2px solid var(--pink-200);
  border-top-color: var(--pink-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.hero-visual {
  min-width: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.82);
  border-radius: 42px;
  background: var(--pink-200);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 33%);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 9px;
  min-width: 132px;
  padding: 12px 15px;
  border: 2px solid var(--white);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  animation: float 4.5s ease-in-out infinite;
}

.floating-note > span {
  grid-row: 1 / 3;
  font-size: 21px;
}

.floating-note small {
  color: var(--pink-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.floating-note strong {
  font-size: 14px;
}

.note-birthday { top: -23px; right: 28px; }
.note-fandom { bottom: -22px; left: 24px; animation-delay: -2s; }

.hero-cloud {
  position: absolute;
  z-index: 0;
  width: 300px;
  height: 95px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  filter: blur(0.2px);
}

.hero-cloud::before,
.hero-cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}

.hero-cloud::before { left: 38px; width: 125px; height: 125px; }
.hero-cloud::after { right: 42px; width: 98px; height: 98px; }
.hero-cloud-left { bottom: 38px; left: -180px; }
.hero-cloud-right { top: 74px; right: -220px; transform: scale(1.15); }

.content-section {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: 100px 0;
}

.schedule-section::before,
.profile-section::before,
.fan-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 34px -34px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 25px 80px rgba(195, 96, 134, 0.08);
  backdrop-filter: blur(13px);
}

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

.section-heading h2,
.links-copy h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.13;
}

.section-heading > div > p:last-child,
.links-copy > p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.centered-heading {
  justify-content: center;
  text-align: center;
}

.source-link {
  flex: none;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-700);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  transition: background 0.18s ease, transform 0.18s ease;
}

.source-link:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
}

.next-schedule-card,
.calendar-card,
.profile-card,
.profile-facts > div,
.media-card,
.gear-panel,
.link-grid a {
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: var(--shadow-sm);
}

.next-schedule-card {
  display: flex;
  min-height: 520px;
  padding: 28px;
  border-radius: 30px;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 189, 209, 0.6), transparent 38%),
    rgba(255, 255, 255, 0.9);
}

.card-kicker {
  color: var(--pink-600);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.next-schedule-card #next-schedule {
  margin: auto 0;
}

.next-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--rose-700);
  background: var(--pink-100);
  font-size: 12px;
  font-weight: 900;
}

.next-schedule-card h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.next-schedule-card .next-time {
  color: var(--pink-600);
  font-size: 17px;
  font-weight: 900;
}

.next-schedule-card .next-note {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--rose-700);
  font-size: 13px;
  font-weight: 900;
}

.calendar-card {
  padding: 28px;
  border-radius: 30px;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.calendar-toolbar > div:first-child {
  display: grid;
  gap: 3px;
}

.calendar-toolbar small {
  color: var(--pink-600);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.calendar-toolbar strong {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.month-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
}

.month-tabs button {
  min-width: 54px;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--pink-50);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.month-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--pink-500);
}

.tab-skeleton {
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-100), var(--white), var(--pink-100));
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-bottom: 8px;
  color: #9b7785;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.calendar-weekdays span:first-child { color: var(--pink-600); }

.calendar-days {
  gap: 7px;
}

.calendar-day {
  position: relative;
  min-width: 0;
  min-height: 83px;
  padding: 9px;
  border: 1px solid rgba(225, 149, 179, 0.14);
  border-radius: 14px;
  background: var(--pink-50);
}

.calendar-day.is-outside {
  opacity: 0.35;
}

.calendar-day.is-today {
  border-color: var(--pink-500);
  background: linear-gradient(145deg, #fff, var(--pink-100));
  box-shadow: inset 0 0 0 1px rgba(233, 125, 166, 0.15);
}

.calendar-day.has-schedule::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-500);
}

.calendar-day.is-off-air {
  background: #f4f0f2;
}

.calendar-day-number {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.calendar-day-label {
  display: block;
  margin-top: 2px;
  color: var(--pink-600);
  font-size: 8px;
  font-weight: 900;
}

.calendar-event {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-event + .calendar-event { margin-top: 3px; }

.calendar-loading {
  gap: 7px;
}

.calendar-loading span {
  min-height: 82px;
  border-radius: 14px;
  background: linear-gradient(100deg, var(--pink-50) 20%, #fff 45%, var(--pink-50) 70%);
  background-size: 220% 100%;
  animation: shimmer 1.5s linear infinite;
}

.schedule-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 18px;
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.schedule-status.is-error {
  color: var(--rose-700);
}

.skeleton-line {
  width: 100%;
  height: 12px;
  margin: 10px 0;
  border-radius: 999px;
  color: transparent;
  background: linear-gradient(100deg, var(--pink-100) 20%, #fff 45%, var(--pink-100) 70%);
  background-size: 220% 100%;
  animation: shimmer 1.5s linear infinite;
}

.skeleton-short { width: 35%; }
.skeleton-medium { width: 68%; }
.skeleton-title { width: 88%; height: 38px; }

.profile-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
}

.profile-main-card {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 38px;
  border-radius: 32px;
  text-align: center;
}

.profile-avatar-wrap {
  position: relative;
  width: max-content;
  margin: 0 auto 21px;
}

.profile-avatar-wrap img {
  border: 7px solid var(--pink-100);
  border-radius: 50%;
  box-shadow: 0 14px 35px rgba(211, 91, 137, 0.22);
}

.profile-heart {
  position: absolute;
  right: -2px;
  bottom: 9px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-500);
}

.profile-korean {
  margin: 0 0 2px;
  color: var(--pink-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.profile-main-card h3 {
  margin: 0;
  font-size: 37px;
  letter-spacing: -0.04em;
}

.profile-message {
  max-width: 340px;
  margin: 13px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.tag-list span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--rose-700);
  background: var(--pink-100);
  font-size: 10px;
  font-weight: 800;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.profile-facts > div {
  display: flex;
  min-height: 96px;
  padding: 20px;
  border-radius: 21px;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.profile-facts > div:hover {
  border-color: var(--pink-300);
  transform: translateY(-3px);
}

.profile-facts dt {
  color: var(--pink-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.profile-facts dd small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.pet-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: max-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  font-size: 13px;
}

.pet-note small {
  display: block;
  margin-bottom: 2px;
  color: var(--pink-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.pet-icon {
  color: var(--pink-300);
  font-size: 27px;
}

.media-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
}

.media-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.number-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--pink-500);
  font-size: 11px;
  font-weight: 900;
}

.media-card-heading p {
  margin: 0 0 2px;
  color: var(--pink-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.media-card-heading h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.media-card > img {
  width: 100%;
  border-radius: 20px;
}

.signature-card > img {
  aspect-ratio: 1500 / 592;
  object-fit: cover;
}

.emote-layout {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 20px;
  margin-top: 20px;
}

.subscription-card > img {
  aspect-ratio: 1500 / 441;
  object-fit: cover;
}

.animated-card {
  display: flex;
  flex-direction: column;
}

.animated-emotes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: auto 0;
}

.animated-emotes img {
  width: 100%;
  max-width: 64px;
  aspect-ratio: 1;
  margin: auto;
  border-radius: 14px;
  image-rendering: auto;
}

.gear-panel {
  margin-top: 20px;
  border-radius: 30px;
}

.gear-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 28px;
  cursor: pointer;
  list-style: none;
}

.gear-panel summary::-webkit-details-marker { display: none; }

.gear-panel summary > span:first-child {
  display: grid;
  gap: 3px;
}

.gear-panel summary small {
  color: var(--pink-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.gear-panel summary strong {
  font-size: 18px;
}

.summary-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-500);
  font-size: 21px;
  transition: transform 0.2s ease;
}

.gear-panel[open] .summary-icon {
  transform: rotate(45deg);
}

.gear-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 2px 28px 28px;
}

.spec-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.spec-list > div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--pink-100);
  border-radius: 15px;
  background: rgb(255 255 255 / 76%);
}

.spec-list dt {
  color: var(--pink-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
}

.spec-list dd small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.keyboard-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--ink);
  background: var(--pink-50);
}

.keyboard-card > span {
  grid-row: 1 / 3;
  font-size: 29px;
}

.keyboard-card small {
  align-self: end;
  color: var(--pink-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.keyboard-card strong {
  align-self: start;
  font-size: 15px;
}

.keyboard-card p {
  grid-row: 1 / 3;
  margin: 0;
  padding: 7px 11px;
  border-radius: 999px;
  color: #6f4d99;
  background: #efe7fa;
  font-size: 11px;
  font-weight: 900;
}

.links-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 70px;
  padding-top: 130px;
  padding-bottom: 130px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-grid a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 94px;
  padding: 17px;
  border-radius: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-grid a:hover {
  border-color: var(--pink-300);
  box-shadow: 0 17px 40px rgba(189, 89, 129, 0.16);
  transform: translateY(-4px);
}

.link-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: var(--rose-700);
  background: var(--pink-100);
  font-size: 19px;
  font-weight: 900;
}

.soop-icon {
  color: var(--white);
  background: linear-gradient(145deg, #17c6ee, #7f69ef);
}

.link-grid a > span:nth-child(2) {
  display: grid;
  gap: 3px;
}

.link-grid small {
  color: var(--pink-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.link-grid strong {
  font-size: 14px;
}

.link-grid b {
  color: var(--pink-600);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: var(--content);
  margin: 0 auto 30px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: var(--shadow-sm);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand img { border-radius: 50%; }
.footer-brand div { display: grid; gap: 2px; }
.footer-brand strong { font-size: 13px; }
.footer-brand small { color: var(--pink-600); font-size: 9px; font-weight: 800; }

footer > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

footer > a {
  color: var(--rose-700);
  font-size: 11px;
  font-weight: 900;
}

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

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

@keyframes shimmer {
  to { background-position-x: -220%; }
}

@media (max-width: 980px) {
  :root { --content: min(100% - 30px, 760px); }

  .site-nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .site-nav nav a { padding-inline: 10px; font-size: 12px; }

  .hero {
    grid-template-columns: 1fr;
    max-width: 760px;
    padding-top: 66px;
  }

  .hero-copy { max-width: 650px; }
  .hero-visual { width: min(100%, 680px); }
  .schedule-grid { grid-template-columns: 1fr; }
  .next-schedule-card { min-height: 330px; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-main-card { min-height: 380px; }
  .links-section { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 700px) {
  :root { --content: min(100% - 22px, 560px); }

  html { scroll-padding-top: 78px; }

  .site-nav {
    min-height: 62px;
    margin-top: 9px;
    border-radius: 20px;
  }

  .brand span,
  .site-nav nav a:nth-child(n + 3) { display: none; }
  .site-nav nav { justify-content: flex-end; }
  .site-nav nav a { padding: 9px; }
  .nav-live { padding: 10px 12px; border-radius: 13px; }

  .hero {
    min-height: auto;
    padding: 58px 0 76px;
  }

  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-height: 48px; padding: 0 12px; font-size: 12px; }
  .hero-today { max-width: none; }
  .hero-today strong { font-size: 12px; }

  .image-frame { border-width: 6px; border-radius: 28px; transform: none; }
  .floating-note { min-width: 116px; padding: 9px 11px; }
  .note-birthday { top: -16px; right: 10px; }
  .note-fandom { bottom: -17px; left: 11px; }

  .content-section { padding: 74px 0; }
  .schedule-section::before,
  .profile-section::before,
  .fan-section::before { inset: 22px -2px; border-radius: 34px; }

  .section-heading {
    align-items: start;
    margin-bottom: 25px;
    flex-direction: column;
  }

  .section-heading h2,
  .links-copy h2 { font-size: 37px; }
  .source-link { align-self: start; }

  .next-schedule-card,
  .calendar-card,
  .media-card { padding: 21px; border-radius: 25px; }

  .calendar-card { overflow-x: auto; }
  .calendar-toolbar { min-width: 540px; }
  .calendar-weekdays,
  .calendar-days { min-width: 540px; }
  .calendar-day { min-height: 78px; }

  .profile-main-card { min-height: 350px; padding: 28px 21px; }
  .profile-facts { gap: 8px; }
  .profile-facts > div { min-height: 90px; padding: 16px; }
  .profile-facts dd { font-size: 15px; }

  .pet-note { align-items: flex-start; border-radius: 20px; line-height: 1.5; }
  .emote-layout { grid-template-columns: 1fr; }
  .animated-emotes { grid-template-columns: repeat(5, 1fr); }
  .gear-panel summary { padding: 20px; }
  .gear-content { grid-template-columns: 1fr; padding: 2px 20px 20px; }
  .spec-list { grid-template-columns: 1fr; }
  .keyboard-card { grid-column: auto; }
  .link-grid { grid-template-columns: 1fr; }

  footer {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 21px;
  }

  footer > p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 390px) {
  .hero-actions { grid-template-columns: 1fr; }
  .profile-facts { grid-template-columns: 1fr; }
  .profile-facts > div { min-height: 76px; }
  .animated-emotes { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
