:root {
  --bg-0: #12090b;
  --bg-1: #241012;
  --bg-2: #3f1719;
  --panel: rgba(29, 12, 15, 0.82);
  --panel-strong: rgba(26, 11, 13, 0.92);
  --panel-soft: rgba(64, 22, 24, 0.72);
  --text: #f7eee5;
  --text-soft: #dcc7b7;
  --muted: #baa39d;
  --line: rgba(218, 184, 145, 0.18);
  --line-strong: rgba(238, 205, 163, 0.42);
  --gold: #d2a36a;
  --gold-bright: #f3dcc0;
  --gold-deep: #88562d;
  --accent: #8c231e;
  --accent-2: #d95b3d;
  --tech: #c66b52;
  --tech-strong: #e58f71;
  --tech-soft: rgba(198, 107, 82, 0.16);
  --success: #54c07f;
  --danger: #f57463;
  --shadow-xl: 0 32px 90px rgba(20, 7, 8, 0.48);
  --shadow-lg: 0 18px 44px rgba(18, 7, 7, 0.32);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1380px;
}

html {
  font-size: 16px;
  min-height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Microsoft YaHei", "PingFang SC", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(205, 78, 55, 0.22), transparent 20%),
    radial-gradient(circle at 86% 8%, rgba(255, 233, 206, 0.08), transparent 18%),
    radial-gradient(circle at 50% 44%, rgba(255, 214, 172, 0.05), transparent 24%),
    radial-gradient(circle at 50% 118%, rgba(140, 35, 30, 0.14), transparent 30%),
    linear-gradient(180deg, #090304 0%, #130809 32%, #241011 58%, #321516 100%);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-body {
  position: relative;
}

.site-stage {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.site-stage::before,
.site-stage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.site-stage::before {
  background:
    radial-gradient(circle at 50% -6%, rgba(255, 224, 193, 0.12), transparent 34%),
    radial-gradient(circle at 50% 20%, rgba(140, 35, 30, 0.12), transparent 28%);
}

.site-stage::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 18%),
    linear-gradient(90deg, transparent 0%, rgba(255,228,202,0.02) 48%, transparent 100%);
  opacity: 0.7;
}

.site-stage__ambient {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
}

.site-stage__orb,
.site-stage__spark,
.site-stage__trail {
  position: absolute;
  pointer-events: none;
}

.site-stage__orb {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.44;
  animation: ambientFloat 20s ease-in-out infinite;
}

.site-stage__orb--left {
  top: 8%;
  left: -8%;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(196, 67, 53, 0.24) 0%, rgba(196, 67, 53, 0.08) 48%, transparent 72%);
}

.site-stage__orb--right {
  top: 12%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(255, 224, 193, 0.14) 0%, rgba(255, 224, 193, 0.04) 46%, transparent 74%);
  animation-delay: -8s;
}

.site-stage__spark {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 234, 204, 0.95);
  box-shadow: 0 0 16px rgba(255, 220, 165, 0.78);
  animation: stageSpark 6s ease-in-out infinite;
}

.site-stage__spark--1 { top: 14%; left: 18%; animation-delay: 0s; }
.site-stage__spark--2 { top: 22%; left: 72%; animation-delay: 1.4s; }
.site-stage__spark--3 { top: 34%; left: 84%; animation-delay: 2.8s; }
.site-stage__spark--4 { top: 42%; left: 12%; animation-delay: 3.6s; }
.site-stage__spark--5 { top: 64%; left: 64%; animation-delay: 4.7s; }

.site-stage__trail {
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255, 219, 179, 0.76), rgba(206, 92, 73, 1));
  transform: rotate(-28deg) scaleX(0.35);
  transform-origin: right center;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(206, 92, 73, 0.38));
  animation: stageMeteor 13s linear infinite;
}

.site-stage__trail::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 230, 188, 0.98);
  box-shadow: 0 0 18px rgba(255, 220, 165, 0.8);
}

.site-stage__trail--1 {
  top: 12%;
  left: 66%;
}

.site-stage__trail--2 {
  top: 24%;
  left: 82%;
  animation-delay: 4s;
}

.site-stage__trail--3 {
  top: 8%;
  left: 42%;
  animation-delay: 7.5s;
}

.site-stage__glow {
  position: fixed;
  z-index: -3;
  pointer-events: none;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.site-stage__glow--left {
  top: -8rem;
  left: -8rem;
  background: rgba(161, 39, 35, 0.2);
}

.site-stage__glow--right {
  top: 12rem;
  right: -10rem;
  background: rgba(243, 220, 192, 0.12);
}

.site-stage__grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 92%);
}

.site-header {
  padding: 28px 26px 0;
}

.site-header__inner,
.site-footer__inner,
.site-main {
  width: min(var(--max-width), calc(100% - 24px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(28, 12, 14, 0.88), rgba(18, 8, 10, 0.74)),
    linear-gradient(90deg, rgba(210, 163, 106, 0.08), transparent 48%, rgba(140, 35, 30, 0.08));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(243, 220, 192, 0.24);
  background:
    radial-gradient(circle at top, rgba(243, 220, 192, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(161, 39, 35, 0.92), rgba(69, 14, 16, 0.98));
  color: #fff4e8;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.site-brand__copy {
  display: grid;
  gap: 4px;
}

.site-brand__copy strong {
  color: #fff2e3;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.site-brand__copy em {
  color: #bda7a0;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(243, 220, 192, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(120deg, rgba(161, 39, 35, 0.12), rgba(243, 220, 192, 0.04));
  color: #f7ede3;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.site-nav__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.12), transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.32s ease;
}

.site-nav__item:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 220, 192, 0.3);
  box-shadow: 0 16px 28px rgba(20, 7, 8, 0.3), 0 0 0 1px rgba(243, 220, 192, 0.08) inset;
}

.site-nav__item:hover::before {
  transform: translateX(120%);
}

.site-nav__item--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: #c0aba5;
}

.site-header__account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.site-header__account-id {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(243, 220, 192, 0.16);
  border-radius: 999px;
  color: #f7eee5;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.04);
}

.site-header__logout-form {
  margin: 0;
}

.site-header__logout,
.site-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(243, 220, 192, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(188, 58, 45, 0.92), rgba(102, 18, 19, 0.96));
  color: #fff7f0;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.site-main {
  position: relative;
  padding: 34px 0 0;
}

.site-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 215, 154, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  z-index: -1;
}

.site-footer {
  padding: 30px 24px 30px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 22px;
  background: rgba(21, 9, 11, 0.56);
  color: var(--muted);
}

.site-footer__inner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.register-shell,
.wallet-shell {
  padding: 12px 0 44px;
}

.home-shell {
  position: relative;
  display: grid;
  gap: 34px;
  padding: 18px 0 56px;
}

.home-shell::before,
.home-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.home-shell::before {
  top: 180px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 168, 89, 0.12), transparent 70%);
  filter: blur(16px);
}

.home-shell::after {
  top: 420px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 141, 239, 0.12), transparent 72%);
  filter: blur(20px);
}

.home-section,
.home-news,
.home-entry {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(10, 18, 34, 0.72), rgba(7, 13, 24, 0.76)),
    radial-gradient(circle at top right, rgba(215, 168, 91, 0.08), transparent 24%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.home-cinematic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  min-height: 760px;
  padding: 56px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 44px;
  background:
    radial-gradient(circle at 84% 18%, rgba(92, 145, 255, 0.18), transparent 20%),
    radial-gradient(circle at 16% 14%, rgba(255, 169, 92, 0.18), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(247, 215, 154, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.76), rgba(4, 10, 19, 0.9)),
    linear-gradient(120deg, rgba(22, 38, 71, 0.58), rgba(8, 15, 29, 0.84));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.home-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 167, 97, 0.14), transparent 16%),
    linear-gradient(180deg, transparent 48%, rgba(255,255,255,0.035)),
    linear-gradient(90deg, rgba(255,255,255,0.025), transparent 36%);
  pointer-events: none;
}

.home-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%),
    radial-gradient(circle at 50% 115%, rgba(215, 168, 91, 0.12), transparent 26%);
  pointer-events: none;
}

.home-cinematic__sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-cinematic__star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 236, 207, 0.9);
  box-shadow: 0 0 16px rgba(255, 226, 174, 0.8);
  animation: starPulse 3.4s ease-in-out infinite;
}

.home-cinematic__star--1 { top: 14%; left: 16%; animation-delay: 0s; }
.home-cinematic__star--2 { top: 24%; left: 42%; animation-delay: 1.1s; }
.home-cinematic__star--3 { top: 18%; left: 68%; animation-delay: 0.6s; }
.home-cinematic__star--4 { top: 10%; left: 84%; animation-delay: 1.8s; }
.home-cinematic__star--5 { top: 30%; left: 90%; animation-delay: 0.3s; }
.home-cinematic__star--6 { top: 38%; left: 26%; animation-delay: 2.3s; }

.home-cinematic__meteor {
  position: absolute;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(196, 227, 255, 0.85), rgba(255, 215, 153, 0.98));
  transform: rotate(-24deg);
  filter: drop-shadow(0 0 10px rgba(158, 208, 255, 0.45));
  opacity: 0;
}

.home-cinematic__meteor::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 225, 173, 0.96);
  box-shadow: 0 0 18px rgba(255, 226, 174, 0.8);
}

.home-cinematic__meteor--1 {
  top: 12%;
  left: 58%;
  animation: meteorShot 8.5s linear infinite;
}

.home-cinematic__meteor--2 {
  top: 22%;
  left: 70%;
  animation: meteorShot 10.5s linear infinite 2.1s;
}

.home-cinematic__meteor--3 {
  top: 8%;
  left: 36%;
  animation: meteorShot 11.2s linear infinite 4.3s;
}

.home-cinematic__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 50% 100%, rgba(247, 215, 154, 0.12), transparent 34%);
  pointer-events: none;
}

.home-cinematic__content,
.home-cinematic__panel {
  position: relative;
  z-index: 1;
}

.home-cinematic__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 56rem;
}

.home-cinematic__content h1 {
  margin: 22px 0 16px;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(3.6rem, 7.8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.home-cinematic__content p {
  max-width: 46rem;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 2;
}

.home-cinematic__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-cinematic .register-submit {
  min-height: 56px;
  padding: 0 26px;
}

.home-cinematic__meta {
  margin-top: auto;
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-cinematic__meta div {
  padding-top: 16px;
  border-top: 1px solid rgba(215, 168, 91, 0.16);
}

.home-cinematic__meta strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.home-cinematic__meta span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.home-cinematic__panel {
  display: flex;
  align-items: flex-end;
}

.home-cinematic__sigil {
  position: absolute;
  right: -30px;
  bottom: -26px;
  z-index: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(247, 215, 154, 0.08);
  opacity: 0.75;
  pointer-events: none;
}

.home-cinematic__sigil span {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(247, 215, 154, 0.08);
}

.home-cinematic__sigil span:nth-child(2) {
  inset: 58px;
}

.home-cinematic__sigil span:nth-child(3) {
  inset: 96px;
}

.home-panel {
  width: 100%;
  padding: 34px 30px;
  border-radius: 30px;
  border: 1px solid rgba(215, 168, 91, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(117, 67, 31, 0.18), rgba(18, 30, 55, 0.2));
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.home-panel__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 215, 154, 0.18);
  background: rgba(255,255,255,0.04);
  color: var(--gold-bright);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.home-panel h2 {
  margin: 16px 0 10px;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2rem;
}

.home-panel p,
.home-news__item p,
.home-entry__card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.home-panel__list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.home-panel__list article {
  padding: 16px 0 0;
  border-top: 1px solid rgba(215, 168, 91, 0.1);
}

.home-panel__list strong,
.home-announcement__meta span,
.home-link,
.home-news__lead-inner span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-panel__list span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.8;
}

.home-section__head h2 {
  margin: 10px 0 0;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2.1rem;
}

.home-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.home-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(215, 168, 91, 0.18);
  background: rgba(255,255,255,0.03);
}

.home-news__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
}

.home-news__lead {
  min-height: 100%;
}

.home-news__lead-inner,
.home-news__item,
.home-entry__card {
  position: relative;
  height: 100%;
  padding: 26px;
  border: 1px solid rgba(215, 168, 91, 0.1);
  border-radius: 28px;
  background: rgba(255,255,255,0.035);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-news__lead-inner {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top, rgba(247, 215, 154, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(29, 47, 81, 0.16), rgba(8, 15, 29, 0.9)),
    linear-gradient(120deg, rgba(43, 67, 107, 0.22), rgba(132, 71, 35, 0.14));
}

.home-news__lead-inner strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--gold-bright);
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.home-news__list {
  display: grid;
  gap: 14px;
}

.home-news__item:hover,
.home-entry__card:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 215, 154, 0.26);
  background: rgba(255,255,255,0.06);
}

.home-news__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-news__meta em {
  color: var(--muted);
  font-style: normal;
}

.home-news__item h3,
.home-entry__card strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--gold-bright);
  font-family: "Georgia", "STZhongsong", serif;
}

.home-news__item h3 {
  font-size: 1.35rem;
}

.home-entry__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-entry__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(247, 215, 154, 0.18);
  background: rgba(255,255,255,0.03);
  color: var(--gold);
  font-weight: 700;
}

.home-entry__card {
  min-height: 260px;
  backdrop-filter: blur(10px);
}

.home-entry__card strong {
  font-size: 1.48rem;
}

.home-grand {
  display: grid;
  gap: 34px;
  padding: 12px 0 56px;
}

.home-future {
  display: grid;
  gap: 28px;
  padding: 12px 0 56px;
}

.home-future__hero,
.home-future__notice,
.home-future__portal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(134, 210, 255, 0.12);
  box-shadow: var(--shadow-xl);
}

.home-future__hero {
  min-height: 820px;
  padding: 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% -6%, rgba(134, 210, 255, 0.14), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(88, 184, 255, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(5, 11, 21, 0.92), rgba(6, 14, 26, 0.96));
}

.home-future__aura,
.home-future__hero-copy,
.home-future__hero-visual {
  position: relative;
  z-index: 1;
}

.home-future__aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-future__aura::before,
.home-future__aura::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-future__aura::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(134, 210, 255, 0.14), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(247, 215, 154, 0.06), transparent 18%);
}

.home-future__aura::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.52), transparent 78%);
  opacity: 0.55;
}

.home-future__beam,
.home-future__particle,
.home-future__gridline {
  position: absolute;
}

.home-future__beam {
  width: 380px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(134, 210, 255, 0.55), rgba(255,255,255,0));
  opacity: 0.6;
}

.home-future__beam--1 {
  top: 16%;
  left: -2%;
  transform: rotate(8deg);
}

.home-future__beam--2 {
  top: 28%;
  right: -4%;
  transform: rotate(-10deg);
}

.home-future__beam--3 {
  bottom: 24%;
  left: 44%;
  width: 260px;
  transform: rotate(-16deg);
}

.home-future__particle {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 234, 255, 0.95);
  box-shadow: 0 0 18px rgba(134, 210, 255, 0.85);
  animation: futurePulse 5s ease-in-out infinite;
}

.home-future__particle--1 { top: 14%; left: 18%; animation-delay: 0s; }
.home-future__particle--2 { top: 22%; left: 74%; animation-delay: 1.6s; }
.home-future__particle--3 { bottom: 28%; left: 58%; animation-delay: 3.2s; }
.home-future__particle--4 { bottom: 18%; left: 26%; animation-delay: 4.1s; }

.home-future__gridline {
  opacity: 0.35;
}

.home-future__gridline--x {
  left: 0;
  right: 0;
  bottom: 21%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(134, 210, 255, 0.18), rgba(255,255,255,0));
}

.home-future__gridline--y {
  top: 10%;
  bottom: 12%;
  right: 28%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(134, 210, 255, 0.16), rgba(255,255,255,0));
}

.home-future__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 64px 56px 56px;
}

.home-future__hero-copy {
  max-width: 52rem;
}

.home-future__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(134, 210, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-future__hero-copy h1 {
  margin: 24px 0 16px;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: #f1f7ff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.home-future__hero-copy p {
  max-width: 42rem;
  margin: 0;
  color: #b7c9de;
  font-size: 1.08rem;
  line-height: 2;
}

.home-future__hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-future__hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-future__hero-metrics article,
.home-future__console-card,
.home-future__notice-item,
.home-future__portal-card {
  border: 1px solid rgba(134, 210, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    linear-gradient(120deg, rgba(88, 184, 255, 0.08), rgba(255,255,255,0));
  backdrop-filter: blur(12px);
}

.home-future__hero-metrics article {
  padding: 18px;
  border-radius: 20px;
}

.home-future__hero-metrics strong {
  display: block;
  color: #eef7ff;
  font-size: 1rem;
}

.home-future__hero-metrics span {
  display: block;
  margin-top: 8px;
  color: #99aec8;
  line-height: 1.8;
}

.home-future__hero-visual {
  display: flex;
  justify-content: flex-end;
}

.home-future__console {
  position: relative;
  width: 100%;
  min-height: 540px;
  border-radius: 34px;
  border: 1px solid rgba(134, 210, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(88, 184, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(8, 16, 30, 0.74), rgba(8, 16, 30, 0.92));
  overflow: hidden;
}

.home-future__console::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(134, 210, 255, 0.08);
  border-radius: 26px;
}

.home-future__console-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
}

.home-future__console-ring,
.home-future__console-dot {
  position: absolute;
}

.home-future__console-ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(134, 210, 255, 0.18);
}

.home-future__console-ring--2 {
  inset: 24px;
  animation: futureRotate 12s linear infinite;
}

.home-future__console-ring--3 {
  inset: 56px;
  border-style: dashed;
  animation: futureRotateReverse 10s linear infinite;
}

.home-future__console-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5ebff;
  box-shadow: 0 0 18px rgba(134, 210, 255, 0.9);
}

.home-future__console-dot--1 { top: 14px; left: 118px; }
.home-future__console-dot--2 { top: 120px; right: 6px; }
.home-future__console-dot--3 { bottom: 16px; left: 98px; }
.home-future__console-dot--4 { top: 120px; left: 8px; }

.home-future__console-card {
  position: absolute;
  width: 220px;
  padding: 18px;
  border-radius: 20px;
}

.home-future__console-card em {
  display: block;
  color: var(--tech);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-future__console-card strong {
  display: block;
  margin-top: 10px;
  color: #f2f8ff;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.25rem;
}

.home-future__console-card span {
  display: block;
  margin-top: 8px;
  color: #9fb3cb;
  line-height: 1.75;
}

.home-future__console-card--top {
  top: 42px;
  right: 28px;
}

.home-future__console-card--left {
  left: 24px;
  bottom: 78px;
}

.home-future__console-card--right {
  right: 24px;
  bottom: 34px;
}

.home-future__notice {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(8, 15, 28, 0.82), rgba(7, 13, 24, 0.9)),
    radial-gradient(circle at top left, rgba(134, 210, 255, 0.08), transparent 24%);
}

.home-future__notice-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 4px;
}

.home-future__notice-intro h2 {
  margin: 12px 0 14px;
  color: #eff7ff;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2.5rem;
}

.home-future__notice-intro p {
  margin: 0;
  color: #a7bad1;
  line-height: 1.95;
}

.home-future__notice-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-future__notice-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(134, 210, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--tech);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-future__notice-list {
  display: grid;
  gap: 14px;
}

.home-future__notice-item {
  padding: 22px 24px;
  border-radius: 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-future__notice-item:hover,
.home-future__portal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(134, 210, 255, 0.22);
}

.home-future__notice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-future__notice-meta span {
  color: var(--tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-future__notice-meta em {
  color: #8ea4bf;
  font-style: normal;
}

.home-future__notice-item h3 {
  margin: 12px 0 10px;
  color: #edf6ff;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.42rem;
}

.home-future__notice-item p {
  margin: 0;
  color: #9fb2ca;
  line-height: 1.85;
}

.home-future__portal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-future__portal-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
}

.home-future__portal-card span {
  color: rgba(134, 210, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-future__portal-card strong {
  color: #eff7ff;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.9rem;
}

.home-future__portal-card p {
  margin: 0;
  color: #9fb3cb;
  line-height: 1.85;
}

.home-qq {
  display: grid;
  gap: 26px;
  padding: 12px 0 56px;
}

.home-qq__hero,
.home-qq__band,
.home-qq__news,
.home-qq__portal-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 179, 225, 0.16);
}

.home-qq__hero,
.home-qq__band,
.home-qq__news {
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62)),
    linear-gradient(120deg, rgba(88, 184, 255, 0.08), rgba(255,255,255,0));
  box-shadow: 0 24px 64px rgba(84, 128, 173, 0.12);
}

.home-qq__hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 24px;
  align-items: center;
  padding: 0 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.88), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(255,255,255,0.8), rgba(241, 248, 255, 0.86)),
    linear-gradient(120deg, rgba(88, 184, 255, 0.08), rgba(255,255,255,0));
}

.home-qq__hero-bg,
.home-qq__hero-copy,
.home-qq__hero-stage {
  position: relative;
  z-index: 1;
}

.home-qq__hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-qq__hero-bg::before,
.home-qq__hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-qq__hero-bg::before {
  background:
    radial-gradient(circle at 18% 26%, rgba(134, 210, 255, 0.18), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(88, 184, 255, 0.18), transparent 20%),
    radial-gradient(circle at 50% 88%, rgba(188, 227, 255, 0.16), transparent 16%);
}

.home-qq__hero-bg::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.56), transparent 80%);
  opacity: 0.35;
}

.home-qq__halo,
.home-qq__line,
.home-qq__dot,
.home-qq__orbital {
  position: absolute;
}

.home-qq__halo {
  border-radius: 50%;
  filter: blur(44px);
}

.home-qq__halo--1 {
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(134, 210, 255, 0.22), transparent 72%);
}

.home-qq__halo--2 {
  right: -80px;
  bottom: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(88, 184, 255, 0.18), transparent 72%);
}

.home-qq__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(88, 184, 255, 0.42), rgba(255,255,255,0));
  opacity: 0.7;
}

.home-qq__line--1 {
  top: 18%;
  left: 4%;
  width: 340px;
  transform: rotate(8deg);
}

.home-qq__line--2 {
  top: 34%;
  right: 2%;
  width: 380px;
  transform: rotate(-12deg);
}

.home-qq__line--3 {
  bottom: 18%;
  left: 38%;
  width: 300px;
  transform: rotate(-20deg);
}

.home-qq__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8f1ff;
  box-shadow: 0 0 16px rgba(134, 210, 255, 0.9);
  animation: futurePulse 5.2s ease-in-out infinite;
}

.home-qq__dot--1 { top: 16%; left: 18%; animation-delay: 0s; }
.home-qq__dot--2 { top: 24%; right: 18%; animation-delay: 1.4s; }
.home-qq__dot--3 { bottom: 22%; left: 48%; animation-delay: 2.8s; }
.home-qq__dot--4 { bottom: 16%; left: 16%; animation-delay: 4.1s; }

.home-qq__orbital {
  inset: 50% auto auto 72%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(134, 210, 255, 0.12);
  box-shadow: 0 0 0 90px rgba(134, 210, 255, 0.02), 0 0 0 180px rgba(134, 210, 255, 0.015);
}

.home-qq__hero-copy {
  max-width: 48rem;
}

.home-qq__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(134, 210, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-qq__hero-copy h1 {
  margin: 22px 0 16px;
  color: #10253f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.home-qq__hero-copy p {
  max-width: 40rem;
  margin: 0;
  color: #5f7691;
  font-size: 1.08rem;
  line-height: 2;
}

.home-qq__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-qq__actions .register-submit {
  min-height: 56px;
  padding: 0 28px;
}

.home-qq__hero-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-qq__sphere {
  position: relative;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), transparent 22%),
    radial-gradient(circle at center, rgba(134, 210, 255, 0.28), rgba(88, 184, 255, 0.08) 42%, transparent 70%);
  border: 1px solid rgba(122, 179, 225, 0.24);
  box-shadow:
    0 0 0 18px rgba(134, 210, 255, 0.06),
    0 0 0 54px rgba(134, 210, 255, 0.03),
    0 0 90px rgba(88, 184, 255, 0.1);
}

.home-qq__sphere span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(134, 210, 255, 0.18);
}

.home-qq__sphere span:nth-child(1) {
  animation: futureRotate 18s linear infinite;
}

.home-qq__sphere span:nth-child(2) {
  inset: 24px;
  animation: futureRotateReverse 14s linear infinite;
}

.home-qq__sphere span:nth-child(3) {
  inset: 56px;
  border-style: dashed;
  animation: futureRotate 11s linear infinite;
}

.home-qq__band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.home-qq__band article {
  padding: 28px 32px;
}

.home-qq__band article + article {
  border-left: 1px solid rgba(134, 210, 255, 0.1);
}

.home-qq__band strong {
  display: block;
  color: #10253f;
  font-size: 1.08rem;
}

.home-qq__band span {
  display: block;
  margin-top: 10px;
  color: #667d98;
  line-height: 1.9;
}

.home-qq__news {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  padding: 38px;
}

.home-qq__news-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-qq__news-intro h2 {
  margin: 14px 0 16px;
  color: #10253f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2.7rem;
  line-height: 1.06;
}

.home-qq__news-intro p {
  margin: 0;
  color: #5f7691;
  line-height: 1.95;
}

.home-qq__news-list {
  display: grid;
  gap: 0;
}

.home-qq__news-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(134, 210, 255, 0.08);
}

.home-qq__news-item:last-child {
  border-bottom: 0;
}

.home-qq__news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-qq__news-meta span {
  color: var(--tech);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-qq__news-meta em {
  color: #7d94ad;
  font-style: normal;
}

.home-qq__news-item h3 {
  margin: 12px 0 10px;
  color: #16314f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.5rem;
}

.home-qq__news-item p {
  margin: 0;
  color: #667d98;
  line-height: 1.88;
}

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

.home-qq__portal-item {
  min-height: 220px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.64)),
    linear-gradient(120deg, rgba(88, 184, 255, 0.1), rgba(255,255,255,0));
  box-shadow: 0 24px 64px rgba(84, 128, 173, 0.1);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.home-qq__portal-item:hover {
  transform: translateY(-3px);
  border-color: rgba(134, 210, 255, 0.22);
}

.home-qq__portal-item span {
  color: rgba(134, 210, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-qq__portal-item strong {
  display: block;
  margin: 20px 0 12px;
  color: #16314f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2rem;
}

.home-qq__portal-item p {
  margin: 0;
  color: #667d98;
  line-height: 1.85;
}

.home-hero,
.home-news-board,
.home-portal-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 91, 0.12);
  box-shadow: var(--shadow-xl);
}

.home-hero {
  min-height: 860px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(4, 9, 19, 0.25), rgba(4, 9, 19, 0.82)),
    linear-gradient(120deg, rgba(13, 24, 45, 0.76), rgba(6, 11, 22, 0.88));
}

.home-hero__video,
.home-hero__backdrop,
.home-hero__character,
.home-hero__dust {
  position: absolute;
  inset: 0;
}

.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.home-hero__backdrop {
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 225, 176, 0.22), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(100, 154, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(4, 8, 17, 0.18) 0%, rgba(4, 8, 17, 0.54) 38%, rgba(4, 8, 17, 0.96) 100%);
}

.home-hero__character {
  background:
    linear-gradient(90deg, rgba(4, 8, 17, 0.94) 0%, rgba(4, 8, 17, 0.42) 34%, rgba(4, 8, 17, 0.38) 68%, rgba(4, 8, 17, 0.92) 100%),
    url("/media/home/hero-poster.jpg") center bottom / cover no-repeat;
  opacity: 0.86;
  mix-blend-mode: screen;
}

.home-hero__dust {
  background:
    radial-gradient(circle at 16% 62%, rgba(255, 169, 91, 0.18), transparent 16%),
    radial-gradient(circle at 84% 70%, rgba(109, 164, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(247, 215, 154, 0.1), transparent 22%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: end;
  min-height: 860px;
  padding: 72px 58px 58px;
}

.home-hero__copy {
  max-width: 54rem;
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 215, 154, 0.18);
  background: rgba(8, 15, 29, 0.38);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-hero__logo {
  display: block;
  width: min(420px, 72%);
  margin: 22px 0 12px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.32));
}

.home-hero__slogan {
  display: block;
  width: min(470px, 82%);
  opacity: 0.9;
}

.home-hero__headline {
  margin-top: 24px;
}

.home-hero__headline h1 {
  margin: 0;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.home-hero__headline p {
  max-width: 40rem;
  margin: 20px 0 0;
  color: rgba(245, 234, 217, 0.86);
  font-size: 1.08rem;
  line-height: 2;
}

.home-hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero__actions .register-submit {
  min-height: 56px;
  padding: 0 28px;
}

.home-hero__panel {
  display: flex;
  justify-content: flex-end;
}

.home-hero__panel-card {
  width: 100%;
  max-width: 360px;
  padding: 28px 26px;
  border-radius: 30px;
  border: 1px solid rgba(247, 215, 154, 0.14);
  background:
    linear-gradient(180deg, rgba(10, 18, 34, 0.78), rgba(8, 15, 29, 0.9)),
    radial-gradient(circle at top, rgba(247, 215, 154, 0.08), transparent 28%);
  backdrop-filter: blur(12px);
}

.home-hero__panel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 215, 154, 0.12);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__panel-card strong {
  display: block;
  margin-top: 14px;
  color: var(--gold-bright);
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.7rem;
}

.home-hero__panel-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.home-hero__panel-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.85;
}

.home-hero__panel-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 58%, var(--gold-deep) 100%);
  box-shadow: 0 0 12px rgba(247, 215, 154, 0.5);
}

.home-news-board {
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(9, 16, 29, 0.82), rgba(7, 13, 24, 0.88)),
    radial-gradient(circle at top right, rgba(215, 168, 91, 0.08), transparent 22%);
  backdrop-filter: blur(10px);
}

.home-news-board__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.home-news-board__header h2 {
  margin: 10px 0 0;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2.3rem;
}

.home-news-board__body {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
}

.home-news-board__lead,
.home-news-board__item {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(215, 168, 91, 0.1);
  overflow: hidden;
}

.home-news-board__lead {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 380px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(4, 8, 17, 0.12), rgba(4, 8, 17, 0.9)),
    url("/media/home/hero-poster.jpg") center center / cover no-repeat;
}

.home-news-board__lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 220, 170, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(4, 8, 17, 0.14), rgba(4, 8, 17, 0.88));
}

.home-news-board__lead > * {
  position: relative;
  z-index: 1;
}

.home-news-board__lead-tag,
.home-news-board__item-meta span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-news-board__lead strong {
  display: block;
  margin-top: 16px;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2.1rem;
  color: #fff4df;
  line-height: 1.08;
}

.home-news-board__lead p {
  margin: 12px 0 0;
  color: rgba(245, 234, 217, 0.88);
  line-height: 1.9;
}

.home-news-board__lead-meta,
.home-news-board__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-news-board__lead-meta {
  margin-top: 20px;
}

.home-news-board__lead-meta em,
.home-news-board__item-meta em {
  color: var(--text-soft);
  font-style: normal;
}

.home-news-board__list {
  display: grid;
  gap: 14px;
}

.home-news-board__item {
  padding: 24px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    linear-gradient(120deg, rgba(42, 64, 101, 0.12), rgba(117, 67, 31, 0.08));
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-news-board__item:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 215, 154, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(120deg, rgba(42, 64, 101, 0.16), rgba(117, 67, 31, 0.1));
}

.home-news-board__item h3 {
  margin: 12px 0 10px;
  color: var(--gold-bright);
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.42rem;
}

.home-news-board__item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.home-portal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(11, 20, 38, 0.86), rgba(7, 13, 24, 0.92)),
    radial-gradient(circle at top, rgba(215, 168, 91, 0.06), transparent 28%);
  backdrop-filter: blur(10px);
}

.home-portal-strip__item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 28px 30px;
  min-height: 180px;
}

.home-portal-strip__item + .home-portal-strip__item {
  border-left: 1px solid rgba(215, 168, 91, 0.1);
}

.home-portal-strip__item span {
  color: rgba(247, 215, 154, 0.5);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.home-portal-strip__item strong {
  color: #fff0d3;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.9rem;
}

.home-portal-strip__item em {
  color: var(--text-soft);
  font-style: normal;
  line-height: 1.8;
}

@keyframes starPulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

@keyframes meteorShot {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-24deg) scaleX(0.3);
  }

  8% {
    opacity: 0.95;
  }

  22% {
    opacity: 0;
    transform: translate3d(-220px, 180px, 0) rotate(-24deg) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-220px, 180px, 0) rotate(-24deg) scaleX(1);
  }
}

@keyframes ambientFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 18px, 0) scale(1.06);
  }
}

@keyframes stageSpark {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes stageMeteor {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-28deg) scaleX(0.35);
  }

  5% {
    opacity: 0.92;
  }

  22% {
    opacity: 0;
    transform: translate3d(-300px, 220px, 0) rotate(-28deg) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(-300px, 220px, 0) rotate(-28deg) scaleX(1);
  }
}

@keyframes futurePulse {
  0%, 100% {
    opacity: 0.34;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}

@keyframes futureRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes futureRotateReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.home-portal-card strong,
.home-entry__card strong {
  display: block;
  color: var(--gold-bright);
}

.register-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(440px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.register-hero__copy {
  position: relative;
  padding: 48px 22px 24px;
  border: 1px solid rgba(215, 168, 91, 0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(38, 14, 16, 0.8), rgba(20, 9, 11, 0.86)),
    radial-gradient(circle at top right, rgba(243, 220, 192, 0.08), transparent 26%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.register-hero__copy::before,
.register-hero__copy::after,
.wallet-card::before,
.wallet-card::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(247, 215, 154, 0.24);
}

.register-hero__copy::before,
.wallet-card::before {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.register-hero__copy::after,
.wallet-card::after {
  right: 16px;
  bottom: 16px;
  border-left: 0;
  border-top: 0;
}

.register-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 215, 154, 0.2);
  background: rgba(215, 168, 91, 0.12);
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.register-hero__copy h1,
.wallet-head h1 {
  margin: 22px 0 14px;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.register-hero__copy p,
.wallet-subtitle,
.register-help {
  color: var(--text-soft);
  line-height: 1.85;
}

.register-hero__copy p {
  max-width: 44rem;
  font-size: 1.04rem;
}

.register-hero__intro {
  margin: 22px 0 0;
  padding: 18px 20px 18px 22px;
  list-style: none;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(243, 220, 192, 0.08), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.register-hero__intro li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.8;
}

.register-hero__intro li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-bright);
  font-size: 1rem;
}

.register-feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.register-feature-card,
.wallet-stat,
.wallet-grid div {
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,248,242,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.register-feature-card strong,
.wallet-stat strong,
.wallet-grid strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.register-feature-card span,
.wallet-stat__meta,
.wallet-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.register-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.register-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.8;
}

.register-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, var(--gold) 58%, var(--gold-deep) 100%);
  box-shadow: 0 0 12px rgba(247, 215, 154, 0.42);
}

.register-points li strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.register-panel {
  display: flex;
  align-items: stretch;
}

.register-card,
.wallet-card {
  position: relative;
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(32, 12, 15, 0.94), rgba(18, 8, 10, 0.9)),
    radial-gradient(circle at top, rgba(243, 220, 192, 0.06), transparent 30%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.register-card__head,
.wallet-head {
  position: relative;
  z-index: 1;
}

.register-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.register-card__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.register-card__head h2,
.wallet-history h2,
.wallet-head--compact h2 {
  margin: 0;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.7rem;
  color: var(--text);
}

.register-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.register-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.register-authing {
  margin-top: 22px;
}

.register-authing__status {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(215, 168, 91, 0.14);
  background: rgba(255, 248, 242, 0.045);
}

.register-authing__status strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 1rem;
}

.register-authing__status p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.register-authing__status.success {
  border-color: rgba(84, 192, 127, 0.28);
  background: rgba(84, 192, 127, 0.08);
}

.register-authing__status.pending {
  border-color: rgba(215, 168, 91, 0.24);
  background: rgba(215, 168, 91, 0.08);
}

.register-authing__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.register-authing__button,
.register-submit,
.admin-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(188, 58, 45, 0.98), rgba(102, 18, 19, 0.98)),
    linear-gradient(90deg, rgba(243, 220, 192, 0.18), transparent);
  color: #fff7f0;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
  box-shadow: 0 16px 30px rgba(33, 9, 10, 0.32);
  overflow: hidden;
}

.register-authing__button::before,
.register-submit::before,
.admin-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,0.26), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.3s ease;
}

.register-authing__button:hover,
.register-submit:hover,
.admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(33, 9, 10, 0.38);
  filter: brightness(1.03);
}

.register-authing__button.is-success,
.register-authing__button:disabled.is-success {
  background:
    linear-gradient(180deg, rgba(77, 142, 104, 0.98), rgba(23, 76, 53, 0.98)),
    linear-gradient(90deg, rgba(248, 235, 183, 0.22), transparent);
  color: #f5fff7;
  box-shadow: 0 16px 30px rgba(18, 56, 38, 0.28);
}

.register-authing__button:disabled {
  opacity: 1;
  cursor: default;
  transform: none;
  filter: none;
}

.register-authing__button:disabled::before {
  display: none;
}

.register-authing__button:hover::before,
.register-submit:hover::before,
.admin-btn:hover::before {
  transform: translateX(120%);
}

.register-submit:disabled,
.admin-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.register-authing__link {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.register-field {
  display: grid;
  gap: 8px;
}

.register-form__grid--stacked {
  gap: 14px 16px;
}

.register-form__grid--single {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.register-field--full {
  grid-column: 1 / -1;
}

.register-field--inline {
  align-items: center;
}

.register-field--status {
  align-content: start;
}

.register-field span,
.register-checkbox span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.register-field input,
.register-field select,
.admin-reviewer input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(218, 184, 145, 0.16);
  border-radius: 16px;
  background: rgba(255, 248, 242, 0.045);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.register-field select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.register-field select:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.register-password-box {
  position: relative;
}

.register-password-box input {
  padding-right: 48px;
}

.register-password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(96, 56, 49, 0.72);
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.register-password-toggle svg {
  width: 18px;
  height: 18px;
}

.register-password-toggle:hover,
.register-password-toggle.is-active {
  color: #9b2d24;
}

.register-password-toggle:focus-visible {
  outline: none;
  color: #9b2d24;
  transform: translateY(-50%) scale(1.05);
}

.register-field input::placeholder,
.admin-reviewer input::placeholder {
  color: rgba(145, 161, 188, 0.72);
}

.register-field__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 2px 2px 0;
  font-size: 0.84rem;
  line-height: 1.5;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.register-field__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: none;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.register-field__status.is-empty {
  opacity: 0;
  visibility: hidden;
}

.register-field__status.is-checking {
  color: #9f6e4f;
}

.register-field__status.is-success {
  color: #2f7d57;
}

.register-field__status.is-occupied,
.register-field__status.is-warn {
  color: #a73d33;
}

.register-field input:focus,
.register-field select:focus,
.admin-reviewer input:focus {
  border-color: rgba(247, 215, 154, 0.48);
  background: rgba(255, 248, 242, 0.07);
  box-shadow: 0 0 0 4px rgba(210, 163, 106, 0.12);
}

.register-checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.register-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.register-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(218, 184, 145, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.05);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.register-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.register-radio span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.register-radio span::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(140, 35, 30, 0.48);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.register-radio input:checked + span::before {
  border-color: #8f2a22;
  background:
    radial-gradient(circle at center, #9f2f25 0 42%, transparent 43% 100%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(159, 47, 37, 0.08);
}

.register-radio:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 215, 154, 0.34);
  box-shadow: 0 10px 24px rgba(20, 7, 8, 0.12);
}

.register-radio:has(input:checked) {
  border-color: rgba(188, 58, 45, 0.28);
  background: linear-gradient(180deg, rgba(188, 58, 45, 0.1), rgba(255, 248, 242, 0.08));
  box-shadow: 0 12px 24px rgba(84, 29, 23, 0.12), inset 0 1px 0 rgba(255,255,255,0.22);
}

.register-result {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  line-height: 1.7;
}

.register-result.success {
  background: rgba(84, 192, 127, 0.08);
  border-color: rgba(84, 192, 127, 0.2);
  color: #8ce0ac;
}

.register-authing--compact {
  margin-top: 2px;
}

.register-authing--compact .register-authing__status {
  min-height: 0;
  padding: 18px 20px;
}

.register-authing--card .register-authing__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.register-authing__hero {
  display: flex;
  align-items: center;
  gap: 14px;
}

.register-authing__emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(188, 58, 45, 0.18), rgba(102, 18, 19, 0.12));
  color: #8f2a22;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
}

.register-authing__summary {
  display: grid;
  gap: 6px;
}

.register-authing__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(152, 68, 56, 0.08);
  color: #8f2a22;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.register-authing--card .register-authing__actions {
  justify-content: flex-end;
}

.authing-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.authing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 7, 8, 0.62);
  backdrop-filter: blur(10px);
}

.authing-modal__dialog {
  position: relative;
  width: min(520px, calc(100% - 32px));
  margin: min(10vh, 72px) auto 0;
  padding: 26px;
  border: 1px solid rgba(215, 168, 91, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(35, 13, 15, 0.94), rgba(18, 8, 10, 0.9)),
    radial-gradient(circle at top right, rgba(243, 220, 192, 0.08), transparent 32%);
  box-shadow: 0 28px 70px rgba(10, 4, 5, 0.45);
}

.authing-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff3e6;
  font-size: 1.4rem;
  line-height: 1;
}

.authing-modal__head h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.9rem;
}

.authing-modal__head p,
.authing-modal__hint {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.authing-modal__frame-wrap {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 24px;
  background: rgba(255, 248, 242, 0.04);
}

.authing-modal__frame {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}

.authing-modal__hint {
  margin-top: 14px;
  font-size: 0.92rem;
}

.notice-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
}

.notice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 8, 0.62);
  backdrop-filter: blur(14px);
}

.notice-modal__dialog {
  position: relative;
  width: min(460px, calc(100vw - 32px));
  top: 50%;
  margin: 0 auto;
  padding: 28px 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(233, 195, 156, 0.22);
  background:
    radial-gradient(circle at top right, rgba(235, 146, 109, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(59, 18, 19, 0.72), rgba(29, 11, 12, 0.78));
  box-shadow:
    0 28px 70px rgba(9, 4, 5, 0.48),
    inset 0 1px 0 rgba(255, 236, 217, 0.08);
  color: #fff7f0;
  transform: translateY(-50%);
  backdrop-filter: blur(18px) saturate(130%);
}

.notice-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 246, 238, 0.88);
  font-size: 1.3rem;
  cursor: pointer;
}

.notice-modal__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(196, 92, 71, 0.24);
  background: rgba(157, 39, 26, 0.14);
  color: #de7b67;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.notice-modal__title {
  margin: 18px 0 10px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  color: #fff4ea;
}

.notice-modal__message {
  margin: 0;
  color: rgba(255, 240, 228, 0.8);
  line-height: 1.8;
}

.notice-modal__action {
  margin-top: 24px;
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(188, 58, 45, 0.98), rgba(102, 18, 19, 0.98)),
    linear-gradient(90deg, rgba(243, 220, 192, 0.18), transparent);
  color: #fff7f0;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 16px 30px rgba(33, 9, 10, 0.32);
  cursor: pointer;
}

.register-result.fail {
  background: rgba(245, 116, 99, 0.08);
  border-color: rgba(245, 116, 99, 0.2);
  color: #ff9889;
}

.wallet-card {
  padding: 32px 30px;
}

.wallet-head h1 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.wallet-head--compact h2 {
  font-size: 1.45rem;
}

.wallet-form {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.wallet-form--withdraw,
.wallet-form--share-link {
  margin-top: 24px;
}

.wallet-form--readonly .register-field input {
  color: #7d5348;
  font-weight: 700;
}

.wallet-actions {
  min-width: 190px;
}

.wallet-actions--stack {
  display: grid;
  gap: 12px;
}

.wallet-actions--inline {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.register-submit--ghost,
.admin-btn--ghost {
  background: rgba(255,248,242,0.05);
  color: var(--gold-bright);
  border: 1px solid rgba(215, 168, 91, 0.24);
  box-shadow: none;
}

.register-submit--ghost:hover,
.admin-btn--ghost:hover {
  box-shadow: none;
  background: rgba(255,248,242,0.08);
}

.admin-btn--approve {
  background:
    linear-gradient(180deg, rgba(255, 174, 104, 0.96), rgba(170, 85, 39, 0.96)),
    linear-gradient(90deg, rgba(247, 215, 154, 0.15), transparent);
}

.admin-btn--reject {
  background: linear-gradient(180deg, rgba(255, 111, 87, 0.95), rgba(139, 43, 37, 0.95));
  color: #fff6f3;
}

.wallet-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wallet-grid span {
  color: var(--muted);
}

.wallet-grid--tools {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wallet-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.wallet-inline-note {
  margin-left: 10px;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #7d281f;
  background: rgba(243, 220, 192, 0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.wallet-actions--duo {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.wallet-actions--duo .register-submit {
  flex: 1 1 0;
  min-width: 0;
}

.wallet-stat__label {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wallet-history {
  margin-top: 28px;
}

.wallet-history--switcher {
  margin-top: 24px;
}

.wallet-history__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.wallet-tabs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
}

.wallet-tab {
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
  color: #6d4038;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wallet-tab:hover {
  color: #7f231b;
  transform: translateY(-1px);
}

.wallet-tab.is-active {
  background:
    linear-gradient(180deg, rgba(188, 58, 45, 0.98), rgba(102, 18, 19, 0.98)),
    linear-gradient(90deg, rgba(243, 220, 192, 0.18), transparent);
  color: #fff7f0;
  box-shadow: 0 10px 24px rgba(102, 18, 19, 0.18);
}

.wallet-panel[hidden] {
  display: none !important;
}

.wallet-table-shell--records {
  max-height: 560px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wallet-table-shell--records::-webkit-scrollbar {
  display: none;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(215, 168, 91, 0.1);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.03);
}

.admin-table td {
  color: var(--text-soft);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-empty {
  text-align: center;
  color: var(--muted);
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-done {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-shell {
  padding: 12px 0 44px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  margin: 10px 0 8px;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.player-login-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 68px;
}

.player-login-card {
  padding: 34px 34px 30px;
  border: 1px solid rgba(215, 168, 91, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.24), rgba(255, 247, 239, 0.12)),
    rgba(31, 11, 13, 0.22);
  box-shadow: 0 24px 58px rgba(28, 9, 10, 0.24);
  backdrop-filter: blur(18px) saturate(140%);
}

.player-login-card__head h1 {
  margin: 14px 0 10px;
  color: #4a241f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-shadow: 0 1px 0 rgba(255, 246, 240, 0.34);
}

.player-login-card__head p {
  margin: 0;
  max-width: 640px;
  color: #533029;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 1px 0 rgba(255, 248, 243, 0.28);
}

.player-login-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.player-login-card .register-field span {
  color: #5c3029;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgba(255, 247, 241, 0.26);
}

.player-login-card .register-field input {
  color: #49241f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 12px 24px rgba(84, 29, 23, 0.06);
}

.player-login-card .register-field input::placeholder {
  color: rgba(96, 67, 61, 0.82);
}

.player-login-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.player-login-register {
  min-width: 124px;
}

.admin-reviewer {
  min-width: 260px;
}

.admin-reviewer label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
}

.admin-card {
  position: relative;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.admin-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.admin-card__head h2 {
  margin: 0;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.55rem;
}

.admin-detail {
  display: grid;
  gap: 22px;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-detail-grid div,
.admin-detail-message {
  padding: 16px;
  border: 1px solid rgba(215, 168, 91, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-detail-grid strong,
.admin-detail-message strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-bright);
}

.admin-detail-grid span,
.admin-detail-message span {
  color: var(--text-soft);
  line-height: 1.7;
}

.admin-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  min-width: 260px;
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
}

.admin-toast.success {
  background: rgba(31, 97, 61, 0.92);
  color: #e8fff0;
}

.admin-toast.fail {
  background: rgba(130, 42, 40, 0.94);
  color: #fff1ef;
}

@media (max-width: 1080px) {
  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .register-hero {
    grid-template-columns: 1fr;
  }

  .home-cinematic,
  .home-news__grid,
  .home-entry__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__inner,
  .home-news-board__body,
  .home-portal-strip {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero__inner {
    min-height: 0;
    padding: 52px 34px 34px;
  }

  .home-hero__panel {
    justify-content: flex-start;
  }

  .home-hero__panel-card {
    max-width: 100%;
  }

  .home-future__hero,
  .home-future__notice,
  .home-future__portal,
  .home-future__hero-metrics {
    grid-template-columns: 1fr;
  }

  .home-future__hero {
    min-height: 0;
    padding: 44px 32px 32px;
  }

  .home-future__console {
    min-height: 480px;
  }

  .home-qq__hero,
  .home-qq__band,
  .home-qq__news,
  .home-qq__portal {
    grid-template-columns: 1fr;
  }

  .home-qq__hero {
    min-height: 0;
    padding: 48px 34px 34px;
  }

  .home-qq__hero-stage {
    min-height: 320px;
  }

  .home-qq__band article + article {
    border-left: 0;
    border-top: 1px solid rgba(134, 210, 255, 0.1);
  }

  .home-portal-strip__item + .home-portal-strip__item {
    border-left: 0;
    border-top: 1px solid rgba(215, 168, 91, 0.1);
  }

  .register-feature-grid {
    grid-template-columns: 1fr;
  }

  .register-hero__intro {
    padding: 16px 18px;
  }

  .wallet-grid,
  .wallet-grid--tools,
  .admin-detail-grid,
  .home-cinematic__meta {
    grid-template-columns: 1fr 1fr;
  }

  .home-cinematic__sigil {
    width: 220px;
    height: 220px;
    right: -20px;
    bottom: -20px;
  }

  .site-stage__trail,
  .site-stage__orb--right {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header__inner,
  .site-footer__inner,
  .site-main {
    width: min(100% - 16px, 100%);
  }

  .site-nav__item {
    min-width: calc(50% - 6px);
  }

  .register-card,
  .wallet-card,
  .admin-card,
  .register-hero__copy,
  .home-cinematic,
  .home-section {
    padding: 20px;
    border-radius: 24px;
  }

  .home-hero,
  .home-news-board,
  .home-portal-strip {
    border-radius: 24px;
  }

  .home-news-board {
    padding: 24px 20px;
  }

  .home-hero__inner {
    padding: 30px 20px 24px;
  }

  .home-future__hero,
  .home-future__notice,
  .home-future__portal-card {
    border-radius: 24px;
  }

  .home-future__hero,
  .home-future__notice {
    padding: 24px 20px;
  }

  .home-future__hero-copy h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .home-future__console {
    min-height: 420px;
    border-radius: 24px;
  }

  .home-future__console-core {
    width: 190px;
    height: 190px;
  }

  .home-future__console-card {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 12px;
  }

  .home-future__notice-intro h2 {
    font-size: 2rem;
  }

  .home-qq__hero,
  .home-qq__band,
  .home-qq__news,
  .home-qq__portal-item {
    border-radius: 24px;
  }

  .home-qq__hero,
  .home-qq__news {
    padding: 24px 20px;
  }

  .home-qq__hero-copy h1,
  .home-qq__news-intro h2 {
    font-size: 2.5rem;
    line-height: 1.04;
  }

  .home-qq__sphere {
    width: min(84vw, 360px);
  }

  .home-hero__logo,
  .home-hero__slogan {
    width: 100%;
    max-width: 320px;
  }

  .home-hero__headline h1 {
    font-size: 2.9rem;
    line-height: 1;
  }

  .home-hero__headline p,
  .home-portal-strip__item em,
  .home-news-board__item p,
  .home-news-board__lead p {
    line-height: 1.8;
  }

  .home-news,
  .home-entry {
    padding: 24px 20px;
  }

  .register-form__grid,
  .wallet-form,
  .admin-topbar,
  .wallet-grid,
  .wallet-grid--tools,
  .admin-detail-grid,
  .home-cinematic__meta {
    grid-template-columns: 1fr;
  }

  .wallet-actions {
    min-width: 100%;
  }

  .site-stage__ambient {
    opacity: 0.7;
  }
}

@media (max-width: 560px) {
  .site-brand__copy strong {
    font-size: 1.1rem;
  }

  .site-nav {
    flex-direction: column;
  }

  .site-nav__item {
    width: 100%;
    min-width: 100%;
  }

  .register-hero__copy h1,
  .home-cinematic__content h1,
  .wallet-head h1,
  .admin-topbar h1 {
    font-size: 2rem;
  }

  .home-hero__headline h1,
  .home-news-board__lead strong,
  .home-portal-strip__item strong {
    font-size: 2rem;
  }

  .home-news-board__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__actions .register-submit {
    width: 100%;
  }

  .home-future__hero-copy h1,
  .home-future__portal-card strong {
    font-size: 2rem;
  }

  .home-future__hero-actions {
    flex-direction: column;
  }

  .home-future__hero-actions .register-submit {
    width: 100%;
  }

  .home-future__notice-tags {
    gap: 10px;
  }

  .home-qq__hero-copy h1,
  .home-qq__portal-item strong {
    font-size: 2rem;
  }

  .home-qq__actions {
    flex-direction: column;
  }

  .home-qq__actions .register-submit {
    width: 100%;
  }
}

/* Home QQ-like hero */
.site-body--home {
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 239, 223, 0.8), transparent 34%),
    radial-gradient(circle at 14% 12%, rgba(197, 70, 54, 0.08), transparent 22%),
    linear-gradient(180deg, #f7efe8 0%, #f3e8df 42%, #f0e2d9 100%);
  color: #3b221f;
}

.site-stage--home::before,
.site-stage--home::after,
.site-stage--home .site-stage__ambient,
.site-stage--home .site-stage__grid,
.site-stage--home .site-stage__glow {
  display: none;
}

.site-header--brand {
  padding: 0;
}

.site-header__inner--brand {
  width: min(100%, 100%);
  padding: 0 44px;
  min-height: 72px;
  border: 0;
  border-bottom: 1px solid rgba(125, 53, 43, 0.12);
  border-radius: 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.92), rgba(255, 245, 237, 0.76)),
    linear-gradient(120deg, rgba(243,220,192,0.22), rgba(255,255,255,0));
  box-shadow: 0 10px 30px rgba(84, 29, 23, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(18px) saturate(160%);
}

.site-header__inner--brand::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.95), rgba(255,255,255,0));
  pointer-events: none;
}

.site-header__inner--brand::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 12%;
  width: 28%;
  height: 44px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(243,220,192,0.34), rgba(255,255,255,0));
  filter: blur(10px);
  transform: rotate(-4deg);
  opacity: 0.58;
  pointer-events: none;
}

.site-body--home .site-brand__mark,
.site-body--public-page .site-brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 0;
  background: linear-gradient(180deg, #bc3a2d, #6f1718);
  color: #ffffff;
  font-size: 0.8rem;
  box-shadow: none;
}

.site-body--home .site-brand__copy,
.site-body--public-page .site-brand__copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.site-body--home .site-brand__copy strong,
.site-body--public-page .site-brand__copy strong {
  color: #3b221f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.site-body--home .site-brand__copy em,
.site-body--public-page .site-brand__copy em {
  display: none;
}

.site-nav--brand {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-left: auto;
  justify-content: flex-end;
  gap: 30px;
}

.site-nav--brand .site-nav__link--brand,
.site-nav--brand .site-nav__link--brand--ghost {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: 72px;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0;
  background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible;
  text-decoration: none !important;
  white-space: nowrap;
  color: #5f3630;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,0.28);
  transition: color 0.18s ease;
}

.site-nav--brand .site-nav__link--brand span,
.site-nav--brand .site-nav__link--brand--ghost span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  line-height: 1;
  padding: 0;
  margin: 0;
  background: none !important;
}

.site-nav--brand .site-nav__link--brand:hover,
.site-nav--brand .site-nav__link--brand--ghost:hover {
  transform: none;
  color: #a33028;
  box-shadow: none !important;
}

.site-nav--brand .site-nav__link--brand::before,
.site-nav--brand .site-nav__link--brand--ghost::before {
  display: none;
}

.site-body--home .site-header__account-id,
.site-body--public-page .site-header__account-id {
  border-color: rgba(125, 53, 43, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: #73423b;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.site-body--home .site-header__logout,
.site-body--public-page .site-header__logout,
.site-body--home .site-header__login,
.site-body--public-page .site-header__login {
  border-color: rgba(125, 53, 43, 0.12);
  box-shadow: 0 10px 20px rgba(84, 29, 23, 0.1);
}

.site-body--home .site-main {
  width: 100%;
  padding: 0;
}

.site-body--home .site-footer {
  display: none;
}

.home-hero-lite {
  width: 100%;
}

.home-hero-lite__stage {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.home-hero-lite__bg,
.home-hero-lite__content,
.home-hero-lite__bottom {
  position: relative;
  z-index: 1;
}

.home-hero-lite__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 10, 12, 0.08), rgba(28, 10, 12, 0.04)),
    url("/media/home/hero-poster.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.home-hero-lite__bg::before,
.home-hero-lite__bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
}

.home-hero-lite__bg::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 9, 11, 0.62) 0%, rgba(24, 9, 11, 0.42) 32%, rgba(24, 9, 11, 0.2) 58%, rgba(255, 247, 239, 0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 22%, rgba(34, 10, 11, 0.24) 100%);
  filter: none;
  opacity: 1;
  transform: none;
  mix-blend-mode: normal;
  animation: none;
}

.home-hero-lite__bg::after {
  display: none;
}

.home-hero-lite__stripe,
.home-hero-lite__glow,
.home-hero-lite__glass {
  display: none;
}

.home-hero-lite__content {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 120px 20px 160px;
  text-align: left;
}

.home-hero-lite__content h1 {
  position: relative;
  margin: 0;
  max-width: 10ch;
  padding-left: 22px;
  color: #fff3e6;
  font-family: "Georgia", "STZhongsong", serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: 0.015em;
  line-height: 0.94;
  text-shadow: 0 16px 36px rgba(26, 8, 9, 0.4), 0 2px 0 rgba(255,255,255,0.07);
}

.home-hero-lite__content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 2px;
  height: 1.84em;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 240, 223, 0.88), rgba(211, 135, 96, 0.54));
  box-shadow: 0 0 18px rgba(255, 220, 189, 0.22);
}

.home-hero-lite__content h1::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -42px;
  width: 240px;
  height: 220px;
  background: radial-gradient(circle, rgba(208, 112, 84, 0.14) 0%, rgba(208, 112, 84, 0) 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.home-hero-lite__content h1 em {
  display: block;
  margin: 0 0 0.4em 0.42em;
  color: rgba(255, 242, 228, 0.92);
  font-style: normal;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  letter-spacing: 0.42em;
  line-height: 1.1;
  text-shadow: 0 8px 20px rgba(26, 8, 9, 0.28);
}

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

.home-hero-lite__content h1 span:nth-of-type(1) {
  margin-left: 0;
  letter-spacing: 0.01em;
}

.home-hero-lite__content h1 span:nth-of-type(2) {
  margin-top: 0.08em;
  margin-left: 0.94ch;
  letter-spacing: 0.03em;
}

.home-hero-lite__primary {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 388px;
  min-height: 82px;
  padding: 0 42px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(244, 223, 201, 0.88)),
    linear-gradient(120deg, rgba(255,255,255,0.38), rgba(255,255,255,0));
  border: 1px solid rgba(255,241,227,0.72);
  color: #6f1817;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow:
    0 22px 42px rgba(38, 11, 12, 0.3),
    0 0 0 1px rgba(255, 247, 239, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -14px 26px rgba(212, 162, 117, 0.18);
  backdrop-filter: blur(20px) saturate(160%);
  transform: translateZ(0) perspective(900px) rotateX(5deg);
}

.home-hero-lite__primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0) 40%);
  pointer-events: none;
}

.home-hero-lite__primary::after {
  content: "";
  position: absolute;
  top: -42%;
  left: -10%;
  width: 38%;
  height: 180%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
  transform: rotate(18deg);
  filter: blur(6px);
  animation: primaryGlassShine 5.8s ease-in-out infinite;
  pointer-events: none;
}

.home-hero-lite__primary span {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.34);
}

.home-hero-lite__secondary {
  margin-top: 20px;
  color: rgba(255, 241, 227, 0.84);
  font-size: 0.98rem;
  font-weight: 600;
  text-shadow: 0 10px 24px rgba(26, 8, 9, 0.28);
}

.home-hero-lite__primary:hover {
  transform: translateY(-2px) perspective(900px) rotateX(5deg);
  box-shadow:
    0 28px 48px rgba(44, 12, 13, 0.32),
    0 0 0 1px rgba(255, 247, 239, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -12px 22px rgba(212, 162, 117, 0.22);
}

.home-hero-lite__platforms {
  margin-top: 84px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px 16px;
}

.home-hero-lite__platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 218, 0.12);
  background: linear-gradient(180deg, rgba(30, 10, 12, 0.2), rgba(30, 10, 12, 0.08));
  color: rgba(255, 241, 227, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 18px rgba(18, 7, 8, 0.26);
}

.home-hero-lite__scrollcue {
  position: absolute;
  left: 50%;
  bottom: 112px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 247, 238, 0.98);
  transform: translateX(-50%);
  cursor: pointer;
}

.home-hero-lite__scrollcue-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 1px solid rgba(255, 241, 224, 0.34);
  background:
    linear-gradient(180deg, rgba(40, 14, 16, 0.36), rgba(40, 14, 16, 0.14)),
    radial-gradient(circle at center, rgba(255, 248, 240, 0.24), rgba(255, 255, 255, 0) 70%);
  box-shadow:
    0 20px 40px rgba(22, 7, 8, 0.34),
    0 0 26px rgba(255, 223, 188, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  animation: homeScrollCuePulse 1.8s ease-in-out infinite;
}

.home-hero-lite__scrollcue-icon::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 233, 211, 0.18);
  opacity: 0.64;
  animation: homeScrollCueRing 1.8s ease-out infinite;
}

.home-hero-lite__scrollcue-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 6px 12px rgba(16, 6, 7, 0.28));
}

.home-hero-lite__scrollcue-text {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow:
    0 10px 20px rgba(18, 7, 8, 0.32),
    0 0 16px rgba(255, 232, 214, 0.12);
  animation: homeScrollCueText 1.8s ease-in-out infinite;
}

.home-hero-lite__bottom {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 56px, 720px);
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 236, 218, 0.1);
  background: linear-gradient(180deg, rgba(21, 7, 8, 0.22), rgba(21, 7, 8, 0.08));
  box-shadow: 0 16px 34px rgba(23, 8, 9, 0.18);
  color: rgba(255, 241, 227, 0.74);
  font-size: 0.92rem;
}

.home-hero-lite__bottom span:first-child {
  color: rgba(255, 247, 239, 0.9);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.home-hero-lite__notice {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto 48px;
  padding: 48px 0 0;
  scroll-margin-top: 112px;
}

.home-hero-lite__notice-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.home-hero-lite__eyebrow {
  color: #a33028;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-lite__notice-head h2 {
  margin: 10px 0 0;
  color: #4a241f;
  font-family: "Georgia", "STZhongsong", serif;
  font-size: 2.1rem;
  font-weight: 700;
}

.home-hero-lite__notice-head a {
  color: #9b2b23;
  font-weight: 700;
}

.home-hero-lite__notice-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.home-hero-lite__notice-item {
  padding: 22px 24px;
  border: 1px solid rgba(184, 138, 118, 0.16);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.74);
  box-shadow: 0 16px 36px rgba(92, 43, 37, 0.06);
}

.home-hero-lite__notice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-hero-lite__notice-meta span {
  color: #a33028;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero-lite__notice-meta em {
  color: #92776f;
  font-style: normal;
}

.home-hero-lite__notice-item strong {
  display: block;
  margin: 10px 0 8px;
  color: #4a241f;
  font-size: 1.42rem;
}

.home-hero-lite__notice-item p {
  margin: 0;
  color: #7e635c;
  line-height: 1.82;
}

@keyframes homeScrollCuePulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 20px 40px rgba(22, 7, 8, 0.34),
      0 0 22px rgba(255, 223, 188, 0.12),
      inset 0 1px 0 rgba(255,255,255,0.22);
    opacity: 0.94;
  }

  50% {
    transform: translateY(10px) scale(1.03);
    box-shadow:
      0 28px 48px rgba(22, 7, 8, 0.4),
      0 0 30px rgba(255, 223, 188, 0.22),
      inset 0 1px 0 rgba(255,255,255,0.28);
    opacity: 1;
  }
}

@keyframes homeScrollCueRing {
  0% {
    transform: scale(0.92);
    opacity: 0.34;
  }

  70% {
    transform: scale(1.08);
    opacity: 0;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes homeScrollCueText {
  0%, 100% {
    opacity: 0.76;
  }

  50% {
    opacity: 1;
  }
}

.site-body--public-page {
  background: transparent;
  color: #3b221f;
}

.site-stage--public-page::before,
.site-stage--public-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-stage--public-page::before {
  z-index: -5;
  background: url("/media/home/hero-poster2.jpg") center center / cover no-repeat fixed;
}

.site-stage--public-page::after {
  z-index: -4;
  display: none;
}

.site-stage--public-page .site-stage__ambient,
.site-stage--public-page .site-stage__grid,
.site-stage--public-page .site-stage__glow {
  display: none;
}

.site-body--public-page .site-main {
  position: relative;
  padding-top: 26px;
}

.site-body--public-page .site-main::before {
  display: none;
}

.site-body--public-page .site-footer {
  padding-top: 18px;
}

.site-body--public-page .site-footer__inner {
  background: rgba(255, 249, 243, 0.52);
  border-color: rgba(152, 68, 56, 0.12);
  color: #82655d;
  box-shadow: 0 18px 36px rgba(84, 29, 23, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-body--public-page .site-footer__inner strong,
.site-body--public-page .site-footer__inner a {
  color: #8f2a22;
}

.site-body--public-page .register-shell,
.site-body--public-page .wallet-shell {
  position: relative;
  padding: 18px 0 56px;
}

.site-body--public-page .register-shell::before,
.site-body--public-page .wallet-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 240px;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(31, 10, 12, 0.22) 0%, rgba(31, 10, 12, 0.06) 48%, rgba(255, 247, 239, 0.04) 100%),
    url("/media/home/hero-poster2.jpg") center 24% / cover no-repeat;
  opacity: 0.36;
  z-index: -1;
  filter: saturate(122%);
}

.site-body--public-page .register-hero__copy,
.site-body--public-page .register-card,
.site-body--public-page .player-login-card,
.site-body--public-page .wallet-card,
.site-body--public-page .admin-card {
  border-color: rgba(152, 68, 56, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.42), rgba(249, 241, 234, 0.28)),
    linear-gradient(120deg, rgba(243,220,192,0.04), rgba(255,255,255,0));
  box-shadow: 0 24px 60px rgba(84, 29, 23, 0.12), inset 0 1px 0 rgba(255,255,255,0.34);
  backdrop-filter: blur(14px) saturate(125%);
}

.site-body--public-page .register-hero__copy::before,
.site-body--public-page .register-hero__copy::after,
.site-body--public-page .wallet-card::before,
.site-body--public-page .wallet-card::after {
  border-color: rgba(173, 85, 66, 0.18);
}

.site-body--public-page .register-badge,
.site-body--public-page .register-card__eyebrow,
.site-body--public-page .wallet-stat__label {
  color: #9b2d24;
}

.site-body--public-page .register-badge {
  border-color: rgba(155, 45, 36, 0.16);
  background: rgba(188, 58, 45, 0.08);
}

.site-body--public-page .register-hero__copy h1,
.site-body--public-page .wallet-head h1,
.site-body--public-page .register-card__head h2,
.site-body--public-page .wallet-history h2,
.site-body--public-page .wallet-head--compact h2,
.site-body--public-page .admin-card__head h2 {
  color: #4a241f;
}

.site-body--public-page .register-hero__copy p,
.site-body--public-page .register-hero__intro li,
.site-body--public-page .wallet-subtitle,
.site-body--public-page .register-help,
.site-body--public-page .register-field span,
.site-body--public-page .register-checkbox span,
.site-body--public-page .register-feature-card span,
.site-body--public-page .wallet-stat__meta,
.site-body--public-page .wallet-grid span,
.site-body--public-page .admin-detail-grid span,
.site-body--public-page .admin-detail-message,
.site-body--public-page .admin-done,
.site-body--public-page .admin-empty {
  color: #654038;
}

.site-body--public-page .register-feature-card,
.site-body--public-page .register-hero__intro,
.site-body--public-page .wallet-stat,
.site-body--public-page .wallet-grid div,
.site-body--public-page .admin-detail-grid div,
.site-body--public-page .admin-detail-message {
  border-color: rgba(152, 68, 56, 0.12);
  background: rgba(255, 252, 248, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
  backdrop-filter: blur(10px) saturate(120%);
}

.site-body--public-page .register-feature-card strong,
.site-body--public-page .register-points li strong,
.site-body--public-page .wallet-stat strong,
.site-body--public-page .wallet-grid strong,
.site-body--public-page .admin-detail-grid strong,
.site-body--public-page .admin-detail-message strong,
.site-body--public-page .register-authing__status strong {
  color: #7f231b;
}

.site-body--public-page .player-login-card__head p {
  color: #43231e !important;
  font-weight: 400 !important;
  text-shadow: none;
  opacity: 1;
}

.site-body--public-page .player-login-card .register-field span {
  color: #482520 !important;
  font-weight: 500 !important;
  text-shadow: none;
  opacity: 1;
  font-size: 0.96rem;
}

.site-body--public-page .wallet-head h1,
.site-body--public-page .wallet-history h2,
.site-body--public-page .wallet-head--compact h2,
.site-body--public-page .wallet-form .register-field span,
.site-body--public-page .wallet-inline-note,
.site-body--public-page .wallet-subtitle,
.site-body--public-page .wallet-stat__meta,
.site-body--public-page .admin-table th,
.site-body--public-page .admin-table td,
.site-body--public-page .admin-empty {
  color: #5a332d;
}

.site-body--public-page .wallet-head h1,
.site-body--public-page .wallet-history h2,
.site-body--public-page .wallet-head--compact h2 {
  color: #45211c;
}

.site-body--public-page .wallet-inline-note {
  opacity: 0.92;
}

.site-body--public-page .wallet-table-shell--downlines {
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.site-body--public-page .wallet-table-shell--downlines::-webkit-scrollbar {
  display: none;
}

.site-body--public-page .register-authing__status {
  border-color: rgba(152, 68, 56, 0.12);
  background: rgba(255, 252, 248, 0.26);
  backdrop-filter: blur(12px) saturate(122%);
}

.site-body--public-page .register-authing--compact .register-authing__status {
  background: rgba(255, 252, 248, 0.2);
}

.site-body--public-page .register-authing__emblem {
  background: linear-gradient(180deg, rgba(188, 58, 45, 0.16), rgba(102, 18, 19, 0.08));
  color: #8f2a22;
}

.site-body--public-page .register-authing__tag {
  background: rgba(155, 45, 36, 0.08);
  color: #8f2a22;
}

.site-body--public-page .register-authing__status.pending {
  border-color: rgba(210, 163, 106, 0.24);
  background: rgba(243, 220, 192, 0.18);
}

.site-body--public-page .register-authing__status.success {
  border-color: rgba(108, 156, 118, 0.24);
  background: rgba(228, 245, 232, 0.34);
}

.site-body--public-page .register-field input,
.site-body--public-page .register-field select,
.site-body--public-page .admin-reviewer input {
  border-color: rgba(152, 68, 56, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 247, 239, 0.18)),
    rgba(255, 252, 248, 0.12);
  color: #4a241f;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.38),
    0 10px 20px rgba(84, 29, 23, 0.04);
  backdrop-filter: blur(12px) saturate(125%);
}

.site-body--public-page .register-password-toggle {
  color: rgba(120, 69, 61, 0.82);
}

.site-body--public-page .register-password-toggle:hover,
.site-body--public-page .register-password-toggle.is-active,
.site-body--public-page .register-password-toggle:focus-visible {
  color: #8f2a22;
}

.site-body--public-page .register-field__status::before {
  box-shadow: 0 0 0 4px rgba(255, 248, 242, 0.26);
}

.site-body--public-page .register-field__status.is-empty::before {
  box-shadow: none;
}

.site-body--public-page .register-radio {
  border-color: rgba(152, 68, 56, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 247, 239, 0.16)),
    rgba(255, 252, 248, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 10px 20px rgba(84, 29, 23, 0.04);
  backdrop-filter: blur(10px) saturate(120%);
}

.site-body--public-page .register-radio:hover {
  border-color: rgba(155, 45, 36, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.34),
    0 14px 26px rgba(84, 29, 23, 0.06);
}

.site-body--public-page .register-radio span {
  color: #5b342e;
}

.site-body--public-page .register-radio span::before {
  border-color: rgba(143, 42, 34, 0.42);
  background: rgba(255, 251, 247, 0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.52);
}

.site-body--public-page .register-radio input:checked + span::before {
  border-color: #8f2a22;
  background:
    radial-gradient(circle at center, #9f2f25 0 42%, transparent 43% 100%),
    rgba(255, 251, 247, 0.85);
  box-shadow: 0 0 0 4px rgba(159, 47, 37, 0.1);
}

.site-body--public-page .register-radio:has(input:checked) {
  border-color: rgba(155, 45, 36, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 243, 235, 0.44), rgba(243, 220, 192, 0.18)),
    rgba(255, 252, 248, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 16px 28px rgba(84, 29, 23, 0.08);
}

.site-body--public-page .register-field input::placeholder,
.site-body--public-page .admin-reviewer input::placeholder {
  color: rgba(113, 86, 79, 0.76);
}

.site-body--public-page .register-field input:focus,
.site-body--public-page .register-field select:focus,
.site-body--public-page .admin-reviewer input:focus {
  border-color: rgba(155, 45, 36, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 247, 239, 0.24)),
    rgba(255, 252, 248, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 0 0 4px rgba(155, 45, 36, 0.08),
    0 14px 28px rgba(84, 29, 23, 0.06);
}

.site-body--public-page .register-authing__button,
.site-body--public-page .register-submit,
.site-body--public-page .admin-btn {
  background:
    linear-gradient(180deg, rgba(188, 58, 45, 0.98), rgba(102, 18, 19, 0.98)),
    linear-gradient(90deg, rgba(243, 220, 192, 0.18), transparent);
  color: #fff7f0;
  box-shadow: 0 16px 30px rgba(33, 9, 10, 0.26);
}

.site-body--public-page .register-authing__button.is-success,
.site-body--public-page .register-authing__button:disabled.is-success {
  background:
    linear-gradient(180deg, rgba(80, 151, 111, 0.98), rgba(25, 84, 58, 0.98)),
    linear-gradient(90deg, rgba(248, 235, 183, 0.2), transparent);
  box-shadow: 0 16px 30px rgba(16, 58, 40, 0.22);
}

.site-body--public-page .notice-modal__dialog {
  border-color: rgba(208, 152, 116, 0.24);
  box-shadow:
    0 28px 70px rgba(25, 8, 8, 0.5),
    inset 0 1px 0 rgba(255, 236, 217, 0.1);
  background:
    radial-gradient(circle at top right, rgba(246, 169, 132, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(74, 29, 27, 0.46), rgba(47, 18, 18, 0.56));
}

.site-body--public-page .notice-modal__message {
  color: rgba(255, 238, 224, 0.82);
}

#wallet-notice-modal .notice-modal__backdrop {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

#wallet-notice-modal .notice-modal__dialog {
  box-shadow:
    0 18px 42px rgba(25, 8, 8, 0.26),
    inset 0 1px 0 rgba(255, 236, 217, 0.1);
}

.site-body--public-page .register-submit--ghost,
.site-body--public-page .admin-btn--ghost {
  background: rgba(255, 252, 248, 0.62);
  color: #8f2a22;
  border: 1px solid rgba(152, 68, 56, 0.14);
  box-shadow: none;
}

.site-body--public-page .register-submit--ghost:hover,
.site-body--public-page .admin-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.site-body--public-page .wallet-history {
  margin-top: 24px;
  padding: 22px 22px 4px;
  border: 1px solid rgba(152, 68, 56, 0.1);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
  backdrop-filter: blur(10px) saturate(118%);
}

.site-body--public-page .admin-table {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.site-body--public-page .admin-table th,
.site-body--public-page .admin-table td {
  border-bottom-color: rgba(152, 68, 56, 0.08);
}

.site-body--public-page .admin-table th {
  color: #8f2a22;
  background: rgba(243, 220, 192, 0.18);
}

.site-body--public-page .admin-table td {
  color: #6f564f;
}

.site-body--public-page .admin-table tbody tr:hover {
  background: rgba(188, 58, 45, 0.04);
}

@media (max-width: 1080px) {
  .site-header__inner--brand {
    padding: 0 24px;
  }

  .site-nav--brand {
    gap: 20px;
  }

  .site-header__account {
    margin-left: 0;
  }

  .home-hero-lite__primary {
    min-width: 300px;
  }

  .home-hero-lite__scrollcue {
    bottom: 94px;
  }
}

@media (max-width: 860px) {
  .site-header__inner--brand {
    width: 100%;
    min-height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .site-nav--brand {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .site-header__account {
    width: 100%;
    justify-content: flex-end;
  }

  .site-nav--brand .site-nav__link--brand,
  .site-nav--brand .site-nav__link--brand--ghost {
    min-height: 40px;
    font-size: 0.92rem;
  }

  .wallet-history__topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .wallet-tabs {
    width: 100%;
    justify-content: stretch;
  }

  .wallet-tab {
    flex: 1 1 0;
    text-align: center;
  }

  .home-hero-lite__content {
    width: 100%;
    padding: 92px 16px 140px;
    align-items: center;
    text-align: center;
  }

  .home-hero-lite__content h1 {
    font-size: 2.8rem;
    max-width: none;
    padding-left: 0;
  }

  .home-hero-lite__content h1 em,
  .home-hero-lite__content h1 span,
  .home-hero-lite__content h1 span:nth-of-type(2) {
    margin-left: 0;
  }

  .home-hero-lite__content h1::before,
  .home-hero-lite__content h1::after {
    display: none;
  }

  .home-hero-lite__primary {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    min-height: 64px;
  }

  .home-hero-lite__platforms {
    margin-top: 72px;
    gap: 18px;
    justify-content: center;
  }

  .home-hero-lite__scrollcue {
    bottom: 88px;
  }

  .home-hero-lite__scrollcue-icon {
    width: 56px;
    height: 56px;
  }

  .home-hero-lite__scrollcue-text {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .home-hero-lite__bottom {
    width: calc(100% - 32px);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
  }

  .home-hero-lite__notice {
    width: min(100% - 28px, 100%);
    padding-top: 32px;
  }

  .home-hero-lite__notice-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-nav--brand {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-header__account {
    justify-content: space-between;
  }

  .site-header__account-id {
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-nav--brand .site-nav__link--brand,
  .site-nav--brand .site-nav__link--brand--ghost {
    width: auto;
    min-width: auto;
  }

  .home-hero-lite__content h1 {
    font-size: 2.2rem;
  }

  .home-hero-lite__content h1 em {
    font-size: 0.96rem;
    letter-spacing: 0.24em;
  }

  .home-hero-lite__scrollcue {
    bottom: 100px;
    gap: 10px;
  }

  .home-hero-lite__scrollcue-icon {
    width: 52px;
    height: 52px;
  }

  .home-hero-lite__scrollcue-text {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .home-hero-lite__platforms {
    gap: 14px;
  }

  .home-hero-lite__platforms span {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

@keyframes stripeFlow {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(14px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes heroLightSweep {
  0%, 100% {
    transform: translateX(-28%) skewX(-12deg);
    opacity: 0.72;
  }

  50% {
    transform: translateX(12%) skewX(-12deg);
    opacity: 1;
  }
}

@keyframes heroGlowFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, 24px, 0) scale(1.04);
  }
}

@keyframes primaryGlassShine {
  0%, 100% {
    transform: translateX(-24%) rotate(18deg);
    opacity: 0;
  }

  16% {
    opacity: 0.92;
  }

  34% {
    transform: translateX(230%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes glassGlowShift {
  0%, 100% {
    transform: translate3d(0, -2%, 0) scale(1.02);
    opacity: 0.78;
  }

  50% {
    transform: translate3d(2%, 2%, 0) scale(1.06);
    opacity: 0.92;
  }
}

@keyframes glassSweep {
  0%, 100% {
    transform: translateX(-4%);
    opacity: 0.28;
  }

  50% {
    transform: translateX(4%);
    opacity: 0.44;
  }
}
