#boardView.is-point-game-view > .section-head {
  display: none !important;
}

.point-game-poster {
  align-items: center !important;
}

.point-game-poster .point-game-preview {
  align-self: center !important;
  justify-self: center !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden;
}

.point-game-poster .point-game-ladder-preview,
.point-game-poster .point-game-rps-preview,
.point-game-poster .point-game-roulette-preview {
  margin-inline: auto !important;
}

.point-game-poster .point-game-ladder-preview .point-game-ladder-svg {
  width: 94px !important;
  height: 94px !important;
  margin-top: 0 !important;
}

.point-game-poster .point-game-ladder-preview .rail,
.point-game-poster .point-game-ladder-preview .bridge {
  stroke: rgba(255, 255, 255, 0.72) !important;
}

.point-game-poster .point-game-ladder-preview .runner-route {
  stroke: rgba(225, 29, 45, 0.74) !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle {
  width: 92px !important;
  height: 92px !important;
  min-height: 92px !important;
}

.point-game-poster .point-game-rps-preview .point-game-rps-thumbnail {
  display: grid !important;
  place-items: center !important;
  width: 92px !important;
  height: 92px !important;
  border: 4px solid var(--brand) !important;
  border-radius: 22px !important;
  background: var(--surface-2) !important;
  overflow: hidden;
}

.point-game-poster .point-game-rps-preview .rps-hand-figure {
  width: 82px !important;
  min-height: 82px !important;
  transform: translateY(2px);
}

.point-game-poster .point-game-rps-preview .rps-hand-label {
  display: none !important;
}

.point-game-poster .point-game-rps-preview b {
  display: none !important;
}

.point-game-poster .point-game-roulette-preview {
  position: relative !important;
}

.point-game-poster-status {
  text-align: center;
}

@media (max-width: 720px) {
  .point-game-poster {
    align-items: center !important;
  }

  .point-game-poster .point-game-preview {
    width: 104px !important;
  }

  .point-game-poster .point-game-poster-status,
  .point-game-poster > button {
    justify-self: stretch !important;
  }
}

.point-game-poster-meta,
.point-game-poster > p {
  display: none !important;
}

.point-game-ladder-stage {
  display: grid !important;
  grid-template-columns: minmax(96px, 128px) minmax(0, 1fr) minmax(96px, 128px);
  align-items: center;
  gap: 14px;
  width: min(720px, 100%);
}

.ladder-side-stake input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 10px;
  text-align: center;
}

.ladder-side-stake input::placeholder {
  text-align: center;
}

.point-game-roulette-wheel {
  --roulette-spin-angle: 0deg;
  background: conic-gradient(from 0deg, #fff 0deg 180deg, var(--brand) 180deg 360deg) !important;
}

.point-game-roulette-wheel .win,
.point-game-roulette-wheel .lose {
  display: none !important;
}

.point-game-roulette-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.point-game-roulette-labels span {
  position: absolute;
  left: 50% !important;
  min-width: 88px;
  min-height: 40px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  text-shadow: 0 1px 2px rgba(29, 35, 43, 0.2);
}

.point-game-roulette-labels .win {
  top: 26% !important;
  color: #fff !important;
}

.point-game-roulette-labels .lose {
  top: 74% !important;
  color: var(--ink) !important;
}

.point-game-machine[data-roulette-outcome="lose"] .point-game-roulette-labels .win {
  top: 74% !important;
}

.point-game-machine[data-roulette-outcome="lose"] .point-game-roulette-labels .lose {
  top: 26% !important;
}

.point-game-roulette-preview {
  position: relative;
  background: linear-gradient(180deg, var(--brand) 0 50%, #fff 50% 100%) !important;
  border-radius: 999px;
}

.point-game-roulette-preview span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 68px;
  text-align: center;
  line-height: 1;
}

.point-game-roulette-preview span:first-child {
  bottom: 24%;
  color: var(--ink) !important;
}

.point-game-roulette-preview span:last-child {
  top: 24%;
  color: #fff !important;
}

@media (max-width: 820px) {
  .point-game-ladder-stage {
    grid-template-columns: 1fr;
  }
}

.point-game-rps-preview {
  gap: 10px;
  align-items: center;
}

.point-game-rps-preview .rps-hand-figure {
  width: 54px;
  min-height: 62px;
}

.point-game-rps-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.point-game-rps-reel {
  display: none !important;
}

.rps-hand-cycle {
  position: relative;
  width: min(260px, 72vw);
  aspect-ratio: 1;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(145deg, rgba(216, 36, 47, 0.15), rgba(214, 156, 31, 0.12));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 18px 42px rgba(29, 35, 43, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.rps-hand-cycle::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(216, 36, 47, 0.22);
  pointer-events: none;
}

.rps-hand-frame {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.9) rotate(-4deg);
  transition: opacity 120ms ease-out, transform 120ms ease-out;
}

.rps-hand-cycle:not(.is-running):not(.is-result) .rps-hand-frame:first-child,
.rps-hand-cycle.is-result[data-rps-final="scissors"] .rps-hand-frame.is-scissors,
.rps-hand-cycle.is-result[data-rps-final="rock"] .rps-hand-frame.is-rock,
.rps-hand-cycle.is-result[data-rps-final="paper"] .rps-hand-frame.is-paper {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.rps-hand-cycle.is-running .rps-hand-frame {
  animation: rpsHandSwap 600ms steps(1, end) infinite;
}

.rps-hand-cycle.is-running .rps-hand-frame:nth-child(2) {
  animation-delay: 200ms;
}

.rps-hand-cycle.is-running .rps-hand-frame:nth-child(3) {
  animation-delay: 400ms;
}

@keyframes rpsHandSwap {
  0%,
  32% {
    opacity: 1;
    transform: scale(1.04) rotate(0);
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(0.9) rotate(5deg);
  }
}

.rps-hand-figure {
  display: inline-grid;
  justify-items: center;
  gap: 6px;
  color: #1d232b;
  width: min(188px, 100%);
  min-height: 194px;
}

.rps-hand-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(29, 35, 43, 0.18));
}

.rps-hand-svg .skin {
  fill: #fff3df;
  stroke: #1d232b;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rps-hand-svg .line {
  fill: none;
  stroke: #8f5f33;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rps-hand-label {
  color: #1d232b !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.rps-hand-slot {
  display: grid;
  place-items: center;
  min-width: 98px;
  min-height: 118px;
  font-size: 16px;
}

.rps-hand-slot .rps-hand-figure {
  width: 86px;
  min-height: 98px;
  gap: 2px;
}

.rps-hand-slot .rps-hand-label {
  font-size: 12px;
}

.point-game-fighter strong.rps-hand-slot {
  padding: 8px;
  border-radius: 14px;
}

.point-game-choice-grid button {
  display: inline-grid;
  place-items: center;
}

@media (max-width: 720px) {
  .rps-hand-cycle {
    width: min(218px, 66vw);
    border-radius: 18px;
  }

  .rps-hand-figure {
    width: 152px;
    min-height: 160px;
  }

  .rps-hand-slot {
    min-width: 82px;
    min-height: 96px;
  }

  .rps-hand-slot .rps-hand-figure {
    width: 70px;
    min-height: 82px;
  }

  .point-game-rps-result-row {
    gap: 8px;
  }
}

.auth-check-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}

.auth-check-row:has(button[hidden]) {
  gap: 0;
}

.auth-check-row input {
  flex: 1 1 auto;
  min-width: 0;
}

.auth-check-row button {
  min-height: 42px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  padding: 0 10px;
  font-weight: 900;
  white-space: nowrap;
}

#authDialog .auth-form input,
#authDialog .auth-form select,
#authDialog .auth-form button,
body.dark-mode #authDialog .auth-form input,
body.dark-mode #authDialog .auth-form select,
body.dark-mode #authDialog .auth-form button {
  box-sizing: border-box !important;
  min-height: 42px !important;
}

#authDialog .auth-form input,
#authDialog .auth-form select,
#authDialog .auth-form .primary-action,
#authDialog .auth-form .auth-switch,
#authDialog .auth-form .auth-recovery,
body.dark-mode #authDialog .auth-form input,
body.dark-mode #authDialog .auth-form select,
body.dark-mode #authDialog .auth-form .primary-action,
body.dark-mode #authDialog .auth-form .auth-switch,
body.dark-mode #authDialog .auth-form .auth-recovery {
  width: 100% !important;
}

.auth-check-message {
  min-height: 16px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}

.auth-check-message.is-ok {
  color: var(--green);
}

body:not(.dark-mode):not(.auth-gate-open),
body:not(.dark-mode) main,
body:not(.dark-mode) .board-main,
body:not(.dark-mode) .board-shell {
  background: #fff !important;
}

.board-shell,
.board-home,
.board-view,
.board-shell,
.board-member-panel,
.board-post-detail-page,
.board-post-detail,
.board-post-list,
.board-list-controls,
.board-search-dock,
.board-pagination,
.point-game-arena,
.point-game-stage,
.point-game-control {
  background: #fff !important;
  box-shadow: none !important;
}

.board-home,
.board-view,
.board-member-panel,
.board-post-detail-page,
.board-post-detail,
.board-list-controls,
.board-search-dock,
.board-pagination,
.point-game-arena {
  border-color: #fff !important;
}

.board-post-card.is-notice,
.board-post-card.is-pinned {
  border: 1px solid rgba(216, 36, 47, 0.58) !important;
  background: #fffafa !important;
  padding-block: 12px !important;
}

.board-post-card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
}

.board-view-head {
  align-items: center !important;
}

.board-view-head h1,
#boardTitle {
  text-align: left !important;
}

.board-filter-meta {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(94px, 1fr)) auto !important;
  align-items: end !important;
  gap: 8px !important;
}

.board-filter-meta-job {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto !important;
}

.board-filter-meta-black {
  grid-template-columns: minmax(0, 220px) 64px !important;
  justify-content: start;
}

.board-filter-meta-black button {
  width: 64px;
  min-width: 64px;
  padding-inline: 8px !important;
}

body.dark-mode .board-filter-meta label > span,
body.dark-mode .board-filter-meta-job label > span,
body.dark-mode .board-filter-meta-black label > span {
  color: #fff !important;
}

body.dark-mode .board-filter-meta select,
body.dark-mode .board-filter-meta-job select,
body.dark-mode .board-filter-meta-black select {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%) !important;
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50% !important;
  background-repeat: no-repeat !important;
  background-size: 6px 6px, 6px 6px !important;
  padding-right: 38px !important;
}

body.dark-mode .board-filter-meta select,
body.dark-mode .board-filter-meta-job select,
body.dark-mode .board-filter-meta-black select {
  background-color: var(--surface-2) !important;
  border-color: var(--line-strong) !important;
}

.board-verification-callout {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 18px;
}

.board-verification-copy {
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.board-verification-button {
  min-width: 84px;
  min-height: 32px;
  padding-inline: 12px;
  font-size: 13px;
}

.board-filter-form label > span {
  align-self: center;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
}

.board-filter-form input,
.board-filter-form select,
.board-filter-meta button {
  min-height: 42px !important;
}

.board-filter-meta input,
.board-filter-meta select {
  height: 42px !important;
}

.board-post-form input,
.board-post-form select,
.board-post-form textarea {
  min-height: 42px !important;
}

.board-review-fields,
.job-kind-fields {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.review-fields,
.job-kind-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.review-fields label,
.board-review-fields label,
.job-kind-fields label {
  min-width: 0;
}

.review-fields input,
.review-fields select,
.job-kind-fields select {
  height: 42px !important;
  min-height: 42px !important;
  width: 100% !important;
}

.review-fields .review-rating-field {
  height: auto !important;
  min-height: 0 !important;
  align-self: end;
}

.board-post-form #boardPostTitle {
  height: 42px !important;
  min-height: 42px !important;
}

.review-fields label > span,
.job-kind-fields label > span {
  font-size: 13px !important;
  font-weight: 900 !important;
  text-align: center;
}

.job-kind-fields {
  align-items: start !important;
}

.job-kind-fields .job-region-select,
.job-kind-fields .job-kind-select {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto 42px !important;
  align-items: stretch !important;
  gap: 6px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.job-kind-fields .job-region-select > span,
.job-kind-fields .job-kind-select > span {
  display: block !important;
  min-height: 16px !important;
  line-height: 1.2 !important;
  text-align: center !important;
}

.job-kind-fields .job-region-select select,
.job-kind-fields .job-kind-select select {
  display: block !important;
  align-self: stretch !important;
  width: 100% !important;
  height: 42px !important;
  min-height: 42px !important;
}

.review-rating-picker {
  align-self: stretch !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 42px !important;
  min-height: 42px !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  box-sizing: border-box !important;
  gap: 2px !important;
  overflow: hidden !important;
  padding: 6px 8px !important;
}

.review-rating-picker .review-rating-star,
.review-rating-picker .review-rating-star svg,
.review-rating-picker .review-rating-star-fill .review-rating-star-fill-icon {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
}

.review-rating-picker .review-rating-star {
  flex: 0 0 24px !important;
}

.home-user-rank-row {
  grid-template-columns: 42px minmax(0, 1fr) auto !important;
  align-items: center !important;
  text-align: left !important;
}

.home-ranking-filter-panel {
  margin: 10px 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface) !important;
  padding: 10px;
}

.home-ranking-filter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.home-ranking-filter button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.home-ranking-filter button.is-active,
.home-ranking-filter button[aria-checked="true"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.home-ranking-filter button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.home-user-rank-no {
  align-self: center !important;
  width: 34px !important;
  height: 34px !important;
  font-size: 22px !important;
  line-height: 34px !important;
}

.home-ranking-grid.is-member-ranking {
  grid-template-columns: 1fr !important;
}

.home-user-rank-no.is-number {
  border: 2px solid var(--brand) !important;
  border-radius: 8px !important;
  background: #171b22 !important;
  color: #f5f7fa !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.home-user-rank-name {
  display: grid;
  gap: 2px;
  line-height: 1.25;
  min-width: 0;
  text-align: left !important;
}

.home-user-rank-name small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left !important;
}

.home-user-rank-name b {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left !important;
}

.home-user-rank-score {
  align-self: center !important;
  padding-top: 0;
  white-space: nowrap;
}

.home-post-reactions mark,
.home-user-rank-score {
  white-space: nowrap;
}

.home-post-reactions mark b,
.home-user-rank-score b {
  display: inline-block;
  margin-left: 4px;
}

.board-view-head,
.section-head,
#boardTitle {
  text-align: left !important;
}

.post-list-meta-prefix {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.post-list-meta-prefix::after {
  content: " ";
}

.point-summary {
  grid-template-columns: 1fr !important;
  gap: 6px !important;
}

.point-summary strong,
.point-summary span,
.point-summary small {
  display: block;
}

.point-summary small::after {
  content: "";
}

.point-game-lobby-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.point-game-poster {
  min-height: 190px !important;
}

.point-game-preview {
  min-height: 136px !important;
}

.point-game-machine-rockPaperScissors {
  grid-template-columns: minmax(0, 1fr) 260px !important;
  min-height: 360px !important;
}

.point-game-machine-rockPaperScissors .point-game-stage {
  min-height: 320px !important;
}

.point-game-rps-stage {
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr) !important;
  width: min(640px, 100%) !important;
  gap: 12px !important;
}

.point-game-rps-result-row {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 10px !important;
}

.rps-hand-cycle {
  width: min(210px, 40vw) !important;
}

.point-game-ladder-stage {
  position: relative;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center;
  gap: 8px !important;
}

.ladder-side-stake {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(132px, 32%);
  background: rgba(255,255,255,0.92);
}

.ladder-side-stake.is-left {
  left: 12%;
}

.ladder-side-stake.is-right {
  right: 12%;
}

.point-game-ladder-svg {
  margin-top: 58px;
}

.point-game-ladder-svg .bridge {
  stroke: var(--line) !important;
}

.point-game-ladder-svg .runner-route {
  stroke: transparent !important;
  filter: none !important;
}

.point-game-ladder-svg .runner {
  fill: var(--ink) !important;
  filter: none !important;
}

.point-game-ladder-svg [data-ladder-label] {
  fill: var(--muted) !important;
}

.point-game-ladder-svg [data-ladder-label].is-selected {
  fill: var(--brand) !important;
}

.point-game-roulette-wheel {
  background: conic-gradient(from 0deg, #fff 0deg 180deg, var(--brand) 180deg 360deg) !important;
}

.point-game-roulette-wheel .win,
.point-game-roulette-wheel .lose {
  position: absolute !important;
  display: grid !important;
  place-items: center !important;
  top: 50% !important;
  width: 50% !important;
  height: 100% !important;
  color: #111 !important;
  font-size: 18px !important;
  text-shadow: none !important;
  transform: translate(-50%, -50%) !important;
}

.point-game-roulette-wheel .win {
  left: 25% !important;
}

.point-game-roulette-wheel .lose {
  left: 75% !important;
}

.point-game-roulette-labels {
  display: none !important;
}

.point-game-roulette-preview {
  display: grid !important;
  place-items: center;
  aspect-ratio: 1;
  width: min(150px, 100%);
  justify-self: center;
  border-radius: 999px !important;
  background: conic-gradient(from 0deg, #fff 0deg 180deg, var(--brand) 180deg 360deg) !important;
}

.point-game-roulette-preview span {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  color: #111 !important;
  font-size: 15px;
  font-weight: 900;
  transform: translate(-50%, -50%) !important;
  min-width: 52px !important;
  text-align: center;
}

.point-game-roulette-preview span:first-child {
  left: 74% !important;
}

.point-game-roulette-preview span:last-child {
  left: 26% !important;
}

body.dark-mode .auth-form input,
body.dark-mode .auth-form select,
body.dark-mode .board-filter-form input,
body.dark-mode .board-filter-form select,
body.dark-mode .board-post-card,
body.dark-mode .point-game-poster,
body.dark-mode .point-game-result,
body.dark-mode .point-game-control input,
body.dark-mode .point-game-control select {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

body.dark-mode .home-platform-panel,
body.dark-mode .home-user-rank-row,
body.dark-mode .point-game-poster {
  background: var(--surface) !important;
}

#detailDialog.member-contact-dialog,
body.dark-mode #detailDialog.member-contact-dialog {
  width: min(380px, calc(100% - 24px)) !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

#detailDialog.member-contact-dialog #detailContent,
#detailDialog.member-contact-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.member-contact-dialog #detailContent,
body.dark-mode #detailDialog.member-contact-dialog #detailContent .info-dialog-content {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.member-contact-dialog #detailContent .info-dialog-content {
  padding: 16px !important;
}

#detailDialog.member-contact-dialog h2,
body.dark-mode #detailDialog.member-contact-dialog h2 {
  margin: 0 0 10px !important;
  color: var(--ink) !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
}

#detailDialog.member-contact-dialog #detailContent .member-contact-panel,
#detailDialog.member-contact-dialog #detailContent .member-contact-form,
#detailDialog.member-contact-dialog #detailContent .member-contact-list {
  padding: 0 !important;
}

.member-contact-panel {
  gap: 10px !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
}

.member-contact-form {
  gap: 8px !important;
}

.member-contact-form label {
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.member-contact-form input,
.member-contact-form textarea {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.member-contact-form .primary-action {
  min-height: 36px !important;
  background: var(--brand) !important;
  color: #fff !important;
  border: 0 !important;
}

.member-contact-list {
  display: grid !important;
  gap: 6px !important;
  width: 100% !important;
  padding: 0 !important;
}

#detailDialog.member-contact-dialog .member-contact-list .member-contact-row,
.member-contact-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--surface-2) !important;
  padding: 8px 9px !important;
}

.member-contact-row > div {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.member-contact-row strong,
.member-contact-row span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.member-contact-row strong {
  color: var(--ink) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.member-contact-row span {
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.member-contact-row small {
  justify-self: end !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.member-contact-reply {
  display: grid !important;
  gap: 3px !important;
  margin-top: 7px !important;
  border-top: 1px solid var(--line) !important;
  padding-top: 7px !important;
}

.member-contact-reply b {
  color: var(--brand) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.member-contact-reply p {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  white-space: pre-wrap !important;
}

.member-contact-reply time {
  color: var(--muted) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
}

#detailDialog.member-activity-dialog,
body.dark-mode #detailDialog.member-activity-dialog {
  width: min(390px, calc(100% - 24px)) !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

#detailDialog.member-activity-dialog #detailContent,
#detailDialog.member-activity-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.member-activity-dialog #detailContent,
body.dark-mode #detailDialog.member-activity-dialog #detailContent .info-dialog-content {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.member-activity-dialog #detailContent .info-dialog-content {
  padding: 14px !important;
}

#detailDialog.member-activity-dialog h2,
body.dark-mode #detailDialog.member-activity-dialog h2 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.member-activity-panel {
  gap: 12px !important;
  padding: 0 !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
}

.member-activity-section {
  display: grid;
  gap: 6px;
}

.member-activity-section h3 {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

#detailDialog.member-activity-dialog .member-activity-section h3,
body.dark-mode #detailDialog.member-activity-dialog .member-activity-section h3 {
  color: var(--ink) !important;
}

.member-activity-list {
  display: grid;
  gap: 5px;
  padding: 0 !important;
  width: 100% !important;
}

.member-activity-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 44px !important;
  padding: 7px 8px !important;
  border: 1px solid var(--line) !important;
  border-radius: 7px !important;
  background: var(--surface-2) !important;
}

.member-activity-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 8px;
  min-width: 0;
  padding: 0 !important;
}

.member-activity-main strong,
.member-activity-main b,
.member-activity-inquiry-row > strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink) !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-activity-main strong {
  max-width: 82px;
  font-weight: 900;
}

.member-activity-main b {
  font-weight: 800;
}

.member-activity-main time {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-align: left;
}

.member-activity-row button {
  min-width: 48px !important;
  min-height: 28px !important;
  padding: 5px 10px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: var(--brand) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.member-activity-inquiry-row,
.member-activity-block-row {
  align-items: center !important;
  min-height: 36px !important;
}

.member-activity-block-row .member-identity {
  max-width: 100%;
  justify-content: flex-start;
}

.member-activity-block-row .member-name-action {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ink) !important;
}

@media (max-width: 720px) {
  .board-shell {
    width: calc(100% - 10px) !important;
    margin-inline: 5px !important;
  }

  .board-home,
  .board-view {
    padding-inline: 8px !important;
  }

  .board-filter-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto !important;
    gap: 4px !important;
  }

  .board-filter-meta label > span {
    font-size: 13px !important;
  }

  .board-filter-meta input,
  .board-filter-meta select,
  .board-filter-meta button {
    min-height: 36px !important;
    height: 36px !important;
    padding-inline: 4px !important;
    font-size: 12px !important;
  }

  .board-filter-meta-job {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto !important;
  }

  .board-filter-meta-black {
    grid-template-columns: minmax(0, 1fr) 52px !important;
  }

  .board-filter-meta-black button {
    width: 52px;
    min-width: 52px;
    padding-inline: 2px !important;
  }

  .point-game-lobby-grid {
    grid-template-columns: 1fr !important;
  }

  .point-game-machine,
  .point-game-machine-rockPaperScissors {
    grid-template-columns: 1fr !important;
  }

  .point-game-rps-stage {
    grid-template-columns: 1fr !important;
  }

  .rps-hand-cycle {
    width: min(170px, 58vw) !important;
  }

  .ladder-side-stake {
    width: 118px;
  }

  .ladder-side-stake.is-left {
    left: 3%;
  }

  .ladder-side-stake.is-right {
    right: 3%;
  }

  #detailDialog.member-contact-dialog {
    width: min(350px, calc(100% - 18px)) !important;
  }

  #detailDialog.member-contact-dialog #detailContent .info-dialog-content {
    padding: 12px !important;
  }

  #detailDialog.member-activity-dialog {
    width: calc(100% - 8px) !important;
    max-width: 430px !important;
  }

  #detailDialog.member-activity-dialog #detailContent .info-dialog-content {
    padding: 10px !important;
  }

  #detailDialog.member-activity-dialog .member-activity-panel,
  #detailDialog.member-activity-dialog .member-activity-section,
  #detailDialog.member-activity-dialog .member-activity-list {
    padding-inline: 0 !important;
    width: 100% !important;
  }

  #detailDialog.member-activity-dialog .member-activity-row {
    padding-inline: 8px !important;
  }

  #detailDialog.member-activity-dialog .member-activity-row button {
    min-width: 46px !important;
    padding-inline: 8px !important;
  }

  .member-activity-main {
    grid-template-columns: minmax(54px, auto) minmax(0, 1fr);
    column-gap: 6px;
  }

  .member-activity-main strong,
  .member-activity-main b,
  .member-activity-main time,
  .member-activity-inquiry-row > strong {
    font-size: 11px !important;
  }

  .home-ranking-filter-panel {
    margin-block: 8px;
    padding: 8px;
  }

  .home-ranking-filter {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .home-ranking-filter button {
    min-height: 34px;
    padding-inline: 6px;
    font-size: 11px;
  }
}

:root,
body,
body.dark-mode {
  --bg: #050607;
  --surface: #101216;
  --surface-2: #151922;
  --surface-soft: #1a1f29;
  --ink: #f5f7fa;
  --muted: #b7c0ca;
  --line: #2c3440;
  --line-strong: #475261;
  --brand: #e0202d;
  --brand-soft: rgba(224, 32, 45, 0.18);
}

body,
body:not(.dark-mode):not(.auth-gate-open),
body.dark-mode {
  background: var(--bg) !important;
  color: var(--ink) !important;
}

body:not(.auth-gate-open) main,
body:not(.dark-mode) main,
.site-header,
.mobile-topbar,
.mobile-search-row,
.board-main,
.board-shell {
  background: var(--bg) !important;
  color: var(--ink) !important;
}

.board-home,
.board-view,
.board-member-panel,
.board-post-detail-page,
.board-post-detail,
.board-post-list,
.board-list-controls,
.board-search-dock,
.board-pagination,
.home-platform-panel,
.home-user-rank-row,
.board-post-card,
.point-game-arena,
.point-game-stage,
.point-game-control,
.point-game-poster,
.point-game-result,
.mobile-menu-panel,
.mobile-account-panel,
.modal-panel,
.auth-card {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.board-post-card.is-notice,
.board-post-card.is-pinned {
  background: rgba(224, 32, 45, 0.1) !important;
  border: 1px solid rgba(224, 32, 45, 0.72) !important;
}

input,
select,
textarea,
.board-filter-form input,
.board-filter-form select,
.board-post-form input,
.board-post-form select,
.board-post-form textarea,
.auth-form input,
.auth-form select,
.point-game-control input,
.point-game-control select {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line-strong) !important;
}

input::placeholder,
textarea::placeholder {
  color: #87919f !important;
}

.board-write-toolbar {
  grid-template-columns: minmax(0, 1fr) auto auto !important;
  gap: 8px !important;
  align-items: center !important;
}

.board-write-toolbar > span,
.board-write-toolbar small,
.board-draft-notice,
.board-draft-notice span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap !important;
}

.board-write-toolbar > span {
  font-size: 13px !important;
}

.board-write-toolbar small,
.board-draft-notice {
  font-size: 11px !important;
}

#mobileThemeToggle {
  display: none !important;
}

.point-game-lobby-grid {
  align-items: stretch !important;
  width: 100% !important;
}

.point-game-lobby,
.point-game-detail {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-game-lobby {
  padding-inline: 0 !important;
}

.point-game-detail {
  padding-inline: 0 !important;
}

.point-game-poster {
  display: grid !important;
  grid-template-rows: auto minmax(132px, 1fr) auto auto !important;
  gap: 12px !important;
  min-height: 340px !important;
  border: 1px solid var(--line) !important;
  background:
    radial-gradient(circle at 18% 12%, rgba(224, 32, 45, 0.2), transparent 34%),
    linear-gradient(180deg, var(--surface-2), var(--surface)) !important;
}

.point-game-poster h3 {
  align-self: end;
  margin: 0 !important;
  font-size: 18px !important;
  color: var(--ink) !important;
}

.point-game-poster-status {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  background: var(--surface-soft);
}

.point-game-preview {
  border: 1px solid var(--line) !important;
  background: var(--surface-soft) !important;
}

.point-game-rps-preview {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 8px !important;
}

.point-game-rps-preview .rps-hand-cycle {
  width: min(128px, 100%) !important;
  border-radius: 16px !important;
}

.point-game-rps-preview .rps-hand-figure {
  width: 92px !important;
  min-height: 104px !important;
}

.point-game-rps-preview b {
  color: var(--muted);
  font-size: 12px;
}

.point-game-roulette-preview {
  background: conic-gradient(from 0deg, #fff 0deg 180deg, var(--brand) 180deg 360deg) !important;
}

.point-game-roulette-preview span {
  left: 50% !important;
  min-width: 92px !important;
  color: var(--ink) !important;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.82);
}

.point-game-control .point-game-result,
.point-game-result {
  display: grid !important;
  gap: 6px !important;
  min-height: 68px !important;
  padding: 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--surface-soft) !important;
}

.point-game-control .point-game-result strong,
.point-game-result strong {
  display: block !important;
  color: var(--ink);
  font-size: 16px;
}

.point-game-control .point-game-result span,
.point-game-result span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ladder-side-stake {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(21, 25, 34, 0.94) !important;
}

.ladder-side-stake span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.point-game-ladder-svg text {
  font-size: 18px;
  font-weight: 900;
}

.point-game-ladder-svg.point-game-ladder-preview text {
  font-size: 16px;
}

.point-game-ladder-svg [data-ladder-label] {
  fill: var(--muted) !important;
}

.point-game-ladder-svg [data-ladder-label].is-selected {
  fill: var(--brand) !important;
}

.point-game-machine[data-point-game-outcome="running"] .point-game-result {
  border-color: rgba(224, 32, 45, 0.55) !important;
  background: rgba(224, 32, 45, 0.12) !important;
}

.point-game-machine-rockPaperScissors {
  grid-template-columns: minmax(0, 1fr) 240px !important;
}

.point-game-machine-rockPaperScissors .point-game-stage {
  overflow: hidden !important;
}

.point-game-rps-stage {
  grid-template-columns: minmax(132px, 170px) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px !important;
}

.point-game-rps-result-row {
  min-width: 0 !important;
  width: 100% !important;
  grid-template-columns: minmax(82px, 1fr) 50px minmax(82px, 1fr) !important;
  gap: 6px !important;
}

.point-game-versus strong {
  width: 48px !important;
  height: 48px !important;
  font-size: 17px !important;
}

.point-game-versus span {
  min-width: 48px !important;
  font-size: 11px !important;
}

.point-game-fighter {
  min-width: 0 !important;
}

.rps-hand-slot {
  min-width: 78px !important;
  min-height: 86px !important;
  border-color: var(--line-strong) !important;
  background: var(--surface-soft) !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
}

.rps-hand-slot .rps-hand-figure {
  width: 64px !important;
  min-height: 76px !important;
}

.rps-hand-slot .rps-hand-label {
  font-size: 11px !important;
}

.point-game-machine-rockPaperScissors .point-game-rps-stage > .rps-hand-cycle {
  width: 166px !important;
  min-height: 166px !important;
}

.point-game-machine-rockPaperScissors .point-game-rps-stage > .rps-hand-cycle .rps-hand-figure {
  width: 132px !important;
  min-height: 146px !important;
}

.point-game-machine-rockPaperScissors .point-game-fighter > span {
  color: var(--muted) !important;
  font-size: 11px !important;
}

.point-game-machine-rockPaperScissors .point-game-fighter {
  border: 1px solid var(--line) !important;
  background: rgba(21, 25, 34, 0.72) !important;
  box-shadow: none !important;
}

.point-game-machine-rockPaperScissors .point-game-fighter::before {
  border-color: rgba(104, 114, 125, 0.26) !important;
}

.point-game-machine-rockPaperScissors .point-game-versus span {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--muted) !important;
}

.point-game-machine-rockPaperScissors .point-game-choice-grid button:not(.active) {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

.point-game-rps-preview b {
  min-height: 0 !important;
  min-width: 0 !important;
  width: auto !important;
  padding: 6px 10px !important;
  border-color: var(--line) !important;
  border-radius: 999px !important;
  background: var(--surface-soft) !important;
  color: var(--muted) !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.board-member-panel button,
.member-panel button,
.mobile-account-panel button,
.mobile-account-panel .member-admin-link {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

.board-member-panel button:hover,
.member-panel button:hover,
.mobile-account-panel button:hover,
.mobile-account-panel .member-admin-link:hover {
  border-color: var(--brand) !important;
  color: #fff !important;
}

.mobile-account-panel .member-admin-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.mobile-account-panel .member-admin-link[hidden] {
  display: none !important;
}

button[data-auth-logout],
.header-actions button[data-auth-logout],
.site-header button[data-auth-logout] {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  font-weight: 900 !important;
}

.header-actions button[data-auth-logout],
.site-header button[data-auth-logout] {
  height: 38px !important;
}

button[data-auth-logout]:hover,
.header-actions button[data-auth-logout]:hover,
.site-header button[data-auth-logout]:hover {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

#mobileAccountPanel .mobile-account-logout,
#mobileAccountPanel .mobile-account-logout:hover,
#mobileAccountPanel .mobile-account-logout:focus-visible {
  width: auto !important;
  min-width: 64px !important;
  height: 34px !important;
  min-height: 34px !important;
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0 10px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.member-panel-identity .member-panel-name {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 5px;
}

.member-panel-identity .member-identity-logout {
  flex: 0 0 auto;
  width: auto !important;
  min-width: 58px !important;
  min-height: 30px !important;
  margin-left: auto;
  padding: 0 9px !important;
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
  font-size: 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

#mobileAccountPanel .member-account-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 10px;
}

#mobileAccountPanel .member-account-title #mobileMemberStatus {
  grid-column: 1 / -1;
}

.text-button {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

.text-button:hover,
.text-button:focus-visible {
  border-color: var(--brand) !important;
  color: #fff !important;
}

.mobile-menu-link,
.mobile-menu-drawer .mobile-menu-link,
.mobile-menu-panel .mobile-menu-link {
  border-color: var(--line) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

.mobile-menu-link.active {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  border-color: var(--brand) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  outline: none !important;
}

.mobile-theme-toggle {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

.category-strip {
  display: none !important;
  background: var(--surface) !important;
  border-color: var(--line) !important;
}

.site-header:hover .category-strip,
.category-strip:hover,
.category-strip:focus-within {
  display: flex !important;
}

.portal-submenu,
.portal-submenu.depth-2,
.portal-submenu.child-depth {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line-strong) !important;
}

.portal-submenu.active,
.portal-submenu:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

@media (max-width: 720px) {
  .portal-shell,
  .board-layout,
  .point-game-panel {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .point-game-panel .board-content-card,
  .point-game-panel .point-game-machine,
  .point-game-panel .point-game-lobby {
    width: 100% !important;
  }

  .point-game-poster {
    min-height: 260px !important;
  }

  .point-game-control .point-game-result,
  .point-game-result {
    min-height: 62px !important;
  }

  .point-game-machine-rockPaperScissors,
  .point-game-rps-stage {
    grid-template-columns: 1fr !important;
  }

  .point-game-rps-result-row {
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) !important;
  }

  .rps-hand-slot {
    min-width: 64px !important;
    min-height: 82px !important;
  }
}

body.dark-mode,
body.dark-mode main,
body.dark-mode .board-shell,
body.dark-mode .board-main,
body.dark-mode .board-view,
body.dark-mode .board-home,
body.dark-mode .board-card,
body.dark-mode .board-post-card,
body.dark-mode .board-post-detail-page,
body.dark-mode .home-platform-panel,
body.dark-mode .member-panel,
body.dark-mode .board-member-panel {
  color: var(--ink) !important;
}

body.dark-mode .board-filter-form,
body.dark-mode .board-filter-meta,
body.dark-mode .board-search-dock,
body.dark-mode .board-list-controls {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode .board-card h2,
body.dark-mode .home-platform-head h2,
body.dark-mode .board-post-title,
body.dark-mode .board-post-detail-title h2,
body.dark-mode .board-post-body,
body.dark-mode .board-post-detail,
body.dark-mode .board-comment-body,
body.dark-mode .home-post-list button,
body.dark-mode .home-post-list span,
body.dark-mode .home-user-rank-name,
body.dark-mode .post-head,
body.dark-mode .post-head-side,
body.dark-mode .board-write-copy {
  color: var(--ink) !important;
}

body.dark-mode p,
body.dark-mode small,
body.dark-mode .board-card p,
body.dark-mode .board-path,
body.dark-mode .board-access-notice,
body.dark-mode .board-policy-help,
body.dark-mode .board-draft-notice,
body.dark-mode .board-post-meta-card,
body.dark-mode .board-post-meta-card *,
body.dark-mode .post-stat-list,
body.dark-mode .post-stat-list *,
body.dark-mode .board-comment-meta,
body.dark-mode .board-list-controls,
body.dark-mode .board-filter-form label,
body.dark-mode .board-filter-meta label,
body.dark-mode .board-filter-meta label > span,
body.dark-mode .home-post-region,
body.dark-mode .home-post-reactions,
body.dark-mode .home-user-rank-score,
body.dark-mode .home-user-rank-total {
  color: var(--muted) !important;
}

body.dark-mode .board-post-body strong,
body.dark-mode .board-post-detail strong,
body.dark-mode .board-comment-meta strong,
body.dark-mode .board-filter-form label > span,
body.dark-mode .board-filter-meta label > span,
body.dark-mode .home-post-list mark,
body.dark-mode .home-post-region {
  color: var(--ink) !important;
}

body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea,
body.dark-mode .board-filter-meta input,
body.dark-mode .board-filter-meta select,
body.dark-mode .board-search-dock input,
body.dark-mode .board-search-dock select,
body.dark-mode .board-post-form input,
body.dark-mode .board-post-form select,
body.dark-mode .board-post-form textarea {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line-strong) !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: var(--muted) !important;
  opacity: 1 !important;
}

body.dark-mode #forcedPasswordDialog,
body.dark-mode #detailDialog,
body.dark-mode .portal-ad-popup {
  background: #fff !important;
  color: #1d232b !important;
}

body.dark-mode #forcedPasswordDialog h2,
body.dark-mode #detailDialog h2,
body.dark-mode #detailDialog h3,
body.dark-mode .portal-ad-popup strong {
  color: #1d232b !important;
}

body.dark-mode #forcedPasswordDialog p,
body.dark-mode #detailDialog p,
body.dark-mode #detailDialog span,
body.dark-mode .portal-ad-popup span,
body.dark-mode .portal-ad-popup label,
body.dark-mode .auth-message,
body.dark-mode .session-countdown {
  color: #68727d !important;
}

body.dark-mode #forcedPasswordDialog label,
body.dark-mode #forcedPasswordDialog legend {
  color: #1d232b !important;
}

#detailDialog.verification-dialog,
#detailDialog.verification-dialog #detailContent,
#detailDialog.verification-dialog #detailContent .info-dialog-content,
#detailDialog.verification-qr-dialog,
#detailDialog.verification-qr-dialog #detailContent,
#detailDialog.verification-qr-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.verification-dialog,
body.dark-mode #detailDialog.verification-dialog #detailContent,
body.dark-mode #detailDialog.verification-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.verification-qr-dialog,
body.dark-mode #detailDialog.verification-qr-dialog #detailContent,
body.dark-mode #detailDialog.verification-qr-dialog #detailContent .info-dialog-content {
  background: var(--surface, #101216) !important;
  color: var(--ink, #f5f7fa) !important;
  border-color: var(--line, #303744) !important;
}

#detailDialog.verification-dialog h2,
#detailDialog.verification-dialog h3,
#detailDialog.verification-dialog p,
#detailDialog.verification-dialog label,
#detailDialog.verification-dialog span,
#detailDialog.verification-qr-dialog h2,
#detailDialog.verification-qr-dialog h3,
#detailDialog.verification-qr-dialog p,
#detailDialog.verification-qr-dialog label,
#detailDialog.verification-qr-dialog span,
body.dark-mode #detailDialog.verification-dialog h2,
body.dark-mode #detailDialog.verification-dialog h3,
body.dark-mode #detailDialog.verification-dialog p,
body.dark-mode #detailDialog.verification-dialog label,
body.dark-mode #detailDialog.verification-dialog span {
  color: var(--ink, #f5f7fa) !important;
}

body.dark-mode #detailDialog.verification-qr-dialog h2,
body.dark-mode #detailDialog.verification-qr-dialog h3,
body.dark-mode #detailDialog.verification-qr-dialog p,
body.dark-mode #detailDialog.verification-qr-dialog label,
body.dark-mode #detailDialog.verification-qr-dialog span {
  color: var(--ink, #f5f7fa) !important;
}

#detailDialog.verification-dialog .member-panel,
#detailDialog.verification-dialog .member-list article {
  background: var(--surface, #101216) !important;
  color: var(--ink, #f5f7fa) !important;
  border-color: var(--line, #303744) !important;
}

#detailDialog.verification-dialog .member-form input,
#detailDialog.verification-dialog .member-form textarea {
  background: var(--surface-2, #171b23) !important;
  color: var(--ink, #f5f7fa) !important;
  border-color: var(--line-strong, #485363) !important;
}

#detailDialog.verification-dialog .member-form .primary-action {
  background: var(--brand, #ed1b2f) !important;
  color: #ffffff !important;
  border-color: var(--brand, #ed1b2f) !important;
}

#detailDialog.verification-qr-dialog .dialog-close {
  display: none !important;
}

#authDialog,
body.dark-mode #authDialog {
  border: 1px solid var(--line) !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#authDialog h2,
#authDialog label,
#authDialog legend,
body.dark-mode #authDialog h2,
body.dark-mode #authDialog label,
body.dark-mode #authDialog legend {
  color: var(--ink) !important;
}

#authDialog p,
#authDialog .auth-message,
body.dark-mode #authDialog p,
body.dark-mode #authDialog .auth-message {
  color: var(--muted) !important;
}

#authDialog .auth-form input,
#authDialog .auth-form select,
body.dark-mode #authDialog .auth-form input,
body.dark-mode #authDialog .auth-form select {
  background-color: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line-strong) !important;
}

#authDialog .auth-field-error,
body.dark-mode #authDialog .auth-field-error {
  margin: 0;
  color: var(--brand) !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

#authDialog .auth-form select,
body.dark-mode #authDialog .auth-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50% !important;
  background-repeat: no-repeat !important;
  background-size: 6px 6px, 6px 6px !important;
  padding-right: 38px !important;
}

#authDialog .auth-account-type label,
body.dark-mode #authDialog .auth-account-type label {
  background: var(--surface-2) !important;
  color: var(--muted) !important;
  border-color: var(--line-strong) !important;
}

#authDialog .auth-account-type label:has(input:checked),
body.dark-mode #authDialog .auth-account-type label:has(input:checked) {
  background: var(--brand-soft) !important;
  color: var(--ink) !important;
  border-color: var(--brand) !important;
}

html {
  scrollbar-color: #46515f #050607;
}

html::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-track {
  background: #050607;
}

html::-webkit-scrollbar-thumb {
  border: 2px solid #050607;
  border-radius: 8px;
  background: #46515f;
}

body.dark-mode .search-box {
  box-sizing: border-box;
  width: 100%;
  background: var(--surface-2) !important;
  border-color: var(--brand) !important;
}

body.dark-mode .search-box input,
body.dark-mode .search-box button {
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.home-post-list button > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-post-list .home-post-reactions,
.home-post-list .home-post-reactions * {
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

.home-post-reactions mark,
body.dark-mode .home-post-reactions mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 54px;
  border-radius: 4px;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 4px 7px;
  line-height: 1;
}

.home-post-reactions mark b,
body.dark-mode .home-post-reactions mark b {
  margin-left: 0;
  color: #fff !important;
}

.board-post-card .post-head {
  gap: 7px;
}

.post-title-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) max-content;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.board-post-card.is-notice .post-title-row,
.board-post-card.is-restricted-preview .post-title-row {
  grid-template-columns: minmax(0, 1fr);
}

.board-post-title {
  line-height: 1.4;
}

.board-post-title-text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secret-post-lock {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 14px;
  height: 14px;
  color: var(--muted);
  line-height: 1;
}

.secret-post-lock svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.board-post-card .post-head-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.post-head-right {
  display: grid;
  justify-items: end;
  gap: 3px;
  margin-left: auto;
  min-width: 0;
}

.post-list-author,
.post-list-author .member-identity,
.post-list-author .member-name-action {
  max-width: 100%;
  color: var(--ink) !important;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.post-list-author .member-identity {
  justify-content: flex-end;
  gap: 4px;
}

.post-list-author .level-badge-icon {
  width: 18px !important;
  height: 18px !important;
}

.board-pagination button:not(.page-step) {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

.board-pagination button.active:not(.page-step) {
  border-color: var(--brand) !important;
  background: #fff !important;
  color: #111 !important;
  box-shadow: inset 0 0 0 1px var(--brand) !important;
}

.board-pagination button.page-step {
  border-color: var(--line) !important;
  background: #fff !important;
  color: #111 !important;
}

.board-pagination button.page-step:hover:not(:disabled) {
  border-color: var(--brand) !important;
  background: #fff !important;
  color: #111 !important;
}

.board-pagination button:disabled {
  opacity: 0.55;
}

.review-post-row-meta {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-head-side > .post-stat-list {
  justify-self: end;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--muted) !important;
  white-space: nowrap;
}

body.dark-mode .review-detail-panel {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line) !important;
  border-radius: 6px;
  background: var(--surface-2) !important;
  background-image: none !important;
  color: var(--ink) !important;
  padding: 12px 14px;
}

.review-detail-meta-line {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-detail-rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
}

.review-detail-rating-line strong {
  flex: 0 0 auto;
  color: var(--ink) !important;
  font-size: 14px;
}

.review-detail-rating-line .review-star-display {
  --review-star-size: 17px;
  gap: 1px;
}

.board-post-detail-title {
  align-items: flex-start !important;
}

.board-post-detail-title h2 {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.board-post-detail-title-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.board-post-detail-title .secret-post-lock {
  width: 16px;
  height: 16px;
}

.board-secret-toggle {
  flex: 0 0 auto;
  min-height: 32px;
  min-width: 72px;
  border: 1px solid var(--line) !important;
  border-radius: 5px;
  background: #fff !important;
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.board-detail-action-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  border-top-color: var(--line) !important;
}

.board-detail-action-bar .board-reaction-actions,
.board-detail-action-bar .board-post-report-action,
.board-detail-action-bar .board-editor-actions {
  display: contents;
}

.board-detail-action-bar button,
.board-detail-action-bar .board-editor-actions button,
.board-detail-action-bar button:disabled {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 1px solid var(--brand) !important;
  border-radius: 5px;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0 6px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.board-detail-action-bar button:disabled {
  opacity: 0.56;
}

.board-detail-action-bar [data-board-report],
.board-detail-action-bar [data-board-edit],
.board-detail-action-bar [data-board-delete] {
  border-color: #fff !important;
  background: #fff !important;
  color: #111 !important;
}

body.dark-mode .board-comments,
body.dark-mode .board-comment-form,
body.dark-mode .board-comment,
body.dark-mode .board-comment-list,
body.dark-mode .board-comment-list .empty-state {
  background: var(--surface) !important;
  background-image: none !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

body.dark-mode .board-comments {
  border-top: 1px solid var(--line) !important;
  padding-top: 16px;
}

body.dark-mode .board-comment-form textarea {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line-strong) !important;
}

body.dark-mode .board-comments-head,
body.dark-mode .board-comments-head h3,
body.dark-mode .board-comment-body,
body.dark-mode .board-comment-secret-toggle,
body.dark-mode .board-comment-secret-toggle span {
  color: var(--ink) !important;
}

body.dark-mode .board-comment-meta,
body.dark-mode .board-comment-meta span {
  color: var(--muted) !important;
}

body.dark-mode .board-comment-actions button {
  color: #fff !important;
}

.board-comment-form-actions {
  align-items: center !important;
}

.board-comment-submit {
  width: 38px !important;
  min-width: 38px !important;
  height: 20px !important;
  min-height: 20px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: var(--brand) !important;
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 8px !important;
  line-height: 1 !important;
  padding: 0 4px !important;
}

.board-comment-meta {
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

.board-comment-meta-main {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.board-comment-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.board-comment-lock {
  color: #fff !important;
  font-size: 12px;
  line-height: 1;
}

.board-comment-visibility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 74px;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  padding: 5px 10px !important;
  white-space: nowrap !important;
  text-align: center;
}

button.board-comment-visibility {
  cursor: pointer;
}

.board-comment-actions {
  justify-content: flex-end !important;
  gap: 8px !important;
}

.board-comment-actions button {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  padding: 5px 8px !important;
  white-space: nowrap !important;
}

body.dark-mode .board-comment-submit {
  background: var(--brand) !important;
  color: #fff !important;
}

body.dark-mode .board-comment-visibility,
body.dark-mode .board-comment-actions button {
  border-color: var(--line) !important;
  background: #fff !important;
  color: #111 !important;
}

#detailDialog.comment-edit-dialog,
#detailDialog.comment-edit-dialog #detailContent,
#detailDialog.comment-edit-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.comment-edit-dialog,
body.dark-mode #detailDialog.comment-edit-dialog #detailContent,
body.dark-mode #detailDialog.comment-edit-dialog #detailContent .info-dialog-content {
  background: #0f1117 !important;
  color: var(--ink) !important;
}

#detailDialog.comment-edit-dialog {
  width: min(390px, calc(100vw - 22px)) !important;
}

#detailDialog.comment-edit-dialog #detailContent .info-dialog-content {
  display: grid !important;
  gap: 8px !important;
  padding: 16px !important;
}

#detailDialog.comment-edit-dialog .dialog-badge {
  display: none !important;
}

#detailDialog.comment-edit-dialog h2,
body.dark-mode #detailDialog.comment-edit-dialog h2 {
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #fff !important;
}

#detailDialog.comment-edit-dialog p,
body.dark-mode #detailDialog.comment-edit-dialog p {
  margin: 0 !important;
  color: #aab1be !important;
  line-height: 1.35 !important;
}

#detailDialog.comment-edit-dialog label {
  display: grid !important;
  gap: 5px !important;
  margin-top: 0 !important;
}

#detailDialog.comment-edit-dialog label span,
body.dark-mode #detailDialog.comment-edit-dialog label span {
  font-size: 12px !important;
  font-weight: 900 !important;
  color: #fff !important;
}

#detailDialog.comment-edit-dialog textarea {
  min-height: 240px !important;
  max-height: 60vh !important;
  border: 1px solid #2f3644 !important;
  border-radius: 8px !important;
  background: #111620 !important;
  color: var(--ink) !important;
  padding: 12px !important;
  resize: vertical !important;
}

#detailDialog.comment-edit-dialog .dialog-actions {
  justify-content: flex-end !important;
  margin-top: 4px !important;
  gap: 10px !important;
}

#detailDialog.comment-edit-dialog .dialog-actions button {
  min-width: 76px !important;
}

#detailDialog.comment-edit-dialog .dialog-actions .text-button {
  border-color: #2f3644 !important;
  background: #ffffff !important;
  color: #111 !important;
}

#detailDialog.comment-edit-dialog .dialog-actions .primary-action {
  background: var(--brand) !important;
  color: #fff !important;
}

#detailDialog.comment-edit-dialog .dialog-close {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

#detailDialog.comment-edit-dialog .dialog-close:hover,
#detailDialog.comment-edit-dialog .dialog-close:focus,
#detailDialog.comment-edit-dialog .dialog-close:focus-visible {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

.dialog-close,
.dialog-close:hover,
.dialog-close:focus,
.dialog-close:focus-visible,
#detailDialog.point-ledger-dialog .dialog-close,
#detailDialog.member-profile-dialog .dialog-close,
#detailDialog.member-message-dialog .dialog-close,
#detailDialog.member-contact-dialog .dialog-close,
#detailDialog.member-activity-dialog .dialog-close,
#detailDialog.board-draft-dialog .dialog-close {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

#authDialog .dialog-close,
#authDialog .dialog-close:hover,
#authDialog .dialog-close:focus,
#authDialog .dialog-close:focus-visible {
  border-color: var(--brand) !important;
  background: var(--brand) !important;
  color: #fff !important;
}

.board-post-title {
  align-items: flex-start;
  white-space: normal;
}

.board-post-title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  overflow: hidden;
}

.board-post-detail-title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}

.board-watermark-tile,
body.dark-mode .board-watermark-tile {
  color: rgba(255, 84, 96, 0.34) !important;
  text-shadow: 0 0 1px rgba(255, 84, 96, 0.3);
}

.board-filter-meta-job {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 64px !important;
  justify-content: stretch !important;
  width: 100%;
}

.board-filter-meta-job button {
  width: 64px;
  min-width: 64px;
  padding-inline: 8px !important;
}

.board-filter-meta-job label > span {
  text-align: left !important;
}

.board-filter-meta-job select {
  text-align: left !important;
}

body.dark-mode .quick-notice {
  border: 1px solid var(--line) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

body.dark-mode .quick-notice span {
  color: var(--muted) !important;
}

body.dark-mode .account-page,
body.dark-mode .account-summary,
body.dark-mode .account-card,
body.dark-mode .account-activity-list article,
body.dark-mode .member-list article,
body.dark-mode .point-summary {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

.referral-card {
  gap: 8px !important;
}

.referral-card-head {
  display: grid;
  gap: 2px;
}

.referral-card-head h2 {
  margin: 0 !important;
}

.referral-card-head .eyebrow {
  display: none !important;
}

.referral-card-head p {
  margin: 0 !important;
  overflow: hidden;
  color: var(--muted) !important;
  font-size: clamp(11px, 3.2vw, 13px) !important;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: clip;
  white-space: nowrap;
}

.referral-copy-grid {
  gap: 10px !important;
}

.referral-share-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.referral-copy-button {
  min-width: 54px !important;
  padding-inline: 10px !important;
}

.account-nickname-image-row {
  display: grid;
  gap: 6px;
}

.account-nickname-image-row > label {
  display: grid;
  gap: 6px;
}

.account-nickname-image-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.account-page {
  padding: 14px !important;
}

.account-page-head {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  width: 100% !important;
  padding: 0 0 8px !important;
}

.account-page-head > div {
  display: block !important;
  min-width: 0 !important;
}

.account-page-head h1 {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

.account-page-head [data-board-home] {
  align-self: flex-start !important;
  margin: 0 !important;
  min-height: 30px !important;
  padding: 5px 10px !important;
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.account-summary {
  gap: 6px 12px !important;
  padding: 9px 11px !important;
}

.account-grid,
.account-activity-grid {
  gap: 10px !important;
}

.account-card {
  gap: 8px !important;
  padding: 11px !important;
}

.point-summary {
  grid-template-columns: auto auto minmax(0, 1fr) !important;
  gap: 8px 12px !important;
  padding: 10px 12px !important;
}

.point-summary strong,
.point-summary span,
.point-summary small {
  display: inline-block;
}

body.dark-mode .point-summary strong {
  background: var(--brand) !important;
  color: #fff !important;
}

body.dark-mode .point-summary span {
  color: #ff6872 !important;
}

body.dark-mode .point-summary small {
  color: var(--muted) !important;
}

.level-badge,
.level-badge-icon,
.member-identity .level-badge,
.board-post-detail .level-badge {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.level-badge-icon {
  border-radius: 0 !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.35)) !important;
}

.post-images img {
  background: transparent !important;
}

@media (max-width: 820px) {
  body:not(.auth-gate-open) main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  body:not(.auth-gate-open) .board-shell {
    margin-top: 0 !important;
  }

  #boardPosts {
    scroll-margin-top: 168px !important;
  }

  .header-inner {
    width: calc(100% - 8px) !important;
  }

  .board-post-card .post-head-side {
    display: flex;
    gap: 6px;
  }

  .review-post-row-meta {
    font-size: 11px;
  }

  .post-head-right {
    gap: 2px;
    margin-left: auto;
  }

  .post-list-author,
  .post-list-author .member-identity,
  .post-list-author .member-name-action {
    font-size: 10px;
  }

  .post-list-author .level-badge-icon {
    width: 15px !important;
    height: 15px !important;
  }

  .post-head-side > .post-stat-list {
    gap: 5px;
    font-size: 10px;
  }

  .category-strip,
  .site-header:hover .category-strip,
  .category-strip:hover,
  .category-strip:focus-within {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .review-detail-panel {
    padding: 10px !important;
  }

  .review-detail-meta-line {
    font-size: 12px;
  }

  .review-detail-rating-line {
    gap: 7px;
  }

  .review-detail-rating-line strong {
    font-size: 12px;
  }

  .review-detail-rating-line .review-star-display {
    --review-star-size: 15px;
  }

  .board-detail-action-bar {
    gap: 3px;
  }

  .board-detail-action-bar button,
  .board-detail-action-bar .board-editor-actions button {
    min-height: 38px;
    padding-inline: 2px;
    font-size: 11px;
  }

  .board-filter-meta-job {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 52px !important;
    justify-content: stretch !important;
    gap: 5px !important;
    width: 100% !important;
  }

  .board-filter-meta-job button {
    width: 52px;
    min-width: 52px;
    min-height: 36px !important;
    height: 36px !important;
    padding-inline: 2px !important;
    font-size: 12px !important;
  }

  .board-search-dock {
    grid-template-columns: 76px minmax(0, 1fr) 52px 52px !important;
  }

  .board-search-dock button {
    font-size: 12px !important;
  }

  .point-game-lobby {
    gap: 10px !important;
    padding: 0 !important;
  }

  .point-game-lobby .point-game-arena-head {
    align-items: center;
  }

  .point-game-detail {
    gap: 10px !important;
    padding: 0 !important;
  }

  .point-game-detail .point-game-machine {
    gap: 10px !important;
  }

  .point-game-detail .point-game-control {
    gap: 8px !important;
    padding: 10px !important;
  }

  .point-game-lobby-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .point-game-poster {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    grid-template-rows: auto 48px 48px !important;
    grid-template-areas:
      "title title"
      "preview status"
      "preview action" !important;
    min-height: 0 !important;
    gap: 8px 10px !important;
    padding: 10px !important;
  }

  .point-game-poster h3 {
    grid-area: title;
    margin: 0 !important;
  }

  .point-game-poster .point-game-preview {
    grid-area: preview;
    min-height: 104px !important;
    height: 104px;
  }

  .point-game-poster .point-game-rps-preview .rps-hand-cycle {
    width: 92px !important;
    height: 92px !important;
    min-height: 92px !important;
  }

  .point-game-poster .point-game-rps-preview .rps-hand-figure {
    width: 74px !important;
    min-height: 82px !important;
  }

  .point-game-poster .point-game-roulette-preview span {
    min-width: 0 !important;
    max-width: calc(100% - 12px);
    padding: 5px 6px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .point-game-poster .point-game-poster-status {
    grid-area: status;
    align-self: end;
  }

  .point-game-poster > button {
    grid-area: action;
    align-self: start;
  }

  .point-game-machine-rockPaperScissors .point-game-stage {
    min-height: 0 !important;
    padding: 10px !important;
  }

  .point-game-machine-rockPaperScissors .point-game-rps-stage {
    grid-template-rows: 112px 118px !important;
    gap: 8px !important;
  }

  .point-game-machine-rockPaperScissors .point-game-rps-stage > .rps-hand-cycle {
    width: 112px !important;
    height: 112px !important;
    min-height: 112px !important;
  }

  .point-game-machine-rockPaperScissors .point-game-rps-stage > .rps-hand-cycle .rps-hand-figure {
    width: 90px !important;
    min-height: 102px !important;
  }

  .point-game-machine-rockPaperScissors .point-game-rps-result-row {
    height: 118px;
    min-height: 118px !important;
  }

  .point-game-machine-rockPaperScissors .point-game-fighter {
    gap: 4px !important;
    min-height: 118px !important;
  }

  .point-game-machine-rockPaperScissors .rps-hand-slot {
    min-width: 64px !important;
    min-height: 64px !important;
    padding: 4px !important;
  }

  .point-game-machine-rockPaperScissors .rps-hand-slot .rps-hand-figure {
    width: 52px !important;
    min-height: 58px !important;
  }

  .point-game-machine-rockPaperScissors .point-game-versus strong {
    width: 42px !important;
    height: 42px !important;
    font-size: 15px !important;
  }

  .point-game-roulette-wheel .win,
  .point-game-roulette-wheel .lose {
    font-size: 16px !important;
  }

  .point-game-poster-meta,
  .point-game-poster > p {
    display: none !important;
  }

  .point-summary {
    grid-template-columns: auto auto minmax(0, 1fr) !important;
  }

  .account-page {
    padding-inline: 8px !important;
  }

  .account-grid,
  .account-activity-grid {
    grid-template-columns: 1fr !important;
  }
}

.point-game-roulette-wheel .win,
.point-game-roulette-wheel .lose {
  width: 64px !important;
  height: 34px !important;
  min-width: 64px !important;
  min-height: 34px !important;
  top: 44% !important;
  font-size: 21px !important;
  line-height: 1 !important;
  transform: translate(-50%, -50%) !important;
}

.point-game-roulette-wheel .win {
  left: 32% !important;
}

.point-game-roulette-wheel .lose {
  left: 68% !important;
}

#detailDialog.point-ledger-dialog,
body.dark-mode #detailDialog.point-ledger-dialog {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.point-ledger-dialog #detailContent,
body.dark-mode #detailDialog.point-ledger-dialog #detailContent {
  background: var(--surface) !important;
}

#detailDialog.point-ledger-dialog #detailContent .info-dialog-content {
  padding: 14px !important;
  background: var(--surface) !important;
}

#detailDialog.point-ledger-dialog h2,
body.dark-mode #detailDialog.point-ledger-dialog h2 {
  margin: 0 0 16px !important;
  padding-right: 64px !important;
  color: var(--ink) !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

#detailDialog.point-ledger-dialog .dialog-close {
  top: 12px !important;
  right: 12px !important;
  min-height: 30px !important;
  padding: 5px 9px !important;
}

.point-ledger-panel {
  gap: 6px !important;
  background: var(--surface) !important;
  color: var(--ink) !important;
  padding: 10px 0 0 !important;
}

.point-ledger-panel .point-summary {
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100% !important;
  gap: 4px !important;
  border-color: var(--line) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  padding: 5px 6px 6px !important;
}

.point-ledger-panel .point-summary strong {
  display: block !important;
  width: 100% !important;
  border-radius: 4px !important;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 6px 8px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  text-align: center !important;
}

.point-ledger-panel .point-summary small {
  display: block !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-align: center !important;
  padding: 0 4px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.point-ledger-list {
  gap: 5px !important;
  width: 100% !important;
  padding: 0 !important;
}

.point-ledger-list .point-ledger-row {
  display: grid !important;
  width: 100% !important;
  gap: 3px !important;
  border-color: var(--line) !important;
  background: var(--surface-2) !important;
  padding: 7px 8px !important;
}

.point-ledger-row strong,
.point-ledger-row p {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.point-ledger-row strong span,
.point-ledger-row p span,
.point-ledger-row time {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.point-ledger-row strong span {
  color: var(--ink) !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.point-ledger-row strong b {
  flex: 0 0 auto !important;
  color: var(--brand) !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

.point-ledger-row p span,
.point-ledger-row time {
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

#detailDialog.member-profile-dialog,
body.dark-mode #detailDialog.member-profile-dialog {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.member-profile-dialog #detailContent,
body.dark-mode #detailDialog.member-profile-dialog #detailContent,
#detailDialog.member-profile-dialog #detailContent .info-dialog-content {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.member-profile-dialog #detailContent .info-dialog-content {
  padding: 16px !important;
}

#detailDialog.member-profile-dialog h2,
body.dark-mode #detailDialog.member-profile-dialog h2 {
  min-height: 34px !important;
  margin: 0 62px 8px 0 !important;
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 34px !important;
  text-align: left !important;
}

#detailDialog.member-profile-dialog #detailContent .member-profile-panel,
#detailDialog.member-profile-dialog #detailContent .member-profile-section,
#detailDialog.member-profile-dialog #detailContent .member-message-thread,
#detailDialog.member-profile-dialog #detailContent .member-profile-post-list {
  padding: 0 !important;
}

.member-profile-panel {
  gap: 10px !important;
}

.member-profile-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.member-profile-actions button {
  min-width: 0 !important;
  min-height: 36px !important;
  border-color: var(--line) !important;
  background: #fff !important;
  color: #101216 !important;
  padding: 0 6px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.member-profile-actions button:hover,
.member-profile-actions button:focus-visible {
  border-color: var(--brand) !important;
  background: #fff !important;
  color: var(--brand) !important;
}

.member-profile-message-panel {
  gap: 8px !important;
}

.member-inbox-panel {
  gap: 8px !important;
  padding: 0 !important;
}

.member-inbox-list {
  display: grid !important;
  gap: 6px !important;
  width: 100% !important;
  padding: 0 !important;
}

.member-inbox-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--surface-2) !important;
  padding: 8px 9px !important;
}

.member-inbox-row > div {
  display: grid !important;
  gap: 2px !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.member-inbox-row strong,
.member-inbox-row span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.member-inbox-row strong {
  color: var(--ink) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.member-inbox-row span {
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.member-inbox-row button {
  min-height: 30px !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0 12px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.member-inbox-row button:disabled {
  opacity: 0.45 !important;
}

.member-message-thread {
  display: grid !important;
  gap: 6px !important;
  max-height: 188px !important;
  overflow-y: auto !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--bg) !important;
  padding: 8px !important;
}

.member-message-bubble {
  display: grid !important;
  gap: 2px !important;
  width: min(82%, 320px) !important;
  border: 1px solid rgba(224, 32, 45, 0.9) !important;
  border-radius: 8px !important;
  background: rgba(82, 8, 14, 0.96) !important;
  padding: 7px 9px !important;
}

.member-message-bubble.is-outbound {
  justify-self: end !important;
  border-color: rgba(37, 211, 102, 0.9) !important;
  background: rgba(11, 91, 58, 0.96) !important;
}

.member-message-bubble p,
body.dark-mode #detailDialog.member-profile-dialog .member-message-bubble p {
  margin: 0 !important;
  color: #fff !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.member-message-bubble span {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  text-align: right !important;
}

.member-message-empty {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  text-align: center !important;
}

#detailDialog.member-profile-dialog .member-form {
  gap: 7px !important;
}

#detailDialog.member-profile-dialog .member-form label {
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

#detailDialog.member-profile-dialog .member-form input,
#detailDialog.member-profile-dialog .member-form textarea {
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  border-color: var(--line) !important;
}

#detailDialog.member-profile-dialog .member-form .primary-action {
  min-height: 34px !important;
  background: var(--brand) !important;
  color: #fff !important;
}

.member-profile-post-list {
  gap: 5px !important;
}

.member-profile-post-list .member-profile-post-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 2px 8px !important;
  width: 100% !important;
  border-color: var(--line) !important;
  background: var(--surface-2) !important;
  padding: 7px 8px !important;
}

.member-profile-post-row strong {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: var(--ink) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.member-profile-post-row span {
  grid-column: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}

.member-profile-post-row button {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  min-height: 30px !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #101216 !important;
  padding: 0 10px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

#detailDialog.member-profile-dialog .member-profile-empty-line {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  color: var(--muted) !important;
  font-size: clamp(9px, 3.1vw, 12px) !important;
  line-height: 1.25 !important;
  text-align: center !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}

@media (max-width: 720px) {
  .point-game-roulette-wheel .win,
  .point-game-roulette-wheel .lose {
    width: 58px !important;
    height: 32px !important;
    min-width: 58px !important;
    min-height: 32px !important;
    top: 44% !important;
    font-size: 18px !important;
  }

  #detailDialog.point-ledger-dialog {
    width: min(340px, calc(100% - 20px)) !important;
  }

  #detailDialog.point-ledger-dialog #detailContent .info-dialog-content {
    padding: 12px !important;
  }

  .point-ledger-panel .point-summary {
    padding: 8px 7px !important;
  }

  .point-ledger-list .point-ledger-row {
    padding: 6px 7px !important;
  }

  #detailDialog.member-profile-dialog {
    width: min(350px, calc(100% - 18px)) !important;
  }

  #detailDialog.member-profile-dialog #detailContent .info-dialog-content {
    padding: 12px !important;
  }

  .member-profile-actions {
    gap: 6px !important;
  }

  .member-profile-actions button {
    min-height: 32px !important;
    font-size: 11px !important;
  }

  .member-message-thread {
    max-height: 170px !important;
  }

  .member-profile-post-list .member-profile-post-row {
    grid-template-columns: minmax(0, 1fr) 46px !important;
  }
}

.point-game-detail,
.point-game-detail .point-game-machine,
.point-game-detail .point-game-stage,
.point-game-detail .point-game-control {
  width: 100% !important;
  max-width: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.point-game-detail .point-game-machine {
  background: transparent !important;
}

.point-game-detail .point-game-stage,
.point-game-detail .point-game-control {
  background: var(--surface) !important;
}

.point-game-detail .point-game-stage {
  padding-inline: 0 !important;
}

.point-game-detail .rps-hand-cycle {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-game-detail .rps-hand-cycle::after {
  display: none !important;
}

@media (max-width: 720px) {
  .point-game-detail,
  .point-game-detail .point-game-machine,
  .point-game-detail .point-game-stage,
  .point-game-detail .point-game-control {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.point-game-detail .point-game-roulette-wheel .win,
.point-game-detail .point-game-roulette-wheel .lose {
  top: 50% !important;
  width: auto !important;
  height: auto !important;
  min-width: 72px !important;
  min-height: 38px !important;
  color: #111 !important;
  font-size: clamp(29px, 6.8vw, 44px) !important;
  line-height: 1 !important;
  margin-top: 0 !important;
  text-align: center !important;
  transform: translate(-50%, -50%) !important;
}

.point-game-detail .point-game-roulette-wheel .win {
  left: 19% !important;
}

.point-game-detail .point-game-roulette-wheel .lose {
  left: 81% !important;
  right: auto !important;
  bottom: auto !important;
}

.point-game-detail .point-game-machine-rockPaperScissors strong.rps-hand-slot.is-empty {
  display: grid !important;
  place-content: center !important;
  place-items: center !important;
  align-self: center !important;
  justify-self: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.point-game-poster .point-game-preview {
  display: grid !important;
  place-items: center !important;
  align-items: center !important;
  justify-items: center !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle,
.point-game-poster .point-game-rps-preview .point-game-rps-thumbnail,
.point-game-poster .point-game-ladder-preview .point-game-ladder-svg,
.point-game-poster .point-game-roulette-preview {
  align-self: center !important;
  justify-self: center !important;
  margin: auto !important;
}

.point-game-poster .point-game-rps-preview {
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 1 / 1 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle::after {
  display: none !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-frame {
  inset: 0 !important;
  place-items: center !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-running .rps-hand-frame {
  animation: rpsHandSwap 600ms steps(1, end) infinite !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-figure,
.point-game-poster .point-game-rps-preview .rps-hand-figure {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-game-poster .point-game-rps-preview .point-game-rps-thumbnail,
.point-game-poster .point-game-rps-preview .rps-hand-figure {
  transform: none !important;
}

.point-game-poster .point-game-ladder-preview .point-game-ladder-svg {
  display: block !important;
}

#detailDialog.point-ledger-dialog .dialog-close,
#detailDialog.member-profile-dialog .dialog-close,
#detailDialog.member-message-dialog .dialog-close,
#detailDialog.member-contact-dialog .dialog-close,
#detailDialog.member-activity-dialog .dialog-close,
#detailDialog.board-draft-dialog .dialog-close {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 20 !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 46px !important;
  min-width: 46px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  border: 1px solid var(--line-strong) !important;
  border-radius: 6px !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

#detailDialog.member-message-dialog #detailContent .info-dialog-content {
  display: grid !important;
  gap: 10px !important;
  align-items: start !important;
  padding: 14px 12px 16px !important;
}

#detailDialog.member-message-dialog #detailContent div {
  padding: 0 !important;
}

#detailDialog.member-message-dialog h2,
body.dark-mode #detailDialog.member-message-dialog h2 {
  align-self: start !important;
  justify-self: start !important;
  min-height: 34px !important;
  margin: 0 62px 2px 0 !important;
  text-align: left !important;
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 34px !important;
  opacity: 1 !important;
}

#detailDialog.member-message-dialog .member-direct-conversation-panel,
#detailDialog.member-message-dialog .member-profile-message-panel,
#detailDialog.member-message-dialog .member-form,
#detailDialog.member-message-dialog .member-form label,
#detailDialog.member-message-dialog .member-message-thread {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  justify-self: stretch !important;
}

#detailDialog.member-message-dialog .member-message-thread {
  min-height: 144px !important;
  max-height: 230px !important;
}

#detailDialog.member-message-dialog .member-form textarea {
  width: 100% !important;
  min-height: 152px !important;
  box-sizing: border-box !important;
}

#detailDialog.member-message-dialog .member-form .primary-action {
  width: 100% !important;
}

#detailDialog.member-message-dialog .member-message-bubble,
#detailDialog.member-message-dialog .member-message-bubble p,
#detailDialog.member-message-dialog .member-message-bubble span {
  color: #fff !important;
}

#detailDialog.board-draft-dialog,
#detailDialog.board-draft-dialog #detailContent,
#detailDialog.board-draft-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.board-draft-dialog,
body.dark-mode #detailDialog.board-draft-dialog #detailContent,
body.dark-mode #detailDialog.board-draft-dialog #detailContent .info-dialog-content {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.board-draft-dialog {
  width: min(560px, calc(100% - 28px)) !important;
}

#detailDialog.board-draft-dialog #detailContent .info-dialog-content {
  padding: 42px 14px 14px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
}

#detailDialog.board-draft-dialog .board-draft-list {
  display: grid !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

#detailDialog.board-draft-dialog .board-draft-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 58px !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 62px !important;
  box-sizing: border-box !important;
  border: 1px solid var(--line) !important;
  border-radius: 7px !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
  padding: 9px 10px !important;
}

#detailDialog.board-draft-dialog .board-draft-item > div {
  min-width: 0 !important;
}

#detailDialog.board-draft-dialog .board-draft-item strong,
#detailDialog.board-draft-dialog .board-draft-item span {
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-align: left !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

#detailDialog.board-draft-dialog .board-draft-item strong {
  color: var(--ink) !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

#detailDialog.board-draft-dialog .board-draft-item span {
  margin-top: 4px !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
}

#detailDialog.board-draft-dialog .board-draft-item .primary-action {
  width: 58px !important;
  min-width: 58px !important;
  min-height: 34px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0 !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

#detailDialog.member-message-dialog,
#detailDialog.member-message-dialog #detailContent,
#detailDialog.member-message-dialog #detailContent .info-dialog-content,
#detailDialog.member-message-dialog .member-inbox-panel,
#detailDialog.member-message-dialog .member-inbox-list,
#detailDialog.member-message-dialog .member-direct-conversation-panel,
#detailDialog.member-message-dialog .member-profile-message-panel,
body.dark-mode #detailDialog.member-message-dialog,
body.dark-mode #detailDialog.member-message-dialog #detailContent,
body.dark-mode #detailDialog.member-message-dialog #detailContent .info-dialog-content,
body.dark-mode #detailDialog.member-message-dialog .member-inbox-panel,
body.dark-mode #detailDialog.member-message-dialog .member-inbox-list,
body.dark-mode #detailDialog.member-message-dialog .member-direct-conversation-panel,
body.dark-mode #detailDialog.member-message-dialog .member-profile-message-panel {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

#detailDialog.member-message-dialog .info-dialog-content {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
}

#detailDialog.member-message-dialog .member-inbox-row {
  border-color: var(--line) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

#detailDialog.member-message-dialog .member-inbox-row strong,
#detailDialog.member-message-dialog .member-inbox-row span {
  color: inherit !important;
}

#detailDialog.member-message-dialog .member-inbox-row span {
  color: var(--muted) !important;
}

#detailDialog.member-message-dialog .member-form label,
#detailDialog.member-message-dialog .member-message-empty,
#detailDialog.member-message-dialog .member-profile-empty-line {
  color: var(--ink) !important;
}

#detailDialog.member-message-dialog .member-form textarea,
#detailDialog.member-message-dialog .member-form input {
  border-color: var(--line) !important;
  background: var(--surface-2) !important;
  color: var(--ink) !important;
}

#detailDialog.point-ledger-dialog .dialog-close {
  top: 12px !important;
  right: 12px !important;
}

#detailDialog.member-message-dialog .dialog-close {
  top: 12px !important;
  right: 12px !important;
}

#detailDialog.board-draft-dialog .dialog-close {
  top: 10px !important;
  right: 10px !important;
}

#detailDialog.member-message-dialog .member-inbox-panel {
  margin-top: 6px !important;
}

#detailDialog.point-ledger-dialog .dialog-close:focus,
#detailDialog.point-ledger-dialog .dialog-close:focus-visible,
#detailDialog.point-ledger-dialog .dialog-close:hover,
#detailDialog.member-profile-dialog .dialog-close:focus,
#detailDialog.member-profile-dialog .dialog-close:focus-visible,
#detailDialog.member-profile-dialog .dialog-close:hover,
#detailDialog.member-message-dialog .dialog-close:focus,
#detailDialog.member-message-dialog .dialog-close:focus-visible,
#detailDialog.member-message-dialog .dialog-close:hover,
#detailDialog.member-contact-dialog .dialog-close:focus,
#detailDialog.member-contact-dialog .dialog-close:focus-visible,
#detailDialog.member-contact-dialog .dialog-close:hover,
#detailDialog.member-activity-dialog .dialog-close:focus,
#detailDialog.member-activity-dialog .dialog-close:focus-visible,
#detailDialog.member-activity-dialog .dialog-close:hover,
#detailDialog.board-draft-dialog .dialog-close:focus,
#detailDialog.board-draft-dialog .dialog-close:focus-visible,
#detailDialog.board-draft-dialog .dialog-close:hover {
  border-color: var(--brand) !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: var(--brand) !important;
  color: #fff !important;
}

#detailDialog.point-ledger-dialog h2,
#detailDialog.member-profile-dialog h2,
#detailDialog.member-message-dialog h2,
#detailDialog.member-contact-dialog h2,
#detailDialog.member-activity-dialog h2,
#detailDialog.board-draft-dialog h2,
body.dark-mode #detailDialog.point-ledger-dialog h2,
body.dark-mode #detailDialog.member-profile-dialog h2,
body.dark-mode #detailDialog.member-message-dialog h2,
body.dark-mode #detailDialog.member-contact-dialog h2,
body.dark-mode #detailDialog.member-activity-dialog h2,
body.dark-mode #detailDialog.board-draft-dialog h2 {
  width: calc(100% - 62px) !important;
  max-width: calc(100% - 62px) !important;
  padding-right: 62px !important;
}

.board-post-form .board-rich-toolbar {
  display: grid !important;
  grid-template-columns: 60px repeat(7, minmax(28px, 34px)) !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
  padding: 8px !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  background: var(--surface-2) !important;
}

.board-post-form .board-rich-toolbar button,
.board-post-form .board-rich-toolbar select,
.board-post-form .board-rich-toolbar input[type="color"] {
  display: inline-grid !important;
  align-items: center !important;
  justify-items: center !important;
  place-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  border: 1px solid rgba(245, 247, 250, 0.9) !important;
  border-radius: 999px !important;
  background: #f5f7fa !important;
  color: #11151a !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.board-post-form .board-rich-toolbar button[data-board-format="bold"],
.board-post-form .board-rich-toolbar button[data-board-format="italic"],
.board-post-form .board-rich-toolbar button[data-board-format="underline"] {
  width: 34px !important;
  padding: 0 !important;
  font-size: 13px !important;
}

.board-post-form .board-rich-toolbar select {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 0 !important;
  padding: 0 4px !important;
  text-align: center !important;
  text-align-last: center !important;
  letter-spacing: -0.02em !important;
}

.board-post-form .board-rich-toolbar .align-glyph,
.board-post-form .board-rich-toolbar .toolbar-italic-t,
.board-post-form .board-rich-toolbar .toolbar-underline-t {
  margin: auto !important;
}

.board-post-form .board-rich-toolbar .align-glyph {
  align-self: center !important;
  justify-self: center !important;
  display: grid !important;
  gap: 3px !important;
  width: 20px !important;
  height: 14px !important;
  place-content: center !important;
}

.board-post-form .board-rich-toolbar .align-glyph i {
  display: block !important;
  width: 20px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
}

.board-post-form .board-rich-toolbar .align-glyph i:nth-child(2) {
  width: 13px !important;
}

.board-post-form .board-rich-toolbar .align-glyph-left {
  justify-items: start !important;
}

.board-post-form .board-rich-toolbar .align-glyph-center {
  justify-items: center !important;
}

.board-post-form .board-rich-toolbar .align-glyph-right {
  justify-items: end !important;
}

.board-post-form .board-rich-toolbar input[type="color"] {
  width: 34px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.board-post-form .board-rich-toolbar input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0 !important;
}

.board-post-form .board-rich-toolbar input[type="color"]::-webkit-color-swatch {
  border: 0 !important;
  border-radius: 999px !important;
}

.board-post-form .board-rich-toolbar button:hover,
.board-post-form .board-rich-toolbar button:focus-visible,
.board-post-form .board-rich-toolbar select:focus-visible,
.board-post-form .board-rich-toolbar input[type="color"]:focus-visible {
  border-color: var(--brand) !important;
  outline: 2px solid var(--brand) !important;
  outline-offset: 1px !important;
}

.board-post-form #boardPostBody {
  min-height: 320px !important;
}

@media (max-width: 820px) {
  .board-post-form .board-rich-toolbar {
    gap: 5px !important;
    padding: 7px !important;
    border-radius: 16px !important;
    grid-template-columns: 60px repeat(7, minmax(26px, 1fr)) !important;
  }

  .board-post-form .board-rich-toolbar button,
  .board-post-form .board-rich-toolbar select,
  .board-post-form .board-rich-toolbar input[type="color"] {
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    padding-inline: 0 !important;
    font-size: 11px !important;
  }

  .board-post-form .board-rich-toolbar button[data-board-format="bold"],
  .board-post-form .board-rich-toolbar button[data-board-format="italic"],
  .board-post-form .board-rich-toolbar button[data-board-format="underline"],
  .board-post-form .board-rich-toolbar input[type="color"] {
    width: 100% !important;
    padding-inline: 0 !important;
  }

  .board-post-form .board-rich-toolbar select {
    min-width: 0 !important;
    padding-inline: 3px !important;
  }

  .board-post-form #boardPostBody {
    min-height: 300px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    touch-action: manipulation;
  }

  .board-post-form #boardPostBody * {
    font-size: max(16px, 1em) !important;
  }
}

.point-game-detail .point-game-machine-rockPaperScissors .point-game-rps-stage {
  display: block !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .point-game-rps-result-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) clamp(44px, 12vw, 64px) minmax(0, 1fr) !important;
  gap: clamp(8px, 2.5vw, 16px) !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: clamp(104px, 30vw, 132px) !important;
  align-items: stretch !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .point-game-fighter {
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) !important;
  gap: 6px !important;
  min-width: 0 !important;
  min-height: clamp(104px, 30vw, 132px) !important;
  align-items: center !important;
  justify-items: center !important;
  overflow: hidden !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot {
  display: grid !important;
  place-items: center !important;
  width: clamp(72px, 22vw, 92px) !important;
  min-width: 0 !important;
  height: clamp(72px, 22vw, 92px) !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-cycle.is-loop {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-cycle.is-loop {
  width: clamp(72px, 22vw, 92px) !important;
  height: clamp(72px, 22vw, 92px) !important;
  margin: 0 auto !important;
}

.rps-loop-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.rps-hand-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 999px !important;
  object-fit: cover !important;
}

.rps-hand-figure {
  display: grid !important;
  place-items: center !important;
}

.rps-hand-figure .rps-hand-label {
  display: none !important;
}

.secondary-verification-panel {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 520px);
  margin: 16px auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  text-align: center;
}

.secondary-verification-panel h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.secondary-verification-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.secondary-verification-panel.is-owner-verification > p {
  width: 100%;
  text-align: left;
}

.secondary-verification-panel.is-women-verification .verification-pre-qr-note {
  width: 100%;
  text-align: left;
}

.secondary-verification-qr {
  display: grid;
  place-items: center;
  width: 180px;
  min-height: 180px;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
}

.secondary-verification-qr svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Keep the QR modules high-contrast while matching the dark portal surface around them. */
.verification-qr-panel,
.secondary-verification-panel {
  background: var(--surface, #11151a);
  color: var(--ink, #f5f7fa);
  border: 1px solid var(--line, #303744);
  border-radius: 8px;
  padding: 14px;
}

.verification-qr-code,
.secondary-verification-qr {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.verification-qr-code svg,
.secondary-verification-qr svg {
  background: #ffffff;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-loop {
  width: min(96px, 100%) !important;
  height: min(96px, 100%) !important;
}

@media (max-width: 380px) {
  .point-game-detail .point-game-machine-rockPaperScissors .point-game-rps-result-row {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) !important;
    gap: 6px !important;
  }

  .point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot,
  .point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-cycle.is-loop {
    width: clamp(64px, 20vw, 78px) !important;
    height: clamp(64px, 20vw, 78px) !important;
  }
}

@media (max-width: 520px) {
  .board-detail-action-bar {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .board-detail-action-bar .board-reaction-actions,
  .board-detail-action-bar .board-post-report-action,
  .board-detail-action-bar .board-editor-actions {
    display: contents !important;
  }

  .board-detail-action-bar button,
  .board-detail-action-bar .board-editor-actions button,
  .board-detail-action-bar button:disabled {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding-inline: 2px !important;
    font-size: clamp(9px, 2.5vw, 11px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  .board-secret-toggle {
    min-height: 30px !important;
    padding-inline: 8px !important;
    font-size: 12px !important;
    color: #111 !important;
  }
}

.board-detail-action-bar button[data-board-report],
.board-detail-action-bar button[data-board-report]:disabled,
.board-detail-action-bar button[data-board-edit],
.board-detail-action-bar button[data-board-delete] {
  border-color: #fff !important;
  background: #fff !important;
  color: #111 !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-loop,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-cycle.is-loop {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-loop::after,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-cycle.is-loop::after,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot::after {
  display: none !important;
  content: none !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-loop .rps-hand-frame,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-frame {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  opacity: 0;
  transform: none !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-running .rps-hand-frame.is-scissors,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-cycle.is-running .rps-hand-frame.is-scissors {
  animation: rpsShowScissors 900ms steps(1, end) infinite !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-running .rps-hand-frame.is-rock,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-cycle.is-running .rps-hand-frame.is-rock {
  animation: rpsShowRock 900ms steps(1, end) infinite !important;
}

.point-game-poster .point-game-rps-preview .rps-hand-cycle.is-running .rps-hand-frame.is-paper,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-cycle.is-running .rps-hand-frame.is-paper {
  animation: rpsShowPaper 900ms steps(1, end) infinite !important;
}

@keyframes rpsShowScissors {
  0%, 32.999% {
    opacity: 1;
  }

  33%, 100% {
    opacity: 0;
  }
}

@keyframes rpsShowRock {
  0%, 32.999%, 66%, 100% {
    opacity: 0;
  }

  33%, 65.999% {
    opacity: 1;
  }
}

@keyframes rpsShowPaper {
  0%, 65.999% {
    opacity: 0;
  }

  66%, 100% {
    opacity: 1;
  }
}

.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .point-game-fighter::before {
  display: none !important;
  content: none !important;
}

.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot,
.point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-cycle.is-loop {
  width: clamp(92px, 28vw, 118px) !important;
  height: clamp(92px, 28vw, 118px) !important;
}

@media (max-width: 380px) {
  .point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot,
  .point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot,
  .point-game-detail .point-game-machine-rockPaperScissors .rps-hand-slot.rps-video-slot .rps-hand-cycle.is-loop {
    width: clamp(84px, 26vw, 100px) !important;
    height: clamp(84px, 26vw, 100px) !important;
  }
}

.board-filter-form,
.board-filter-form label,
.board-filter-form label > span,
.board-filter-meta label,
.board-filter-meta label > span,
.board-filter-meta input,
.board-filter-meta select,
.board-post-form label,
.board-post-form .board-field,
.board-post-form label > span,
.board-post-form .board-field > span,
.review-fields label,
.review-fields label > span,
.review-rating-field,
.review-rating-field > span,
.job-kind-fields label,
.job-kind-fields label > span,
.job-region-select,
.job-region-select > span,
.job-kind-select,
.job-kind-select > span {
  color: var(--ink) !important;
}

.board-filter-meta input::placeholder,
.board-filter-form input::placeholder,
.board-post-form input::placeholder,
.board-post-form textarea::placeholder {
  color: rgba(245, 247, 250, 0.72) !important;
  opacity: 1 !important;
}

.board-policy-marker-line {
  color: var(--brand) !important;
  font-weight: 900 !important;
}

.board-filter-form label,
.board-filter-form label > span,
.board-filter-meta label,
.board-filter-meta label > span,
.board-post-form label,
.board-post-form .board-field,
.board-post-form label > span,
.board-post-form .board-field > span,
.review-fields label,
.review-fields label > span,
.review-rating-field,
.review-rating-field > span,
.job-kind-fields label,
.job-kind-fields label > span,
.job-region-select,
.job-region-select > span,
.job-kind-select,
.job-kind-select > span,
body.dark-mode .board-filter-form label,
body.dark-mode .board-filter-form label > span,
body.dark-mode .board-filter-meta label,
body.dark-mode .board-filter-meta label > span,
body.dark-mode .board-post-form label,
body.dark-mode .board-post-form .board-field,
body.dark-mode .board-post-form label > span,
body.dark-mode .board-post-form .board-field > span,
body.dark-mode .review-fields label,
body.dark-mode .review-fields label > span,
body.dark-mode .review-rating-field,
body.dark-mode .review-rating-field > span,
body.dark-mode .job-kind-fields label,
body.dark-mode .job-kind-fields label > span,
body.dark-mode .job-region-select,
body.dark-mode .job-region-select > span,
body.dark-mode .job-kind-select,
body.dark-mode .job-kind-select > span {
  color: #fff !important;
}

.board-filter-meta input,
.board-filter-meta select,
.board-search-dock input,
.board-search-dock select,
.board-post-form input:not([type="file"]):not([type="hidden"]),
.board-post-form select,
.review-fields input,
.review-fields select,
.job-region-select select,
.job-kind-select select,
body.dark-mode .board-filter-meta input,
body.dark-mode .board-filter-meta select,
body.dark-mode .board-search-dock input,
body.dark-mode .board-search-dock select,
body.dark-mode .board-post-form input:not([type="file"]):not([type="hidden"]),
body.dark-mode .board-post-form select,
body.dark-mode .review-fields input,
body.dark-mode .review-fields select,
body.dark-mode .job-region-select select,
body.dark-mode .job-kind-select select {
  background-color: #fff !important;
  border-color: #fff !important;
  color: #11151a !important;
  -webkit-text-fill-color: #11151a !important;
}

.board-filter-meta input::placeholder,
.board-filter-form input::placeholder,
.board-search-dock input::placeholder,
.board-post-form input::placeholder,
body.dark-mode .board-filter-meta input::placeholder,
body.dark-mode .board-filter-form input::placeholder,
body.dark-mode .board-search-dock input::placeholder,
body.dark-mode .board-post-form input::placeholder {
  color: rgba(17, 21, 26, 0.62) !important;
  opacity: 1 !important;
  -webkit-text-fill-color: rgba(17, 21, 26, 0.62) !important;
}

body.dark-mode .board-filter-meta label > span,
body.dark-mode .board-filter-meta-job label > span,
body.dark-mode .board-filter-meta-black label > span,
body.dark-mode .board-search-dock label > span,
body.dark-mode .board-post-form label > span,
body.dark-mode .board-post-form .board-field > span,
body.dark-mode .review-fields label > span,
body.dark-mode .review-rating-field > span,
body.dark-mode .job-region-select > span,
body.dark-mode .job-kind-select > span,
body.dark-mode .board-verification-copy {
  color: #fff !important;
}

body.dark-mode .board-filter-meta input,
body.dark-mode .board-filter-meta select,
body.dark-mode .board-search-dock input,
body.dark-mode .board-search-dock select,
body.dark-mode .board-post-form input:not([type="file"]):not([type="hidden"]),
body.dark-mode .board-post-form select,
body.dark-mode .review-fields input,
body.dark-mode .review-fields select,
body.dark-mode .job-region-select select,
body.dark-mode .job-kind-select select {
  background-color: var(--surface-2) !important;
  border-color: var(--line-strong) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

body.dark-mode .board-filter-meta input::placeholder,
body.dark-mode .board-search-dock input::placeholder,
body.dark-mode .board-post-form input::placeholder,
body.dark-mode .board-post-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.68) !important;
  opacity: 1 !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.68) !important;
}

a[href^="tel:"] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none !important;
}

body.dark-mode .board-filter-meta select,
body.dark-mode .board-filter-meta-job select,
body.dark-mode .board-filter-meta-black select,
body.dark-mode .board-search-dock select,
body.dark-mode .board-post-form select,
body.dark-mode .review-fields select,
body.dark-mode .job-region-select select,
body.dark-mode .job-kind-select select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%) !important;
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50% !important;
  background-repeat: no-repeat !important;
  background-size: 6px 6px, 6px 6px !important;
  padding-right: 38px !important;
}

body.dark-mode .board-list-controls select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-color: var(--surface-2) !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%) !important;
  background-position:
    calc(100% - 13px) calc(50% - 2px),
    calc(100% - 8px) calc(50% - 2px) !important;
  background-repeat: no-repeat !important;
  background-size: 5px 5px, 5px 5px !important;
  color: #fff !important;
  padding-right: 27px !important;
}

.post-list-author .local-member-identity.is-admin-member .local-member-name-text {
  font-size: 12px !important;
}

body.dark-mode .board-verification-callout {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.board-verification-copy-stack {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.board-verification-copy-stack .board-verification-copy {
  text-align: left;
}

.board-verification-button {
  min-width: 84px;
  min-height: 34px;
  padding-inline: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.verification-required-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

.verification-required-title h2 {
  margin: 0;
}
