:root {
    --stellar-page: #f5efe4;
    --stellar-surface: #ffffff;
    --stellar-hero: #155e55;
    --stellar-hero-dark: #0d4039;
    --stellar-hero-light: #24756b;
    --stellar-text: #171717;
    --stellar-muted: #746d63;
    --stellar-white: #ffffff;
    --stellar-orange: #ff8a3d;
    --stellar-orange-dark: #dd6421;
    --stellar-mint: #77edc8;
    --stellar-yellow: #ffd46a;
    --stellar-danger: #c8324a;
    --stellar-success: #087443;
    --stellar-shadow: 0 32px 100px rgba(76, 62, 44, 0.2);
    --stellar-card-shadow: 0 28px 80px rgba(44, 36, 27, 0.16);
    --stellar-radius-xl: 42px;
    --stellar-width: 1280px;
    --stellar-transition: 220ms ease;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    min-height: 100%;
  }
  
  body {
    min-height: 100vh;
    margin: 0;
    color: var(--stellar-text);
    font-family:
      Inter,
      ui-sans-serif,
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
    background: var(--stellar-page);
  }
  
  body::selection {
    color: var(--stellar-text);
    background: var(--stellar-yellow);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  button,
  input {
    font: inherit;
  }
  
  button {
    border: 0;
    cursor: pointer;
  }
  
  .stellar-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
  }
  
  .stellar-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background:
      radial-gradient(circle at 9% 10%, rgba(255, 212, 106, 0.38), transparent 28%),
      radial-gradient(circle at 90% 13%, rgba(119, 237, 200, 0.22), transparent 28%),
      radial-gradient(circle at 52% 100%, rgba(255, 138, 61, 0.17), transparent 34%),
      linear-gradient(135deg, #fbf7ef 0%, #f5efe4 50%, #fff6e6 100%);
  }
  
  .stellar-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image:
      linear-gradient(rgba(120, 95, 67, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(120, 95, 67, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 38%, black 0%, transparent 74%);
  }
  
  .stellar-bg-orb {
    position: absolute;
    display: block;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.62;
    animation: stellarFloat 12s ease-in-out infinite alternate;
  }
  
  .stellar-bg-orb-one {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: 18%;
    background: rgba(255, 138, 61, 0.17);
  }
  
  .stellar-bg-orb-two {
    width: 260px;
    height: 260px;
    right: -100px;
    top: 8%;
    background: rgba(21, 94, 85, 0.12);
    animation-delay: -4s;
  }
  
  .stellar-bg-orb-three {
    width: 360px;
    height: 360px;
    right: 24%;
    bottom: -190px;
    background: rgba(255, 212, 106, 0.25);
    animation-delay: -8s;
  }
  
  .stellar-site-header {
    position: relative;
    z-index: 10;
    width: min(100% - 44px, var(--stellar-width));
    margin: 0 auto;
    padding: 18px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .stellar-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: min(390px, 46vw);
    min-width: 210px;
    min-height: 82px;
    color: var(--stellar-text);
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -0.055em;
  }
  
  .stellar-logo img {
    width: auto;
    max-width: 370px;
    max-height: 76px;
    object-fit: contain;
  }
  
  .stellar-logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .stellar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 44px rgba(76, 62, 44, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .stellar-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: #554e45;
    font-size: 0.9rem;
    font-weight: 820;
    border-radius: 999px;
    transition:
      color var(--stellar-transition),
      background var(--stellar-transition),
      transform var(--stellar-transition);
  }
  
  .stellar-nav a:hover {
    color: var(--stellar-text);
    background: #f5ead8;
    transform: translateY(-1px);
  }
  
  .stellar-nav a:last-child {
    color: var(--stellar-white);
    background: var(--stellar-hero);
  }
  
  .stellar-nav a:last-child:hover {
    color: var(--stellar-white);
    background: var(--stellar-orange);
  }
  
  .stellar-main {
    width: min(100% - 44px, var(--stellar-width));
    margin: 0 auto;
    flex: 1;
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 0 0 24px;
  }
  
  .stellar-register-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    gap: 0;
    overflow: hidden;
    border-radius: var(--stellar-radius-xl);
    background:
      linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
    box-shadow: var(--stellar-shadow);
    border: 10px solid rgba(255, 255, 255, 0.7);
  }
  
  .stellar-register-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: calc(var(--stellar-radius-xl) - 10px);
    box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.06);
    z-index: 5;
  }
  
  .stellar-register-hero {
    position: relative;
    min-height: 720px;
    padding: clamp(34px, 5vw, 64px);
    color: var(--stellar-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    overflow: hidden;
    background:
      radial-gradient(circle at 76% 24%, rgba(119, 237, 200, 0.22), transparent 26%),
      radial-gradient(circle at 20% 76%, rgba(255, 212, 106, 0.16), transparent 30%),
      linear-gradient(135deg, var(--stellar-hero) 0%, var(--stellar-hero-light) 54%, var(--stellar-hero-dark) 100%);
  }
  
  .stellar-register-hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    right: -380px;
    top: -330px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      inset 0 0 0 70px rgba(255, 255, 255, 0.025),
      inset 0 0 0 140px rgba(255, 255, 255, 0.018),
      inset 0 0 0 220px rgba(255, 255, 255, 0.014);
  }
  
  .stellar-register-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(90deg, black, transparent 82%);
  }
  
  .stellar-register-copy,
  .stellar-register-note {
    position: relative;
    z-index: 2;
  }
  
  .stellar-register-copy span {
    display: block;
    max-width: 100%;
    color: #ffe3c9;
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .stellar-register-copy h1 {
    margin: 16px 0 0;
    color: var(--stellar-white);
    font-size: clamp(3rem, 6vw, 6.4rem);
    line-height: 0.88;
    letter-spacing: -0.095em;
  }
  
  .stellar-register-copy p {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.02rem;
    line-height: 1.75;
  }
  
  .stellar-register-note {
    max-width: 420px;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  
  .stellar-register-note strong {
    display: block;
    font-size: 1rem;
    font-weight: 950;
  }
  
  .stellar-register-note span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  .stellar-register-card {
    position: relative;
    z-index: 2;
    padding: clamp(30px, 4vw, 52px);
    background:
      radial-gradient(circle at 94% 0%, rgba(255, 212, 106, 0.18), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.98));
  }
  
  .stellar-card-head {
    margin-bottom: 22px;
  }
  
  .stellar-card-head span {
    display: block;
    color: var(--stellar-orange-dark);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  
  .stellar-card-head h2 {
    margin: 9px 0 0;
    color: var(--stellar-text);
    font-size: clamp(2.35rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.078em;
  }
  
  .stellar-card-head p {
    margin: 12px 0 0;
    color: var(--stellar-muted);
    font-size: 0.98rem;
    line-height: 1.58;
  }
  
  .stellar-form {
    display: grid;
    gap: 15px;
  }
  
  .stellar-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  
  .stellar-field {
    display: grid;
    gap: 7px;
  }
  
  .stellar-field label {
    color: #453f38;
    font-size: 0.88rem;
    font-weight: 850;
  }
  
  .stellar-field input {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    color: var(--stellar-text);
    font-weight: 760;
    border-radius: 16px;
    border: 1px solid rgba(23, 23, 23, 0.14);
    outline: 0;
    background: #fffaf4;
    transition:
      border-color var(--stellar-transition),
      box-shadow var(--stellar-transition),
      background var(--stellar-transition),
      transform var(--stellar-transition);
  }
  
  .stellar-field input::placeholder {
    color: #aaa297;
    font-weight: 560;
  }
  
  .stellar-field input:focus {
    border-color: rgba(21, 94, 85, 0.46);
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow:
      0 0 0 4px rgba(21, 94, 85, 0.11),
      0 16px 32px rgba(76, 62, 44, 0.1);
  }
  
  .stellar-captcha {
    max-width: 100%;
    overflow-x: auto;
    padding: 12px;
    border-radius: 16px;
    background: #fffaf4;
    border: 1px solid rgba(23, 23, 23, 0.12);
  }
  
  .stellar-error-text {
    color: var(--stellar-danger);
    font-size: 0.84rem;
    font-weight: 780;
  }
  
  .stellar-alert {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.88rem;
    line-height: 1.45;
  }
  
  .stellar-alert strong {
    display: block;
    margin-bottom: 3px;
  }
  
  .stellar-alert ul {
    margin: 0;
    padding-left: 18px;
  }
  
  .stellar-alert-error {
    color: var(--stellar-danger);
    background: rgba(200, 50, 74, 0.08);
    border: 1px solid rgba(200, 50, 74, 0.18);
  }
  
  .stellar-alert-success {
    color: var(--stellar-success);
    background: rgba(8, 116, 67, 0.08);
    border: 1px solid rgba(8, 116, 67, 0.18);
  }
  
  .stellar-agreement {
    padding: 14px 15px;
    color: #514a42;
    font-size: 0.9rem;
    line-height: 1.58;
    border-radius: 16px;
    background: rgba(255, 212, 106, 0.16);
    border: 1px solid rgba(255, 138, 61, 0.16);
  }
  
  .stellar-agreement a {
    color: var(--stellar-orange-dark);
    font-weight: 850;
  }
  
  .stellar-submit {
    width: 100%;
    min-height: 58px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 950;
    letter-spacing: -0.015em;
    border-radius: 16px;
    background:
      linear-gradient(135deg, var(--stellar-hero-light), var(--stellar-hero-dark));
    box-shadow:
      0 20px 40px rgba(21, 94, 85, 0.25),
      inset 0 -2px 0 rgba(0, 0, 0, 0.16);
    transition:
      transform var(--stellar-transition),
      box-shadow var(--stellar-transition),
      filter var(--stellar-transition);
  }
  
  .stellar-submit:hover {
    transform: translateY(-2px);
    filter: saturate(1.05);
    box-shadow:
      0 25px 50px rgba(21, 94, 85, 0.32),
      inset 0 -2px 0 rgba(0, 0, 0, 0.16);
  }
  
  .stellar-submit:active {
    transform: translateY(0);
  }
  
  .stellar-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    color: #514a42;
    font-size: 0.92rem;
    font-weight: 760;
  }
  
  .stellar-login-link a {
    color: var(--stellar-orange-dark);
    font-weight: 900;
  }
  
  .stellar-ref-box {
    position: fixed;
    z-index: 40;
    right: 22px;
    top: 22px;
    max-width: calc(100% - 44px);
    width: 330px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 42px 14px 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(23, 23, 23, 0.08);
    box-shadow: 0 22px 60px rgba(76, 62, 44, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .stellar-ref-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 26px;
    height: 26px;
    color: #514a42;
    font-size: 1.15rem;
    line-height: 1;
    border-radius: 999px;
    background: rgba(21, 94, 85, 0.08);
  }
  
  .stellar-ref-avatar {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    overflow: hidden;
    border-radius: 999px;
    background: #fffaf4;
  }
  
  .stellar-ref-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .stellar-ref-content span,
  .stellar-ref-content strong {
    display: block;
  }
  
  .stellar-ref-content span {
    color: var(--stellar-muted);
    font-size: 0.78rem;
    font-weight: 800;
  }
  
  .stellar-ref-content strong {
    margin-top: 2px;
    color: var(--stellar-text);
    font-size: 0.98rem;
    font-weight: 950;
  }
  
  .stellar-ads {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  
  .stellar-ad {
    min-height: 88px;
    display: grid;
    place-items: center;
    padding: 14px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 44px rgba(76, 62, 44, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  
  .stellar-ad > * {
    max-width: 100%;
  }
  
  .stellar-footer {
    width: min(100% - 44px, var(--stellar-width));
    margin: 0 auto;
    padding: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #716b61;
    font-size: 0.88rem;
  }
  
  .stellar-footer p {
    margin: 0;
  }
  
  .stellar-footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .stellar-footer a {
    transition: color var(--stellar-transition);
  }
  
  .stellar-footer a:hover {
    color: var(--stellar-hero);
  }
  
  @keyframes stellarFloat {
    from {
      transform: translate3d(0, 0, 0) scale(1);
    }
  
    to {
      transform: translate3d(16px, -18px, 0) scale(1.05);
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 1ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 1ms !important;
    }
  }
  
  @media (max-width: 1120px) {
    .stellar-register-shell {
      grid-template-columns: 1fr;
    }
  
    .stellar-register-hero {
      min-height: auto;
    }
  
    .stellar-register-copy h1 {
      font-size: clamp(3rem, 10vw, 5.2rem);
    }
  
    .stellar-register-note {
      max-width: 100%;
    }
  }
  
  @media (max-width: 820px) {
    .stellar-site-header,
    .stellar-main,
    .stellar-footer {
      width: min(100% - 24px, var(--stellar-width));
    }
  
    .stellar-site-header {
      align-items: flex-start;
      flex-direction: column;
      padding-top: 14px;
    }
  
    .stellar-logo {
      width: min(100%, 350px);
      min-height: 74px;
    }
  
    .stellar-logo img {
      max-width: 330px;
      max-height: 68px;
    }
  
    .stellar-nav {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-radius: 22px;
    }
  
    .stellar-nav a {
      min-height: 40px;
      padding: 0 8px;
      font-size: 0.8rem;
    }
  
    .stellar-register-shell {
      border-width: 6px;
      border-radius: 30px;
    }
  
    .stellar-register-hero {
      padding: 30px 20px;
    }
  
    .stellar-register-card {
      padding: 30px 22px;
    }
  
    .stellar-form-grid {
      grid-template-columns: 1fr;
    }
  
    .stellar-ads {
      grid-template-columns: 1fr;
    }
  
    .stellar-footer {
      justify-content: center;
      text-align: center;
    }
  
    .stellar-footer-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 520px) {
    .stellar-logo {
      min-width: 0;
      min-height: 66px;
    }
  
    .stellar-logo img {
      max-width: 280px;
      max-height: 60px;
    }
  
    .stellar-nav {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .stellar-register-copy h1 {
      font-size: clamp(2.8rem, 15vw, 4.4rem);
    }
  
    .stellar-card-head h2 {
      font-size: 2.35rem;
    }
  
    .stellar-field input,
    .stellar-submit {
      height: 54px;
      min-height: 54px;
    }
  
    .stellar-login-link {
      justify-content: flex-start;
    }
  
    .g-recaptcha {
      transform: scale(0.84);
      transform-origin: 0 0;
    }
  }

  .stellar-verification-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  }
  
  .stellar-verification-shell .stellar-register-hero {
    min-height: 620px;
  }
  
  .stellar-verification-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .stellar-verification-card .stellar-form {
    max-width: 520px;
  }
  
  @media (max-width: 1120px) {
    .stellar-verification-shell {
      grid-template-columns: 1fr;
    }
  
    .stellar-verification-shell .stellar-register-hero {
      min-height: auto;
    }
  
    .stellar-verification-card .stellar-form {
      max-width: none;
    }
  }