.auth-modal.auth-modal-login {
  --auth-gold: #f6c65a;
  --auth-gold-soft: #ffe49a;
  --auth-blue: #4c97ff;
  --auth-line: rgba(132, 166, 207, 0.34);
  --auth-panel: #020b17;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: transparent;
}

.auth-modal.auth-modal-login .auth-backdrop {
  background: rgba(0, 5, 12, 0.42);
  backdrop-filter: none;
}

.auth-modal.auth-modal-login .auth-panel {
  width: min(1120px, calc(100vw - 64px));
  max-width: none;
  max-height: calc(100dvh - 64px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(246, 198, 90, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(circle at 91% 18%, rgba(25, 91, 188, 0.22), transparent 32%),
    radial-gradient(circle at 2% 96%, rgba(34, 80, 147, 0.16), transparent 28%),
    linear-gradient(132deg, #020a14 0%, #04101e 52%, #07172a 100%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(76, 151, 255, 0.14),
    inset 0 0 68px rgba(4, 54, 120, 0.14),
    0 0 30px rgba(246, 198, 90, 0.08);
}

.auth-modal.auth-modal-login .auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 206, 92, 0.52), transparent 18%, transparent 78%, rgba(65, 139, 255, 0.42)) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 210, 101, 0.38), transparent 30%, transparent 74%, rgba(70, 141, 255, 0.35)) left / 1px 100% no-repeat;
  opacity: 0.76;
}

.auth-modal.auth-modal-login .auth-close {
  top: 17px;
  right: 19px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(121, 158, 204, 0.36);
  border-radius: 50%;
  background: rgba(8, 24, 44, 0.74);
  color: #fff;
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  box-shadow: inset 0 0 18px rgba(47, 117, 220, 0.12);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.auth-modal.auth-modal-login .auth-close:hover,
.auth-modal.auth-modal-login .auth-close:focus-visible {
  border-color: rgba(246, 198, 90, 0.75);
  background: rgba(21, 39, 65, 0.94);
  transform: rotate(4deg);
}

.auth-modal.auth-modal-login .auth-login-view {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: min(640px, calc(100dvh - 66px));
  padding-top: 58px;
}

.auth-modal.auth-modal-login .auth-login-view[hidden] {
  display: none;
}

.auth-modal.auth-modal-login .auth-login-announcement {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto auto 1px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 64px;
  margin: 0 42px;
  padding: 10px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(246, 198, 90, 0.34), inset 0 0 24px rgba(55, 120, 224, 0.12), 0 0 20px rgba(246, 198, 90, 0.07);
}

.auth-modal.auth-modal-login .auth-login-announcement::before {
  content: "";
  position: absolute;
  inset: -70%;
  z-index: -2;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 52deg, rgba(255, 226, 145, 0.98) 72deg, rgba(239, 169, 49, 0.94) 92deg, transparent 114deg 230deg, rgba(64, 142, 255, 0.86) 252deg, rgba(255, 209, 100, 0.9) 284deg, transparent 308deg 360deg);
  animation: auth-announcement-border-flow 5.2s linear infinite;
}

.auth-modal.auth-modal-login .auth-login-announcement::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: -1;
  border-radius: 16.5px;
  background:
    radial-gradient(circle at 10% 120%, rgba(201, 132, 31, 0.18), transparent 28%),
    radial-gradient(circle at 92% -30%, rgba(55, 121, 232, 0.28), transparent 32%),
    linear-gradient(100deg, rgba(4, 15, 29, 0.99), rgba(7, 25, 48, 0.98));
}

.auth-modal.auth-modal-login .auth-announcement-speaker {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--auth-gold);
}

.auth-modal.auth-modal-login .auth-announcement-speaker svg {
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(246, 198, 90, 0.36));
  animation: auth-speaker-breathe 1.9s ease-in-out infinite;
}

.auth-modal.auth-modal-login .auth-speaker-wave {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: auth-speaker-wave 1.9s ease-out infinite;
}

.auth-modal.auth-modal-login .auth-speaker-wave-two {
  animation-delay: 180ms;
}

.auth-modal.auth-modal-login .auth-announcement-speaker i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--auth-gold-soft);
  box-shadow: 0 0 7px var(--auth-gold);
  animation: auth-speaker-particle 2.4s ease-in-out infinite;
}

.auth-modal.auth-modal-login .auth-announcement-speaker i:nth-of-type(1) { left: 0; top: 11px; }
.auth-modal.auth-modal-login .auth-announcement-speaker i:nth-of-type(2) { left: 4px; bottom: 8px; animation-delay: 480ms; }
.auth-modal.auth-modal-login .auth-announcement-speaker i:nth-of-type(3) { right: -2px; top: 3px; animation-delay: 900ms; }

.auth-modal.auth-modal-login .auth-login-announcement strong {
  color: #ffdc75;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(246, 198, 90, 0.18);
}

.auth-modal.auth-modal-login .auth-announcement-divider {
  width: 1px;
  height: 34px;
  background: linear-gradient(transparent, rgba(194, 211, 236, 0.72), transparent);
}

.auth-modal.auth-modal-login .auth-login-announcement p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(226, 234, 247, 0.78);
  font-size: clamp(13px, 1.08vw, 16px);
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-modal.auth-modal-login .auth-login-announcement a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffda70;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.auth-modal.auth-modal-login .auth-login-announcement a:hover,
.auth-modal.auth-modal-login .auth-login-announcement a:focus-visible {
  color: #fff0bd;
}

.auth-modal.auth-modal-login .auth-login-announcement a b {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 160ms ease;
}

.auth-modal.auth-modal-login .auth-login-announcement a:hover b,
.auth-modal.auth-modal-login .auth-login-announcement a:focus-visible b {
  transform: translateX(3px);
}

.home-launch-announcement {
  --auth-gold: #f6c65a;
  --auth-gold-soft: #ffe49a;
  position: relative;
  z-index: 140;
  display: flex;
  align-items: center;
  width: 100%;
  height: 66px;
  padding: 7px 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #020a14, #04111f);
  opacity: 1;
  transition: height 280ms cubic-bezier(0.22, 1, 0.36, 1), padding 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.home-launch-announcement.is-closing {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.home-launch-announcement__rail {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto auto 1px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(1500px, 100%);
  min-height: 52px;
  margin: 0 auto;
  padding: 6px 12px 6px 18px;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(246, 198, 90, 0.34), inset 0 0 24px rgba(55, 120, 224, 0.12);
}

.home-launch-announcement__rail::before {
  content: "";
  position: absolute;
  inset: -900%;
  z-index: -2;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg 52deg, rgba(255, 226, 145, 0.98) 72deg, rgba(239, 169, 49, 0.94) 92deg, transparent 114deg 230deg, rgba(64, 142, 255, 0.86) 252deg, rgba(255, 209, 100, 0.9) 284deg, transparent 308deg 360deg);
  animation: auth-announcement-border-flow 5.2s linear infinite;
}

.home-launch-announcement__rail::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  z-index: -1;
  border-radius: 12.5px;
  background:
    radial-gradient(circle at 10% 120%, rgba(201, 132, 31, 0.18), transparent 28%),
    radial-gradient(circle at 92% -30%, rgba(55, 121, 232, 0.28), transparent 32%),
    linear-gradient(100deg, rgba(4, 15, 29, 0.99), rgba(7, 25, 48, 0.98));
}

.home-launch-announcement .auth-announcement-speaker {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--auth-gold);
}

.home-launch-announcement .auth-announcement-speaker svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(246, 198, 90, 0.36));
  animation: auth-speaker-breathe 1.9s ease-in-out infinite;
}

.home-launch-announcement .auth-speaker-wave {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: auth-speaker-wave 1.9s ease-out infinite;
}

.home-launch-announcement .auth-speaker-wave-two {
  animation-delay: 180ms;
}

.home-launch-announcement .auth-announcement-speaker i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--auth-gold-soft);
  box-shadow: 0 0 7px var(--auth-gold);
  animation: auth-speaker-particle 2.4s ease-in-out infinite;
}

.home-launch-announcement .auth-announcement-speaker i:nth-of-type(1) { left: 0; top: 9px; }
.home-launch-announcement .auth-announcement-speaker i:nth-of-type(2) { left: 4px; bottom: 6px; animation-delay: 480ms; }
.home-launch-announcement .auth-announcement-speaker i:nth-of-type(3) { right: -2px; top: 2px; animation-delay: 900ms; }

.home-launch-announcement strong {
  color: #ffdc75;
  font-size: clamp(15px, 1.08vw, 19px);
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 0 14px rgba(246, 198, 90, 0.18);
}

.home-launch-announcement .auth-announcement-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(transparent, rgba(194, 211, 236, 0.72), transparent);
}

.home-launch-announcement p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(226, 234, 247, 0.8);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-launch-announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffda70;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.home-launch-announcement a:hover,
.home-launch-announcement a:focus-visible {
  color: #fff0bd;
}

.home-launch-announcement a b {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: transform 160ms ease;
}

.home-launch-announcement a:hover b,
.home-launch-announcement a:focus-visible b {
  transform: translateX(3px);
}

.home-launch-announcement__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 27, 48, 0.72);
  color: rgba(235, 241, 250, 0.78);
  font: 300 24px/1 "Segoe UI", sans-serif;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-launch-announcement__close:hover,
.home-launch-announcement__close:focus-visible {
  background: rgba(26, 49, 79, 0.92);
  color: #fff;
  transform: rotate(4deg);
}

.home-fixed-header {
  transition: top 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-launch-announcement-open .home-fixed-header {
  top: 66px;
}

.auth-modal.auth-modal-login .auth-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(320px, 0.87fr);
  gap: 0;
  min-height: 430px;
  padding: 34px 42px 28px;
}

.auth-modal.auth-modal-login .auth-login-primary {
  min-width: 0;
  padding: 0 46px 0 8px;
}

.auth-modal.auth-modal-login .auth-other-login {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 12px 8px 0 48px;
  border-left: 1px solid rgba(180, 198, 222, 0.44);
  background: transparent;
}

.auth-modal.auth-modal-login .auth-login-section-head,
.auth-modal.auth-modal-login .auth-social-heading {
  text-align: left;
}

.auth-modal.auth-modal-login .auth-login-section-head h3,
.auth-modal.auth-modal-login .auth-social-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 1.7vw, 28px);
  letter-spacing: -0.02em;
}

.auth-modal.auth-modal-login .auth-login-section-head p,
.auth-modal.auth-modal-login .auth-social-heading p {
  margin: 8px 0 0;
  color: rgba(207, 218, 235, 0.66);
  font-size: 14px;
}

.auth-modal.auth-modal-login .auth-social-heading > span {
  display: block;
  margin-bottom: 14px;
  color: var(--auth-gold);
  font-size: 13px;
  font-weight: 700;
}

.auth-modal.auth-modal-login .auth-method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 22px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(121, 153, 198, 0.44);
  border-radius: 15px;
  background: rgba(5, 15, 29, 0.66);
}

.auth-modal.auth-modal-login .auth-method-tabs button {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(239, 244, 251, 0.84);
  font-size: 15px;
  font-weight: 650;
}

.auth-modal.auth-modal-login .auth-method-tabs button.active {
  border: 1px solid rgba(246, 198, 90, 0.92);
  background:
    radial-gradient(circle at 82% 0%, rgba(58, 109, 196, 0.32), transparent 46%),
    rgba(10, 25, 46, 0.9);
  color: #fff;
  box-shadow: inset 0 0 26px rgba(42, 106, 209, 0.16), 0 0 14px rgba(246, 198, 90, 0.14);
}

.auth-modal.auth-modal-login .auth-form {
  display: grid;
  gap: 16px;
}

.auth-modal.auth-modal-login .auth-method-panel {
  display: grid;
  gap: 14px;
}

.auth-modal.auth-modal-login .auth-method-panel[hidden] {
  display: none;
}

.auth-modal.auth-modal-login .auth-field {
  display: grid;
  gap: 7px;
}

.auth-modal.auth-modal-login .auth-field > span {
  color: rgba(244, 247, 251, 0.94);
  font-size: 14px;
  font-weight: 700;
}

.auth-modal.auth-modal-login .auth-input-shell {
  --auth-input-border: rgba(123, 153, 195, 0.5);
  --auth-input-border-shadow: none;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(3, 12, 24, 0.72);
  transition: box-shadow 160ms ease, background 160ms ease;
}

.auth-modal.auth-modal-login .auth-input-shell::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid var(--auth-input-border);
  border-radius: inherit;
  box-shadow: var(--auth-input-border-shadow);
}

.auth-modal.auth-modal-login .auth-input-shell:focus-within {
  --auth-input-border: rgba(246, 198, 90, 0.7);
  --auth-input-border-shadow: 0 0 0 3px rgba(246, 198, 90, 0.08);
  background: rgba(4, 16, 31, 0.92);
  box-shadow: inset 0 0 20px rgba(47, 104, 190, 0.08);
}

.auth-modal.auth-modal-login .auth-field-icon {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  height: 100%;
  color: rgba(233, 240, 250, 0.88);
}

.auth-modal.auth-modal-login .auth-field-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-modal.auth-modal-login .auth-field input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 18px 0 0;
  border: 0;
  border-radius: 0 13px 13px 0;
  outline: 0;
  background: transparent;
  color: #fff;
  color-scheme: dark;
  font-size: 14px;
}

.auth-modal.auth-modal-login .auth-field input:-webkit-autofill,
.auth-modal.auth-modal-login .auth-field input:-webkit-autofill:hover,
.auth-modal.auth-modal-login .auth-field input:-webkit-autofill:focus,
.auth-modal.auth-modal-login .auth-field input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 1000px #04101f inset;
  box-shadow: 0 0 0 1000px #04101f inset;
  transition: background-color 9999s ease-out 0s;
}

.auth-modal.auth-modal-login .auth-field input:autofill {
  color: #fff;
  caret-color: #fff;
  background-color: transparent;
  box-shadow: 0 0 0 1000px #04101f inset;
}

.auth-modal.auth-modal-login .auth-field input::placeholder {
  color: rgba(183, 199, 221, 0.5);
}

.auth-modal.auth-modal-login .auth-code-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 12px;
}

.auth-modal.auth-modal-login .auth-code-control > button {
  min-height: 50px;
  border: 1px solid rgba(76, 151, 255, 0.72);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 42, 78, 0.9), rgba(7, 20, 39, 0.94));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 22px rgba(63, 133, 235, 0.12);
}

.auth-modal.auth-modal-login .auth-code-control > button:hover,
.auth-modal.auth-modal-login .auth-code-control > button:focus-visible {
  border-color: rgba(114, 178, 255, 0.95);
  background: linear-gradient(145deg, rgba(23, 52, 94, 0.96), rgba(9, 26, 49, 0.98));
}

.auth-modal.auth-modal-login .auth-submit {
  min-height: 56px;
  margin-top: 4px;
  border: 1px solid #f5bd3e;
  border-radius: 15px;
  background:
    radial-gradient(circle at 83% 30%, rgba(255, 200, 80, 0.86), transparent 42%),
    linear-gradient(105deg, #f7f9ff 2%, #f7f5ed 48%, #f3c45c 100%);
  color: #060b12;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.04em;
  box-shadow: 0 0 23px rgba(246, 198, 90, 0.22), inset 0 0 24px rgba(255, 255, 255, 0.5);
}

.auth-modal.auth-modal-login .auth-submit:hover,
.auth-modal.auth-modal-login .auth-submit:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 0 32px rgba(246, 198, 90, 0.34), inset 0 0 24px rgba(255, 255, 255, 0.62);
}

.auth-modal.auth-modal-login .auth-qq-login {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  margin-top: 32px;
  padding: 12px 22px;
  border: 1px solid rgba(76, 151, 255, 0.88);
  border-radius: 17px;
  background:
    radial-gradient(circle at 18% 20%, rgba(40, 101, 201, 0.25), transparent 32%),
    linear-gradient(120deg, rgba(9, 28, 55, 0.96), rgba(8, 22, 42, 0.94));
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 0 24px rgba(49, 113, 214, 0.12);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.auth-modal.auth-modal-login .auth-qq-login:hover,
.auth-modal.auth-modal-login .auth-qq-login:focus-visible {
  border-color: rgba(115, 180, 255, 1);
  transform: translateY(-2px);
  box-shadow: inset 0 0 28px rgba(49, 113, 214, 0.18), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.auth-modal.auth-modal-login .auth-qq-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.auth-modal.auth-modal-login .auth-qq-mark img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.auth-modal.auth-modal-login .auth-qq-login > span:not(.auth-qq-mark) {
  font-size: 18px;
  font-weight: 750;
}

.auth-modal.auth-modal-login .auth-qq-login > i {
  font-size: 30px;
  font-weight: 200;
  font-style: normal;
}

.auth-modal.auth-modal-login .auth-qq-note {
  margin: 24px 0 0;
  color: rgba(207, 219, 236, 0.66);
  font-size: 13px;
  text-align: center;
}

.auth-modal.auth-modal-login .auth-login-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 28px;
  border-top: 1px solid rgba(119, 151, 192, 0.22);
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.76), rgba(9, 24, 44, 0.72));
}

.auth-modal.auth-modal-login .auth-login-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: rgba(207, 218, 234, 0.76);
  font-size: 13px;
  text-align: center;
}

.auth-modal.auth-modal-login .auth-login-legal p {
  margin: 0;
  line-height: 1.6;
}

.auth-modal.auth-modal-login .auth-login-legal a {
  color: #55adff;
  text-decoration: none;
}

.auth-modal.auth-modal-login .auth-login-legal a:hover,
.auth-modal.auth-modal-login .auth-login-legal a:focus-visible {
  color: #8bc9ff;
  text-decoration: underline;
}

.auth-modal.auth-modal-login .auth-legal-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-right: 2px;
  padding: 0;
  border: 1px solid rgba(243, 248, 255, 0.86);
  border-radius: 50%;
  background: rgba(5, 16, 31, 0.72);
  box-shadow: inset 0 0 9px rgba(77, 151, 255, 0.12);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.auth-modal.auth-modal-login .auth-legal-mark::after {
  content: "";
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border-right: 2px solid #071322;
  border-bottom: 2px solid #071322;
  opacity: 0;
  transform: rotate(45deg) scale(0.65);
  transition: opacity 160ms ease, transform 160ms ease;
}

.auth-modal.auth-modal-login .auth-legal-mark:hover {
  border-color: #f4c75f;
}

.auth-modal.auth-modal-login .auth-legal-mark:focus-visible {
  outline: 2px solid rgba(85, 173, 255, 0.95);
  outline-offset: 3px;
}

.auth-modal.auth-modal-login .auth-legal-mark.is-checked {
  border-color: #f4c75f;
  background: #f4c75f;
  box-shadow: 0 0 0 3px rgba(244, 199, 95, 0.14);
}

.auth-modal.auth-modal-login .auth-legal-mark.is-checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.auth-modal.auth-modal-login .auth-login-status {
  position: static;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #75e4cf;
  font-size: 13px;
  text-align: center;
  pointer-events: none;
}

.auth-modal.auth-modal-login .auth-login-status:empty,
.auth-modal.auth-modal-login .auth-profile-status {
  display: none;
}

.auth-modal.auth-modal-login .auth-login-status:not(:empty) {
  display: block;
  padding: 8px 14px;
  border: 1px solid rgba(90, 209, 187, 0.2);
  border-radius: 10px;
  background: rgba(4, 22, 27, 0.92);
}

@keyframes auth-announcement-border-flow {
  to { transform: rotate(360deg); }
}

@keyframes auth-speaker-breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.84; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes auth-speaker-wave {
  0% { stroke-dashoffset: 24; opacity: 0; }
  28% { opacity: 1; }
  68% { stroke-dashoffset: 0; opacity: 0.9; }
  100% { stroke-dashoffset: -24; opacity: 0; }
}

@keyframes auth-speaker-particle {
  0%, 100% { transform: scale(0.5); opacity: 0.2; }
  50% { transform: scale(1.5); opacity: 1; }
}

@media (max-width: 1100px) {
  .home-launch-announcement__rail {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .home-launch-announcement .auth-announcement-divider,
  .home-launch-announcement p {
    display: none;
  }

  .home-launch-announcement strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 980px) {
  .auth-modal.auth-modal-login .auth-panel {
    width: min(760px, calc(100vw - 32px));
  }

  .auth-modal.auth-modal-login .auth-login-view {
    padding-top: 76px;
  }

  .auth-modal.auth-modal-login .auth-login-announcement {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    margin: 0 30px;
    padding: 12px 20px;
  }

  .auth-modal.auth-modal-login .auth-announcement-divider,
  .auth-modal.auth-modal-login .auth-login-announcement p {
    display: none;
  }

  .auth-modal.auth-modal-login .auth-login-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 38px 42px 30px;
  }

  .auth-modal.auth-modal-login .auth-login-primary {
    padding: 0;
  }

  .auth-modal.auth-modal-login .auth-other-login {
    margin-top: 34px;
    padding: 32px 0 0;
    border-top: 1px solid rgba(180, 198, 222, 0.3);
    border-left: 0;
  }

  .auth-modal.auth-modal-login .auth-social-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 14px;
  }

  .auth-modal.auth-modal-login .auth-social-heading > span {
    margin: 0;
  }

  .auth-modal.auth-modal-login .auth-social-heading p {
    grid-column: 1 / -1;
  }

  .auth-modal.auth-modal-login .auth-qq-login {
    min-height: 82px;
    margin-top: 24px;
  }

  .auth-modal.auth-modal-login .auth-qq-note {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .home-launch-announcement {
    height: 72px;
    padding: 6px 8px;
  }

  .home-launch-announcement__rail {
    min-height: 60px;
    gap: 8px;
    padding: 5px 8px 5px 10px;
    border-radius: 12px;
  }

  .home-launch-announcement__rail::after {
    border-radius: 10.5px;
  }

  .home-launch-announcement .auth-announcement-speaker {
    width: 30px;
    height: 30px;
  }

  .home-launch-announcement .auth-announcement-speaker svg {
    width: 25px;
    height: 25px;
  }

  .home-launch-announcement strong {
    font-size: 14px;
  }

  .home-launch-announcement a {
    gap: 3px;
    font-size: 12px;
  }

  .home-launch-announcement a b {
    font-size: 18px;
  }

  .home-launch-announcement__close {
    width: 32px;
    height: 32px;
    font-size: 22px;
  }

  .home-launch-announcement-open .home-fixed-header {
    top: 72px;
  }

  .auth-modal.auth-modal-login {
    align-items: flex-end;
    padding: 0;
  }

  .auth-modal.auth-modal-login .auth-panel {
    width: 100%;
    max-height: 96dvh;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 24px 24px 0 0;
  }

  .auth-modal.auth-modal-login .auth-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 29px;
  }

  .auth-modal.auth-modal-login .auth-login-view {
    min-height: 0;
    padding-top: 70px;
  }

  .auth-modal.auth-modal-login .auth-login-announcement {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 64px;
    margin: 0 14px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  .auth-modal.auth-modal-login .auth-announcement-speaker {
    width: 38px;
    height: 38px;
  }

  .auth-modal.auth-modal-login .auth-announcement-speaker svg {
    width: 31px;
    height: 31px;
  }

  .auth-modal.auth-modal-login .auth-login-announcement strong {
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .auth-modal.auth-modal-login .auth-login-announcement a {
    grid-column: 2;
    margin-top: -8px;
    font-size: 12px;
  }

  .auth-modal.auth-modal-login .auth-login-announcement a b {
    font-size: 20px;
  }

  .auth-modal.auth-modal-login .auth-login-layout {
    padding: 28px 20px 24px;
  }

  .auth-modal.auth-modal-login .auth-login-section-head h3,
  .auth-modal.auth-modal-login .auth-social-heading h3 {
    font-size: 24px;
  }

  .auth-modal.auth-modal-login .auth-login-section-head p,
  .auth-modal.auth-modal-login .auth-social-heading p {
    font-size: 14px;
  }

  .auth-modal.auth-modal-login .auth-method-tabs {
    margin: 22px 0 20px;
  }

  .auth-modal.auth-modal-login .auth-method-tabs button,
  .auth-modal.auth-modal-login .auth-input-shell,
  .auth-modal.auth-modal-login .auth-code-control > button {
    min-height: 54px;
    height: 54px;
  }

  .auth-modal.auth-modal-login .auth-code-control {
    grid-template-columns: minmax(0, 1fr) 126px;
    gap: 10px;
  }

  .auth-modal.auth-modal-login .auth-code-control > button {
    padding: 0 10px;
    font-size: 13px;
  }

  .auth-modal.auth-modal-login .auth-field-icon {
    flex-basis: 44px;
  }

  .auth-modal.auth-modal-login .auth-field input {
    font-size: 15px;
  }

  .auth-modal.auth-modal-login .auth-submit {
    min-height: 58px;
    font-size: 18px;
  }

  .auth-modal.auth-modal-login .auth-other-login {
    margin-top: 28px;
    padding-top: 26px;
  }

  .auth-modal.auth-modal-login .auth-social-heading {
    display: block;
  }

  .auth-modal.auth-modal-login .auth-social-heading > span {
    margin-bottom: 10px;
  }

  .auth-modal.auth-modal-login .auth-qq-login {
    min-height: 72px;
    gap: 16px;
    padding: 10px 16px;
  }

  .auth-modal.auth-modal-login .auth-qq-mark {
    width: 50px;
    height: 50px;
  }

  .auth-modal.auth-modal-login .auth-qq-mark img {
    width: 30px;
    height: 30px;
  }

  .auth-modal.auth-modal-login .auth-qq-login > span:not(.auth-qq-mark) {
    font-size: 17px;
  }

  .auth-modal.auth-modal-login .auth-login-footer {
    min-height: 68px;
    padding: 14px 20px;
  }

  .auth-modal.auth-modal-login .auth-login-legal {
    font-size: 12px;
    line-height: 1.65;
  }

  .auth-modal.auth-modal-login .auth-legal-mark {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .auth-modal.auth-modal-login .auth-login-status:not(:empty) {
    padding: 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-launch-announcement,
  .home-fixed-header {
    transition: none;
  }

  .home-launch-announcement__rail::before,
  .home-launch-announcement .auth-announcement-speaker svg,
  .home-launch-announcement .auth-speaker-wave,
  .home-launch-announcement .auth-announcement-speaker i {
    animation: none;
  }

  .auth-modal.auth-modal-login .auth-login-announcement::before,
  .auth-modal.auth-modal-login .auth-login-announcement::after,
  .auth-modal.auth-modal-login .auth-announcement-speaker svg,
  .auth-modal.auth-modal-login .auth-speaker-wave,
  .auth-modal.auth-modal-login .auth-announcement-speaker i {
    animation: none;
  }
}
