:root {
  --bg: #050811;
  --bg-elevated: #0a101b;
  --surface: #0d1523;
  --surface-2: #111b2b;
  --surface-3: #172235;
  --line: #28354a;
  --line-soft: rgba(106, 129, 164, 0.22);
  --text: #f7f9fd;
  --muted: #a6b1c2;
  --accent: #ff2d76;
  --accent-2: #ff5a96;
  --accent-soft: rgba(255, 45, 118, 0.14);
  --success: #3ad29f;
  --warning: #ffb547;
  --blue: #5aa9ff;
  --radius: 16px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Hiragino Sans", "Noto Sans JP", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 8%, rgba(33, 90, 180, 0.22), transparent 34%),
    radial-gradient(circle at 80% 82%, rgba(255, 45, 118, 0.16), transparent 30%),
    linear-gradient(145deg, #050812 0%, #080d18 46%, #03050a 100%);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea { font: inherit; }

button { color: inherit; }

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

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(110px);
  opacity: .35;
  pointer-events: none;
}

.ambient-one { top: -180px; left: 18%; background: #164fae; }
.ambient-two { right: 14%; bottom: -210px; background: #d21863; }

.prototype-shell {
  display: grid;
  grid-template-columns: minmax(340px, 430px) 260px;
  justify-content: center;
  align-items: start;
  gap: 28px;
  height: 100dvh;
  padding: 24px 20px;
}

.device {
  position: relative;
  width: 100%;
  height: min(900px, calc(100dvh - 48px));
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(129, 153, 190, .46);
  border-radius: 28px;
  background: var(--bg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .52), 0 0 0 1px rgba(255,255,255,.025) inset;
}

#app { height: 100%; min-height: 0; outline: none; }

.app-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(11, 18, 29, .98), rgba(5, 9, 15, 1) 42%),
    var(--bg);
}

.app-screen.no-tabbar { padding-bottom: 24px; }

.screen-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: #354056 transparent;
  scroll-padding: 16px;
}

.screen-scroll { padding: 0 16px 20px; }

.app-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  min-height: 64px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(71, 89, 118, .17);
  background: rgba(5, 9, 16, .88);
  backdrop-filter: blur(18px);
}

.app-header.transparent {
  position: absolute;
  left: 0;
  right: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(2,4,8,.82), transparent);
  backdrop-filter: none;
}

.app-logo {
  border: 0;
  padding: 0;
  color: #ff4c8e;
  background: none;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -1.15px;
  cursor: pointer;
}

.header-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 760;
}

.header-actions { display: flex; align-items: center; gap: 4px; }

.location-button,
.icon-button,
.back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.location-button { gap: 5px; padding: 0 6px; font-size: 14px; }
.icon-button:hover,
.back-button:hover,
.location-button:hover { background: rgba(255,255,255,.06); }
.back-button { margin-left: -8px; }

.icon { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon.fill { fill: currentColor; }

.hero-card {
  position: relative;
  min-height: 262px;
  margin: 0 -16px 18px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(3,6,10,.9), rgba(4,8,14,.06)), linear-gradient(180deg, transparent 5%, #060b13 100%), url("./assets/club-hero.png");
  background-position: center, center, center top;
  background-size: cover, cover, 150% auto;
  background-position: center, center, right top;
}

.hero-card::after,
.detail-cover::after,
.event-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(4, 8, 14, .92) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 14px;
}

.hero-copy h1 {
  max-width: 245px;
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: -.65px;
}

.hero-copy p { margin: 0; color: #d3dae5; font-size: 14px; line-height: 1.6; }

.hero-actions,
.sticky-actions,
.button-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-actions { margin: -2px 0 24px; }

.primary-button,
.secondary-button,
.danger-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 11px;
  padding: 0 16px;
  font-weight: 740;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.primary-button {
  color: #240514;
  border-color: rgba(255, 102, 154, .48);
  background: linear-gradient(135deg, #ff3980, #ff5a91);
  box-shadow: 0 5px 18px rgba(255,45,118,.15), inset 0 1px 0 rgba(255,255,255,.15);
}
.primary-button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.secondary-button { border-color: #52617a; background: rgba(18,27,43,.76); }
.secondary-button:hover { border-color: #7788a3; background: #151f31; }
.danger-button { color: #ff659b; border-color: rgba(255,45,118,.36); background: rgba(255,45,118,.08); }
.full { width: 100%; }

.section { margin: 0 0 25px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section-head h2,
.section-title { margin: 0; font-size: 17px; font-weight: 760; }
.text-button { border: 0; padding: 7px 0; color: #d7deea; background: none; font-size: 13px; cursor: pointer; }
.text-button.accent { color: var(--accent-2); }

.dj-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(116px, 31.5%);
  gap: 10px;
  overflow-x: auto;
  margin-right: -16px;
  padding: 0 16px 6px 0;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2px;
}
.dj-strip::-webkit-scrollbar { display: none; }

.dj-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  text-align: left;
  scroll-snap-align: start;
}
.dj-tile .dj-tile-image { display: block; aspect-ratio: 1/1; background-position: center top; background-size: cover; }
.dj-tile-body { padding: 10px; }
.dj-tile strong { display: block; margin-bottom: 4px; font-size: 14px; }
.dj-tile span { display: block; overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.rating { display: flex !important; align-items: center; gap: 4px; margin-top: 6px; color: #f2f5fa !important; }
.star { color: var(--warning); }

.search-wrap { padding: 12px 16px 8px; }
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--muted);
  background: #121c2d;
}
.search-field input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 14px; }
.search-field input::placeholder { color: #8997aa; }

.chip-row { display: flex; gap: 8px; overflow-x: auto; padding: 3px 16px 11px; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #37465c;
  border-radius: 999px;
  color: #e8edf5;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}
.chip.active { border-color: #d83c78; background: linear-gradient(135deg, #9f2460, #5a1f52); }
.chip.small { min-height: 28px; padding: 0 11px; font-size: 12px; }

.result-meta { display: flex; align-items: center; justify-content: space-between; padding: 4px 16px 10px; color: var(--muted); font-size: 13px; }
.result-meta strong { color: var(--text); }

.dj-list { display: grid; gap: 10px; padding: 0 12px 18px; }
.dj-list-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 88px;
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: linear-gradient(135deg, #0f1826, #0b121e);
  cursor: pointer;
}
.dj-list-card:hover { border-color: #3c4b62; }
.dj-avatar-square { width: 78px; height: 72px; border-radius: 10px; object-fit: cover; }
.dj-card-main { min-width: 0; }
.dj-card-name { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; font-size: 15px; font-weight: 760; }
.verified { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border-radius: 50%; color: #fff; background: var(--accent); font-size: 9px; }
.dj-card-tags { overflow: hidden; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.dj-card-sub { display: flex; align-items: center; gap: 10px; margin-top: 7px; color: #e2e8f1; font-size: 12px; }
.dj-card-side { align-self: stretch; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; min-width: 67px; }
.favorite-button { display: inline-grid; place-items: center; width: 34px; height: 34px; border: 0; border-radius: 50%; color: #c6d0de; background: transparent; cursor: pointer; }
.favorite-button.saved { color: var(--accent); }
.price { color: #fff; font-size: 13px; font-weight: 720; white-space: nowrap; }
.price.accent { color: var(--accent-2); }

.detail-cover {
  position: relative;
  min-height: 245px;
  background: url("./assets/luna-cover.png") center/cover no-repeat;
}
.cover-count { position: absolute; z-index: 2; right: 14px; bottom: 16px; padding: 5px 8px; border-radius: 999px; background: rgba(0,0,0,.58); font-size: 12px; }
.play-button { position: absolute; z-index: 2; right: 16px; top: 105px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: rgba(202,211,235,.8); color: #121a2a; cursor: pointer; }

.profile-overlap { position: relative; z-index: 3; display: flex; align-items: flex-end; gap: 12px; margin-top: -28px; padding: 0 16px; }
.avatar-ring { width: 76px; height: 76px; flex: 0 0 auto; padding: 3px; border: 2px solid var(--accent); border-radius: 50%; background: #08101b; }
.avatar-ring img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; }
.profile-title { min-width: 0; padding-bottom: 5px; }
.profile-title h1 { display: flex; align-items: center; gap: 7px; margin: 0 0 5px; font-size: 23px; }
.profile-title p { margin: 0; color: var(--muted); font-size: 13px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 12px; }
.tag { padding: 6px 11px; border: 1px solid #3c4a61; border-radius: 9px; color: #dce3ed; background: #101a29; font-size: 12px; }
.headline-price { margin: 4px 0 18px; font-size: 18px; font-weight: 750; }

.tabs { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.tab { position: relative; min-height: 43px; border: 0; color: var(--muted); background: transparent; cursor: pointer; }
.tab.active { color: #fff; font-weight: 720; }
.tab.active::after { content: ""; position: absolute; left: 18%; right: 18%; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0; background: var(--accent); }
.bio { color: #cbd4e1; font-size: 14px; line-height: 1.75; }
.more-link { color: var(--accent-2); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 15px; padding: 15px 0; border-top: 1px solid var(--line-soft); }
.stat { min-width: 0; text-align: center; }
.stat span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 11px; }
.stat strong { display: block; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }

.sticky-actions { position: relative; flex-shrink: 0; z-index: 10; grid-template-columns: 48px 1fr 1.2fr; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(5,9,15,.96); backdrop-filter: blur(18px); }
.sticky-actions .favorite-button { width: 48px; height: 48px; border: 1px solid #52617a; border-radius: 11px; }

.stepper { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 14px 16px 20px; }
.step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; color: #8390a4; font-size: 11px; }
.step:not(:last-child)::after { content: ""; position: absolute; z-index: 0; top: 13px; left: calc(50% + 16px); width: calc(100% - 32px); height: 1px; background: #303b4d; }
.step-dot { position: relative; z-index: 1; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: #182237; color: #adbacd; font-size: 12px; }
.step.active { color: var(--accent-2); font-weight: 700; }
.step.active .step-dot,
.step.done .step-dot { color: #fff; background: var(--accent); }

.form-card { padding: 0 16px 20px; }
.field { display: grid; gap: 8px; margin-bottom: 17px; }
.field label { color: #e8edf4; font-size: 13px; font-weight: 690; }
.field label small { color: var(--muted); font-weight: 450; }
.input,
.select,
.textarea {
  width: 100%;
  min-height: 47px;
  border: 1px solid #3d4b61;
  border-radius: 9px;
  padding: 0 12px;
  color: var(--text);
  background: #101827;
  outline: 0;
}
.textarea { min-height: 108px; padding-top: 12px; resize: vertical; }
.input:focus,
.select:focus,
.textarea:focus { border-color: var(--accent-2); box-shadow: 0 0 0 3px var(--accent-soft); }
.date-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 9px; }
.budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.review-card { display: grid; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.review-row { display: grid; grid-template-columns: 92px 1fr; gap: 12px; font-size: 14px; }
.review-row span { color: var(--muted); }
.review-row strong { font-weight: 620; }

.segmented { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin: 0 14px 13px; padding: 4px; border-radius: 12px; background: #101827; }
.segment { min-height: 35px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: 12px; cursor: pointer; }
.segment.active { color: #fff; background: linear-gradient(135deg, #a52762, #692553); box-shadow: 0 4px 12px rgba(0,0,0,.24); }

.proposal-list { display: grid; gap: 10px; padding: 0 12px; }
.proposal-card { display: grid; grid-template-columns: 58px 1fr; gap: 11px; padding: 12px; border: 1px solid var(--line-soft); border-radius: 13px; background: var(--surface); cursor: pointer; }
.proposal-card img { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; }
.proposal-top { display: flex; justify-content: space-between; gap: 8px; }
.proposal-name { font-size: 14px; font-weight: 760; }
.proposal-time { color: var(--muted); font-size: 11px; }
.proposal-meta { display: flex; gap: 8px; margin: 5px 0; color: #dce4ee; font-size: 12px; }
.proposal-message { display: -webkit-box; overflow: hidden; margin: 0; color: #b8c3d2; font-size: 12px; line-height: 1.55; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.chat-context { display: grid; grid-template-columns: 64px 1fr; gap: 10px; margin: 8px 12px 14px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #101827; cursor: pointer; }
.chat-context img { width: 64px; height: 58px; border-radius: 8px; object-fit: cover; }
.chat-context strong { display: block; margin: 2px 0 4px; font-size: 13px; }
.chat-context span { display: block; color: #c3ccda; font-size: 12px; line-height: 1.45; }
.chat-thread { display: flex; flex-direction: column; gap: 12px; min-height: 520px; padding: 0 12px 95px; }
.message-row { display: flex; align-items: flex-end; gap: 8px; }
.message-row.mine { justify-content: flex-end; }
.message-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.bubble-wrap { max-width: 76%; }
.bubble { padding: 11px 13px; border-radius: 13px 13px 13px 3px; color: #e5ebf4; background: #172238; font-size: 13px; line-height: 1.55; }
.mine .bubble { border-radius: 13px 13px 3px 13px; background: linear-gradient(135deg, #bd2d6b, #912253); }
.message-time { margin-top: 4px; color: #758399; font-size: 10px; }
.mine .message-time { text-align: right; }
.composer { position: absolute; z-index: 15; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 44px; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(5,9,15,.96); }
.composer input { min-width: 0; height: 43px; border: 1px solid #3b4960; border-radius: 999px; padding: 0 15px; color: #fff; background: #111a29; outline: 0; }
.send-button { display: grid; place-items: center; width: 43px; height: 43px; border: 0; border-radius: 50%; color: #fff; background: var(--accent); cursor: pointer; }

.calendar-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 10px 10px; }
.calendar-head strong { font-size: 15px; }
.calendar-week { display: grid; grid-template-columns: repeat(7,1fr); color: var(--muted); font-size: 11px; text-align: center; }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); margin-top: 5px; }
.calendar-day { display: grid; place-items: center; aspect-ratio: 1; border: 0; border-radius: 50%; color: #dce4ef; background: transparent; font-size: 13px; cursor: pointer; }
.calendar-day.dim { color: #4f5c70; }
.calendar-day.today { color: #fff; background: var(--accent); box-shadow: 0 7px 18px rgba(255,45,118,.25); }
.schedule-list { margin-top: 16px; border-top: 1px solid var(--line); }
.schedule-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding: 17px 3px; border-bottom: 1px solid var(--line-soft); }
.schedule-date strong { display: block; color: var(--accent-2); font-size: 22px; font-weight: 600; }
.schedule-date span { color: var(--muted); font-size: 11px; }
.schedule-info strong { display: block; margin-bottom: 5px; font-size: 14px; }
.schedule-info span { color: var(--muted); font-size: 12px; }
.status { padding: 6px 9px; border-radius: 8px; font-size: 11px; white-space: nowrap; }
.status.confirmed { color: #5ee7b5; background: rgba(25,151,111,.22); }
.status.adjusting { color: #7bbcff; background: rgba(35,111,179,.24); }
.fab { position: absolute; z-index: 9; right: 17px; bottom: 84px; display: grid; place-items: center; width: 50px; height: 50px; border: 0; border-radius: 50%; color: white; background: var(--accent); box-shadow: 0 10px 25px rgba(255,45,118,.32); cursor: pointer; }

.event-cover { position: relative; min-height: 222px; background: url("./assets/event-hero.png") center/cover no-repeat; }
.event-title { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 16px; }
.event-title h1 { margin: 0 0 8px; font-size: 24px; }
.meta-badges { display: flex; gap: 7px; }
.meta-badge { padding: 5px 9px; border-radius: 999px; background: rgba(4,7,13,.76); font-size: 11px; }
.event-body { padding: 16px; }
.detail-list { display: grid; gap: 13px; margin-bottom: 18px; }
.detail-line { display: grid; grid-template-columns: 25px 1fr; align-items: start; gap: 8px; color: #e3e9f1; font-size: 13px; }
.detail-line .icon { width: 18px; height: 18px; color: #dfe6ef; }
.event-description { color: #bec8d6; font-size: 13px; line-height: 1.72; }
.club-card { display: flex; align-items: center; gap: 11px; margin: 16px 0; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.club-logo { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: #182031; background: #eef2f8; font-size: 11px; font-weight: 850; }
.club-card-main { min-width: 0; flex: 1; }
.club-card-main strong { display: block; margin-bottom: 4px; font-size: 13px; }
.club-card-main span { color: var(--muted); font-size: 11px; }
.follow-button { min-height: 34px; border: 0; border-radius: 8px; padding: 0 15px; color: #fff; background: var(--accent); font-size: 12px; font-weight: 700; cursor: pointer; }
.map-mock { position: relative; height: 132px; overflow: hidden; border: 1px solid #303d51; border-radius: 13px; background: radial-gradient(circle at 60% 45%, rgba(255,45,118,.38) 0 4px, transparent 5px), linear-gradient(25deg, transparent 45%, #243147 46% 48%, transparent 49%), linear-gradient(100deg, #111c2a 0 12%, #1a293d 13% 20%, #0d1623 21% 35%, #18283c 36% 55%, #0c1420 56%); }
.map-mock::after { content: "ZERO SHIBUYA"; position: absolute; left: 50%; top: 50%; transform: translate(-35%, -50%); padding: 6px 9px; border-radius: 8px; color: #fff; background: #ae2860; font-size: 10px; font-weight: 700; }

.profile-hero { position: relative; min-height: 173px; background: linear-gradient(180deg, transparent, #07101b), url("./assets/ryota.png") center 24%/cover no-repeat; }
.profile-hero .icon-button { position: absolute; top: 10px; right: 10px; }
.mypage-identity { display: flex; align-items: flex-end; gap: 12px; margin-top: -38px; padding: 0 16px 14px; position: relative; z-index: 2; }
.mypage-identity .avatar-ring { width: 78px; height: 78px; }
.mypage-identity h1 { margin: 0 0 5px; font-size: 20px; }
.mypage-identity p { margin: 0; color: var(--muted); font-size: 12px; }
.menu-list { margin: 4px 12px 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.menu-item { display: grid; grid-template-columns: 25px 1fr 22px; align-items: center; gap: 9px; width: 100%; min-height: 51px; border: 0; border-bottom: 1px solid var(--line-soft); padding: 0 12px; color: #e8edf4; background: transparent; font-size: 13px; text-align: left; cursor: pointer; }
.menu-item:last-child { border-bottom: 0; }
.menu-item:hover { background: #121c2b; }
.menu-item .icon { width: 17px; height: 17px; }
.menu-item .chev { color: #77869a; }
.brand-card { position: relative; min-height: 112px; overflow: hidden; margin: 0 12px 18px; border: 1px solid rgba(255,67,135,.3); border-radius: 14px; padding: 18px; background: radial-gradient(circle at 82% 45%, rgba(255,43,118,.48), transparent 28%), linear-gradient(130deg, #311027, #0f1727 60%, #4f1735); }
.brand-card strong { display: block; max-width: 230px; font-size: 18px; line-height: 1.55; }
.brand-card span { display: block; margin-top: 6px; color: #c6cede; font-size: 11px; }

.role-card { margin: 0 12px 14px; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.role-card p { margin: 0 0 10px; color: var(--muted); font-size: 12px; }
.inline-role-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 4px; border-radius: 10px; background: #070d17; }
.inline-role-switch button { min-height: 37px; border: 0; border-radius: 8px; color: var(--muted); background: transparent; cursor: pointer; }
.inline-role-switch button.active { color: #fff; background: #202b3e; }

.empty-state { display: grid; place-items: center; min-height: 450px; padding: 30px; text-align: center; }
.empty-state .empty-icon { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 16px; border-radius: 22px; color: var(--accent-2); background: var(--accent-soft); }
.empty-state h2 { margin: 0 0 8px; font-size: 19px; }
.empty-state p { max-width: 270px; margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.tabbar {
  position: relative;
  flex-shrink: 0;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 70px;
  padding: 7px 4px calc(7px + env(safe-area-inset-bottom));
  border-top: 1px solid #243045;
  background: rgba(7, 12, 20, .96);
  backdrop-filter: blur(20px);
}
.tabbar-button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-width: 0; border: 0; color: #8f9daf; background: transparent; font-size: 10px; cursor: pointer; }
.tabbar-button .icon { width: 20px; height: 20px; }
.tabbar-button.active { color: var(--accent-2); }

.prototype-nav {
  position: sticky;
  top: 28px;
  overflow: hidden;
  border: 1px solid rgba(125, 149, 186, .28);
  border-radius: 20px;
  background: rgba(9, 14, 24, .82);
  box-shadow: 0 26px 60px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.prototype-nav-head { padding: 20px 18px 15px; }
.eyebrow { color: var(--accent-2); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.prototype-nav h1 { margin: 7px 0 5px; font-size: 25px; letter-spacing: -.6px; }
.prototype-nav p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.role-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin: 0 14px 13px; padding: 4px; border-radius: 11px; background: #070d17; }
.role-switch button { min-height: 36px; border: 0; border-radius: 8px; color: var(--muted); background: transparent; font-size: 12px; cursor: pointer; }
.role-switch button.active { color: #fff; background: #202b3e; }
.screen-list { display: grid; padding: 0 8px 8px; }
.screen-link { display: grid; grid-template-columns: 26px 1fr; align-items: center; gap: 7px; min-height: 39px; border: 0; border-radius: 9px; padding: 0 10px; color: #aeb9c8; background: transparent; font-size: 12px; text-align: left; cursor: pointer; }
.screen-link span:first-child { color: #65758a; font-variant-numeric: tabular-nums; }
.screen-link:hover { color: #fff; background: #121b2a; }
.screen-link.active { color: #fff; background: rgba(255,45,118,.13); }
.screen-link.active span:first-child { color: var(--accent-2); }
.prototype-note { padding: 12px 18px 17px; border-top: 1px solid var(--line-soft); }

.toast { position: absolute; z-index: 100; left: 50%; bottom: calc(88px + env(safe-area-inset-bottom)); transform: translate(-50%, 12px); width: max-content; min-width: 200px; max-width: calc(100% - 28px); padding: 13px 17px; border: 1px solid #64405a; border-radius: 12px; opacity: 0; color: #fff; background: rgba(21,29,44,.98); box-shadow: 0 12px 36px rgba(0,0,0,.35); pointer-events: none; transition: opacity .18s ease, transform .18s ease; font-size: .875rem; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Refinement layer: stable app viewport, consistent text, and touch targets. */
button { touch-action: manipulation; }
button:not(:disabled):active { filter: brightness(.92); }
button:disabled { cursor: not-allowed; opacity: .45; box-shadow: none; }
button .icon { flex-shrink: 0; }
img { max-width: 100%; display: block; }
h1:focus { outline: none; }
p, strong { overflow-wrap: anywhere; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.header-spacer { width: 44px; flex-shrink: 0; }
.header-title { font-size: 1rem; line-height: 1.5; text-align: center; }
.icon-button, .back-button { min-height: 44px; min-width: 44px; }
.role-pill { display: flex; gap: 6px; align-items: center; min-height: 36px; padding: 0 10px; border: 1px solid #33405a; border-radius: 8px; color: #ced7e7; background: #121a29; font-size: .75rem; font-weight: 750; letter-spacing: .05em; cursor: pointer; }
.role-pill .icon { width: 13px; height: 13px; }
.hero-eyebrow { display: block; margin-bottom: 10px; color: #ff83b1; font-size: .75rem; font-weight: 700; letter-spacing: .17em; }
.hero-copy { bottom: 13px; }
.hero-copy p { font-size: .875rem; line-height: 1.8; color: #b7c3d4; }
.hero-actions { margin-bottom: 24px; }
.hero-actions .icon { width: 17px; height: 17px; }
.primary-button, .secondary-button, .danger-button { min-width: 0; font-size: .875rem; line-height: 1.5; padding: 12px; }
.section-head { gap: 12px; }
.section-head h2 { font-size: 1rem; }
.text-button { min-height: 40px; font-size: .8125rem; flex-shrink: 0; }
.dj-tile-body { display: block; }
.dj-tile .rating small { color: var(--muted); font-size: .75rem; font-weight: 400; }
.search-controls { background: var(--bg-elevated); padding-bottom: 2px; }
.search-field { min-height: 48px; }
.search-field input { min-height: 46px; font-size: 1rem; }
.search-field:focus-within { border-color: #ac386b; box-shadow: 0 0 0 3px rgba(255,45,118,.08); }
.chip, .chip.small { min-height: 40px; padding: 7px 14px; font-size: .875rem; }
.chip.active { color: #ffe9f2; background: linear-gradient(135deg, #79234d, #441d38); border-color: #b94073; }
.sort-control select { color: #becadb; background: transparent; border: 0; padding: 10px 2px; max-width: 154px; font-size: .8125rem; cursor: pointer; }
.sort-control option { background: #0e1726; }
.result-meta { min-height: 45px; font-size: .8125rem; }
.dj-list { padding: 5px 14px 24px; gap: 12px; }
.dj-list-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 4px; padding: 6px; min-height: 105px; border-color: #202d40; background: linear-gradient(130deg,#111a27,#0a121d); }
.dj-card-open { display: grid; grid-template-columns: 76px minmax(0,1fr); gap: 10px; min-width: 0; align-items: center; border: 0; border-radius: 8px; padding: 2px; background: none; text-align: left; cursor: pointer; }
.dj-avatar-square { width: 76px; height: 76px; object-position: top; }
.dj-card-name { font-size: .9375rem; flex-wrap: wrap; }
.dj-card-tags { display: block; white-space: normal; font-size: .75rem; line-height: 1.6; }
.dj-card-sub { display: flex; gap: 7px; flex-wrap: wrap; font-size: .75rem; }
.dj-card-sub small { font-size: .75rem; color: var(--muted); }
.dj-card-side { padding: 0 2px 6px 0; min-width: 73px; }
.favorite-button { width: 44px; height: 44px; }
.favorite-button .icon { width: 21px; height: 21px; }
.price { color: #ff75a6; font-size: .875rem; font-variant-numeric: tabular-nums; }
.price small { font-size: .75rem; }
.detail-cover { min-height: 228px; background-position: center 20%; }
.play-button { top: auto; bottom: 40px; right: 20px; background: rgba(201,210,237,.7); }
.avatar-ring { border-width: 1px; box-shadow: 0 0 0 4px #070c15; }
.avatar-ring img { object-position: top; }
.profile-title h1 { font-size: 1.375rem; }
.profile-title p { display: flex; flex-wrap: wrap; gap: 8px; font-size: .8125rem; }
.inline-icon { display: inline-flex; gap: 3px; align-items: center; }
.inline-icon .icon { width: 13px; height: 13px; }
.tag { padding: 6px 10px; border-radius: 7px; font-size: .75rem; border-color: #2e3e56; background: #121c29; }
.headline-price { font-size: 1.3125rem; }
.headline-price small { font-size: .8125rem; font-weight: 400; color: #aab8ca; }
.tab { font-size: .875rem; min-height: 48px; }
.bio, .event-description { font-size: 1rem; line-height: 1.9; color: #bdc9da; margin: 8px 0; }
.stat span { font-size: .75rem; }
.stat strong { font-size: 1rem; }
.stat + .stat { border-left: 1px solid var(--line-soft); }
.stat-row { margin-top: 16px; margin-bottom: 6px; padding: 20px 0; }
.dj-actions { grid-template-columns: 44px minmax(0,1fr) minmax(0,1fr); gap: 8px; }
.sticky-actions .favorite-button { width: 44px; height: 48px; color: var(--accent-2); }
.event-actions { grid-template-columns: minmax(0,1fr) minmax(0,1.5fr); }
.media-gallery { display: grid; grid-template-columns: 1.35fr 1fr; gap: 10px; }
.media-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.media-notice { display: flex; align-items: center; gap: 12px; padding: 18px 0; color: #b9c7db; }
.media-notice p { margin: 4px 0; font-size: .8125rem; }
.media-notice strong { color: #e1e8f1; font-size: .875rem; }
.review-summary { display: flex; align-items: center; gap: 16px; margin: 0 0 18px; }
.review-summary > strong { font-size: 2.75rem; letter-spacing: -.06em; }
.review-summary p { margin: 5px 0; color: var(--muted); font-size: .8125rem; }
.review-card .bio { margin: 0; font-size: .9375rem; }
.stepper { margin: 0; list-style: none; padding: 20px 16px 24px; }
.step { font-size: .75rem; }
.form-card { padding: 0 18px 28px; }
.field { min-width: 0; margin-bottom: 19px; }
.field label, .genre-field legend { display: flex; gap: 9px; align-items: center; font-size: .875rem; line-height: 1.5; }
.input, .select, .textarea { min-width: 0; max-width: 100%; border-color: #354357; min-height: 48px; font-size: 1rem; }
.input { color-scheme: dark; }
.input:user-invalid, .textarea:user-invalid { border-color: #fb6e9e; }
.textarea { line-height: 1.8; }
.required-mark { border: 1px solid #653149; padding: 1px 5px; border-radius: 4px; font-size: .75rem; font-weight: 450; color: #ff91b8; }
.field-hint { color: #9aa9bc; margin: -6px 0 20px; font-size: .75rem; line-height: 1.7; }
.genre-field { border: 0; padding: 0; }
.genre-field legend small { color: #a9b5c6; font-size: .75rem; font-weight: 400; }
.genre-field .tag-cloud { margin: 10px 0 0; gap: 8px; }
.review-row { grid-template-columns: 84px minmax(0,1fr); line-height: 1.8; font-size: .875rem; }
.review-row strong { white-space: pre-line; }
.demo-caption { color: #94a4ba; font-size: .75rem; line-height: 1.8; margin: 18px 0; }
.segmented { margin-top: 16px; }
.segment { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 5px; min-height: 42px; font-size: .8125rem; }
.segment span { font-size: .75rem; opacity: .8; }
.proposal-list { padding: 4px 14px 24px; }
.proposal-card { text-align: left; color: inherit; grid-template-columns: 62px minmax(0,1fr); padding: 14px 12px; gap: 12px; }
.proposal-card img { width: 62px; height: 68px; }
.proposal-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: .8125rem; margin: 8px 0; }
.proposal-time { font-size: .75rem; flex-shrink: 0; }
.proposal-name { font-size: .9375rem; }
.proposal-message { font-size: .875rem; line-height: 1.8; color: #bfcadc; }
.proposal-reply { display: flex; align-items: center; gap: 4px; color: #ed7aa5; font-size: .75rem; margin-top: 12px; }
.proposal-reply .icon { height: 13px; width: 13px; }
.event-card, .chat-context { width: 100%; color: inherit; text-align: left; display: grid; grid-template-columns: 72px minmax(0,1fr) 14px; gap: 12px; align-items: center; padding: 12px; margin: 0 0 12px; border: 1px solid #29364b; border-radius: 13px; background: linear-gradient(130deg,#131c2c,#0c1521); cursor: pointer; }
.event-card img, .chat-context img { width: 72px; height: 74px; object-fit: cover; object-position: center; border-radius: 8px; }
.event-card-thumb { display: block; width: 72px; height: 74px; border-radius: 8px; background-size: cover; background-position: center; }
.event-card-thumb.club-art { background-size: 160% auto; background-position: right top; }
.event-card strong, .chat-context strong { display: block; font-size: .9375rem; margin: 0 0 4px; }
.event-card span > span, .chat-context span > span { display: block; font-size: .75rem; color: #aab8cd; line-height: 1.8; }
.event-card > .icon, .chat-context > .icon { width: 14px; color: #8396b2; }
.event-card .price { display: block; margin-top: 8px; }
.chat-screen .chat-context { width: calc(100% - 28px); margin: 14px; }
.chat-person { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.chat-person img { width: 40px; height: 40px; object-fit: cover; border: 1px solid #6b3759; border-radius: 50%; }
.chat-person h1 { text-align: left; }
.chat-person span { font-size: .75rem; }
.chat-date { padding: 3px 0 20px; color: #8798af; font-size: .75rem; text-align: center; }
.chat-thread { min-height: 0; gap: 20px; padding: 0 14px 24px; }
.bubble-wrap { max-width: 84%; min-width: 0; }
.bubble { font-size: .9375rem; line-height: 1.8; padding: 12px 14px; white-space: pre-wrap; overflow-wrap: anywhere; border: 1px solid #27344c; background: #141e30; }
.mine .bubble { background: linear-gradient(135deg,#922451,#732044); border-color: #b74674; color: #fff; }
.message-time { font-size: .75rem; margin-top: 6px; color: #91a2b9; }
.composer { position: relative; flex-shrink: 0; grid-template-columns: minmax(0,1fr) 44px; align-items: end; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); }
.composer textarea { min-height: 46px; max-height: 120px; min-width: 0; padding: 11px 14px; border: 1px solid #36455b; border-radius: 22px; color: #f5f7fb; background: #111a29; font-size: 1rem; line-height: 1.4; resize: none; }
.send-button { width: 44px; height: 44px; background: #fc4c8b; color: #270917; }
.calendar-head h2 { font-size: 1.0625rem; margin: 0; }
.calendar-week { font-size: .75rem; padding: 7px 0; }
.calendar-day { position: relative; min-height: 40px; font-size: .9375rem; border-radius: 12px; color: #d9e3f1; }
.calendar-day.dim { color: #77849a; }
.calendar-day.weekend:not(.dim) { color: #e991b3; }
.calendar-day.selected { color: white !important; background: #9b2855; box-shadow: inset 0 0 0 1px #e25387; }
.event-dot { position: absolute; left: 50%; transform: translateX(-50%); bottom: 5px; height: 4px; width: 4px; border-radius: 50%; background: #ff659f; }
.selected .event-dot { background: #fff; }
.schedule-heading { margin-top: 24px; margin-bottom: 4px; min-height: 40px; }
.schedule-heading h2 small { color: #92a3bb; font-size: .75rem; font-weight: 400; }
.schedule-list { margin-top: 0; margin-bottom: 70px; }
.schedule-item { width: 100%; text-align: left; color: inherit; cursor: pointer; grid-template-columns: 46px minmax(0,1fr) auto; background: transparent; border: 0; border-bottom: 1px solid var(--line-soft); }
.schedule-date strong { font-variant-numeric: tabular-nums; }
.schedule-date span, .schedule-info span { font-size: .8125rem; line-height: 1.7; }
.schedule-info strong { font-size: .875rem; }
.status { font-size: .75rem; }
.fab { bottom: calc(87px + env(safe-area-inset-bottom)); background: #ff4f90; color: #2a0a18; }
.photo-field { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; }
.profile-hero { background-position: center 10%; min-height: 164px; }
.club-profile { background-image: linear-gradient(180deg,transparent,#07101b),url('./assets/event-hero.png'); }
.mypage-identity { align-items: center; gap: 11px; padding-bottom: 22px; }
.mypage-identity > div:not(.avatar-ring) { flex: 1; min-width: 0; padding-top: 28px; }
.mypage-identity > .icon-button { align-self: start; margin-top: 32px; }
.mypage-identity h1 { font-size: 1.25rem; line-height: 1.4; }
.mypage-identity p { line-height: 1.7; font-size: .75rem; }
.menu-list { margin-bottom: 20px; }
.menu-item { min-height: 56px; font-size: .875rem; }
.menu-item .icon { width: 18px; height: 18px; color: #b4c2d8; }
.menu-item .chev .icon { width: 14px; color: #8798ae; }
.brand-card { margin-bottom: 22px; }
.brand-card span { font-size: .75rem; }
.role-card { background: transparent; border-color: #27344a; }
.inline-role-switch button { min-height: 44px; font-size: .875rem; }
.event-cover { min-height: 266px; background-size: 125% auto; background-position: center 27%; }
.event-cover.club-art { background-size: 160% auto; background-position: right top; }
.event-cover::after { background: linear-gradient(180deg,rgba(3,5,10,.4),transparent 25%,#070c14 100%); }
.event-title h1 { font-size: 1.75rem; margin-bottom: 13px; line-height: 1.3; }
.event-kicker { display: block; color: #ffc1d9; font-size: .75rem; letter-spacing: .13em; margin-bottom: 9px; }
.meta-badge { display: inline-flex; gap: 5px; align-items: center; font-size: .75rem; border: 1px solid #314155; }
.meta-badge .icon { width: 13px; height: 13px; }
.detail-list { padding: 2px 0 14px; border-bottom: 1px solid var(--line-soft); }
.detail-line { font-size: .9375rem; line-height: 1.7; align-items: center; }
.detail-line small { font-size: .8125rem; color: #a7b8cd; }
.club-logo { flex-shrink: 0; }
.club-card-main strong { font-size: .875rem; }
.club-card-main span { font-size: .75rem; }
.follow-button { min-height: 40px; font-size: .8125rem; background: #ff4f8f; color: #2b0b1c; }
.follow-button.following { color: #d0daea; background: #1e2a3c; border: 1px solid #3e4f68; }
.saved { color: #ff8cb7; }
.venue-location { display: flex; gap: 10px; padding: 16px 13px; border: 1px solid #28384e; border-radius: 12px; background: #111b2a; }
.venue-location > .icon { flex-shrink: 0; color: #f286b3; }
.venue-location strong { display: block; margin-bottom: 4px; font-size: .875rem; }
.venue-location span { color: #a4b5cc; font-size: .75rem; line-height: 1.6; }
.tabbar-button { min-height: 54px; gap: 6px; font-size: .75rem; }
.tabbar-button.active { color: #ff6da4; }
.tabbar-button .icon { width: 22px; height: 22px; }
.tabbar-button.active .icon { filter: drop-shadow(0 0 6px rgba(255,45,118,.35)); }
.prototype-nav { top: 0; max-height: calc(100dvh - 48px); overflow: auto; scrollbar-width: thin; }
.eyebrow { font-size: .75rem; letter-spacing: .1em; }
.screen-link { min-height: 43px; grid-template-columns: 21px minmax(0,1fr) auto; padding: 0 9px; font-size: .8125rem; }
.screen-link small { color: #8193ad; font-size: .75rem; }
.role-switch button { min-height: 40px; font-size: .8125rem; }
.empty-state { min-height: 235px; padding: 35px 16px; }
.empty-state .empty-icon { margin-inline: auto; width: 54px; height: 54px; border-radius: 18px; }
.empty-state h2 { font-size: 1rem; }
.empty-state p { font-size: .875rem; line-height: 1.8; margin: 10px auto 16px; }
.action-dialog { width: min(390px,calc(100vw - 24px)); max-height: calc(100dvh - 40px); padding: 20px; border: 1px solid #43516a; border-radius: 20px; color: var(--text); background: #0f1827; box-shadow: 0 24px 100px #0008; overflow-y: auto; }
.action-dialog::backdrop { background: rgba(2,5,12,.75); backdrop-filter: blur(5px); }
.dialog-heading { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: -6px -8px 14px 0; }
.dialog-heading h2 { font-size: 1.0625rem; margin: 0; }
.dialog-heading .icon-button { font-size: 1.5rem; }
.dialog-copy { font-size: 1rem; color: #b9c8dd; line-height: 1.8; margin: 12px 0 22px; }
.dialog-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dialog-image { width: 100%; max-height: 240px; object-fit: cover; object-position: top; border-radius: 12px; }
.action-dialog > .input { margin-bottom: 16px; }
.photo-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.photo-options button { padding: 0; border: 1px solid #485a74; border-radius: 12px; overflow: hidden; background: transparent; cursor: pointer; }
.photo-options img { width: 100%; aspect-ratio: 1; object-fit: cover; }

@media (max-width: 760px) {
  body { background: var(--bg); }
  .ambient, .prototype-nav { display: none; }
  .prototype-shell { display: block; height: var(--mobile-height,100dvh); min-height: 0; padding: 0; }
  .device { height: 100%; min-height: 0; border: 0; border-radius: 0; box-shadow: none; }
  .app-header { padding-top: calc(10px + env(safe-area-inset-top)); }
  .app-header.transparent { padding-top: calc(10px + env(safe-area-inset-top)); }
  .screen-body { scrollbar-width: none; }
  .screen-body::-webkit-scrollbar { display: none; }
  .action-dialog { margin: auto auto max(12px,env(safe-area-inset-bottom)); border-radius: 20px; max-height: calc(var(--mobile-height,100dvh) - 30px); }
}

@media (max-width: 370px) {
  .hero-copy h1 { font-size: 1.85rem; }
  .hero-actions { gap: 8px; }
  .hero-actions .icon { display: none; }
  .primary-button, .secondary-button { padding-inline: 9px; }
  .dj-card-open { grid-template-columns: 62px minmax(0,1fr); gap: 8px; }
  .dj-avatar-square { width: 62px; height: 62px; }
  .dj-card-name { font-size: .875rem; }
  .dj-card-side { min-width: 70px; }
  .proposal-time { font-size: .75rem; }
  .date-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .input { padding-inline: 8px; }
  .tabbar-button { font-size: .75rem; }
}

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