.page-communities {
  display: grid;
  gap: 16px;
}

.page-communities__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.page-communities__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
}

.page-communities__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-communities__sort,
.page-communities__filters {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-communities__sort {
  flex-wrap: nowrap;
}

.page-communities__sort-label {
  white-space: nowrap;
}

.page-communities__search {
  min-width: 260px;
}

.page-communities__search-clear {
  border: 0;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  font-size: 18px;
}

.page-communities__loading {
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  background: #1e2029;
  color: #9ca3af;
  padding: 10px 12px;
}

.page-communities.is-loading #communities-results {
  opacity: 0.7;
  pointer-events: none;
}

.page-communities__empty {
  grid-column: 1 / -1;
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  background: #1e2029;
  color: #9ca3af;
  padding: 16px;
}

.page-communities__anchor {
  height: 1px;
}

.page-communities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .page-communities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .page-communities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-communities__card {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  overflow: hidden;
  background: #1e2029;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.page-communities__card:hover {
  border-color: #ff4655;
}

.page-communities__card-banner {
  position: relative;
  height: 128px;
  background: #272a36;
}

.page-communities__card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-communities__card-banner-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.page-communities__card-flag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #111827;
  border-radius: 999px;
  padding: 4px 8px;
}

.page-communities__card-flag img {
  width: 16px;
  height: 12px;
}

.page-communities__card-logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #2a2e3a;
  background: #1e2029;
  position: absolute;
  left: 16px;
  bottom: -26px;
}

.page-communities__card-logo img,
.page-communities__card-logo span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #ff4655;
  font-weight: 700;
}

.page-communities__card-body {
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 196px;
}

.page-communities__card-body h2 {
  margin: 0;
  font-size: 20px;
}

.page-communities__card-body p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.4;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-communities__card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.page-communities__card-stats span {
  background: #272a36;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
}

.page-communities__card-stats strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.page-communities__card-links {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 28px;
}

.page-communities__card-links a {
  color: #9ca3af;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2e3a;
  border-radius: 6px;
  background: #252830;
}

.page-communities__card-links a:hover {
  color: #fff;
  border-color: #ff4655;
}

.page-communities__card-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.page-hostings {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
  padding: 0.5rem 0 1.5rem;
}

.page-hostings__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page-hostings__title {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
}

.page-hostings__search {
  position: relative;
  min-width: 280px;
}

.page-hostings__search .sl-search__input {
  width: 100%;
  background: #1e2029;
  border: 1px solid #2a2e3a;
  border-radius: 8px;
  color: #fff;
  padding-right: 4.4rem;
}

.page-hostings__search-btn {
  position: absolute;
  right: 2.1rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #9aa4b7;
  cursor: pointer;
}

.page-hostings__search-clear {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa4b7;
  font-size: 1rem;
  line-height: 1;
}

.page-hostings__search-btn:hover,
.page-hostings__search-clear:hover {
  color: #ff4655;
}

.page-hostings__empty {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  background: #1e2029;
  color: #9aa4b7;
  padding: 16px;
  text-align: center;
}

.page-hostings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.page-hostings__card {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  overflow: hidden;
  background: #1e2029;
  display: flex;
  flex-direction: column;
}

.page-hostings__card:hover {
  border-color: #ff4655;
}

.page-hostings__card.is-trusted {
  border-color: #ff4655;
}

.page-hostings__banner {
  position: relative;
  height: 128px;
  background: #272a36;
}

.page-hostings__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hostings__banner-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.page-hostings__trusted {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ff4655;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-hostings__logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #2a2e3a;
  background: #1e2029;
  position: absolute;
  left: 16px;
  bottom: -26px;
}

.page-hostings__logo img,
.page-hostings__logo span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #ff4655;
  font-weight: 700;
}

.page-hostings__body {
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 196px;
}

.page-hostings__body h2 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.page-hostings__body h2 a {
  color: inherit;
}

.page-hostings__body p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.4;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-hostings__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.page-hostings__stats span {
  background: #272a36;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

.page-hostings__stats small {
  display: block;
  font-size: 12px;
  color: #9ca3af;
}

.page-hostings__stats strong {
  display: block;
  font-size: 16px;
  color: #fff;
}

.page-hostings__stats strong.is-accent {
  color: #ff4655;
}

.page-hostings__links {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  min-height: 28px;
}

.page-hostings__links a {
  color: #9ca3af;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2e3a;
  border-radius: 6px;
  background: #252830;
}

.page-hostings__links a:hover {
  color: #fff;
  border-color: #ff4655;
}

.page-hostings__links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 1199px) {
  .page-hostings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page-hostings__head {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hostings__search {
    min-width: 0;
  }

  .page-hostings__grid {
    grid-template-columns: 1fr;
  }
}

.page-hosting {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
  padding-top: 12px;
  display: grid;
  gap: 16px;
}

.page-hosting__state {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  background: #1e2029;
  text-align: center;
  padding: 24px 18px;
}

.page-hosting__state h2 {
  margin: 0 0 8px;
  color: #ff4655;
}

.page-hosting__state p {
  margin: 0;
  color: #9ca3af;
}

.page-hosting__state-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(90deg, #ff4655, #ff675f);
}

.page-hosting__hero {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #252830, #1d1f26);
}

.page-hosting__hero-banner {
  height: 160px;
  background: #272a36;
}

.page-hosting__hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hosting__hero-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #9ca3af;
}

.page-hosting__hero-body {
  position: relative;
  padding: 16px 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.page-hosting__hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 4px solid #2a2e3a;
  background: #1e2029;
  overflow: hidden;
  margin-top: -64px;
  flex: 0 0 auto;
}

.page-hosting__hero-logo img,
.page-hosting__hero-logo span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #ff4655;
  font-size: 40px;
  font-weight: 700;
}

.page-hosting__hero-main {
  flex: 1;
  min-width: 0;
}

.page-hosting__hero-main h1 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}

.page-hosting__hero-main p {
  margin: 8px 0 0;
  color: #9ca3af;
}

.page-hosting__hero-stats {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hosting__hero-stats span {
  color: #9ca3af;
}

.page-hosting__hero-stats strong {
  color: #fff;
}

.page-hosting__hero-stats strong.is-accent {
  color: #ff4655;
}

.page-hosting__hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 360px;
}

.page-hosting__hero-links a {
  padding: 8px 12px;
  border-radius: 8px;
  background: #272a36;
  color: #fff;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.page-hosting__hero-links a:hover {
  background: #3c3f4e;
}

.page-hosting__hero-links a.is-discord {
  background: #5865f2;
}

.page-hosting__hero-links a.is-discord:hover {
  background: #4752c4;
}

.page-hosting__hero-links a svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: currentColor;
}

.page-hosting__servers-head h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

@media (max-width: 900px) {
  .page-hosting__hero-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-hosting__hero-logo {
    margin-top: -76px;
  }

  .page-hosting__hero-stats {
    justify-content: center;
  }

  .page-hosting__hero-links {
    justify-content: center;
    max-width: none;
  }
}

.page-community {
  display: grid;
  gap: 16px;
  padding-top: 12px;
}

.page-community__header {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  overflow: hidden;
  background: #1e2029;
}

.page-community__banner {
  position: relative;
  height: 170px;
  background: #272a36;
}

.page-community__inline-edit {
  position: absolute;
  top: 8px;
  left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 24, 39, 0.85);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
  cursor: pointer;
}

.page-community__inline-edit:hover {
  border-color: #ff4655;
}

.page-community__inline-edit--logo {
  top: 6px;
  left: 6px;
}

.page-community__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-community__banner-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.page-community__loc {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #111827;
  border-radius: 999px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-community__loc img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  border-radius: 2px;
  display: block;
}

.page-community__meta {
  position: relative;
  padding: 20px 20px 20px 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.page-community__text {
  min-width: 0;
}

.page-community__logo {
  position: absolute;
  top: -32px;
  left: 20px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  border: 3px solid #2a2e3a;
  overflow: hidden;
  background: #1e2029;
}

.page-community__inline-icon {
  margin-left: 6px;
  border: 1px solid #3a4254;
  background: #222735;
  color: #cfd6e7;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  vertical-align: middle;
  padding: 0;
}

.page-community__inline-icon:hover {
  border-color: #ff4655;
  color: #fff;
}

.page-community__logo > img,
.page-community__logo > span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #ff4655;
  font-size: 34px;
  font-weight: 700;
}

.page-community__text h1 {
  margin: 0 0 4px;
}

.page-community__text p {
  margin: 0;
  color: #9ca3af;
}

.page-community__stats {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-community__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  justify-content: flex-end;
  max-width: 380px;
}

.page-community__action-link {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #2a2e3a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-community__action-label {
  line-height: 1;
}

.page-community__action-edit {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #3a4254;
  background: #222735;
  color: #cfd6e7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.page-community__action-link.is-empty {
  opacity: 0.72;
  border: 1px dashed #4a5263;
  background: #222733;
  color: #b1bad0;
}

.page-community__action-link:hover .page-community__action-edit {
  border-color: #ff4655;
  color: #fff;
}

.profile-community-edit-list {
  display: grid;
  gap: 12px;
}

.page-community__tabs {
  display: flex;
  border-bottom: 1px solid #2a2e3a;
}

.page-community__tab {
  padding: 10px 14px;
  color: #9ca3af;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.page-community__tab.is-active {
  color: #ff4655;
  border-bottom: 2px solid #ff4655;
}

.sl-home-form--community #countries-modal-open,
.sl-home-form--community .sl-distance,
.sl-home-form--community .sl-filter-row--wrap .sl-filter-label {
  display: none;
}

.page-community__stats-box,
.page-community__widget-box {
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  background: #1e2029;
  padding: 16px;
}

.page-community__stats-shell {
  padding: 0;
  overflow: visible;
}

.page-community__stats-head {
  border-bottom: 1px solid #2a2e3a;
  background: #272a36;
  padding: 12px 14px;
}

.page-community__stats-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.page-community__stats-content {
  padding: 0 10px 12px;
}

.page-community__stats-chart-wrap {
  position: relative;
  height: 288px;
}

.page-community__stats-state {
  position: absolute;
  top: 10px;
  right: 8px;
  z-index: 2;
  color: #9ca3af;
  font-size: 12px;
}

.page-community__stats-box canvas {
  width: 100% !important;
  height: 288px !important;
  display: block;
}

.page-community__stats-periods {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2a2e3a;
}

.page-community__stats-tab {
  color: #9ca3af;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.page-community__stats-tab:hover {
  color: #e5e7eb;
}

.page-community__stats-tab.is-active {
  color: #ff4655;
  border-bottom-color: #ff4655;
}

.page-community__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.page-community__summary div {
  border: 1px solid #2a2e3a;
  border-radius: 8px;
  padding: 10px;
  display: grid;
  background: #272a36;
  text-align: center;
}

.page-community__summary span {
  color: #9ca3af;
  font-size: 13px;
}

.page-community__summary strong {
  margin-top: 3px;
  font-size: 24px;
}

.page-community__widget-frame {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 10px;
  background: #111827;
}

@media (max-width: 900px) {
  .page-community__meta {
    padding: 80px 16px 16px;
    grid-template-columns: 1fr;
  }

  .page-community__logo {
    top: -40px;
    left: 16px;
  }

  .page-communities__search {
    min-width: 0;
    width: 100%;
  }

  .page-community__actions {
    max-width: none;
    justify-content: flex-start;
  }
}


[hidden]{
  display: none;
}

.m-0 { margin: 0 !important; }
.m-1 { margin: 1rem !important; }
.m-2 { margin: 2rem !important; }
.m-3 { margin: 3rem !important; }
.m-4 { margin: 4rem !important; }
.m-5 { margin: 5rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem !important; }
.mt-2 { margin-top: 2rem !important; }
.mt-3 { margin-top: 3rem !important; }
.mt-4 { margin-top: 4rem !important; }
.mt-5 { margin-top: 5rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.mb-3 { margin-bottom: 3rem !important; }
.mb-4 { margin-bottom: 4rem !important; }
.mb-5 { margin-bottom: 5rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 1rem !important; }
.ml-2 { margin-left: 2rem !important; }
.ml-3 { margin-left: 3rem !important; }
.ml-4 { margin-left: 4rem !important; }
.ml-5 { margin-left: 5rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 1rem !important; }
.mr-2 { margin-right: 2rem !important; }
.mr-3 { margin-right: 3rem !important; }
.mr-4 { margin-right: 4rem !important; }
.mr-5 { margin-right: 5rem !important; }

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.mx-2 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.mx-3 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.mx-4 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}
.mx-5 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.my-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}
.my-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.p-0 { padding: 0 !important; }
.p-1 { padding: 1rem !important; }
.p-2 { padding: 2rem !important; }
.p-3 { padding: 3rem !important; }
.p-4 { padding: 4rem !important; }
.p-5 { padding: 5rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 1rem !important; }
.pt-2 { padding-top: 2rem !important; }
.pt-3 { padding-top: 3rem !important; }
.pt-4 { padding-top: 4rem !important; }
.pt-5 { padding-top: 5rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 1rem !important; }
.pb-2 { padding-bottom: 2rem !important; }
.pb-3 { padding-bottom: 3rem !important; }
.pb-4 { padding-bottom: 4rem !important; }
.pb-5 { padding-bottom: 5rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 1rem !important; }
.pl-2 { padding-left: 2rem !important; }
.pl-3 { padding-left: 3rem !important; }
.pl-4 { padding-left: 4rem !important; }
.pl-5 { padding-left: 5rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 1rem !important; }
.pr-2 { padding-right: 2rem !important; }
.pr-3 { padding-right: 3rem !important; }
.pr-4 { padding-right: 4rem !important; }
.pr-5 { padding-right: 5rem !important; }

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.px-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.px-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
.px-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

/* Legal pages (About / Terms / Privacy) */
.page-legal {
  width: min(1200px, 100% - 2rem);
  margin: 1.25rem auto 2rem;
}

.page-legal__container {
  background: #1e2029;
  border: 1px solid #2a2e3a;
  border-radius: 12px;
  padding: 1.5rem;
}

.page-legal__container > h1 {
  margin: 0 0 1rem;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #2a2e3a;
  padding-bottom: 0.85rem;
  font-size: 1.9rem;
}

.page-legal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 1.25rem;
  align-items: start;
}

.page-legal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.15rem;
  border-bottom: 1px solid #2a2e3a;
  padding-bottom: 0.1rem;
}

.page-legal__tabs a {
  color: #9aa4b7;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.page-legal__tabs a:hover,
.page-legal__toc a:hover {
  color: #ff4655;
}

.page-legal__tabs a.is-active {
  color: #ff4655;
  border-color: #ff4655;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 1.25rem;
}

.about-toc {
  position: sticky;
  top: 7rem;
  background: #1b1d27;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 0.8rem;
  height: fit-content;
}

.about-toc h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 0.95rem;
}

.about-toc a {
  display: block;
  color: #9fa8bb;
  font-size: 0.86rem;
  margin-bottom: 0.45rem;
}

.about-toc a.is-active,
.about-toc a:hover {
  color: #ff4655;
}

.page-legal__content {
  min-width: 0;
}

.page-legal__content section {

  border-radius: 10px;
  padding: 1.1rem;
  margin-bottom: 0.9rem;
}

.page-legal__content h2 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 1.35rem;
}

.page-legal__content h3,
.page-legal__content h4 {
  margin: 0.85rem 0 0.45rem;
  color: #fff;
}

.page-legal__content p,
.page-legal__content li {
  color: #c8cedb;
  line-height: 1.6;
}

.page-legal__content ul,
.page-legal__content ol {
  margin: 0.45rem 0 0.65rem 1.15rem;
}

.page-legal__content pre {
  background: #16181c;
  border: 1px solid #2a2e3a;
  border-radius: 8px;
  padding: 0.7rem;
  color: #dfe5f5;
  font-size: 0.83rem;
  overflow-x: auto;
}

.about-highlight,
.about-note,
.about-warning {
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  background: #1e2029;
}

.about-highlight {
  background: #16181c;
}

.about-warning {
  background: #2b1e23;
  border-color: rgba(255, 70, 85, 0.35);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0.8rem 0;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-card {
  background: #252830;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 0.9rem;
}

.about-card h4 {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0 0 0.45rem;
  color: #fff;
}

.about-card h4 span {
  color: #ff4655;
  font-size: 0.86rem;
}

.about-card p {
  margin: 0;
}

.about-steps li {
  margin-bottom: 0.65rem;
}

.about-cta {
  display: inline-block;
  background: #5865f2;
  color: #fff !important;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.about-cta:hover {
  background: #4752c4;
}

.about-faq {
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  background: #252830;
  padding: 0.8rem 0.9rem;
  margin: 0.7rem 0;
}

.about-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
}

.about-faq[open] summary {
  margin-bottom: 0.65rem;
}

.plugin-tab > h2 {
  margin-bottom: 1rem;
}

.plugin-beta-card,
.plugin-enhanced-card,
.plugin-how-card,
.plugin-realtime-card,
.plugin-rating-card,
.plugin-github-wrap {
  background: #1e2029;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.plugin-beta-card {
  border-color: #ff4655;
}

.plugin-beta-footer {
  color: #ff4655;
  font-weight: 600;
}

.plugin-enhanced-card {
  background: linear-gradient(145deg, #1d2a4f 0%, #252830 100%);
}

.plugin-fix-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.plugin-fix-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: #151b2e;
  color: #3498db;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: lowercase;
}

.plugin-fix-row h4 {
  margin: 0 0 0.25rem;
  color: #fff;
}

.plugin-fix-row p {
  margin: 0;
  font-size: 0.9rem;
  color: #c8cedb;
}

.plugin-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.plugin-feature-card {
  background: #252830;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 1rem;
}

.plugin-feature-card h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1rem;
}

.plugin-feature-card p {
  margin: 0;
  font-size: 0.9rem;
}

.plugin-how-card {
  background: #16181c;
}

.plugin-timeline {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0 0 0 0.6rem;
  position: relative;
}

.plugin-timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.4rem;
  bottom: 1.2rem;
  width: 1px;
  background: #373a47;
}

.plugin-timeline li {
  display: flex;
  gap: 0.8rem;
  position: relative;
  margin-bottom: 1rem;
}

.plugin-timeline li:last-child {
  margin-bottom: 0;
}

.plugin-timeline li > span {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid #ff4655;
  background: #252830;
  color: #ff4655;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-left: -0.15rem;
}

.plugin-timeline h4 {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
}

.plugin-timeline p {
  margin: 0.25rem 0 0;
  font-size: 0.87rem;
}

.plugin-realtime-card {
  background: linear-gradient(90deg, #252830 0%, #2c2136 100%);
}

.plugin-realtime-card > p strong {
  color: #ff4655;
}

.plugin-realtime-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.plugin-realtime-compare > div {
  background: #16181c;
  border-radius: 8px;
  padding: 0.75rem;
}

.plugin-realtime-compare h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 0.9rem;
}

.plugin-realtime-compare p {
  margin: 0;
  font-size: 0.8rem;
  color: #aeb6c8;
}

.plugin-realtime-active {
  border-left: 2px solid #ff4655;
}

.plugin-rating-card p {
  margin-top: 0;
}

.plugin-formula-wrap {
  background: #252830;
  border-radius: 10px;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.plugin-formula {
  background: #16181c;
  border-radius: 8px;
  padding: 0.85rem;
}

.plugin-formula p {
  margin: 0 0 0.45rem;
  text-align: center;
}

.plugin-formula p:last-child {
  margin-bottom: 0;
}

.plugin-rating-list {
  margin: 0;
  padding: 0.1rem 0 0 1rem;
}

.plugin-rating-list li {
  margin-bottom: 0.5rem;
}

.plugin-rating-list li:last-child {
  margin-bottom: 0;
}

.plugin-github-wrap {
  border-top-width: 1px;
}

.plugin-github-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.plugin-github-grid a {
  display: block;
  background: #252830;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 0.9rem;
  color: inherit;
}

.plugin-github-grid a:hover {
  border-color: #ff4655;
}

.plugin-github-grid h4 {
  margin: 0 0 0.25rem;
  color: #fff;
}

.plugin-github-grid p {
  margin: 0;
  font-size: 0.85rem;
  color: #aeb6c8;
}

.plugin-fix-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-legal__content > section#overview,
.page-legal__content > section#ranking,
.page-legal__content > section#features,
.page-legal__content > section#plugins,
.page-legal__content > section#discord,
.page-legal__content > section#faq {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.overview-tab__mt {
  margin-top: 0.5rem;
}

.overview-tab__highlight {
  position: relative;
  margin: 2rem 0;
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid #2a2e3a;
  background: #16181c;
  overflow: hidden;
}

.overview-tab__content {
  position: relative;
  z-index: 1;
}

.overview-tab__watermark {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  opacity: 0.1;
}

.overview-tab__watermark svg {
  width: 100%;
  height: 100%;
}

.ranking-tab__lead {
  margin-bottom: 1rem;
}

.ranking-tab__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.ranking-tab__factor {
  background: #252830;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 0.9rem;
  transition: border-color 0.2s ease;
}

.ranking-tab__factor:hover {
  border-color: #ff4655;
}

.ranking-tab__factor-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.ranking-tab__factor-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(255, 70, 85, 0.1);
  color: #ff4655;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ranking-tab__factor-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.ranking-tab__factor h3 {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
}

.ranking-tab__weight {
  color: #ff4655;
  font-size: 0.82rem;
  font-weight: 600;
}

.ranking-tab__meter {
  height: 0.35rem;
  border-radius: 999px;
  background: #1e2029;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.ranking-tab__meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4655 0%, #ff675f 100%);
}

.ranking-tab__factor p {
  margin: 0;
  font-size: 0.88rem;
}

.ranking-tab__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.ranking-tab__panel,
.ranking-tab__info {
  background: #16181c;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.ranking-tab__warning {
  background: #2b1e23;
  border: 1px solid rgba(255, 70, 85, 0.35);
  border-radius: 10px;
  padding: 1rem;
}

.features-tab__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.features-tab__card {
  background: #252830;
  border-radius: 10px;
  padding: 1rem;
}

.features-tab__card h3 {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.features-tab__card h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff4655;
  flex-shrink: 0;
}

.features-tab__card p {
  margin: 0;
}

.discord-tab {
  display: grid;
  gap: 1rem;
}

.discord-tab__hero {
  background: linear-gradient(90deg, rgba(88, 101, 242, 0.1), rgba(71, 82, 196, 0.1));
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 10px;
  padding: 1rem;
}

.discord-tab__hero-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.discord-tab__hero-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: #5865f2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-tab__hero-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.discord-tab__hero h2 {
  margin: 0;
  font-size: 1.4rem;
}

.discord-tab__hero p {
  margin: 0.15rem 0 0;
}

.discord-tab__hero-action {
  display: flex;
  justify-content: center;
}

.discord-tab__hero-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: #5865f2;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.discord-tab__hero-action a:hover {
  background: #4752c4;
}

.discord-tab__panel {
  background: #272a36;
  border-radius: 10px;
  padding: 1rem;
}

.discord-tab__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.discord-tab__features p {
  margin: 0 0 0.6rem;
  display: grid;
  grid-template-columns: auto;
}

.discord-tab__features p strong {
  color: #fff;
}

.discord-tab__features p span {
  font-size: 0.86rem;
}

.discord-tab__steps {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
}

.discord-tab__steps li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.discord-tab__steps li:last-child {
  margin-bottom: 0;
}

.discord-tab__steps span {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #ff4655;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.discord-tab__steps h4 {
  margin: 0;
  color: #fff;
}

.discord-tab__steps p {
  margin: 0.2rem 0 0;
  font-size: 0.87rem;
}

.discord-tab__mini {
  background: #1e2029;
  border-radius: 8px;
  padding: 0.8rem;
  margin-top: 0.6rem;
}

.discord-tab__mini h4 {
  margin: 0 0 0.3rem;
  color: #fff;
}

.discord-tab__danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 1rem;
}

.discord-tab__requirements {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 1rem;
}

.discord-tab__requirements ul {
  margin: 0.55rem 0 0 0;
  padding: 0;
  list-style: none;
}

.discord-tab__requirements li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1rem;
}

.discord-tab__requirements li::before {
  content: "•";
  color: #f59e0b;
  position: absolute;
  left: 0;
}

.faq-tab__list {
  display: grid;
  gap: 0.7rem;
}

.faq-tab__item {
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  background: #252830;
  overflow: hidden;
}

.faq-tab__item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-tab__item summary::-webkit-details-marker {
  display: none;
}

.faq-tab__item summary span {
  color: #fff;
  font-weight: 600;
}

.faq-tab__item summary i {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #9aa4b7;
  transition: transform 0.2s ease;
}

.faq-tab__item[open] summary i {
  transform: rotate(180deg);
}

.faq-tab__body {
  border-top: 1px solid #2a2e3a;
  padding: 0.95rem;
}

.faq-tab__small {
  font-size: 0.82rem;
  color: #98a0b1;
}

.faq-tab__callout {
  background: #1e2029;
  border-left: 4px solid #ff4655;
  border-radius: 0 8px 8px 0;
  padding: 0.7rem;
  margin: 0.7rem 0;
}

.faq-tab__callout--info {
  border-left-color: #3b82f6;
}

.faq-tab__body h4 {
  margin: 0.7rem 0 0.35rem;
}



.page-legal__content > p:last-child {
  color: #98a0b1;
  text-align: center;
  border-top: 1px solid #2a2e3a;
  margin-top: 1.2rem;
  padding-top: 0.9rem;
}

.page-legal__toc {
  position: sticky;
  top: 6.5rem;
  background: #252830;
  border: 1px solid #2a2e3a;
  border-radius: 10px;
  padding: 0.85rem;
  max-height: calc(100vh - 7.5rem);
  overflow-y: auto;
}

.page-legal__toc h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 0.95rem;
}

.page-legal__toc a {
  display: block;
  color: #aeb6c8;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
}

@media (max-width: 1024px) {
  .page-legal__layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-toc {
    display: none;
  }

  .page-legal__toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .page-legal__tabs a {
    font-size: 0.86rem;
    padding: 0.5rem 0.55rem;
  }

  .plugin-feature-grid,
  .plugin-realtime-compare,
  .plugin-formula-wrap,
  .plugin-github-grid {
    grid-template-columns: 1fr;
  }

  .ranking-tab__grid,
  .ranking-tab__split,
  .features-tab__grid,
  .discord-tab__features {
    grid-template-columns: 1fr;
  }
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.py-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.py-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Contact page */
.page-contact {
  width: min(56rem, 100% - 2rem);
  margin: 0 auto 2rem;
}

.page-contact__card {
  background: #1e2029;
  border: 1px solid #2a2e3a;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.page-contact__card > h1 {
  margin: 0 0 2rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.25rem;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid #2a2e3a;
  padding-bottom: 1rem;
}

.page-contact__body {
  color: #d1d5db;
}

.page-contact__intro {
  margin: 0 0 1.5rem;
}

.page-contact__form {
  display: grid;
  gap: 1.5rem;
}

.page-contact__form label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

.page-contact__form input,
.page-contact__form select,
.page-contact__form textarea {
  display: block;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #373a47;
  background: #252830;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-contact__form input,
.page-contact__form select {
  min-height: 42px;
  padding: 0.5rem 0.75rem;
}

.page-contact__form textarea {
  resize: vertical;
  min-height: 140px;
  padding: 0.55rem 0.75rem;
}

.page-contact__form input:focus,
.page-contact__form select:focus,
.page-contact__form textarea:focus {
  border-color: #ff4655;
  box-shadow: 0 0 0 1px #ff4655;
  outline: none;
}

.page-contact__status {
  border: 1px solid transparent;
  border-radius: 0.375rem;
  padding: 1rem;
}

.page-contact__status p {
  margin: 0;
}

.page-contact__status.is-success {
  background: rgba(6, 78, 59, 0.2);
  border-color: #166534;
}

.page-contact__status.is-success .page-contact__status-success {
  color: #4ade80;
}

.page-contact__status.is-error {
  background: rgba(127, 29, 29, 0.2);
  border-color: #991b1b;
}

.page-contact__status.is-error .page-contact__status-error {
  color: #f87171;
}

.page-contact__form button {
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, #ff4655 0%, #ff675f 100%);
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: filter 0.2s ease;
}

.page-contact__form button:hover {
  filter: brightness(1.1);
}

.page-contact__form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#contact-spinner {
  width: 1rem;
  height: 1rem;
  animation: page-contact-spin 1s linear infinite;
}

.page-contact__spinner-ring {
  opacity: 0.25;
}

.page-contact__spinner-arc {
  opacity: 0.75;
}

@keyframes page-contact-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-contact__alt {
  margin-top: 3rem;
  border-top: 1px solid #2a2e3a;
  padding-top: 2rem;
}

.page-contact__alt h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.page-contact__alt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.page-contact__alt-card {
  background: #252830;
  border-radius: 0.5rem;
  padding: 1rem;
}

.page-contact__alt-card p {
  margin: 0;
}

.page-contact__alt-head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.page-contact__alt-head svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ff4655;
  margin-right: 0.5rem;
  flex: 0 0 auto;
}

.page-contact__alt-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.page-contact__alt-card a {
  color: #ff4655;
}

.page-contact__alt-card a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-contact__alt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-contact__card {
    padding: 1.25rem;
  }
}

/* Not found page */
.nf-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.nf-wrap {
  width: min(34rem, 100%);
  text-align: center;
}

.nf-ring {
  position: relative;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.75rem;
  border: 4px solid #ff4655;
  border-radius: 999px;
  opacity: 0.85;
}

.nf-ring span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ff4655;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.nf-page h1 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.nf-sub {
  margin: 0 0 1.5rem;
  color: #9ca3af;
}

.nf-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.nf-hint {
  margin: 0 auto;
  max-width: 24rem;
  padding: 0.9rem 1rem;
  border: 1px solid #2a2e3a;
  border-radius: 0.6rem;
  background: rgba(30, 32, 41, 0.7);
}

.nf-hint p {
  margin: 0 0 0.35rem;
  color: #9ca3af;
}

.nf-hint a {
  color: #ff4655;
  font-weight: 600;
}