@charset "UTF-8";
.xf {
  color: #1f2328;
}
.xf__inner {
  max-width: 1216px;
  margin: 0 auto;
}

.xf-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}
.xf-profile-card__avatar {
  flex-shrink: 0;
  display: block;
}
.xf-profile-card__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: block;
}
.xf-profile-card__main {
  flex: 1;
  min-width: 0;
}
.xf-profile-card__name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.xf-profile-card__name a {
  font-size: 15px;
  font-weight: 600;
  color: #8A2A6B;
  text-decoration: none;
}
.xf-profile-card__name a:hover {
  color: #6e2256;
}
.xf-profile-card__level {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.xf-profile-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #6b7280;
}
.xf-profile-card__stats strong {
  color: #1f2328;
  font-weight: 700;
  margin-right: 2px;
}
.xf-profile-card__cta {
  flex-shrink: 0;
  color: #8A2A6B;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.xf-profile-card__cta:hover {
  color: #6e2256;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .xf-profile-card {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
  }
  .xf-profile-card__avatar img {
    width: 40px;
    height: 40px;
  }
  .xf-profile-card__main {
    flex: 1 1 calc(100% - 60px);
    min-width: 0;
    order: 2;
  }
  .xf-profile-card__name {
    gap: 6px;
    margin-bottom: 4px;
  }
  .xf-profile-card__name a {
    font-size: 14px;
  }
  .xf-profile-card__level {
    font-size: 11px;
    letter-spacing: 0.2px;
  }
  .xf-profile-card__stats {
    gap: 0;
    font-size: 11px;
  }
  .xf-profile-card__stats span {
    white-space: nowrap;
  }
  .xf-profile-card__stats span:not(:last-child)::after {
    content: "·";
    margin: 0 6px;
    color: #9ca3af;
  }
  .xf-profile-card__cta {
    flex-basis: 100%;
    order: 3;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
    text-align: center;
    font-size: 13px;
  }
}

.xf-breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.xf-breadcrumb a {
  color: #8A2A6B;
  text-decoration: none;
}
.xf-breadcrumb a:hover {
  text-decoration: underline;
}
.xf-breadcrumb span {
  color: #9ca3af;
}
@media (max-width: 600px) {
  .xf-breadcrumb {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.xf-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d1d5db;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .xf-page-header {
    gap: 12px;
    margin-bottom: 16px;
  }
  .xf-page-header .xf-button {
    width: 100%;
    text-align: center;
  }
}

.xf-page-title {
  font-size: 28px;
  font-weight: 600;
  color: #1f2328;
  margin: 0;
}
@media (max-width: 600px) {
  .xf-page-title {
    font-size: 22px;
  }
}

.xf-page-description {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  flex-basis: 100%;
}
.xf-page-description p {
  margin: 0;
}

.xf-button {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #4F4D4E;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.xf-button:hover {
  border-color: #8A2A6B;
  color: #8A2A6B;
}
.xf-button--primary {
  background-color: #8A2A6B;
  border-color: #8A2A6B;
  color: #ffffff;
}
.xf-button--primary:hover {
  background-color: #6e2256;
  border-color: #6e2256;
  color: #ffffff;
}

.xf-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  gap: 16px;
  flex-wrap: wrap;
}
.xf-toolbar__left, .xf-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .xf-toolbar {
    gap: 10px;
  }
  .xf-toolbar__left, .xf-toolbar__right {
    width: 100%;
    justify-content: space-between;
  }
  .xf-toolbar .xf-button {
    flex: 1;
    text-align: center;
  }
  .xf-toolbar .xf-sort {
    flex: 1;
  }
  .xf-toolbar .xf-sort select {
    flex: 1;
  }
}

.xf-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
}
.xf-sort select {
  padding: 4px 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 13px;
  cursor: pointer;
}
.xf-sort select:focus {
  outline: none;
  border-color: #8A2A6B;
}

.xf-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0 0 16px;
  background-color: #f8f8f9;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 13px;
  color: #4F4D4E;
}
.xf-hint__icon {
  font-size: 16px;
  line-height: 1;
}

.xf-section {
  margin-bottom: 24px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
}

.xf-section__header {
  padding: 12px 16px;
  background-color: #e5e7eb;
}

.xf-section__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background-color: #e5e7eb;
  border: 0;
  border-bottom: 1px solid transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s ease, border-color 0.2s ease;
}
.xf-section__toggle:hover {
  background-color: #d1d5db;
}
@media (max-width: 600px) {
  .xf-section__toggle {
    padding: 10px 12px;
  }
}

.xf-section__header-text {
  flex: 1;
  min-width: 0;
}

.xf-section__chevron {
  flex-shrink: 0;
  display: inline-flex;
  color: #6b7280;
  transition: transform 0.25s ease, color 0.15s ease;
}
.xf-section.is-open > .xf-section__toggle .xf-section__chevron, .xf-section.is-search-open > .xf-section__toggle .xf-section__chevron {
  transform: rotate(180deg);
  color: #8A2A6B;
}

.xf-section__title {
  font-size: 15px;
  font-weight: 600;
  color: #1f2328;
  margin: 0;
}
.xf-section__title a, .xf-section__title-link {
  color: inherit;
  text-decoration: none;
}

.xf-section__desc {
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
}

.xf-section__body {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
}

.xf-section__body-inner {
  overflow: hidden;
  min-height: 0;
}

.xf-section.is-open > .xf-section__body,
.xf-section.is-search-open > .xf-section__body {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.xf-section.is-open > .xf-section__toggle,
.xf-section.is-search-open > .xf-section__toggle {
  border-bottom-color: #d1d5db;
}

.xf-section.is-open > .xf-section__toggle body.sc-premium .xf-section__chevron, .xf-section.is-search-open > .xf-section__toggle body.sc-premium .xf-section__chevron {
  color: #653190;
}

.xf-forum-list__head,
.xf-thread-list__head {
  display: grid;
  grid-template-columns: 1fr 160px 240px;
  gap: 16px;
  padding: 8px 16px;
  background-color: #f9fafb;
  border-bottom: 1px solid #d1d5db;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .xf-forum-list__head,
  .xf-thread-list__head {
    display: none;
  }
}

.xf-forum-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xf-forum {
  display: grid;
  grid-template-columns: 37px 1fr 160px 240px;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #d1d5db;
  align-items: center;
}
.xf-forum:last-child {
  border-bottom: none;
}
.xf-forum:hover {
  background-color: #f9fafb;
}
@media (max-width: 900px) {
  .xf-forum {
    grid-template-columns: 37px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: start;
  }
  .xf-forum__stats {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
    display: flex;
    gap: 16px;
  }
  .xf-forum__last {
    grid-column: 2;
    grid-row: 3;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
  }
  .xf-forum__last-title {
    max-width: 180px;
  }
}
@media (max-width: 480px) {
  .xf-forum {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 10px;
  }
  .xf-forum__icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .xf-forum__title {
    font-size: 14px;
  }
  .xf-forum__desc {
    font-size: 12px;
  }
  .xf-forum__stats {
    gap: 12px;
  }
}
.xf-forum__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  background-color: #e5e7eb;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  font-size: 16px;
}
.xf-forum__body {
  min-width: 0;
  overflow: hidden;
}
.xf-forum__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xf-forum__title a {
  color: #8A2A6B;
  text-decoration: none;
}
.xf-forum__title a:hover {
  text-decoration: underline;
}
.xf-forum__desc {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.xf-forum__stats {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}
.xf-forum__stat {
  display: flex;
  flex-direction: column;
}
.xf-forum__stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1f2328;
  line-height: 1;
}
.xf-forum__stat-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 3px;
}
.xf-forum__last {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.xf-forum__last-avatar img {
  border-radius: 50%;
  display: block;
}
.xf-forum__last-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.xf-forum__last-title {
  font-size: 13px;
  color: #8A2A6B;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.xf-forum__last-title:hover {
  text-decoration: underline;
}
.xf-forum__last-meta {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 6px;
  row-gap: 2px;
  line-height: 1.3;
}
.xf-forum__last-meta > span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.xf-forum__last-meta .sc-level-chip {
  margin: 0 0 0 4px;
}
.xf-forum__last-empty {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
}
.xf-forum--locked {
  background-color: #fafafa;
}
.xf-forum--locked .xf-forum__title a {
  color: #6b7280;
}
.xf-forum__locked-link {
  color: #6b7280 !important;
}
.xf-forum__locked-link:hover {
  color: #8A2A6B !important;
}
.xf-forum__premium-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background-color: #fef3c7;
  color: #92400e;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  vertical-align: middle;
}
.xf-forum__premium-badge--member {
  background-color: rgba(138, 42, 107, 0.12);
  color: #8A2A6B;
}
.xf-forum__upgrade {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #8A2A6B;
  text-decoration: none;
}
.xf-forum__upgrade:hover {
  text-decoration: underline;
}

.xf-search {
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .xf-search {
    margin-bottom: 12px;
  }
}
.xf-search__field {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0 12px 0 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.xf-search__field:focus-within {
  border-color: #8A2A6B;
  box-shadow: 0 0 0 4px rgba(138, 42, 107, 0.12);
}
.xf-search__icon {
  flex-shrink: 0;
  margin-right: 10px;
  color: #6b7280;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.xf-search__field:focus-within .xf-search__icon {
  color: #8A2A6B;
}
.xf-search__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 0;
  font-size: 14px;
  font-family: inherit;
  color: #222222;
  min-width: 0;
}
.xf-search__input::-webkit-search-cancel-button {
  display: none;
}
.xf-search__clear {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border: 0;
  border-radius: 50%;
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease;
}
.xf-search__clear:hover {
  background: #8A2A6B;
  color: #ffffff;
}
.xf-search__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 22px;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.xf-search__meta.is-active {
  opacity: 1;
  transform: translateY(0);
}
.xf-search__count {
  padding: 2px 10px;
  background-color: rgba(138, 42, 107, 0.08);
  color: #8A2A6B;
  border-radius: 999px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.xf-search__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: #6b7280;
  opacity: 0;
  animation: xf-fade-in 0.3s ease forwards;
}
.xf-search__empty[hidden] {
  display: none;
}
.xf-search__empty p {
  margin: 0;
  font-size: 14px;
}
.xf-search__empty-icon {
  font-size: 36px;
  margin-bottom: 8px;
  opacity: 0.5;
}

@keyframes xf-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.sc-premium .xf-search__field:focus-within {
  border-color: #653190;
  box-shadow: 0 0 0 4px rgba(101, 49, 144, 0.15);
}
.xf-search__field:focus-within body.sc-premium .xf-search__icon {
  color: #653190;
}
body.sc-premium .xf-search__clear:hover {
  background: #653190;
}
body.sc-premium .xf-search__count {
  background-color: rgba(101, 49, 144, 0.1);
  color: #653190;
}

.xf-search-target mark,
.xf-thread-results mark {
  background: linear-gradient(180deg, transparent 60%, rgba(138, 42, 107, 0.25) 60%);
  color: inherit;
  padding: 0 2px;
  border-radius: 2px;
}

body.sc-premium .xf-search-target mark,
body.sc-premium .xf-thread-results mark {
  background: linear-gradient(180deg, transparent 60%, rgba(101, 49, 144, 0.25) 60%);
}

.xf-thread-results {
  margin: -8px 0 16px;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: xf-fade-in 0.15s ease;
}
.xf-thread-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid #f3f4f6;
}
.xf-thread-results__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8A2A6B;
}
.xf-thread-results__status {
  font-size: 12px;
  color: #6b7280;
}
.xf-thread-results__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.xf-thread-results__item + .xf-thread-results__item {
  border-top: 1px solid #f3f4f6;
}
.xf-thread-results__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 6px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: background-color 0.12s ease;
}
.xf-thread-results__link:hover, .xf-thread-results__link:focus {
  background-color: rgba(138, 42, 107, 0.06);
}
.xf-thread-results__title-line {
  font-size: 14px;
  font-weight: 500;
  color: #8A2A6B;
  line-height: 1.35;
}
.xf-thread-results__meta {
  font-size: 12px;
  color: #6b7280;
}

body.sc-premium .xf-thread-results__title {
  color: #653190;
}
body.sc-premium .xf-thread-results__link:hover, body.sc-premium .xf-thread-results__link:focus {
  background-color: rgba(101, 49, 144, 0.06);
}
body.sc-premium .xf-thread-results__title-line {
  color: #653190;
}

.xf-section {
  transition: opacity 0.2s ease;
}
.xf-section.is-hidden {
  opacity: 0;
  margin: 0;
  pointer-events: none;
  animation: xf-section-collapse 0s linear 0.2s forwards;
}

@keyframes xf-section-collapse {
  to {
    display: none;
  }
}
.xf-thread,
.xf-forum {
  transition: opacity 0.25s ease, max-height 0.3s ease, padding 0.25s ease, transform 0.25s ease;
  max-height: 240px;
  overflow: hidden;
}
.xf-thread.is-hidden,
.xf-forum.is-hidden {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  transform: translateY(-6px);
  pointer-events: none;
  border-bottom-color: transparent;
}

.xf-thread-list {
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background-color: #ffffff;
  overflow: hidden;
}

.xf-thread-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xf-thread {
  display: grid;
  grid-template-columns: 48px 1fr 160px 240px;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid #d1d5db;
  align-items: center;
}
.xf-thread:last-child {
  border-bottom: none;
}
.xf-thread:hover {
  background-color: #f9fafb;
}
.xf-thread--pinned {
  background-color: #fffbea;
}
.xf-thread--pinned:hover {
  background-color: #fef3c7;
}
@media (max-width: 900px) {
  .xf-thread {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 12px;
    align-items: start;
  }
  .xf-thread__stats {
    grid-column: 2;
    grid-row: 2;
    margin-top: 4px;
    display: flex;
    gap: 16px;
  }
  .xf-thread__last {
    grid-column: 2;
    grid-row: 3;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
  }
}
@media (max-width: 600px) {
  .xf-thread__stats {
    display: none;
  }
  .xf-thread__last-avatar, .xf-thread__last-user {
    display: none;
  }
  .xf-thread__last {
    margin-top: 4px;
    padding-top: 0;
    border-top: none;
  }
}
@media (max-width: 480px) {
  .xf-thread__title {
    font-size: 14px;
  }
  .xf-thread__meta {
    font-size: 11px;
  }
}
.xf-thread__icon img {
  border-radius: 50%;
  display: block;
}
.xf-thread__body {
  min-width: 0;
}
.xf-thread__title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px;
}
.xf-thread__title a {
  color: #8A2A6B;
  text-decoration: none;
}
.xf-thread__title a:hover {
  text-decoration: underline;
}
.xf-thread__meta {
  font-size: 12px;
  color: #6b7280;
}
.xf-thread__stats {
  display: flex;
  gap: 12px;
}
.xf-thread__stat {
  display: flex;
  flex-direction: column;
}
.xf-thread__stat-value {
  font-size: 14px;
  font-weight: 600;
  color: #1f2328;
  line-height: 1;
}
.xf-thread__stat-label {
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 3px;
}
.xf-thread__last {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.xf-thread__last-avatar img {
  border-radius: 50%;
  display: block;
}
.xf-thread__last-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.xf-thread__last-time {
  font-size: 12px;
  color: #6b7280;
}
.xf-thread__last-user {
  font-size: 13px;
  color: #8A2A6B;
  font-weight: 500;
}

.xf-badge {
  font-size: 13px;
  margin-right: 4px;
  vertical-align: middle;
}

.xf-empty {
  padding: 48px 16px;
  text-align: center;
  background-color: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 6px;
  color: #6b7280;
}
.xf-empty p {
  margin: 0 0 16px;
}
