:root {
  --nova-bg: #04060b;
  --nova-bg-deep: #020308;
  --nova-surface: rgba(10, 14, 22, 0.92);
  --nova-surface-strong: rgba(14, 20, 30, 0.98);
  --nova-line: rgba(247, 194, 109, 0.28);
  --nova-glow: #f7c26d;
  --nova-arcane: #32f2cf;
  --nova-ember: #ff6b3d;
  --nova-text: #f5f0e6;
  --nova-muted: #a7a194;
  --nova-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  --nova-radius: 20px;
  --nova-radius-sm: 12px;
  --nova-font-body: "Albertus-Medium-Regular", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --nova-font-display: "Albertus-Bold", "Albertus-Medium-Regular", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

img[src*="/assets/tournament_nova/images/"] {
  display: none;
}

body.nova-no-images img,
body.nova-no-images input[type="image"] {
  display: none !important;
}

body.nova-no-images img.nova-captcha,
body.nova-no-images img.nova-allow-image,
body.nova-no-images input[type="image"].nova-allow-image {
  display: inline-block !important;
}

body.nova-no-images [style*="background:url"],
body.nova-no-images [style*="background-image"] {
  background-image: none !important;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-c {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flex-s {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-s-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-c-c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

body.nova {
  background:
    radial-gradient(circle at 20% 12%, rgba(50, 242, 207, 0.22), transparent 45%),
    radial-gradient(circle at 78% 8%, rgba(247, 194, 109, 0.26), transparent 48%),
    radial-gradient(circle at 50% 88%, rgba(68, 116, 196, 0.18), transparent 55%),
    linear-gradient(180deg, #0a0f18 0%, #06080f 58%, #04060b 100%);
  color: var(--nova-text);
  font-family: var(--nova-font-body);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 84px;
  position: relative;
}

body.nova::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(247, 194, 109, 0.2) 1px, transparent 1px),
    radial-gradient(rgba(50, 242, 207, 0.14) 1px, transparent 1px),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 18px);
  background-size: 160px 160px, 220px 220px, 200px 200px;
  background-position: 0 0, 120px 40px, 0 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

body.nova::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    conic-gradient(from 180deg at 50% 8%, rgba(247, 194, 109, 0.22), transparent 35%, rgba(50, 242, 207, 0.24), transparent 60%, rgba(247, 194, 109, 0.18)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  animation: novaAurora 18s ease-in-out infinite alternate;
}

@keyframes novaAurora {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(3deg); }
}

.nova-section,
.nova-panel,
.dmn-content,
.block-widget-1,
.widget-fon-discussions,
.footer {
  animation: novaReveal 0.9s ease both;
}

@keyframes novaReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.nova::after {
    animation: none;
  }

  .nova-section,
  .nova-panel,
  .dmn-content,
  .block-widget-1,
  .widget-fon-discussions,
  .footer {
    animation: none;
  }
}

h1, h2, h3, h4 {
  color: var(--nova-text);
  font-family: var(--nova-font-display);
  letter-spacing: 0.08em;
}

p {
  color: var(--nova-text);
}

a {
  color: var(--nova-text);
}

a:hover {
  color: var(--nova-glow);
}

.wrapper {
  max-width: 1280px;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}

main.content {
  position: relative;
  z-index: 1;
}

.topPanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(7, 10, 15, 0.88);
  border-bottom: 1px solid rgba(245, 162, 58, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.topPanel-wrapper {
  max-width: 1280px;
  padding: 14px 22px;
}

.topPanel-wrapper_left {
  gap: 14px;
}

.topPanel-wrapper_right {
  gap: 12px;
}

.menu {
  gap: 6px;
  margin: 0;
}

.menu a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  text-shadow: none;
}

.menu .active a,
.menu a:hover {
  color: #121418;
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  border-color: rgba(245, 162, 58, 0.6);
  border-top-width: 1px;
  text-shadow: none;
}

.button-btn span {
  background: var(--nova-glow);
}

.button-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(245, 162, 58, 0.4);
  background: rgba(10, 14, 20, 0.9);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.button-btn span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sign-in {
  color: var(--nova-glow);
  text-transform: uppercase;
  margin: 0 10px 0 0;
}

.main-item,
.main-item-account {
  color: var(--nova-text);
}

.topPanel-wrapper_right span {
  color: var(--nova-muted);
  margin: 0;
  text-transform: uppercase;
}

.logo {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
  left: 0;
  top: 0;
}

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand-logo__main {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f6e2b4;
  text-shadow: 0 0 20px rgba(245, 162, 58, 0.4), 0 18px 40px rgba(0, 0, 0, 0.7);
  position: relative;
}

.brand-logo__main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 60%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(47, 231, 195, 0.8), transparent);
  box-shadow: 0 0 16px rgba(47, 231, 195, 0.6);
}

.brand-logo__accent {
  color: var(--nova-arcane);
  text-shadow: 0 0 20px rgba(47, 231, 195, 0.7);
}

.brand-logo__sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

.brand-logo--footer .brand-logo__main {
  font-size: 22px;
  letter-spacing: 0.18em;
}

.brand-logo--footer .brand-logo__main::after {
  display: none;
}

.brand-logo--footer .brand-logo__sub {
  font-size: 10px;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(47, 231, 195, 0.4);
  background: rgba(11, 16, 24, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.logo-mini {
  display: none;
}

.brand-mini__core {
  font-family: var(--nova-font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--nova-arcane);
}

header {
  height: auto;
  min-height: 640px;
  padding: 120px 0 70px;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  inset: -50px -20px auto -20px;
  height: 360px;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 162, 58, 0.28), transparent 65%),
    radial-gradient(circle at 18% 50%, rgba(47, 231, 195, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(6, 8, 12, 0.9), transparent);
  pointer-events: none;
  z-index: 0;
}

.ani,
.sparks2 {
  display: none;
}

.headerBlock {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  z-index: 1;
}

.headerButtons {
  gap: 16px;
  flex-wrap: wrap;
}

.radial-stat {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.25);
  border-radius: var(--nova-radius);
  box-shadow: var(--nova-shadow);
  padding: 18px 16px 22px;
  width: 200px;
  height: auto;
  margin-right: 0;
}

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

.serverInfo__online {
  color: var(--nova-arcane);
  font-weight: 700;
}

.serverInfo__offline {
  color: var(--nova-ember);
  font-weight: 700;
}

#timers {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.25);
  border-radius: var(--nova-radius);
  padding: 16px;
  box-shadow: var(--nova-shadow);
}

#timer_div_title {
  color: var(--nova-glow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#timer_div_time .timmer_inner_block {
  background: rgba(16, 22, 32, 0.96);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius-sm);
}

.download-buttons {
  position: relative;
  right: auto;
  bottom: auto;
}

.h-button {
  width: auto;
  height: auto;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  border: 1px solid rgba(245, 162, 58, 0.6);
  box-shadow: var(--nova-shadow);
}

.h-button p {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: #15171c;
}

.nova-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: stretch;
  margin-top: -40px;
}

.nova-hero__copy {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.22);
  border-radius: var(--nova-radius);
  padding: 32px;
  box-shadow: var(--nova-shadow);
}

.nova-hero__eyebrow {
  color: var(--nova-arcane);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.nova-hero__title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--nova-font-display);
}

.nova-hero__lead {
  color: var(--nova-muted);
  margin-bottom: 22px;
}

.nova-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.nova-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  background: rgba(16, 22, 32, 0.9);
  color: var(--nova-text);
  text-decoration: none;
}

.nova-btn--primary {
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.98), rgba(187, 110, 23, 0.98));
  color: #14161c;
  border-color: rgba(245, 162, 58, 0.6);
}

.nova-btn--ghost {
  background: transparent;
  border-color: rgba(245, 162, 58, 0.35);
}

.nova-btn:hover {
  filter: brightness(1.05);
}

.nova-hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.nova-meta {
  background: rgba(10, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--nova-radius-sm);
  padding: 12px 14px;
}

.nova-meta__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--nova-muted);
  margin-bottom: 6px;
}

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

.nova-hero__media {
  display: grid;
  gap: 16px;
}

.nova-video {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius);
  padding: 16px;
  box-shadow: var(--nova-shadow);
}

.nova-video iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--nova-radius-sm);
  display: block;
}

.nova-hero__cards {
  display: grid;
  gap: 12px;
}

.nova-card {
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--nova-radius-sm);
  padding: 14px 16px;
}

.nova-card__title {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--nova-glow);
  margin-bottom: 6px;
}

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

.nova-section {
  margin-top: 70px;
}

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

.nova-section__title {
  margin: 0;
  text-transform: uppercase;
}

.nova-section__subtitle {
  margin: 6px 0 0;
  color: var(--nova-muted);
}

.nova-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr);
  gap: 20px;
}

.nova-news__primary {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius);
  padding: 24px;
  box-shadow: var(--nova-shadow);
}

.nova-news__secondary {
  display: grid;
  gap: 16px;
}

.nova-panel {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.18);
  border-radius: var(--nova-radius);
  padding: 20px;
  box-shadow: var(--nova-shadow);
}

.nova-panel--accent {
  background: linear-gradient(160deg, rgba(18, 26, 38, 0.95), rgba(12, 18, 28, 0.95));
  border-color: rgba(47, 231, 195, 0.3);
}

.nova-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.nova-link-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.nova-link-list li {
  margin-bottom: 8px;
}

.nova-link-list a {
  color: var(--nova-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 162, 58, 0.2);
}

.nova-link-list a:hover {
  color: var(--nova-glow);
}

.news-top-title {
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.news-top-title span {
  color: var(--nova-muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(16, 22, 32, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
}

.news-top-title span.active {
  color: #16181d;
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  border-color: rgba(245, 162, 58, 0.6);
}

.pp {
  display: none;
}

.newsContent {
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--nova-radius-sm);
  padding: 12px 14px;
  margin-bottom: 12px;
  gap: 12px;
  justify-content: flex-start;
}

.newsContent_info span {
  color: var(--nova-glow);
}

.newsContent_info-link {
  color: var(--nova-text);
}

.newsContent_info-text {
  color: var(--nova-muted);
}

.blue-a {
  position: static;
  display: inline-block;
  margin-top: 8px;
  background: none;
  box-shadow: none;
  width: auto;
  height: auto;
  padding: 0;
  color: var(--nova-glow);
}

.newsContent:hover {
  background: rgba(16, 22, 32, 0.95);
  margin: 0 0 12px 0;
  box-shadow: none;
}

.newsContent:hover .newsContent_info,
.newsContent_info {
  width: auto;
  margin-left: 0;
}

.newsContent_img img {
  padding-left: 0;
  display: none;
}

.newsContent,
.discussionsContent {
  display: flex;
  align-items: center;
}

.newsContent_img,
.discussionsContent_img {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.nova-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  position: relative;
  background: linear-gradient(145deg, rgba(245, 162, 58, 0.2), rgba(47, 231, 195, 0.3));
  border: 1px solid rgba(245, 162, 58, 0.3);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.nova-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  border: 1px solid rgba(47, 231, 195, 0.5);
}

.nova-icon--news::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nova-glow);
  top: 9px;
  left: 9px;
  box-shadow: 0 0 12px rgba(245, 162, 58, 0.7);
}

.nova-icon--forum::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  border-radius: 4px;
  border: 1px solid rgba(47, 231, 195, 0.7);
  top: 12px;
  left: 10px;
}

.nova-crest {
  width: 72px;
  height: 72px;
  margin: 0 auto 6px;
  background: linear-gradient(150deg, rgba(47, 231, 195, 0.3), rgba(245, 162, 58, 0.4));
  border: 1px solid rgba(245, 162, 58, 0.4);
  clip-path: polygon(50% 0%, 90% 18%, 100% 50%, 90% 82%, 50% 100%, 10% 82%, 0% 50%, 10% 18%);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}

.nova-crest__text {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nova-text);
}

.nova-grid {
  display: grid;
  gap: 20px;
}

.nova-grid--rankings {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.widget-fon,
.widget-fon-guilds,
.widget-fon-discussions,
.block-players {
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius);
  padding: 20px;
  box-shadow: var(--nova-shadow);
}

.block-widget-title {
  color: var(--nova-glow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  text-align: left;
  padding-bottom: 20px;
}

.nova-accent {
  color: var(--nova-arcane);
}

.nova-grid--quick {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nova-quicklink {
  background: linear-gradient(160deg, rgba(16, 22, 32, 0.95), rgba(10, 14, 20, 0.95));
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius);
  padding: 22px;
  box-shadow: var(--nova-shadow);
  text-decoration: none;
  min-height: 140px;
}

.nova-quicklink span {
  display: block;
  color: var(--nova-text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.nova-grid--community {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.block-widget {
  width: 100%;
  height: auto;
  margin-top: 40px;
  background: none;
}

.block-widget::before,
.block-widget::after,
.block-players-1::before,
.block-players-2::before,
.fon-event::after,
.fon-market::after {
  content: none;
}

.block-widget-2 {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.block-widget-1 {
  width: 100%;
}

.discussionsContent {
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--nova-radius-sm);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.discussionsContent_info-link {
  color: var(--nova-text);
}

.discussionsContent_info-text {
  color: var(--nova-muted);
}

.event-timers li {
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--nova-radius-sm);
  padding: 10px 12px;
}

.event-timers .starts-in {
  color: var(--nova-arcane);
}

.event-timers .time-to-event {
  color: var(--nova-glow);
}

.time-start-event {
  color: var(--nova-muted);
}

.button-small {
  background: rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.3);
  color: var(--nova-text);
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  box-shadow: none;
}

.buttons-block,
.buttons-block-1 {
  position: static;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}

.button,
button:not(.dropdown-toggle):not(.btn-primary):not([name='search_item']):not([id='sell_item_show']):not(.ui-dialog-titlebar-close) {
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  border: 1px solid rgba(245, 162, 58, 0.6);
  border-radius: 999px;
  color: #14161c;
  height: 42px;
  padding: 0 22px;
  letter-spacing: 0.14em;
}

table {
  background: transparent;
}

table td,
table th {
  background: rgba(10, 14, 20, 0.95);
  border: 1px solid rgba(245, 162, 58, 0.2);
  color: var(--nova-text);
}

table thead td,
table thead th {
  color: var(--nova-glow);
  background: rgba(16, 22, 32, 0.98);
}

input:not([type='checkbox']):not([type='radio']):not([type='file']):not(.form-control):not([type='number']),
textarea,
select {
  background: rgba(10, 14, 20, 0.95);
  border: 1px solid rgba(245, 162, 58, 0.2);
  color: var(--nova-text);
  border-radius: 12px;
}

::placeholder {
  color: rgba(244, 238, 230, 0.5);
}

.form-control {
  background: rgba(10, 14, 20, 0.95);
  border: 1px solid rgba(245, 162, 58, 0.2);
  color: var(--nova-text);
  border-radius: 12px;
}

.form-control:focus {
  border-color: rgba(245, 162, 58, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(245, 162, 58, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  border: 1px solid rgba(245, 162, 58, 0.6);
  color: #14161c;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 162, 58, 0.2);
}

.dropdown-menu {
  background: rgba(10, 14, 20, 0.98);
  border: 1px solid rgba(245, 162, 58, 0.25);
  border-radius: 12px;
  padding: 8px;
}

.dropdown-menu a {
  color: var(--nova-text);
  border-radius: 10px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(245, 162, 58, 0.18);
  color: var(--nova-glow);
}

.nav-pills .nav-link {
  background: rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.2);
  color: var(--nova-muted);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 6px;
}

.nav-pills .nav-link.active {
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  color: #14161c;
  border-color: rgba(245, 162, 58, 0.6);
}

.pagination .page-link {
  background: rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.2);
  color: var(--nova-text);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.95), rgba(187, 110, 23, 0.95));
  color: #14161c;
  border-color: rgba(245, 162, 58, 0.6);
}

.alert {
  background: rgba(12, 16, 24, 0.95);
  border: 1px solid rgba(245, 162, 58, 0.25);
  color: var(--nova-text);
  border-radius: 12px;
}

.alert-primary {
  border-color: rgba(245, 162, 58, 0.35);
}

.alert-danger {
  border-color: rgba(255, 79, 46, 0.5);
}

.alert-success {
  border-color: rgba(47, 231, 195, 0.5);
}

.marketContent {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: 12px;
  margin-bottom: 10px;
}

.marketContent_img {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.marketContent_info-link {
  color: var(--nova-text);
  letter-spacing: 0.08em;
  display: block;
}

.marketContent_info-text {
  color: var(--nova-muted);
  font-size: 12px;
}

.marketContent_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 162, 58, 0.4);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
  background: rgba(245, 162, 58, 0.18);
  color: var(--nova-text);
  text-decoration: none;
}

.marketContent_number:hover {
  background: rgba(245, 162, 58, 0.3);
  color: var(--nova-glow);
}

.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 20px 0;
}

.thumbnail {
  list-style: none;
}

.thumbnail a {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(245, 162, 58, 0.2);
  background-size: cover;
  background-position: center;
  position: relative;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dmn-vault-grid-modern {
  position: relative;
  width: 320px;
  min-height: 600px;
  max-height: 600px;
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 162, 58, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(245, 162, 58, 0.08) 1px, transparent 1px),
    rgba(8, 10, 14, 0.9);
  background-size: 40px 40px;
  box-shadow: var(--nova-shadow);
}

.dmn-grid-item-modern {
  position: absolute;
  border-right: 1px solid rgba(245, 162, 58, 0.12);
  border-bottom: 1px solid rgba(245, 162, 58, 0.12);
  background-repeat: no-repeat;
  background-position: center;
}

body.nova-no-images .thumbnail a {
  background: linear-gradient(140deg, rgba(245, 162, 58, 0.2), rgba(47, 231, 195, 0.22)) !important;
}

body.nova-no-images .thumbnail a::after {
  content: "Preview";
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

body.nova-no-images .dmn-grid-item-modern {
  background-image: none !important;
  background-color: rgba(12, 16, 24, 0.85) !important;
  border: 1px solid rgba(245, 162, 58, 0.2);
}

body.nova-no-images .dmn-grid-item-modern::after {
  content: attr(data-slot);
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 9px;
  color: rgba(245, 162, 58, 0.5);
}

.hidden-block,
.hidden-block-account {
  background: rgba(10, 14, 20, 0.98);
  border: 1px solid rgba(245, 162, 58, 0.2);
  box-shadow: var(--nova-shadow);
}

.hidden-block::after {
  border-bottom-color: rgba(10, 14, 20, 0.98);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 162, 58, 0.2);
  border: 1px solid rgba(245, 162, 58, 0.4);
  color: var(--nova-text);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.lang-pill--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 162, 58, 0.2);
  color: var(--nova-muted);
}

.nova-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(245, 162, 58, 0.25);
  background: rgba(16, 22, 32, 0.8);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-muted);
  margin-left: 6px;
}

.nova-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nova-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nova-muted);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

.nova-status--online {
  border-color: rgba(47, 231, 195, 0.5);
  color: var(--nova-arcane);
  background: rgba(7, 18, 16, 0.8);
}

.nova-status--online::before {
  background: var(--nova-arcane);
  box-shadow: 0 0 8px rgba(47, 231, 195, 0.6);
}

.nova-status--offline {
  border-color: rgba(255, 79, 46, 0.45);
  color: #ff9a86;
  background: rgba(18, 8, 8, 0.8);
}

.nova-status--offline::before {
  background: #ff6a4a;
  box-shadow: 0 0 8px rgba(255, 79, 46, 0.6);
}

.nova-class-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(14, 18, 26, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.25);
  color: var(--nova-text);
  flex-shrink: 0;
}

.nova-class-badge--large {
  height: 46px;
  min-width: 88px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.nova-class-badge--dw,
.nova-class-badge--rw,
.nova-class-badge--wm,
.nova-class-badge--lr,
.nova-class-badge--su,
.nova-class-badge--ik {
  border-color: rgba(47, 231, 195, 0.5);
  color: var(--nova-arcane);
  background: rgba(8, 20, 20, 0.85);
}

.nova-class-badge--dk,
.nova-class-badge--dl,
.nova-class-badge--sl,
.nova-class-badge--gc {
  border-color: rgba(255, 79, 46, 0.55);
  color: #ff9a86;
  background: rgba(22, 10, 10, 0.85);
}

.nova-class-badge--fe,
.nova-class-badge--mg,
.nova-class-badge--rf,
.nova-class-badge--gl {
  border-color: rgba(245, 162, 58, 0.55);
  color: var(--nova-glow);
  background: rgba(20, 14, 6, 0.85);
}

.nova-guild-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nova-text);
  background: linear-gradient(135deg, rgba(245, 162, 58, 0.35), rgba(47, 231, 195, 0.25));
  border: 1px solid rgba(245, 162, 58, 0.45);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}

.nova-guild-mark--mini {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  font-size: 8px;
}

.nova-gens-crest {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-text);
  clip-path: polygon(50% 0%, 90% 18%, 100% 50%, 90% 82%, 50% 100%, 10% 82%, 0% 50%, 10% 18%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.nova-gens-crest--duprian {
  background: linear-gradient(145deg, rgba(245, 162, 58, 0.4), rgba(255, 79, 46, 0.28));
  border-color: rgba(255, 79, 46, 0.5);
}

.nova-gens-crest--vanert {
  background: linear-gradient(145deg, rgba(47, 231, 195, 0.35), rgba(68, 144, 255, 0.28));
  border-color: rgba(47, 231, 195, 0.5);
}

.nova-gens-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 26px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 16, 24, 0.9);
  color: var(--nova-text);
}

.nova-gens-badge--duprian {
  border-color: rgba(255, 79, 46, 0.5);
  color: #ff9a86;
}

.nova-gens-badge--vanert {
  border-color: rgba(47, 231, 195, 0.5);
  color: var(--nova-arcane);
}

.nova-item-sigil {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nova-text);
  background: rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.nova-item-sigil--large {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  font-size: 14px;
}

.nova-item-name {
  margin-top: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.nova-vote-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-text);
  background: linear-gradient(145deg, rgba(245, 162, 58, 0.3), rgba(47, 231, 195, 0.25));
  border: 1px solid rgba(245, 162, 58, 0.45);
  margin-right: 12px;
  flex-shrink: 0;
}

#vote-options {
  margin: 0 0 12px;
  padding: 0;
}

#vote-options li {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(245, 162, 58, 0.2);
  background: rgba(10, 14, 20, 0.9);
}

#vote-options li .btn {
  margin-left: auto;
}

#vote-options h5 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.nova-gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.nova-gear-slot {
  background: rgba(12, 16, 24, 0.9);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 74px;
}

.nova-gear-slot.is-filled {
  border-color: rgba(47, 231, 195, 0.45);
  cursor: pointer;
}

.nova-gear-slot__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--nova-muted);
  margin-bottom: 8px;
}

.nova-gear-slot__value {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--nova-text);
}

.nova-empty {
  text-align: center;
  color: var(--nova-muted);
  padding: 12px;
  border: 1px dashed rgba(245, 162, 58, 0.25);
  border-radius: 12px;
}

.nova-captcha {
  border-radius: 12px;
  border: 1px solid rgba(245, 162, 58, 0.25);
  filter: grayscale(0.4) contrast(1.1);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.45);
}

.nova-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(245, 162, 58, 0.3);
  color: var(--nova-text);
  text-decoration: none;
  background: rgba(12, 16, 24, 0.9);
  margin-right: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.nova-social:hover {
  background: rgba(245, 162, 58, 0.2);
  color: var(--nova-glow);
}

.soc-block {
  display: flex;
  align-items: center;
}

.modalx-overlay {
  background: rgba(4, 6, 10, 0.85);
}

.modal_window {
  background: var(--nova-surface-strong);
  border: 1px solid rgba(245, 162, 58, 0.35);
  border-radius: var(--nova-radius);
  padding: 48px 36px 36px;
}

.modal_window::before,
.modal_window::after {
  content: none;
}

.modal_window h3 {
  color: var(--nova-glow);
}

#overlay {
  background: rgba(4, 6, 10, 0.6);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: rgba(12, 16, 24, 0.95);
  border-bottom: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius) var(--nova-radius) 0 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nova-text);
}

.modal-header .close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(245, 162, 58, 0.3);
  display: grid;
  place-items: center;
  color: var(--nova-text);
  text-decoration: none;
}

.modal-header .close::before {
  content: "x";
  font-size: 14px;
  font-weight: 700;
}

#select_server {
  background: var(--nova-surface-strong);
  border: 1px solid rgba(245, 162, 58, 0.3);
  border-radius: var(--nova-radius);
  box-shadow: var(--nova-shadow);
  color: var(--nova-text);
}

#close_modal {
  background: rgba(245, 162, 58, 0.15);
  border: 1px solid rgba(245, 162, 58, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--nova-text);
}

#close_modal::before {
  content: "x";
  font-size: 16px;
  font-weight: 700;
}

#loading {
  background: rgba(8, 10, 14, 0.92);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius-sm);
}

.nova-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(245, 162, 58, 0.2);
  border-top-color: var(--nova-glow);
  display: inline-block;
  margin-right: 8px;
  animation: novaSpin 1s linear infinite;
}

@keyframes novaSpin {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.95), rgba(5, 7, 11, 0.98));
  color: var(--nova-text);
  margin-top: 80px;
  padding-top: 40px;
}

.footer-block-t {
  border-top: 1px solid rgba(245, 162, 58, 0.15);
  padding-top: 18px;
}

.footer-end {
  margin-top: 40px;
}

.footer-logo {
  display: flex;
  justify-content: center;
}

.templstock a {
  color: var(--nova-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.templstock a:hover {
  color: var(--nova-glow);
}

.footer-block-coperite {
  color: var(--nova-muted);
  top: 0;
}

.footer-block-coperite a {
  color: var(--nova-glow);
}

.f-menu a {
  color: var(--nova-text);
}

.f-menu a:hover {
  color: var(--nova-glow);
}


.page-content,
.dmn-content {
  width: 100%;
  margin-left: 0;
  background: var(--nova-surface);
  border: 1px solid rgba(245, 162, 58, 0.2);
  border-radius: var(--nova-radius);
  padding: 32px;
  box-shadow: var(--nova-shadow);
}

.page-content::before,
.page-content::after,
.dmn-content::before,
.dmn-content::after {
  content: none;
}

.dmn-page-title h1,
.page-top {
  color: var(--nova-glow);
  letter-spacing: 0.16em;
}

.page-text a {
  color: var(--nova-arcane);
}

.page-text a:hover {
  color: var(--nova-glow);
}

@media (max-width: 1200px) {
  .headerBlock {
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

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

  .block-widget-2 {
    grid-template-columns: 1fr;
  }

  .button-btn {
    display: flex;
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 400;
  }

  .button-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .button-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .button-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menuContent {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    padding: 90px 18px 24px;
    background: rgba(6, 8, 12, 0.98);
    border-right: 1px solid rgba(245, 162, 58, 0.2);
    transition: left 0.3s ease;
    z-index: 300;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .menuContent.active {
    left: 0;
  }

  .logo-mini {
    display: inline-flex;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .menu a {
    width: 100%;
  }
}

@media (max-width: 992px) {
  body.nova {
    padding-top: 70px;
  }

  header {
    padding: 110px 0 60px;
  }

  .topPanel-wrapper {
    padding: 12px 16px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 0 16px;
  }

  .nova-hero__copy,
  .nova-news__primary,
  .nova-panel {
    padding: 20px;
  }

  .brand-logo__main {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 1480px) {
  .menuContent {
    background: rgba(6, 8, 12, 0.97);
  }
}

/* Nova rebuild */
.topPanel {
  border-bottom: 1px solid rgba(247, 194, 109, 0.22);
  background: rgba(6, 9, 14, 0.88);
}

.topPanel::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(50, 242, 207, 0.5), transparent);
  opacity: 0.6;
}

.menu a {
  background: transparent;
  border: 1px solid transparent;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 194, 109, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu a:hover::after,
.menu .active a::after {
  opacity: 1;
}

.menu .active a,
.menu a:hover {
  color: var(--nova-glow);
  background: rgba(247, 194, 109, 0.12);
  border-color: rgba(247, 194, 109, 0.35);
}

.brand-logo__main {
  background: linear-gradient(135deg, #f7e1b2, #ffd08a);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(247, 194, 109, 0.35);
}

.brand-logo__accent {
  color: var(--nova-arcane);
  text-shadow: 0 0 18px rgba(50, 242, 207, 0.6);
}

.nova-header {
  margin-top: 24px;
  padding: 28px;
  min-height: auto;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(12, 18, 28, 0.98), rgba(8, 12, 20, 0.98));
  border: 1px solid rgba(247, 194, 109, 0.25);
  box-shadow: var(--nova-shadow);
  position: relative;
  overflow: hidden;
}

.nova-header::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(50, 242, 207, 0.15), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(247, 194, 109, 0.2), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.nova-header__core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  z-index: 1;
}

.nova-header__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nova-header .brand-logo__main {
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 0.18em;
}

.nova-header .brand-logo__sub {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--nova-muted);
}

.nova-brand__tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(50, 242, 207, 0.7);
}

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

.nova-realm-rail {
  position: relative;
  margin-top: 20px;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.nova-realm-rail__title {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 10px;
  color: var(--nova-muted);
}

.nova-realm-rail__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.nova-realm {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(247, 194, 109, 0.18);
}

.nova-realm__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.nova-realm__name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nova-realm__state {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

.nova-realm__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(247, 194, 109, 0.12);
  overflow: hidden;
  margin-bottom: 8px;
}

.nova-realm__fill {
  position: absolute;
  inset: 0;
  width: var(--nova-load);
  background: linear-gradient(90deg, rgba(50, 242, 207, 0.7), rgba(247, 194, 109, 0.9));
}

.nova-realm__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--nova-muted);
  letter-spacing: 0.08em;
}

.nova-realm--offline {
  border-color: rgba(255, 107, 61, 0.35);
}

.nova-countdown {
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(247, 194, 109, 0.25);
  background: rgba(10, 14, 22, 0.85);
}

.nova-countdown #timer_div_title {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--nova-glow);
  margin-bottom: 8px;
}

.nova-countdown #timer_div_time {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
}

.timmer_inner_block {
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(247, 194, 109, 0.2);
  padding: 8px 10px;
  background: rgba(8, 12, 18, 0.7);
}

.timmer_inner_block .title {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

.timmer_inner_block .count {
  font-size: 18px;
  color: var(--nova-text);
  font-weight: 600;
}

.nova-hero--portal {
  margin-top: 30px;
}

.nova-hero {
  display: block;
  margin-top: 24px;
}

.nova-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.nova-hero__portal {
  display: grid;
  gap: 18px;
}

.nova-kicker {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  color: var(--nova-arcane);
  margin-bottom: 12px;
}

.nova-hero__title {
  font-size: clamp(34px, 4.5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nova-hero__lead {
  color: var(--nova-muted);
  margin-bottom: 20px;
}

.nova-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.nova-stat {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(247, 194, 109, 0.2);
  background: rgba(10, 14, 22, 0.9);
}

.nova-stat__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 9px;
  color: var(--nova-muted);
  margin-bottom: 6px;
}

.nova-stat__value {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nova-hero__path {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.nova-step {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(50, 242, 207, 0.25);
  background: rgba(8, 14, 16, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nova-step__num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--nova-arcane);
}

.nova-step__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nova-portal {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  margin: 0 auto 20px;
}

.nova-portal__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(247, 194, 109, 0.3);
  animation: novaOrbit 16s linear infinite;
}

.nova-portal__ring--outer {
  inset: -8%;
  border-width: 2px;
  box-shadow: 0 0 40px rgba(247, 194, 109, 0.25);
}

.nova-portal__ring--mid {
  inset: 8%;
  border-color: rgba(50, 242, 207, 0.35);
  animation-direction: reverse;
}

.nova-portal__ring--inner {
  inset: 22%;
  border-color: rgba(255, 255, 255, 0.1);
  animation-duration: 24s;
}

.nova-portal__core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 194, 109, 0.25), rgba(10, 14, 22, 0.85));
  border: 1px solid rgba(247, 194, 109, 0.4);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 0 24px rgba(50, 242, 207, 0.2);
}

.nova-portal__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nova-portal__subtitle {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--nova-muted);
}

@keyframes novaOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nova-realm-deck {
  display: grid;
  gap: 12px;
}

.nova-realm-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(247, 194, 109, 0.22);
  background: rgba(10, 14, 22, 0.9);
}

.nova-realm-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.nova-realm-card__name {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.nova-realm-card__bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(247, 194, 109, 0.12);
  overflow: hidden;
  margin-bottom: 8px;
}

.nova-realm-card__fill {
  position: absolute;
  inset: 0;
  width: var(--nova-load);
  background: linear-gradient(90deg, rgba(50, 242, 207, 0.7), rgba(247, 194, 109, 0.9));
}

.nova-realm-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--nova-muted);
  letter-spacing: 0.08em;
}

.nova-realm-card--offline {
  border-color: rgba(255, 107, 61, 0.35);
}

.nova-systems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.nova-system-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(247, 194, 109, 0.22);
  background: rgba(10, 14, 22, 0.9);
  position: relative;
  overflow: hidden;
}

.nova-system-card::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(50, 242, 207, 0.2);
  opacity: 0.6;
}

.nova-system-card__sigil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(50, 242, 207, 0.4);
  color: var(--nova-arcane);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nova-chronicle {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(247, 194, 109, 0.2);
  background: rgba(10, 14, 22, 0.9);
  margin-bottom: 12px;
}

.nova-chronicle__sigil {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(50, 242, 207, 0.4);
  position: relative;
}

.nova-chronicle__sigil::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  background: rgba(50, 242, 207, 0.4);
}

.nova-chronicle__more {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--nova-glow);
  text-decoration: none;
}

.nova-gates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.nova-gate {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(247, 194, 109, 0.22);
  background: rgba(10, 14, 22, 0.9);
  text-decoration: none;
  color: var(--nova-text);
  position: relative;
  overflow: hidden;
}

.nova-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(50, 242, 207, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nova-gate:hover::before {
  opacity: 1;
}

.nova-gate__sigil {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 194, 109, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-glow);
  background: rgba(12, 16, 24, 0.9);
}

.nova-gate__title {
  display: block;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(50, 242, 207, 0.12), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.footer-block-t,
.footer-end {
  position: relative;
  z-index: 1;
}

.f-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.f-menu a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nova-btn {
  border-radius: 14px;
  border: 1px solid rgba(247, 194, 109, 0.35);
  background: rgba(12, 16, 24, 0.9);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.nova-btn--primary {
  background: linear-gradient(135deg, rgba(247, 194, 109, 0.95), rgba(224, 146, 64, 0.95));
  border-color: rgba(247, 194, 109, 0.7);
  color: #14161c;
}

.nova-btn--ghost {
  background: transparent;
  border-color: rgba(50, 242, 207, 0.4);
  color: var(--nova-text);
}

@media (max-width: 1200px) {
  .nova-header {
    padding: 22px;
  }

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

  .nova-header__cta {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nova-header {
    padding: 18px;
  }

  .nova-realm-rail__grid,
  .nova-realm-deck,
  .nova-hero__stats,
  .nova-hero__path {
    grid-template-columns: 1fr;
  }

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

  .nova-chronicle__more {
    grid-column: 1 / -1;
  }
}

/* Nova Ascendant */
:root {
  --nova-bg: #05070c;
  --nova-bg-deep: #03040a;
  --nova-surface: rgba(9, 13, 20, 0.92);
  --nova-surface-strong: rgba(12, 18, 28, 0.98);
  --nova-line: rgba(247, 199, 123, 0.28);
  --nova-glow: #f7c77b;
  --nova-arcane: #2fe8c8;
  --nova-ember: #ff7a4a;
  --nova-sapphire: #4e7ce6;
  --nova-text: #f7f2e8;
  --nova-muted: #b0a79a;
  --nova-shadow: 0 26px 70px rgba(1, 2, 6, 0.78);
  --nova-radius: 22px;
  --nova-radius-sm: 12px;
  --nova-font-body: "Albertus-Medium-Regular", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --nova-font-display: "Albertus-Bold", "Albertus-Medium-Regular", "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

body.nova {
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 232, 200, 0.22), transparent 40%),
    radial-gradient(circle at 88% 8%, rgba(247, 199, 123, 0.3), transparent 48%),
    radial-gradient(circle at 75% 88%, rgba(78, 124, 230, 0.2), transparent 50%),
    linear-gradient(180deg, #0b111c 0%, #06080f 48%, #03040a 100%);
  color: var(--nova-text);
  font-family: var(--nova-font-body);
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nova::before {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(rgba(47, 232, 200, 0.16) 1px, transparent 1px),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 18px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 22px);
  background-size: 160px 160px, 220px 220px, 220px 220px, 240px 240px;
  background-position: 0 0, 120px 40px, 0 0, 40px 100px;
  opacity: 0.4;
  animation: novaDrift 40s linear infinite;
}

body.nova::after {
  background:
    conic-gradient(from 180deg at 50% 8%, rgba(247, 199, 123, 0.3), transparent 30%, rgba(47, 232, 200, 0.3), transparent 60%, rgba(247, 199, 123, 0.2)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0.55;
  animation: novaRift 22s ease-in-out infinite alternate;
}

@keyframes novaRift {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(4deg); }
}

@keyframes novaDrift {
  0% { background-position: 0 0, 120px 40px, 0 0, 40px 100px; }
  100% { background-position: 120px 120px, 0 200px, 160px 40px, 140px 20px; }
}

.wrapper {
  max-width: 1320px;
}

.topPanel {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6, 10, 16, 0.82);
  border-bottom: 1px solid rgba(247, 199, 123, 0.24);
  backdrop-filter: blur(14px);
}

.topPanel::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 232, 200, 0.5), transparent);
  opacity: 0.8;
}

.menu {
  gap: 8px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(247, 199, 123, 0.18);
  background: rgba(9, 13, 20, 0.75);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.menu a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(47, 232, 200, 0.7);
  display: inline-block;
  margin-right: 8px;
}

.menu .active a,
.menu a:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 232, 200, 0.5);
  color: var(--nova-text);
  box-shadow: 0 0 18px rgba(47, 232, 200, 0.2);
}

.brand-logo__main {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  background: linear-gradient(120deg, #f7e2b2, #f7c77b 40%, #f1a65f 90%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(247, 199, 123, 0.45);
  position: relative;
}

.brand-logo__main::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, transparent, rgba(47, 232, 200, 0.8), transparent);
  opacity: 0.8;
}

.brand-logo__accent {
  color: var(--nova-arcane);
  text-shadow: 0 0 22px rgba(47, 232, 200, 0.7);
}

.brand-logo__sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--nova-muted);
  text-transform: uppercase;
}

.nova-btn {
  border-radius: 999px;
  border: 1px solid rgba(247, 199, 123, 0.35);
  background: rgba(10, 14, 22, 0.9);
  color: var(--nova-text);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 12px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nova-btn--primary {
  background: linear-gradient(135deg, #f7c77b, #f1a65f);
  border-color: rgba(247, 199, 123, 0.7);
  color: #14161c;
  box-shadow: 0 12px 24px rgba(247, 199, 123, 0.25);
}

.nova-btn--ghost {
  background: rgba(9, 13, 20, 0.3);
  border-color: rgba(47, 232, 200, 0.5);
  color: var(--nova-text);
}

.nova-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.btn,
.button,
button:not(.dropdown-toggle):not(.ui-dialog-titlebar-close) {
  border-radius: 999px;
  border: 1px solid rgba(247, 199, 123, 0.35);
  background: rgba(9, 13, 20, 0.85);
  color: var(--nova-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 10px 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #f7c77b, #f1a65f);
  border-color: rgba(247, 199, 123, 0.7);
  color: #14161c;
}

.btn-primary:hover,
.button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
}

.nova-header {
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(14, 20, 30, 0.96), rgba(8, 12, 18, 0.98));
  border: 1px solid rgba(247, 199, 123, 0.3);
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.nova-header::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(47, 232, 200, 0.15);
  border-radius: 22px;
  pointer-events: none;
}

.nova-header__brand {
  gap: 10px;
}

.nova-brand__tag {
  color: rgba(47, 232, 200, 0.7);
  letter-spacing: 0.28em;
}

.nova-hero {
  margin-top: 28px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(150deg, rgba(12, 18, 28, 0.96), rgba(7, 10, 16, 0.98));
  border: 1px solid rgba(247, 199, 123, 0.28);
  box-shadow: var(--nova-shadow);
  position: relative;
  overflow: hidden;
}

.nova-hero::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: radial-gradient(circle, rgba(47, 232, 200, 0.18), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.nova-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nova-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--nova-muted);
  margin-bottom: 6px;
}

.nova-hero__title {
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.nova-hero__lead {
  color: var(--nova-muted);
  font-size: 15px;
  max-width: 560px;
}

.nova-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.nova-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.nova-stat {
  background: rgba(8, 12, 18, 0.75);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
}

.nova-stat__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

.nova-stat__value {
  font-size: 14px;
  letter-spacing: 0.12em;
  font-family: var(--nova-font-display);
}

.nova-hero__runes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nova-rune {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 232, 200, 0.35);
  background: rgba(9, 13, 20, 0.6);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nova-rune__sigil {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47, 232, 200, 0.8), rgba(78, 124, 230, 0.7));
  color: #0e1118;
  font-size: 9px;
  font-weight: 700;
}

.nova-hero__path {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nova-step {
  background: rgba(9, 13, 20, 0.7);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nova-step__num {
  color: var(--nova-glow);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nova-hero__portal {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.nova-portal {
  width: clamp(240px, 34vw, 380px);
  height: clamp(240px, 34vw, 380px);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(47, 232, 200, 0.2), transparent 60%),
    radial-gradient(circle at 50% 30%, rgba(247, 199, 123, 0.2), transparent 70%);
  border: 1px solid rgba(247, 199, 123, 0.3);
  box-shadow: 0 0 40px rgba(47, 232, 200, 0.2);
}

.nova-portal__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 232, 200, 0.5);
  box-shadow: inset 0 0 18px rgba(47, 232, 200, 0.25);
  animation: novaOrbit 16s linear infinite;
  pointer-events: none;
}

.nova-portal__ring--outer {
  inset: 8%;
  border-color: rgba(247, 199, 123, 0.6);
  animation-duration: 20s;
}

.nova-portal__ring--mid {
  inset: 18%;
  animation-duration: 16s;
}

.nova-portal__ring--inner {
  inset: 30%;
  animation-duration: 12s;
}

.nova-portal__core {
  text-align: center;
  display: grid;
  gap: 6px;
}

.nova-portal__title {
  font-family: var(--nova-font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
}

.nova-portal__subtitle {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

.nova-realm-card {
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
}

.nova-realm-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.nova-realm-card__bar {
  margin: 10px 0 8px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nova-realm-card__fill {
  display: block;
  position: relative;
  inset: auto;
  height: 100%;
  width: var(--nova-load);
  background: linear-gradient(90deg, rgba(47, 232, 200, 0.8), rgba(247, 199, 123, 0.9));
}

.nova-section {
  margin-top: 70px;
}

.nova-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.nova-section__title {
  font-size: clamp(22px, 3vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.nova-section__subtitle {
  color: var(--nova-muted);
}

.nova-panel {
  background: rgba(9, 13, 20, 0.92);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: var(--nova-radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.nova-panel::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 232, 200, 0.3);
  top: 16px;
  right: 16px;
  transform: rotate(45deg);
  opacity: 0.5;
  pointer-events: none;
}

.nova-systems__grid,
.nova-classes__grid,
.nova-gates,
.nova-media-grid,
.nova-downloads {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.nova-system-card,
.nova-class-card {
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

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

.nova-system-card::after,
.nova-class-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 232, 200, 0.7));
  opacity: 0.7;
}

.nova-system-card__sigil,
.nova-class-card__sigil {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--nova-font-display);
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(247, 199, 123, 0.9), rgba(241, 166, 95, 0.9));
  color: #12151b;
  margin-bottom: 12px;
}

.nova-news__primary,
.nova-news__secondary {
  display: grid;
  gap: 16px;
}

.nova-chronicle {
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(247, 199, 123, 0.18);
  border-radius: 14px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
}

.nova-chronicle__sigil {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 232, 200, 0.9), rgba(47, 232, 200, 0.2));
  box-shadow: 0 0 12px rgba(47, 232, 200, 0.4);
}

.nova-chronicle__more {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-arcane);
}

.nova-gate {
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nova-gate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(47, 232, 200, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nova-gate:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 232, 200, 0.5);
}

.nova-gate:hover::after {
  opacity: 1;
}

.nova-gate > * {
  position: relative;
  z-index: 1;
}

.nova-gate__sigil {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(47, 232, 200, 0.9), rgba(78, 124, 230, 0.7));
  color: #11151b;
  font-family: var(--nova-font-display);
  letter-spacing: 0.12em;
}

.nova-gate__title {
  display: block;
  font-family: var(--nova-font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

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

.dmn-content {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.dmn-page-box {
  background: rgba(9, 13, 20, 0.92);
  border: 1px solid rgba(247, 199, 123, 0.25);
  border-radius: var(--nova-radius);
  padding: 28px;
  box-shadow: var(--nova-shadow);
  position: relative;
  overflow: hidden;
}

.dmn-page-box::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(47, 232, 200, 0.12);
  border-radius: calc(var(--nova-radius) - 6px);
  pointer-events: none;
}

.dmn-page-title {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.dmn-page-title h1 {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0.2em;
}

.nova-page-lead {
  color: var(--nova-muted);
  max-width: 560px;
  margin: 0;
  font-size: 14px;
}

.nova-page-links {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.nova-page-link {
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
}

.nova-page-link a {
  color: var(--nova-arcane);
  text-decoration: none;
}

.nova-page-link a:hover {
  color: var(--nova-glow);
}

.dmn-page-content .title {
  font-family: var(--nova-font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nova-glow);
}

.form-control,
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not(.form-control):not([type="number"]) {
  background: rgba(7, 10, 16, 0.85);
  border: 1px solid rgba(247, 199, 123, 0.2);
  color: var(--nova-text);
  border-radius: 12px;
}

.form-control:focus,
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not(.form-control):not([type="number"]):focus {
  border-color: rgba(47, 232, 200, 0.7);
  box-shadow: 0 0 0 2px rgba(47, 232, 200, 0.2);
}

.nova-download-card,
.nova-media-card {
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

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

.nova-download-card::before,
.nova-media-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(47, 232, 200, 0.25);
  border-radius: 14px;
  opacity: 0.6;
  pointer-events: none;
}

.nova-download-card > *,
.nova-media-card > * {
  position: relative;
  z-index: 1;
}

.nova-download-card__title,
.nova-media-card__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nova-muted);
}

.nova-media-card__name {
  font-family: var(--nova-font-display);
  letter-spacing: 0.14em;
}

.nova-media-card__action {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nova-arcane);
  margin-top: auto;
}

.nova-requirements {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.nova-requirements__col {
  background: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 18px;
  padding: 18px;
}

.nova-requirements__col--accent {
  border-color: rgba(47, 232, 200, 0.5);
}

.nova-requirements__title {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--nova-glow);
  margin-bottom: 12px;
}

.nova-requirements__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nova-requirements__list li::before {
  content: "•";
  color: var(--nova-arcane);
  margin-right: 8px;
}

.nova-requirements__list li:last-child {
  border-bottom: none;
}

.nova-media-card {
  text-decoration: none;
  color: var(--nova-text);
}

.nova-media-card:hover {
  border-color: rgba(47, 232, 200, 0.5);
}

.dmn-vault-grid-modern {
  background: linear-gradient(135deg, rgba(6, 9, 14, 0.95), rgba(12, 18, 28, 0.98));
  border: 1px solid rgba(247, 199, 123, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.item-slot {
  background: rgba(10, 14, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--nova-text);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  overflow: hidden;
  padding: 4px;
}

.item-slot__sigil {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(247, 199, 123, 0.8), rgba(241, 166, 95, 0.8));
  color: #12151b;
  font-size: 9px;
  font-weight: 700;
}

.item-slot__label {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 0 4px;
}

@media (prefers-reduced-motion: reduce) {
  body.nova::before,
  body.nova::after {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .nova-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nova-hero__stats,
  .nova-hero__path {
    grid-template-columns: 1fr;
  }

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

  .nova-chronicle__more {
    grid-column: 1 / -1;
  }
}
