:root {
  --bg: #060b15;
  --bg-deep: #030713;
  --panel: #101929;
  --panel-2: #121d30;
  --panel-3: #17233a;
  --border: #273552;
  --border-soft: rgba(132, 104, 255, .22);
  --text: #f6f7ff;
  --muted: #aeb9d3;
  --muted-2: #7f8ca8;
  --purple: #9b5cff;
  --purple-2: #c078ff;
  --green: #b9ff35;
  --green-2: #94e51e;
  --danger: #ff5f7a;
  --shadow-purple: 0 0 26px rgba(155, 92, 255, .42);
  --shadow-green: 0 0 28px rgba(185, 255, 53, .24);
  --radius: 18px;
  --radius-sm: 12px;
  --topbar-height: 78px;
  --sidebar-width: 304px;
  --right-width: 390px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-deep);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 84% 6%, rgba(155, 92, 255, .12), transparent 22rem),
    radial-gradient(circle at 8% 9%, rgba(185, 255, 53, .09), transparent 20rem),
    linear-gradient(180deg, #070c17 0%, #050a14 100%);
  font-size: 16px;
}

body.font-small {
  font-size: 15px;
}

body.font-large {
  font-size: 17px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.nova-app {
  min-height: 100vh;
}

.nova-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: var(--topbar-height);
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(360px, 680px) 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  background: rgba(6, 10, 21, .92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.nova-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  border: 3px solid var(--green);
  border-radius: 999px;
  transform: rotate(-23deg);
  box-shadow: 0 0 22px rgba(185, 255, 53, .35);
}

.nova-brand-mark::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -8px;
  width: 52px;
  height: 3px;
  background: var(--green);
  border-radius: 20px;
}

.nova-search {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid #2b3858;
  border-radius: 14px;
  background: #11182d;
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02);
}

.nova-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.nova-search kbd {
  padding: 5px 9px;
  border: 1px solid #2a3450;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
}

.nova-top-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.nova-create,
.nova-top-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 12px;
  border: 2px solid var(--purple);
  background: rgba(32, 21, 57, .68);
  color: #d6b8ff;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(155, 92, 255, .2);
}

.nova-create {
  min-width: 118px;
}

.nova-top-icon {
  width: 42px;
  border-width: 0;
  background: transparent;
  color: var(--text);
  font-size: 24px;
}

.nova-top-icon b {
  position: absolute;
  top: 4px;
  right: 0;
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
}

.nova-profile-chip {
  display: inline-flex;
}

.nova-sidebar {
  position: fixed;
  top: var(--topbar-height);
  bottom: 0;
  left: 0;
  width: var(--sidebar-width);
  padding: 24px 20px;
  background: rgba(7, 11, 25, .86);
  border-right: 1px solid var(--border);
  overflow-y: auto;
}

.nova-nav {
  display: grid;
  gap: 8px;
}

.nova-nav-link {
  position: relative;
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #e7eaff;
  font-weight: 800;
}

.nova-nav-link.is-active {
  border-color: var(--purple);
  background: linear-gradient(90deg, rgba(185, 255, 53, .13), rgba(155, 92, 255, .25));
  box-shadow: var(--shadow-purple), inset 3px 0 0 var(--green);
}

.nova-nav-icon {
  font-size: 20px;
  text-align: center;
}

.nova-nav-badge {
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 13px;
}

.nova-sidebar-section {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.nova-section-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--purple-2);
  font-weight: 900;
}

.nova-mini-list {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.nova-mini-community {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 11px;
}

.nova-mini-art,
.nova-game-art,
.nova-community-art,
.nova-post-visual,
.nova-banner-strip,
.nova-profile-banner,
.nova-hero-art {
  background:
    radial-gradient(circle at 25% 25%, rgba(185, 255, 53, .45), transparent 22%),
    radial-gradient(circle at 70% 40%, rgba(155, 92, 255, .5), transparent 33%),
    linear-gradient(135deg, #18283d, #101728 50%, #2b1b55);
}

.nova-mini-art {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.nova-mini-community b,
.nova-mini-community em {
  display: block;
}

.nova-mini-community em {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: .82em;
  font-style: normal;
}

.nova-page {
  min-height: 100vh;
  padding-top: var(--topbar-height);
  padding-left: var(--sidebar-width);
}

.nova-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) var(--right-width);
  gap: 28px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 24px 26px 60px;
}

.nova-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.nova-right {
  display: grid;
  align-content: start;
  gap: 18px;
}

.nova-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19, 29, 47, .96), rgba(13, 21, 36, .96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.nova-glow-card {
  border-color: rgba(185, 255, 53, .55);
  box-shadow: var(--shadow-green), 0 24px 60px rgba(0, 0, 0, .35);
}

.nova-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.nova-card-head h2,
.nova-card-head h3 {
  margin: 0;
}

.nova-card-head a,
.nova-card-head span {
  color: var(--purple-2);
  font-weight: 800;
}

.nova-page-title {
  padding: 8px 2px 0;
}

.nova-page-title h1 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: -.04em;
}

.nova-page-title p {
  margin: 0;
  color: #b9c5e0;
}

.nova-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nova-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
}

.nova-button-primary {
  color: #132006;
  background: linear-gradient(180deg, var(--green), var(--green-2));
  box-shadow: 0 0 26px rgba(185, 255, 53, .36);
}

.nova-button-secondary {
  color: #ddbfff;
  background: rgba(36, 24, 62, .42);
  border-color: var(--purple);
}

.nova-button-full {
  width: 100%;
}

.nova-avatar {
  width: 54px;
  height: 54px;
  flex: none;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .18);
  background:
    radial-gradient(circle at 28% 25%, #ffe39a, transparent 28%),
    linear-gradient(135deg, #ffb87c, #925cff 68%, #6d4af2);
  background-size: cover;
  color: #150826;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(155, 92, 255, .48);
}

.nova-avatar-small {
  width: 42px;
  height: 42px;
}

.nova-avatar-tiny {
  width: 38px;
  height: 38px;
}

.nova-avatar-large {
  width: 78px;
  height: 78px;
}

.nova-avatar-huge {
  width: 140px;
  height: 140px;
  font-size: 48px;
}

.nova-muted {
  color: var(--muted);
  font-size: .92em;
}

.nova-error-box {
  padding: 14px 16px;
  border: 1px solid rgba(255, 95, 122, .4);
  border-radius: var(--radius-sm);
  background: rgba(255, 95, 122, .1);
  color: #ffb8c4;
}

.nova-composer {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 22px;
}

.nova-composer textarea {
  width: 100%;
  min-height: 88px;
  resize: vertical;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 20px;
}

.nova-composer-actions,
.nova-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nova-composer-actions select,
.nova-inline-form input,
.nova-inline-form select,
.nova-message-list input,
.nova-chat-input input,
.nova-form-card input,
.nova-form-card textarea,
.nova-form-card select,
.nova-auth-card input {
  min-height: 44px;
  border: 1px solid #2a3858;
  border-radius: 10px;
  padding: 0 13px;
  color: var(--text);
  background: #0b1221;
  outline: 0;
}

.nova-form-card textarea {
  min-height: 98px;
  padding-top: 12px;
}

.nova-feed-list,
.nova-list-stack {
  display: grid;
  gap: 16px;
}

.nova-post-card {
  padding: 16px;
}

.nova-post-head {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 13px;
}

.nova-post-name {
  font-weight: 900;
}

.nova-icon-button {
  border: 0;
  background: transparent;
  color: var(--muted);
}

.nova-post-text {
  margin: 14px 4px;
  line-height: 1.45;
  color: #dfe7ff;
}

.nova-post-image,
.nova-post-visual {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.nova-post-visual {
  position: relative;
  overflow: hidden;
}

.nova-post-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 70%, rgba(255, 184, 124, .34), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(185, 255, 53, .25), transparent 20%),
    linear-gradient(160deg, rgba(155, 92, 255, .25), transparent);
}

.nova-post-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.nova-post-actions button {
  width: 100%;
  min-height: 36px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-weight: 750;
}

.nova-empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

.nova-empty h2,
.nova-empty p {
  margin: 0;
}

.nova-empty h2 {
  color: var(--text);
}

.nova-empty-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 255, 53, .65);
  border-radius: 16px;
  color: var(--green);
  background: rgba(185, 255, 53, .08);
  box-shadow: var(--shadow-green);
}

.nova-profile-summary {
  overflow: hidden;
}

.nova-banner-strip {
  height: 90px;
}

.nova-profile-summary-body {
  padding: 0 22px 22px;
}

.nova-profile-summary .nova-avatar {
  margin-top: -42px;
}

.nova-profile-summary h3 {
  margin: 10px 0 6px;
  font-size: 23px;
}

.nova-profile-summary p {
  min-height: 40px;
  margin: 0 0 20px;
  color: #b9c5e0;
}

.nova-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 18px;
}

.nova-stats span,
.nova-profile-stats span {
  display: grid;
  gap: 3px;
  place-items: center;
  color: #b9c5e0;
  border-right: 1px solid var(--border);
}

.nova-stats span:last-child,
.nova-profile-stats span:last-child {
  border-right: 0;
}

.nova-stats b,
.nova-profile-stats b {
  color: var(--text);
  font-size: 21px;
}

.nova-side-card {
  padding: 18px;
}

.nova-side-row,
.nova-notification-row,
.nova-request-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(39, 53, 82, .72);
}

.nova-side-row:last-child,
.nova-notification-row:last-child,
.nova-request-row:last-child {
  border-bottom: 0;
}

.nova-side-row b,
.nova-side-row em,
.nova-notification-row b,
.nova-notification-row em,
.nova-request-row b,
.nova-request-row em {
  display: block;
}

.nova-side-row em,
.nova-notification-row em,
.nova-request-row em {
  margin-top: 2px;
  color: var(--muted);
  font-size: .86em;
  font-style: normal;
}

.nova-side-row i {
  color: var(--green);
  font-style: normal;
}

.nova-side-dot {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(155, 92, 255, .18);
  color: var(--green);
}

.nova-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.nova-filter-row button,
.nova-bookmark-tabs button {
  min-height: 45px;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #d8e0fb;
  background: var(--panel);
  font-weight: 900;
}

.nova-filter-row .is-active,
.nova-bookmark-tabs .is-active {
  border-color: var(--green);
  background: rgba(185, 255, 53, .08);
  box-shadow: var(--shadow-green);
}

.nova-section-card {
  padding: 16px;
}

.nova-community-grid,
.nova-game-grid,
.nova-user-grid,
.nova-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.nova-game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nova-post-grid .nova-post-card {
  min-width: 0;
}

.nova-community-card,
.nova-game-card,
.nova-user-card {
  overflow: hidden;
  padding: 12px;
}

.nova-game-art,
.nova-community-art {
  height: 130px;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.nova-game-card h3,
.nova-community-card h3,
.nova-user-card h3 {
  margin: 13px 0 8px;
  font-size: 18px;
}

.nova-game-card p,
.nova-community-card p,
.nova-user-card p {
  min-height: 48px;
  margin: 0 0 12px;
  color: #b9c5e0;
  line-height: 1.35;
}

.nova-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.nova-tags span,
.nova-joined-pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(155, 92, 255, .18);
  color: #c9b6ff;
  font-size: .82em;
  font-weight: 800;
}

.nova-joined-pill {
  background: rgba(185, 255, 53, .14);
  color: var(--green);
}

.nova-create-panel .nova-inline-form {
  display: grid;
  grid-template-columns: 1fr 190px 1.4fr auto;
  gap: 10px;
}

.nova-community-hero,
.nova-profile-hero {
  overflow: hidden;
}

.nova-hero-art,
.nova-profile-banner {
  height: 190px;
}

.nova-game-hero-art {
  background:
    radial-gradient(circle at 30% 35%, rgba(185, 255, 53, .3), transparent 18%),
    radial-gradient(circle at 70% 48%, rgba(255, 184, 124, .28), transparent 22%),
    linear-gradient(135deg, #23324e, #101728, #2b1b55);
}

.nova-hero-body,
.nova-profile-core {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.nova-hero-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(185, 255, 53, .14);
  border: 1px solid rgba(185, 255, 53, .3);
  font-size: 38px;
}

.nova-hero-body h1,
.nova-profile-core h1 {
  margin: 0 0 6px;
  font-size: 30px;
}

.nova-hero-body p,
.nova-profile-core p {
  margin: 0 0 8px;
  color: #c4cee7;
}

.nova-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .02);
}

.nova-tabs span {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 850;
  border-right: 1px solid var(--border);
}

.nova-tabs span:last-child {
  border-right: 0;
}

.nova-tabs .is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(155, 92, 255, .85), rgba(155, 92, 255, .62));
}

.nova-tabs-wide {
  margin: 0 0 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.nova-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nova-request-row form {
  margin: 0;
}

.nova-message-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 16px;
  min-height: 590px;
}

.nova-message-list,
.nova-chat-panel {
  padding: 16px;
}

.nova-message-list {
  display: grid;
  align-content: start;
  gap: 14px;
}

.nova-chat-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.nova-chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.nova-notification-row {
  grid-template-columns: auto 1fr auto;
  padding: 14px 6px;
}

.nova-notification-row.is-unread {
  background: rgba(155, 92, 255, .08);
  border-radius: 12px;
}

.nova-notification-row i {
  color: var(--muted-2);
  font-size: .85em;
  font-style: normal;
}

.nova-bookmark-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nova-bookmark-tabs button {
  min-width: 138px;
  min-height: 72px;
}

.nova-profile-core {
  margin-top: -64px;
  align-items: end;
}

.nova-profile-core .nova-avatar {
  margin-left: 6px;
}

.nova-profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 74px;
}

.nova-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nova-form-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.nova-form-card h2 {
  margin: 0 0 8px;
}

.nova-form-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.nova-auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.nova-auth-card {
  width: min(460px, 100%);
  display: grid;
  gap: 15px;
  padding: 26px;
}

.nova-auth-card h1 {
  margin: 0;
}

.nova-auth-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1320px) {
  :root {
    --right-width: 330px;
    --sidebar-width: 270px;
  }

  .nova-game-grid,
  .nova-community-grid,
  .nova-user-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .nova-topbar {
    grid-template-columns: 1fr auto;
  }

  .nova-search {
    display: none;
  }

  .nova-sidebar {
    width: 84px;
    padding: 18px 12px;
  }

  .nova-nav-link {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0;
  }

  .nova-nav-link span:nth-child(2),
  .nova-sidebar-section {
    display: none;
  }

  .nova-page {
    padding-left: 84px;
  }

  .nova-grid {
    grid-template-columns: 1fr;
  }

  .nova-right {
    display: none;
  }
}

@media (max-width: 760px) {
  .nova-topbar {
    padding: 0 14px;
  }

  .nova-brand span:last-child,
  .nova-create {
    display: none;
  }

  .nova-page {
    padding-left: 0;
  }

  .nova-sidebar {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    height: 72px;
    display: flex;
    padding: 8px;
    border-top: 1px solid var(--border);
    border-right: 0;
  }

  .nova-nav {
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
  }

  .nova-nav-link:nth-child(n+6) {
    display: none;
  }

  .nova-grid {
    padding: 18px 12px 92px;
  }

  .nova-composer,
  .nova-hero-body,
  .nova-profile-core,
  .nova-message-layout,
  .nova-two-column,
  .nova-form-grid,
  .nova-create-panel .nova-inline-form {
    grid-template-columns: 1fr;
  }

  .nova-community-grid,
  .nova-game-grid,
  .nova-user-grid,
  .nova-post-grid {
    grid-template-columns: 1fr;
  }
}

.nova-success-box {
  padding: 14px 16px;
  border: 1px solid rgba(185, 255, 53, .45);
  border-radius: var(--radius-sm);
  background: rgba(185, 255, 53, .1);
  color: #dfffad;
}

.nova-settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nova-settings-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.nova-settings-card h2 {
  margin: 0 0 10px;
}

.nova-settings-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.nova-settings-card input,
.nova-settings-card textarea,
.nova-settings-card select {
  min-height: 44px;
  width: 100%;
  border: 1px solid #2a3858;
  border-radius: 10px;
  padding: 0 13px;
  color: var(--text);
  background: #0b1221;
  outline: 0;
}

.nova-settings-card textarea {
  min-height: 96px;
  padding-top: 12px;
}

.nova-toggle-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.nova-toggle-row input {
  width: auto;
  min-height: auto;
}

.nova-settings-save {
  grid-column: 2;
  justify-self: end;
  min-width: 230px;
}

.nova-auth-page {
  grid-template-columns: minmax(380px, 1fr) minmax(360px, 520px);
  gap: 28px;
  background:
    radial-gradient(circle at 25% 40%, rgba(185, 255, 53, .15), transparent 20rem),
    radial-gradient(circle at 70% 18%, rgba(155, 92, 255, .2), transparent 24rem),
    var(--bg-deep);
}

.nova-auth-art,
.nova-auth-panel {
  width: 100%;
}

.nova-auth-glass {
  min-height: 540px;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 44px;
  border: 1px solid rgba(185, 255, 53, .36);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 30%, rgba(185, 255, 53, .18), transparent 11rem),
    radial-gradient(circle at 75% 65%, rgba(155, 92, 255, .22), transparent 16rem),
    rgba(16, 25, 41, .72);
  box-shadow: var(--shadow-green);
}

.nova-auth-glass h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(38px, 5vw, 74px);
  line-height: .96;
  letter-spacing: -.07em;
}

.nova-auth-glass p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.nova-auth-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nova-auth-preview span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(155, 92, 255, .13);
  color: #d7c5ff;
  font-weight: 850;
}

.nova-auth-card .nova-brand {
  font-size: 25px;
}

.nova-auth-card p {
  margin: 0;
  color: var(--muted);
}

.nova-form {
  display: grid;
  gap: 14px;
}

.nova-auth-switch a {
  color: var(--purple-2);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nova-auth-page,
  .nova-settings-grid {
    grid-template-columns: 1fr;
  }

  .nova-auth-art {
    display: none;
  }

  .nova-settings-save {
    grid-column: auto;
    justify-self: stretch;
  }
}
