/* ==========================================================================
   PivoWorlds - главная страница, вариант «витрина».
   Подключается только на index.html, после styles.css.

   Идея: экран открывается большим артом мира, под ним узкая лента статуса,
   дальше секции чередуются «арт слева - текст справа». Палитра, шрифты и
   компоненты остаются сайтовые: Manrope/Unbounded, фон #080806, акцент #ffac3f.
   ========================================================================== */

body.home {
  --r-lg: 20px;
  --r-md: 12px;
  --r-sm: 10px;
  --line: rgba(255, 172, 63, 0.14);
  --line-hover: rgba(255, 172, 63, 0.34);
  --panel: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

body.home .section {
  padding: clamp(56px, 6.5vw, 88px) 0;
}

/* Общий заголовок секции */
body.home .show-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

body.home .show-head h2,
body.home .story-copy h2,
body.home .map-banner-copy h2,
body.home .faq-head h2 {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(26px, 2.9vw, 42px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

body.home .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home .section-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--yellow);
  content: "";
}

/* Текстовая ссылка-действие */
body.home .story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

body.home .story-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

body.home a:hover > .story-link::after,
body.home .story-link:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   HERO - арт во всю ширину
   -------------------------------------------------------------------------- */

body.home .show-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(88vh, 860px);
  padding: 150px 0 clamp(48px, 7vw, 96px);
  isolation: isolate;
}

body.home .show-hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Затемнение: слева плотнее, чтобы текст читался, снизу - уход в фон страницы */
body.home .show-hero-veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.94) 8%, rgba(8, 8, 6, 0.62) 46%, rgba(8, 8, 6, 0.3) 78%),
    linear-gradient(180deg, rgba(8, 8, 6, 0.86) 0%, rgba(8, 8, 6, 0.15) 34%, rgba(8, 8, 6, 0.98) 96%);
}

body.home .show-hero-inner {
  position: relative;
  z-index: 1;
}

body.home .show-hero-copy {
  max-width: 720px;
}

body.home .show-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.home .show-hero h1 span {
  display: block;
}

body.home .show-hero p {
  max-width: 56ch;
  margin: 0 0 26px;
  color: #d9cfc6;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}

body.home .show-hero p strong {
  color: var(--text);
}

body.home .show-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

body.home .show-pills span {
  border-radius: 999px;
  font-size: 13px;
}

body.home .show-hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.home .show-hero .actions .button {
  border-radius: var(--r-sm);
}

body.home .show-hero .season-countdown {
  margin-top: 26px;
}

/* Тонкая подсказка о прокрутке */
body.home .show-hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, rgba(255, 172, 63, 0.75));
  animation: showScroll 2.6s ease-in-out infinite;
}

@keyframes showScroll {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

/* --------------------------------------------------------------------------
   Лента статуса под hero
   -------------------------------------------------------------------------- */

body.home .status-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

body.home .status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(0, 1.4fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #0e0d0b;
}

body.home .status-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
}

body.home .status-cell + .status-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

body.home .status-cell span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.home .status-cell b {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.home .status-cell .is-live {
  color: var(--green);
}

body.home .status-ip {
  cursor: pointer;
  transition: background 0.25s ease;
}

body.home .status-ip b {
  color: var(--yellow);
}

body.home .status-ip:hover {
  background: rgba(255, 172, 63, 0.08);
}

/* --------------------------------------------------------------------------
   Чередующиеся секции «арт - текст»
   -------------------------------------------------------------------------- */

body.home .story {
  padding-top: clamp(64px, 8vw, 108px);
}

body.home .story-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}

body.home .story-row + .story-row {
  margin-top: clamp(48px, 6vw, 92px);
}

body.home .story-row.is-flip .story-art {
  order: 2;
}

body.home .story-art {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  aspect-ratio: 16 / 10;
}

body.home .story-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 0.9, 0.28, 1);
}

body.home .story-row:hover .story-art img {
  transform: scale(1.04);
}

body.home .story-copy p {
  max-width: 52ch;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Слайдер комьюнити
   -------------------------------------------------------------------------- */

body.home .community-slider {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
}

body.home .community-dots button.is-active {
  background: var(--yellow);
}

/* --------------------------------------------------------------------------
   Карта - широкая полоса
   -------------------------------------------------------------------------- */

body.home .map-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 38vw, 460px);
  padding: clamp(28px, 4vw, 56px) 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

body.home .map-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 0.9, 0.28, 1);
}

body.home .map-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 6, 0.5) 0%, rgba(8, 8, 6, 0.2) 30%, rgba(8, 8, 6, 0.95) 92%);
  content: "";
}

body.home .map-banner:hover img {
  transform: scale(1.04);
}

body.home .map-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

body.home .map-banner-copy p {
  margin: 12px 0 16px;
  color: #cfc5bc;
  font-size: 15.5px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Сезоны - компактная таблица строк
   -------------------------------------------------------------------------- */

body.home .season-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

body.home .season-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  color: inherit;
  text-decoration: none;
  transition: background 0.22s ease;
}

body.home .season-line + .season-line {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.home .season-line:hover {
  background: rgba(255, 172, 63, 0.07);
}

body.home .season-line b {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.home .season-line span,
body.home .season-line time {
  color: var(--muted);
  font-size: 14px;
}

body.home .season-line em {
  color: var(--text);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

body.home .season-line.is-current {
  background: rgba(255, 172, 63, 0.1);
}

body.home .season-line.is-current b,
body.home .season-line.is-current em {
  color: var(--yellow);
}

/* --------------------------------------------------------------------------
   Вики, FAQ - единые карточки
   -------------------------------------------------------------------------- */

body.home :is(.info-card, .faq-card) {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: none;
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.28, 1), border-color 0.28s ease;
}

body.home :is(.info-card, .faq-card):hover {
  transform: translateY(-4px);
  border-color: var(--line-hover);
}

body.home :is(.info-card, .faq-card) h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
}

body.home :is(.info-card, .faq-card) p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

body.home .card-grid,
body.home .faq-grid {
  gap: 14px;
}

body.home .tag {
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.home .faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 172, 63, 0.28);
  border-radius: var(--r-sm);
  background: rgba(255, 172, 63, 0.1);
  color: var(--yellow);
}

body.home .read-more {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

body.home .wiki-search-field {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.03);
}

body.home .wiki-tags button,
body.home .faq-tabs button {
  border-radius: 999px;
  font-size: 13px;
}

body.home .wiki-tags button {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.home .wiki-tags button.is-active,
body.home .faq-tabs button.is-active {
  border-color: rgba(255, 172, 63, 0.45);
  background: rgba(255, 172, 63, 0.14);
  color: var(--yellow);
}

body.home .faq-tabs {
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

body.home .faq-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

/* Витрина цитат */
body.home .rp-showcase-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--panel);
}

body.home .rp-showcase-card:hover {
  border-color: var(--line-hover);
}

/* --------------------------------------------------------------------------
   Финальные карточки
   -------------------------------------------------------------------------- */

body.home .cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.home .cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.28, 1), border-color 0.3s ease;
}

body.home .cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-hover);
}

body.home .cta-card h2 {
  margin: 8px 0 10px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

body.home .cta-card h2 strong {
  color: var(--yellow);
}

body.home .cta-card p {
  max-width: 44ch;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

body.home .cta-team {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 172, 63, 0.16), transparent 22rem),
    var(--panel);
}

body.home .discord-card {
  display: flex;
  width: auto;
  min-height: 280px;
  margin: 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(88, 101, 242, 0.2), transparent 24rem),
    var(--panel);
  box-shadow: none;
}

body.home .cta-orbit {
  position: absolute;
  z-index: 0;
  top: -40px;
  right: -40px;
  width: 220px;
  opacity: 0.5;
  pointer-events: none;
}

body.home .cta-card > *:not(.cta-orbit) {
  position: relative;
  z-index: 1;
}

body.home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.home .cta-actions .button {
  border-radius: var(--r-sm);
}

/* --------------------------------------------------------------------------
   Адаптив
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  body.home .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .status-cell:nth-child(odd) {
    border-left: 0;
  }

  body.home .status-cell:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  body.home .status-ip {
    grid-column: span 2;
  }

  body.home .story-row {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home .story-row.is-flip .story-art {
    order: 0;
  }

  body.home .cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  body.home .show-hero {
    min-height: auto;
    padding: 124px 0 56px;
  }

  body.home .show-hero-veil {
    background: linear-gradient(180deg, rgba(8, 8, 6, 0.82) 0%, rgba(8, 8, 6, 0.55) 30%, rgba(8, 8, 6, 0.97) 88%);
  }

  body.home .show-hero-scroll {
    display: none;
  }

  body.home .show-hero .actions .button {
    flex: 1 1 100%;
    justify-content: center;
  }

  body.home .status-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home .status-cell {
    padding: 16px 18px;
  }

  body.home .status-cell + .status-cell {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 0;
  }

  body.home .status-ip {
    grid-column: auto;
  }

  body.home .season-line {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
    row-gap: 4px;
  }

  body.home .season-line span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .show-hero-scroll {
    animation: none;
  }

  body.home .story-row:hover .story-art img,
  body.home .map-banner:hover img {
    transform: none;
  }
}

/* ========================================================================
   Wide seamless homepage - final presentation layer
   ======================================================================== */
body.home {
  --home-edge: clamp(14px, 2vw, 34px);
  min-height: 100%;
  background: #060708 !important;
}

body.home .site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 46% at 14% 18%, rgba(255, 157, 48, 0.115), transparent 68%),
    radial-gradient(ellipse 58% 42% at 92% 42%, rgba(105, 140, 181, 0.075), transparent 72%),
    radial-gradient(ellipse 68% 38% at 38% 84%, rgba(196, 82, 22, 0.055), transparent 70%),
    #060708 !important;
  background-attachment: fixed !important;
}

body.home .site-bg::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 15%, rgba(255, 255, 255, 0.012) 48%, transparent 76%);
  content: "";
}

body.home main,
body.home .site-view[data-site-view="home"] {
  background: transparent !important;
}

body.home main section:not(.show-hero) {
  background-color: transparent !important;
  background-image: none !important;
}

body.home .container {
  width: min(1680px, calc(100% - (var(--home-edge) * 2))) !important;
}

body.home .section {
  padding-block: clamp(44px, 5vw, 72px);
}

/* A denser, wider feature story composition. */
body.home .story {
  padding-top: clamp(56px, 6vw, 84px);
}

body.home .story-row {
  position: relative;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  gap: 0 !important;
  min-height: 470px;
  overflow: visible;
  padding: 0 !important;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
}

body.home .story-row + .story-row {
  margin-top: 26px;
}

body.home .story-row::after {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.045);
  font: 900 clamp(62px, 7vw, 112px)/1 "Unbounded", sans-serif;
  letter-spacing: -0.08em;
  pointer-events: none;
}

body.home .story-row:nth-child(1)::after { content: "01"; }
body.home .story-row:nth-child(2)::after { left: 28px; right: auto; content: "02"; }
body.home .story-row:nth-child(3)::after { content: "03"; }

body.home .story-art {
  min-height: 470px;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto;
  box-shadow: none !important;
}

body.home .story-art::after {
  display: none;
}

body.home .story-row.is-flip .story-art::after {
  display: none;
}

body.home .story-art img {
  object-position: center;
}

body.home .story-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(34px, 4vw, 66px);
}

body.home .story-copy h2 {
  max-width: 650px;
  font-size: clamp(30px, 3vw, 52px);
}

body.home .story-copy p {
  max-width: 62ch;
  margin: 18px 0 22px;
  color: rgba(232, 221, 210, 0.7);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.72;
}

body.home .story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

body.home .story-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 190, 74, 0.13);
  border-radius: 10px;
  background: rgba(255, 190, 74, 0.055);
  color: rgba(241, 228, 213, 0.62);
  font-size: 11px;
  font-weight: 800;
}

body.home .story-meta b {
  color: var(--yellow);
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
}

body.home .story-link {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 190, 74, 0.18);
  border-radius: 11px;
  background: rgba(255, 190, 74, 0.08);
}

body.home .story-link:hover {
  border-color: rgba(255, 190, 74, 0.34);
  background: rgba(255, 190, 74, 0.13);
}

/* Community rebuilt as a dark editorial showcase. */
body.home .community {
  overflow: hidden;
  padding: clamp(54px, 6vw, 88px) 0 !important;
}

body.home .community::before,
body.home .community::after {
  display: none !important;
}

body.home .community > .container .show-head {
  align-items: end;
  margin-bottom: 26px;
}

body.home .community > .container .show-head::after {
  max-width: 520px;
  color: rgba(231, 221, 210, 0.54);
  font-size: 14px;
  line-height: 1.6;
  content: "Профили игроков, города, постройки и объявления.";
}

body.home .community > .container .show-head h2 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.04;
  text-align: left;
  text-shadow: none;
}

body.home .community-slider {
  width: min(1680px, calc(100% - (var(--home-edge) * 2)));
  min-height: 570px !important;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 224, 184, 0.12) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 172, 63, 0.1), transparent 24rem),
    linear-gradient(135deg, rgba(35, 28, 24, 0.96), rgba(10, 12, 14, 0.98)) !important;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38) !important;
}

body.home .community-track {
  min-height: 570px !important;
}

body.home .community-slide {
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4vw, 72px);
  min-height: 570px;
  padding: clamp(30px, 4vw, 64px) clamp(30px, 4vw, 64px) 94px;
}

body.home .community-copy {
  max-width: 620px;
  text-align: left;
}

body.home .community-copy > span {
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(255, 190, 74, 0.18);
  background: rgba(255, 190, 74, 0.08);
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.08em;
}

body.home .community-copy h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.04;
  text-align: left;
  text-shadow: none;
}

body.home .community-copy p {
  max-width: 60ch;
  margin: 18px 0 26px;
  color: rgba(232, 221, 210, 0.68);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
}

body.home .community-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 11px;
  background: var(--yellow);
  color: #16110c;
  font-size: 13px;
  font-weight: 900;
}

body.home .community-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

body.home .community-link:hover span {
  transform: translateX(4px);
}

body.home .community-art {
  min-height: 420px !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 22px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34) !important;
}

body.home .community-art::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 8, 9, 0.42));
  content: "";
}

body.home .community-controls {
  left: clamp(30px, 4vw, 64px);
  bottom: 32px;
  transform: none;
}

body.home .community-arrow {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

body.home .community-arrow:hover {
  background: rgba(255, 190, 74, 0.13);
  color: var(--yellow);
}

body.home .community-dots button {
  background: rgba(255, 255, 255, 0.2);
}

body.home .community-dots button.is-active {
  background: var(--yellow);
}

/* Other homepage blocks align to the new wide canvas. */
body.home .status-grid,
body.home .season-table,
body.home .wiki-tools,
body.home .faq-grid {
  border-color: rgba(255, 224, 184, 0.1);
  background-color: rgba(12, 13, 14, 0.72);
}

body.home .map-banner {
  width: min(1680px, calc(100% - (var(--home-edge) * 2)));
  margin: 0 auto;
  border: 1px solid rgba(255, 224, 184, 0.11);
  border-radius: 30px;
}

@media (max-width: 980px) {
  body.home .story-row,
  body.home .story-row.is-flip {
    grid-template-columns: 1fr;
  }

  body.home .story-row .story-art,
  body.home .story-row.is-flip .story-art {
    order: 0;
    min-height: 360px;
  }

  body.home .story-copy {
    margin-top: 0;
    padding-top: 24px;
  }

  body.home .community > .container .show-head::after {
    flex-basis: 100%;
  }

  body.home .community-slide {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 800px;
    padding-bottom: 92px;
  }

  body.home .community-slider,
  body.home .community-track {
    min-height: 800px !important;
  }

  body.home .community-art {
    min-height: 360px !important;
  }
}

@media (max-width: 620px) {
  body.home { --home-edge: 12px; }
  body.home .section { padding-block: 38px; }
  body.home .story-row { border-radius: 20px; }
  body.home .story-row .story-art,
  body.home .story-row.is-flip .story-art { min-height: 280px; }
  body.home .story-copy { margin-top: 0; padding: 22px 20px 28px; }
  body.home .story-copy h2 { font-size: clamp(27px, 9vw, 38px); }
  body.home .story-meta { gap: 6px; }
  body.home .story-meta span { padding-inline: 9px; }
  body.home .community > .container .show-head h2 { font-size: clamp(30px, 10vw, 42px); }
  body.home .community-slider { border-radius: 20px !important; }
  body.home .community-slide { min-height: 730px; padding: 24px 18px 84px; }
  body.home .community-slider,
  body.home .community-track { min-height: 730px !important; }
  body.home .community-copy h2 { font-size: clamp(28px, 9vw, 38px); }
  body.home .community-art { min-height: 280px !important; }
  body.home .community-controls { left: 18px; bottom: 22px; }
  body.home .map-banner { border-radius: 20px; }
}

/* Final proportion refinements. */
body.home {
  --home-edge: clamp(18px, 3vw, 48px);
}

body.home .container,
body.home .community-slider,
body.home .map-banner {
  width: min(1480px, calc(100% - (var(--home-edge) * 2))) !important;
}

body.home .community > .container .show-head {
  display: block;
  max-width: 980px;
  margin: 0 auto 32px;
  text-align: center;
}

body.home .community > .container .show-head .section-kicker {
  justify-content: center;
}

body.home .community > .container .show-head h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(34px, 4.2vw, 62px) !important;
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}

body.home .community > .container .show-head::after {
  display: block;
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

body.home .cta-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
}

body.home .cta-card {
  min-height: 360px;
  padding: clamp(30px, 3.5vw, 52px);
  border-radius: 26px;
}

body.home .discord-card {
  position: relative;
  justify-content: center;
  min-height: 360px;
  padding-right: clamp(250px, 26vw, 430px);
  border-color: rgba(131, 143, 255, 0.24);
  background:
    radial-gradient(circle at 82% 32%, rgba(101, 113, 255, 0.26), transparent 20rem),
    linear-gradient(135deg, rgba(37, 39, 75, 0.94), rgba(18, 19, 34, 0.98));
  box-shadow: 0 28px 80px rgba(6, 8, 28, 0.34);
}

body.home .discord-card::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

body.home .discord-card .section-kicker {
  color: #aeb6ff;
}

body.home .discord-card .section-kicker::before {
  background: #8d98ff;
}

body.home .discord-card h2 {
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
}

body.home .discord-card p {
  color: rgba(237, 239, 255, 0.68);
}

body.home .cta-orbit {
  top: 50%;
  right: clamp(18px, 3vw, 48px);
  width: min(38%, 390px);
  max-height: 88%;
  opacity: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.38));
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  body.home .cta-grid { grid-template-columns: 1fr; }
  body.home .discord-card { padding-right: clamp(190px, 38vw, 330px); }
}

@media (max-width: 620px) {
  body.home { --home-edge: 14px; }
  body.home .community > .container .show-head { text-align: left; }
  body.home .community > .container .show-head .section-kicker { justify-content: flex-start; }
  body.home .community > .container .show-head h2,
  body.home .community > .container .show-head::after { margin-left: 0; text-align: left; }
  body.home .cta-card { min-height: 330px; }
  body.home .discord-card { justify-content: flex-end; min-height: 520px; padding: 230px 22px 28px; }
  body.home .cta-orbit { top: 22px; right: 50%; width: min(82%, 330px); max-height: 230px; transform: translateX(50%); }
}

/* FAQ rebuilt as a compact knowledge panel. */
body.home .faq .container {
  position: relative;
  padding: clamp(24px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(255, 231, 198, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0, rgba(255, 180, 70, 0.09), transparent 25rem),
    linear-gradient(135deg, rgba(28, 24, 22, 0.9), rgba(10, 12, 13, 0.96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

body.home .faq .container::before {
  position: absolute;
  top: -110px;
  right: -65px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 190, 74, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 190, 74, 0.012), 0 0 0 88px rgba(255, 190, 74, 0.008);
  content: "";
  pointer-events: none;
}

body.home .faq-head {
  position: relative;
  z-index: 1;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

body.home .faq-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1;
}

body.home .faq-tabs {
  gap: 5px;
  padding: 6px;
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.16);
}

body.home .faq-tabs button {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgba(235, 223, 211, 0.52);
  font-size: 12px;
  font-weight: 900;
}

body.home .faq-tabs button.is-active {
  border: 0;
  background: rgba(255, 190, 74, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 190, 74, 0.17);
}

body.home .faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  grid-template-rows: repeat(2, minmax(160px, 1fr));
  gap: 12px;
}

body.home .faq-grid .faq-card:first-child {
  grid-row: 1 / 3;
}

body.home .faq-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-content: center;
  column-gap: 17px;
  min-height: 0;
  padding: clamp(22px, 3vw, 36px) !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.065) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.025) !important;
  box-shadow: none !important;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

body.home .faq-grid .faq-card:first-child {
  align-content: end;
  padding: clamp(28px, 4vw, 48px) !important;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 185, 77, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.03) !important;
}

body.home .faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 190, 74, 0.22) !important;
  background-color: rgba(255, 190, 74, 0.035) !important;
}

body.home .faq-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  border: 1px solid rgba(255, 190, 74, 0.17);
  border-radius: 13px;
  background: rgba(255, 190, 74, 0.08);
  color: transparent;
  font-size: 0;
}

body.home .faq-icon::after {
  color: var(--yellow);
  font: 800 12px/1 Unbounded, Manrope, sans-serif;
  content: "01";
}

body.home .faq-card:nth-child(2) .faq-icon::after { content: "02"; }
body.home .faq-card:nth-child(3) .faq-icon::after { content: "03"; }

body.home .faq-card h3 {
  align-self: end;
  margin: 0 0 9px;
  color: #fff;
  font: 800 clamp(18px, 1.7vw, 25px)/1.2 Unbounded, Manrope, sans-serif;
  letter-spacing: -0.035em;
}

body.home .faq-grid .faq-card:first-child h3 {
  font-size: clamp(24px, 3vw, 42px);
}

body.home .faq-card p {
  max-width: 66ch;
  margin: 0;
  color: rgba(230, 218, 206, 0.55);
  font-size: 13px;
  line-height: 1.68;
}

body.home .faq-card p strong {
  color: var(--yellow);
}

@media (max-width: 840px) {
  body.home .faq-head { align-items: flex-start; flex-direction: column; }
  body.home .faq-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  body.home .faq-grid .faq-card:first-child { grid-row: auto; }
  body.home .faq-card,body.home .faq-grid .faq-card:first-child { align-content: center; min-height: 190px; }
}

@media (max-width: 620px) {
  body.home .faq .container { padding: 22px 18px; border-radius: 20px; }
  body.home .faq-tabs { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  body.home .faq-tabs button { padding-inline: 8px; font-size: 10px; }
  body.home .faq-card,body.home .faq-grid .faq-card:first-child { grid-template-columns: 42px minmax(0,1fr); min-height: 210px; padding: 22px 18px !important; }
  body.home .faq-icon { width: 42px; height: 42px; }
  body.home .faq-card h3,body.home .faq-grid .faq-card:first-child h3 { font-size: 20px; }
}

/* FAQ final: stable three-card layout. */
body.home .faq .container {
  padding: clamp(28px, 4vw, 52px) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 181, 72, 0.1), transparent 28rem),
    linear-gradient(145deg, rgba(25, 22, 20, 0.94), rgba(9, 11, 12, 0.98)) !important;
}

body.home .faq-head {
  display: grid !important;
  justify-items: center;
  gap: 22px !important;
  margin-bottom: 26px !important;
  padding-bottom: 28px !important;
  text-align: center;
}

body.home .faq-head .section-kicker {
  justify-content: center;
}

body.home .faq-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  text-wrap: balance;
}

body.home .faq-tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

body.home .faq-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows: none !important;
  gap: 12px !important;
}

body.home .faq-grid.is-hidden {
  display: none !important;
}

body.home .faq-grid .faq-card,
body.home .faq-grid .faq-card:first-child {
  display: flex !important;
  grid-row: auto !important;
  min-height: 280px !important;
  flex-direction: column;
  align-content: initial !important;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 26px !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 17px !important;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)) !important;
}

body.home .faq-grid .faq-card::after {
  width: 42px;
  height: 2px;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  content: "";
  opacity: 0.55;
}

body.home .faq-grid .faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 190, 74, 0.2) !important;
  background: linear-gradient(150deg, rgba(255, 190, 74, 0.055), rgba(255, 255, 255, 0.018)) !important;
}

body.home .faq-grid .faq-icon {
  display: grid !important;
  grid-row: auto !important;
  flex: 0 0 auto;
  width: 46px !important;
  height: 46px !important;
  margin: 0 0 28px !important;
  border-radius: 12px !important;
}

body.home .faq-grid .faq-card h3,
body.home .faq-grid .faq-card:first-child h3 {
  margin: 0 0 13px !important;
  color: #fff;
  font-size: clamp(19px, 1.65vw, 25px) !important;
  line-height: 1.2;
}

body.home .faq-grid .faq-card p {
  margin: 0 0 24px !important;
  color: rgba(231, 219, 207, 0.56) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}

@media (max-width: 900px) {
  body.home .faq-grid { grid-template-columns: 1fr !important; }
  body.home .faq-grid .faq-card,body.home .faq-grid .faq-card:first-child { min-height: 220px !important; }
  body.home .faq-grid .faq-icon { margin-bottom: 20px !important; }
}

@media (max-width: 620px) {
  body.home .faq .container { padding: 24px 16px !important; }
  body.home .faq-head { justify-items: stretch; text-align: left; }
  body.home .faq-head .section-kicker { justify-content: flex-start; }
  body.home .faq-tabs { width: 100%; }
  body.home .faq-grid .faq-card,body.home .faq-grid .faq-card:first-child { min-height: 230px !important; padding: 22px !important; }
}

/* FAQ accordion: compact, readable and consistent with the home page. */
body.home .faq .container {
  padding: clamp(26px, 3.2vw, 42px) !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 0 0, rgba(255, 174, 54, 0.085), transparent 23rem),
    linear-gradient(145deg, rgba(19, 18, 17, 0.92), rgba(8, 10, 11, 0.97)) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2) !important;
}

body.home .faq .container::before {
  display: none !important;
}

body.home .faq-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 28px !important;
  margin: 0 0 28px !important;
  padding: 0 0 26px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left !important;
}

body.home .faq-head > div:first-child {
  max-width: 640px;
}

body.home .faq-head .section-kicker {
  justify-content: flex-start !important;
}

body.home .faq-head h2 {
  margin: 8px 0 10px !important;
  max-width: none !important;
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 0.98 !important;
}

body.home .faq-head p {
  margin: 0;
  color: rgba(235, 226, 216, 0.56);
  font-size: 14px;
  line-height: 1.65;
}

body.home .faq-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  flex: 0 0 auto;
  width: 288px !important;
  margin: 0 !important;
  padding: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  background: rgba(0, 0, 0, 0.25) !important;
}

body.home .faq-tabs::before {
  display: none !important;
}

body.home .faq-tabs button {
  position: relative;
  z-index: 1;
  min-height: 42px !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: rgba(235, 226, 216, 0.58) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

body.home .faq-tabs button.is-active {
  background: linear-gradient(135deg, #ffbe55, #ff9d2e) !important;
  color: #17110a !important;
  box-shadow: 0 7px 20px rgba(255, 158, 45, 0.2), inset 0 1px rgba(255, 255, 255, 0.4) !important;
}

body.home .faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

body.home .faq-note {
  position: relative;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 188, 80, 0.25);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 235, 189, 0.3), transparent 13rem),
    linear-gradient(145deg, #ef941f, #b65d0d);
  color: #160d05;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3);
}

body.home .faq-note::after {
  position: absolute;
  right: -46px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 244, 220, 0.18);
  border-radius: 50%;
  content: "";
}

body.home .faq-note-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.68;
}

body.home .faq-note h3 {
  margin: 26px 0 10px;
  color: #160d05;
  font: 850 clamp(27px, 2.5vw, 38px)/1 Unbounded, Manrope, sans-serif;
  letter-spacing: -0.05em;
}

body.home .faq-note p {
  max-width: 30ch;
  margin: 0 0 28px;
  color: rgba(24, 13, 4, 0.72);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.62;
}

body.home .faq-note a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(27, 14, 4, 0.18);
  color: #160d05;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

body.home .faq-list {
  align-self: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

body.home .faq-list.is-hidden {
  display: none !important;
}

body.home .faq-item + .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

body.home .faq-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 90px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

body.home .faq-question:hover,
body.home .faq-item.is-open .faq-question {
  background: rgba(255, 178, 65, 0.045);
}

body.home .faq-number {
  color: #f4a433;
  font: 800 11px/1 Unbounded, Manrope, sans-serif;
  letter-spacing: 0.04em;
}

body.home .faq-question > span:nth-child(2) {
  font: 800 clamp(15px, 1.45vw, 20px)/1.3 Unbounded, Manrope, sans-serif;
  letter-spacing: -0.035em;
}

body.home .faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

body.home .faq-toggle::before,
body.home .faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

body.home .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

body.home .faq-item.is-open .faq-toggle {
  border-color: rgba(255, 178, 65, 0.32);
  background: rgba(255, 178, 65, 0.1);
}

body.home .faq-item.is-open .faq-toggle::before,
body.home .faq-item.is-open .faq-toggle::after {
  background: #ffb13e;
}

body.home .faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

body.home .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

body.home .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

body.home .faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 70px 0 80px;
  overflow: hidden;
  color: rgba(232, 222, 211, 0.58);
  font-size: 13px;
  line-height: 1.7;
  transition: padding-bottom 0.28s ease;
}

body.home .faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

body.home .faq-answer strong {
  color: #f5ad43;
}

@media (max-width: 850px) {
  body.home .faq-head {
    align-items: flex-start !important;
    flex-direction: column;
  }

  body.home .faq-tabs {
    width: min(100%, 330px) !important;
  }

  body.home .faq-layout {
    grid-template-columns: 1fr;
  }

  body.home .faq-note {
    min-height: 220px;
    order: 2;
  }

  body.home .faq-list {
    order: 1;
  }
}

@media (max-width: 560px) {
  body.home .faq .container {
    padding: 22px 14px !important;
    border-radius: 21px !important;
  }

  body.home .faq-head {
    gap: 20px !important;
    margin-bottom: 16px !important;
    padding-bottom: 20px !important;
  }

  body.home .faq-head h2 {
    font-size: clamp(32px, 11vw, 44px) !important;
  }

  body.home .faq-tabs {
    width: 100% !important;
  }

  body.home .faq-question {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 10px;
    min-height: 82px;
    padding: 16px 14px;
  }

  body.home .faq-question > span:nth-child(2) {
    font-size: 14px;
  }

  body.home .faq-answer p {
    padding-inline: 54px 18px;
    font-size: 12px;
  }

  body.home .faq-note {
    min-height: 210px;
    padding: 22px;
  }
}

/* Transparent character renders: readable copy and uncropped silhouettes. */
body.home .show-hero { min-height: 750px; align-items: center; padding: 150px 0 80px; overflow: clip; }
body.home .show-hero-art { inset: auto -2% 4% auto; z-index: -1; width: 60%; height: 80%; object-fit: contain; object-position: center; filter: drop-shadow(0 24px 30px rgba(0,0,0,.32)); }
body.home .show-hero-veil { z-index: -2; background: radial-gradient(ellipse at 80% 45%, #66472466 0%, transparent 48%), radial-gradient(ellipse at 68% 64%, #193c444d 0%, transparent 44%), linear-gradient(180deg,#12110f,#080806); }
body.home .show-hero-copy { max-width: 560px; }
body.home .show-hero h1 { font-size: clamp(38px,4.2vw,62px); }
body.home .show-hero h1 .hero-line { white-space: normal; }
body.home .story-art.story-art-character { display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at 50% 48%,rgba(215,149,62,.14),transparent 65%); }
body.home .story-art.story-art-character img { width: 100%; height: 100%; max-height: 480px; object-fit: contain; object-position: center; transform: none; filter: drop-shadow(0 16px 20px #0005); }
body.home .community-art { background-size: contain; background-repeat: no-repeat; background-position: center; background-color: #151719; }
body.home .community-art-community { background-image: url('/img/renders/home-join.webp?v=20260908-particles2'); }
body.home .community-art-rp { background-image: url('/img/renders/home-adventure.webp?v=20260908-particles2'); }
body.home .community-art-professions { background-image: url('/img/renders/home-mining.webp?v=20260908-particles2'); }
@media (max-width: 1100px) and (min-width: 981px) {
  body.home .show-hero-copy { max-width: 480px; }
  body.home .show-hero-art { width: 58%; right: -6%; }
}
@media (max-width: 980px) {
  body.home .show-hero { min-height: 0; padding: 120px 0 32px; display: flex; flex-direction: column; align-items: stretch; }
  body.home .show-hero-inner { order: 0; }
  body.home .show-hero-copy { max-width: 720px; }
  body.home .show-hero-art { position: relative; inset: auto; order: 1; align-self: center; width: min(100%,760px); height: auto; margin: 12px auto 0; }
  body.home .story-art.story-art-character img { max-height: 380px; }
}
@media (prefers-reduced-motion: reduce) {
  body.home .story-art.story-art-character img { animation: none; }
}
