:root {
  --zenithQuasar: rgb(36,4,17);
  --arcaneVapor: rgb(224,209,215);
  --beaconHall: rgb(237,20,87);
  --serpentPrimal: rgb(245,81,129);
  --cosmicStellar: 'Azeret Mono', monospace;
  --solarRune: 'Merriweather', serif;
  --novaFlare: 0px 100px 0px 0px;
  --sparkMoor: 0 0 24px 8px rgba(0,0,0,0.1);
  --anchorSage: 1239px;
  --harborGale: 1023px;
  --onyxIvory: 589px;
  --primalCosmic: 389px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--zenithQuasar);
  color: var(--arcaneVapor);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, var(--cosmicStellar);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background: linear-gradient(135deg, rgb(36,4,17), rgb(237,20,87), rgb(36,4,17));
  background-size: 200% 200%;
  animation: global_anim_4917 7s ease-in-out infinite;
}

@keyframes global_anim_4917 {
  0% { background-position: 25% 75%; opacity: 0.18; }
  33% { background-position: 85% 15%; opacity: 0.32; }
  66% { background-position: 10% 90%; opacity: 0.12; }
  100% { background-position: 25% 75%; opacity: 0.18; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, var(--solarRune);
  line-height: 1.3;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

* {
  animation: none !important;
  transition: none !important;
}

@media (max-width: 1023px) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.siteheadQuasarVapor {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(36, 4, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgb(237, 20, 87);
  box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.1);
}

.siteheadQuasarVapor-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  max-width: 1239px;
  margin: 0 auto;
}

.siteheadQuasarVapor-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgb(224, 209, 215);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.siteheadQuasarVapor-logo-img {
  width: 220px;
}

.siteheadQuasarVapor-logo-icon {
  color: rgb(237, 20, 87);
  font-size: 1.3rem;
}

.siteheadQuasarVapor-logo-text {
  white-space: nowrap;
}

.siteheadQuasarVapor-cta {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: rgb(237, 20, 87);
  color: rgb(224, 209, 215);
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 0px 100px 0px 0px;
  border: 2px solid rgb(245, 81, 129);
  box-shadow: 0 0 15px rgba(237, 20, 87, 0.3);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  flex-shrink: 0;
}

.siteheadQuasarVapor-cta:hover {
  transform: scale(1.05);
  background-color: rgb(245, 81, 129);
}

.siteheadQuasarVapor-burger {
  display: none;
  background: none;
  border: none;
  color: rgb(224, 209, 215);
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}

.siteheadQuasarVapor-burger-icon {
  font-size: 2rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.siteheadQuasarVapor-burger.active .siteheadQuasarVapor-burger-icon {
  transform: rotate(180deg);
}

.siteheadQuasarVapor-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 1.5rem 0.8rem;
  max-width: 1239px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.siteheadQuasarVapor-link {
  color: rgb(224, 209, 215);
  text-decoration: none;
  font-family: 'Azeret Mono', monospace;
  font-weight: 400;
  font-size: 0.85rem;
  padding: 0.3rem 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.siteheadQuasarVapor-link:hover {
  color: rgb(245, 81, 129);
  border-bottom-color: rgb(245, 81, 129);
}

.siteheadQuasarVapor-link--accent {
  color: rgb(245, 81, 129);
  font-weight: 500;
}

.siteheadQuasarVapor-link--accent:hover {
  color: rgb(237, 20, 87);
}

.entrycheckBeaconHall {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1002;
  display: none;
  pointer-events: none;
}

.entrycheckBeaconHall.active {
  display: block;
  pointer-events: auto;
}

.entrycheckBeaconHall-card {
  background-color: rgba(36, 4, 17, 0.97);
  border: 2px solid rgb(237, 20, 87);
  border-radius: 0px 100px 0px 0px;
  padding: 1.8rem;
  max-width: 380px;
  box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.1), 0 0 30px rgba(237, 20, 87, 0.2);
  backdrop-filter: blur(12px);
  text-align: center;
}

.entrycheckBeaconHall-icon {
  font-size: 2.8rem;
  color: rgb(237, 20, 87);
  margin-bottom: 0.8rem;
  display: block;
}

.entrycheckBeaconHall-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: rgb(224, 209, 215);
  margin-bottom: 0.8rem;
}

.entrycheckBeaconHall-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(224, 209, 215, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.entrycheckBeaconHall-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
}

.entrycheckBeaconHall-btn {
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.7rem 1.2rem;
  border: none;
  cursor: pointer;
  border-radius: 0px 100px 0px 0px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.entrycheckBeaconHall-btn--confirm {
  background-color: rgb(237, 20, 87);
  color: rgb(224, 209, 215);
  border: 2px solid rgb(245, 81, 129);
}

.entrycheckBeaconHall-btn--confirm:hover {
  transform: scale(1.05);
  background-color: rgb(245, 81, 129);
}

.entrycheckBeaconHall-btn--deny {
  background-color: transparent;
  color: rgba(224, 209, 215, 0.7);
  border: 2px solid rgba(224, 209, 215, 0.3);
}

.entrycheckBeaconHall-btn--deny:hover {
  border-color: rgb(245, 81, 129);
  color: rgb(245, 81, 129);
  transform: scale(1.05);
}

.datapopupSerpentPrimal {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1001;
  display: none;
  pointer-events: none;
}

.datapopupSerpentPrimal.active {
  display: block;
  pointer-events: auto;
}

.datapopupSerpentPrimal-card {
  background-color: rgba(36, 4, 17, 0.96);
  border: 2px solid rgb(245, 81, 129);
  border-radius: 0px 100px 0px 0px;
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.1), 0 8px 32px rgba(237, 20, 87, 0.15);
  backdrop-filter: blur(12px);
  text-align: center;
}

.datapopupSerpentPrimal-iconwrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(237, 20, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.datapopupSerpentPrimal-icon {
  font-size: 1.8rem;
  color: rgb(237, 20, 87);
}

.datapopupSerpentPrimal-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(224, 209, 215, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.datapopupSerpentPrimal-link {
  display: inline-block;
  font-family: 'Azeret Mono', monospace;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgb(245, 81, 129);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.datapopupSerpentPrimal-link:hover {
  border-bottom-color: rgb(245, 81, 129);
}

.datapopupSerpentPrimal-btn {
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.7rem 1.5rem;
  background-color: rgb(237, 20, 87);
  color: rgb(224, 209, 215);
  border: none;
  cursor: pointer;
  border-radius: 0px 100px 0px 0px;
  box-shadow: 0 4px 20px rgba(237, 20, 87, 0.4);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.datapopupSerpentPrimal-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(245, 81, 129, 0.5);
  background-color: rgb(245, 81, 129);
}

.scrolltopCosmicStellar {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(36, 4, 17, 0.92);
  border: 2px solid rgb(237, 20, 87);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  box-shadow: 0 0 24px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.scrolltopCosmicStellar.visible {
  opacity: 1;
  visibility: visible;
}

.scrolltopCosmicStellar-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: rgb(237, 20, 87);
  z-index: 2;
  pointer-events: none;
}

.scrolltopCosmicStellar-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scrolltopCosmicStellar-ring-bg {
  fill: none;
  stroke: rgba(224, 209, 215, 0.15);
  stroke-width: 2;
}

.scrolltopCosmicStellar-ring-fill {
  fill: none;
  stroke: rgb(237, 20, 87);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 150.796;
  stroke-dashoffset: 150.796;
  transition: stroke-dashoffset 0.15s linear;
}

.scrolltopCosmicStellar:hover {
  border-color: rgb(245, 81, 129);
}

.scrolltopCosmicStellar:hover .scrolltopCosmicStellar-ring-fill {
  stroke: rgb(245, 81, 129);
}

.scrolltopCosmicStellar:focus-visible {
  outline: 2px solid rgb(245, 81, 129);
  outline-offset: 3px;
}

.firstglanceSolarRune {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}

.firstglanceSolarRune-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.firstglanceSolarRune-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36,4,17,0.89);
  z-index: 1;
}

.firstglanceSolarRune-float {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.firstglanceSolarRune-float-icon {
  position: absolute;
  color: rgba(237, 20, 87, 0.12);
  font-size: 2.5rem;
  animation: firstglance_float_8721 7s ease-in-out infinite;
}

.firstglanceSolarRune-float-icon--1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  font-size: 3rem;
}

.firstglanceSolarRune-float-icon--2 {
  top: 25%;
  right: 10%;
  animation-delay: 1.2s;
  font-size: 2rem;
}

.firstglanceSolarRune-float-icon--3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 2.4s;
  font-size: 2.8rem;
}

.firstglanceSolarRune-float-icon--4 {
  bottom: 20%;
  right: 12%;
  animation-delay: 3.6s;
  font-size: 2.2rem;
}

.firstglanceSolarRune-float-icon--5 {
  top: 50%;
  left: 5%;
  animation-delay: 4.8s;
  font-size: 2.5rem;
}

.firstglanceSolarRune-float-icon--6 {
  top: 10%;
  right: 20%;
  animation-delay: 6s;
  font-size: 1.8rem;
}

@keyframes firstglance_float_8721 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
  25% { transform: translateY(-28px) rotate(7deg); opacity: 0.24; }
  50% { transform: translateY(-14px) rotate(-4deg); opacity: 0.18; }
  75% { transform: translateY(-35px) rotate(9deg); opacity: 0.27; }
}

.firstglanceSolarRune-inner {
  position: relative;
  z-index: 3;
  max-width: 1239px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.firstglanceSolarRune-title {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgb(224, 209, 215);
  margin-bottom: 2.5rem;
  text-shadow: 0 0 30px rgba(237, 20, 87, 0.4);
}

.firstglanceSolarRune-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 2rem;
  width: 100%;
}

.firstglanceSolarRune-feature {
  flex: 0 1 calc((100% - 2 * 1.8rem) / 3);
  min-width: 240px;
  background-color: rgba(36, 4, 17, 0.6);
  border: 1px solid rgba(237, 20, 87, 0.25);
  border-radius: 0px 100px 0px 0px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.firstglanceSolarRune-feature:hover {
  transform: scale(1.01);
  border-color: rgb(245, 81, 129);
}

.firstglanceSolarRune-feature-icon {
  font-size: 2rem;
  color: rgb(237, 20, 87);
  margin-bottom: 0.8rem;
}

.firstglanceSolarRune-feature-title {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: rgb(224, 209, 215);
  margin-bottom: 0.5rem;
}

.firstglanceSolarRune-feature-desc {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(224, 209, 215, 0.75);
  line-height: 1.5;
}

.firstglanceSolarRune-desc {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(224, 209, 215, 0.8);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.firstglanceSolarRune-btn {
  display: inline-block;
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(224, 209, 215);
  text-decoration: none;
  background-color: rgb(237, 20, 87);
  padding: 0.9rem 2.2rem;
  border-radius: 0px 100px 0px 0px;
  border: 2px solid rgb(245, 81, 129);
  box-shadow: 0 3px 0 rgb(180, 10, 60), 0 0 28px rgba(237, 20, 87, 0.35);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.firstglanceSolarRune-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 0 rgb(180, 10, 60), 0 0 40px rgba(245, 81, 129, 0.5);
  background-color: rgb(245, 81, 129);
}

.treasuryboxNovaFlare {
  padding: 3rem 1.5rem;
  position: relative;
}

.treasuryboxNovaFlare-inner {
  max-width: 1239px;
  margin: 0 auto;
}

.treasuryboxNovaFlare-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgb(224, 209, 215);
  text-align: center;
  margin-bottom: 0.8rem;
}

.treasuryboxNovaFlare-desc {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(224, 209, 215, 0.8);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.treasuryboxNovaFlare-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.treasuryboxNovaFlare-card {
  flex: 1 1 calc((100% - 3 * 2rem) / 4);
  min-width: 260px;
  background-color: rgba(36, 4, 17, 0.8);
  border: 2px solid rgba(237, 20, 87, 0.3);
  border-radius: 0px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.treasuryboxNovaFlare-card:hover {
  transform: scale(1.01);
  border-color: rgb(245, 81, 129);
}

.treasuryboxNovaFlare-card-imgwrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.treasuryboxNovaFlare-card-img {
  width: 100%;
  max-width: 477px;
  height: 100%;
  object-fit: contain;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
}

.treasuryboxNovaFlare-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: rgb(237, 20, 87);
  color: rgb(224, 209, 215);
  padding: 0.3rem 0.6rem;
  border-radius: 0px 100px 0px 0px;
  z-index: 1;
}

.treasuryboxNovaFlare-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem 0;
}

.treasuryboxNovaFlare-card-meta-icon {
  font-size: 1rem;
  color: rgb(245, 81, 129);
}

.treasuryboxNovaFlare-card-meta-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.7rem;
  color: rgba(224, 209, 215, 0.7);
}

.treasuryboxNovaFlare-card-title {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: rgb(224, 209, 215);
  padding: 0.5rem 1rem;
  flex-grow: 1;
}

.treasuryboxNovaFlare-card-link {
  display: block;
  text-align: center;
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(224, 209, 215);
  text-decoration: none;
  background-color: rgb(237, 20, 87);
  padding: 0.7rem;
  margin: 0.5rem 1rem 1rem;
  border-radius: 0px 100px 0px 0px;
  border: 2px solid rgb(245, 81, 129);
  box-shadow: 0 3px 0 rgb(180, 10, 60);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.treasuryboxNovaFlare-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgb(180, 10, 60);
  background-color: rgb(245, 81, 129);
}

.originstorySparkMoor {
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.originstorySparkMoor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 20, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: originstory_ripple_3164 6s ease infinite;
  pointer-events: none;
}

@keyframes originstory_ripple_3164 {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
}

.originstorySparkMoor-inner {
  max-width: 1239px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.originstorySparkMoor-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgb(224, 209, 215);
  text-align: center;
  margin-bottom: 2rem;
}

.originstorySparkMoor-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.originstorySparkMoor-card {
  background-color: rgba(36, 4, 17, 0.7);
  border: 2px solid rgba(237, 20, 87, 0.25);
  border-radius: 0px;
  padding: 2rem;
  max-width: 900px;
  width: 100%;
}

.originstorySparkMoor-imagewrap {
  float: right;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgb(237, 20, 87);
  margin-left: 2rem;
  margin-bottom: 1rem;
  shape-outside: circle(50%);
  background-color: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

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

.originstorySparkMoor-text {
  color: rgba(224, 209, 215, 0.85);
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
}

.originstorySparkMoor-para {
  margin-bottom: 1rem;
}

.originstorySparkMoor-para:last-child {
  margin-bottom: 0;
}

.originstorySparkMoor-link {
  display: inline-block;
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(224, 209, 215);
  text-decoration: none;
  background-color: rgb(237, 20, 87);
  padding: 0.8rem 2rem;
  border-radius: 0px 100px 0px 0px;
  border: 2px solid rgb(245, 81, 129);
  box-shadow: 0 3px 0 rgb(180, 10, 60);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.originstorySparkMoor-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 0 rgb(180, 10, 60);
  background-color: rgb(245, 81, 129);
}

.galeHarborNovaFlare {
  padding: 3rem 1.5rem;
  background-color: rgba(36, 4, 17, 0.4);
  position: relative;
}

.galeHarborNovaFlare-inner {
  max-width: 1239px;
  margin: 0 auto;
}

.galeHarborNovaFlare-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: rgb(224, 209, 215);
  text-align: center;
  margin-bottom: 0.5rem;
}

.galeHarborNovaFlare-subtitle {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(224, 209, 215, 0.75);
  text-align: center;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.galeHarborNovaFlare-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}

.galeHarborNovaFlare-card {
  flex: 0 1 calc((100% - 2 * 1.8rem) / 3);
  min-width: 270px;
  background-color: rgba(36, 4, 17, 0.6);
  border: 1px solid rgba(237, 20, 87, 0.2);
  border-radius: 0px 100px 0px 0px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
}

.galeHarborNovaFlare-card:hover {
  transform: scale(1.01);
  border-color: rgb(245, 81, 129);
}

.galeHarborNovaFlare-card-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.galeHarborNovaFlare-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(237, 20, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(237, 20, 87, 0.4);
  flex-shrink: 0;
}

.galeHarborNovaFlare-card-avatar-icon {
  font-size: 1.8rem;
  color: rgb(237, 20, 87);
}

.galeHarborNovaFlare-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.galeHarborNovaFlare-card-name {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgb(224, 209, 215);
}

.galeHarborNovaFlare-card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.galeHarborNovaFlare-card-score {
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.85rem;
  color: rgb(237, 20, 87);
}

.galeHarborNovaFlare-card-star {
  font-size: 1rem;
  color: rgb(237, 20, 87);
}

.galeHarborNovaFlare-card-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(224, 209, 215, 0.8);
  line-height: 1.6;
  flex-grow: 1;
}

.galeHarborNovaFlare-card-date {
  font-family: 'Azeret Mono', monospace;
  font-weight: 400;
  font-size: 0.65rem;
  color: rgba(224, 209, 215, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: right;
}

.answersbankHarborGale {
  position: relative;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.answersbankHarborGale-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.answersbankHarborGale-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 4, 17, 0.89);
  z-index: 1;
  pointer-events: none;
}

.answersbankHarborGale-inner {
  position: relative;
  z-index: 2;
  max-width: 1239px;
  margin: 0 auto;
}

.answersbankHarborGale-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: rgb(224, 209, 215);
  text-align: center;
  margin-bottom: 0.5rem;
}

.answersbankHarborGale-subtitle {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(224, 209, 215, 0.75);
  text-align: center;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.answersbankHarborGale-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.answersbankHarborGale-item {
  background-color: rgba(36, 4, 17, 0.7);
  border: 1px solid rgba(237, 20, 87, 0.2);
  border-radius: 0px 100px 0px 0px;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.answersbankHarborGale-question {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem 1.2rem;
  background: none;
  border: none;
  color: rgb(224, 209, 215);
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.answersbankHarborGale-question:hover {
  background-color: rgba(237, 20, 87, 0.08);
}

.answersbankHarborGale-question-icon {
  font-size: 1.3rem;
  color: rgb(237, 20, 87);
  flex-shrink: 0;
}

.answersbankHarborGale-question-text {
  flex-grow: 1;
}

.answersbankHarborGale-chevron {
  font-size: 1.5rem;
  color: rgb(237, 20, 87);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.answersbankHarborGale-question[aria-expanded="true"] .answersbankHarborGale-chevron {
  transform: rotate(180deg);
}

.answersbankHarborGale-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease;
  padding: 0 1.2rem;
}

.answersbankHarborGale-question[aria-expanded="true"] + .answersbankHarborGale-answer {
  max-height: 400px;
  padding: 0 1.2rem 1rem;
}

.answersbankHarborGale-answer-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.82rem;
  color: rgba(224, 209, 215, 0.8);
  line-height: 1.7;
  margin: 0;
}

.onyxIvoryNovaFlare {
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.onyxIvoryNovaFlare::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(237, 20, 87, 0.06) 0%, rgba(36, 4, 17, 0.03) 50%, rgba(237, 20, 87, 0.06) 100%);
  background-size: 200% 200%;
  animation: onyxIvory_shift_6723 5s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes onyxIvory_shift_6723 {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.onyxIvoryNovaFlare::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 4, 17, 0.7);
  z-index: 1;
  pointer-events: none;
}

.onyxIvoryNovaFlare-inner {
  position: relative;
  z-index: 2;
  max-width: 1239px;
  margin: 0 auto;
}

.onyxIvoryNovaFlare-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: rgb(224, 209, 215);
  text-align: center;
  margin-bottom: 0.5rem;
}

.onyxIvoryNovaFlare-subtitle {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(224, 209, 215, 0.75);
  text-align: center;
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.onyxIvoryNovaFlare-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.onyxIvoryNovaFlare-card {
  flex: 0 1 calc((100% - 2 * 2rem) / 3);
  min-width: 220px;
  background-color: rgba(36, 4, 17, 0.7);
  border: 1px solid rgba(237, 20, 87, 0.2);
  border-radius: 0px 100px 0px 0px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.onyxIvoryNovaFlare-card:hover {
  transform: scale(1.01);
  border-color: rgb(245, 81, 129);
}

.onyxIvoryNovaFlare-card-iconwrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(237, 20, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
}

.onyxIvoryNovaFlare-card-icon {
  font-size: 2rem;
  color: rgb(237, 20, 87);
}

.onyxIvoryNovaFlare-card-number {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: rgb(224, 209, 215);
  line-height: 1;
}

.onyxIvoryNovaFlare-card-label {
  font-family: 'Azeret Mono', monospace;
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(224, 209, 215, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.limitshelpNovaFlare {
  padding: 3rem 1.5rem;
  position: relative;
}

.limitshelpNovaFlare-inner {
  max-width: 1239px;
  margin: 0 auto;
}

.limitshelpNovaFlare-title {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: rgb(224, 209, 215);
  text-align: center;
  margin-bottom: 0.5rem;
}

.limitshelpNovaFlare-subtitle {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(224, 209, 215, 0.75);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.limitshelpNovaFlare-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
  background-color: rgba(36, 4, 17, 0.5);
  border: 1px solid rgba(237, 20, 87, 0.2);
  border-radius: 0px;
  padding: 2rem;
}

.limitshelpNovaFlare-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(224, 209, 215, 0.8);
  line-height: 1.7;
}

.limitshelpNovaFlare-para {
  margin-bottom: 1rem;
}

.limitshelpNovaFlare-para:last-child {
  margin-bottom: 0;
}

.limitshelpNovaFlare-age {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(237, 20, 87, 0.15);
  border: 1px solid rgb(237, 20, 87);
  border-radius: 0px 100px 0px 0px;
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.limitshelpNovaFlare-age-icon {
  font-size: 1.8rem;
  color: rgb(237, 20, 87);
}

.limitshelpNovaFlare-age-text {
  font-family: 'Azeret Mono', monospace;
  font-weight: 800;
  font-size: 0.75rem;
  color: rgb(224, 209, 215);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.limitshelpNovaFlare-resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.limitshelpNovaFlare-resource {
  flex: 0 1 calc((100% - 3 * 2rem) / 4);
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.limitshelpNovaFlare-resource-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(237, 20, 87, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.limitshelpNovaFlare-resource-link:hover {
  border-color: rgb(245, 81, 129);
  transform: scale(1.03);
}

.limitshelpNovaFlare-resource-img {
  width: 100%;
  max-width: 269px;
  height: 89px;
  object-fit: contain;
  display: block;
  padding: 0.3rem;
  background: #dd9700;
}

.limitshelpNovaFlare-resource-name {
  font-family: 'Azeret Mono', monospace;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(224, 209, 215, 0.7);
  text-align: center;
}

.footwrapSparkMoor {
  background-color: rgba(36, 4, 17, 0.95);
  border-top: 2px solid rgb(237, 20, 87);
  padding: 2.5rem 1.5rem 0;
  margin-top: auto;
}

.footwrapSparkMoor-inner {
  max-width: 1239px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footwrapSparkMoor-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footwrapSparkMoor-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footwrapSparkMoor-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Azeret Mono', monospace;
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(224, 209, 215, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  flex-wrap: wrap;
}

.footwrapSparkMoor-link:hover {
  color: rgb(245, 81, 129);
}

.footwrapSparkMoor-link-icon {
  font-size: 1rem;
  color: rgb(237, 20, 87);
}

.footwrapSparkMoor-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footwrapSparkMoor-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgb(224, 209, 215);
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footwrapSparkMoor-logo-img {
  width: 220px;
}

.footwrapSparkMoor-logo-icon {
  color: rgb(237, 20, 87);
  font-size: 1.3rem;
}

.footwrapSparkMoor-email {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(224, 209, 215, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
  flex-wrap: wrap;
}

.footwrapSparkMoor-email:hover {
  color: rgb(245, 81, 129);
}

.footwrapSparkMoor-email-icon {
  font-size: 1rem;
  color: rgb(237, 20, 87);
}

.footwrapSparkMoor-bottom {
  max-width: 1239px;
  margin: 2rem auto 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(237, 20, 87, 0.2);
  text-align: center;
}

.footwrapSparkMoor-copyright {
  font-family: 'Azeret Mono', monospace;
  font-weight: 300;
  font-size: 0.7rem;
  color: rgba(224, 209, 215, 0.45);
  margin: 0;
}

@media (max-width: 1023px) {
  .siteheadQuasarVapor-top {
    padding: 0.6rem 1rem;
  }
  
  .siteheadQuasarVapor-cta {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .siteheadQuasarVapor-burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .siteheadQuasarVapor-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background-color: rgba(36, 4, 17, 0.98);
    backdrop-filter: blur(15px);
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    padding: 2rem;
  }

  .siteheadQuasarVapor-nav.active {
    transform: scale(1);
  }

  .siteheadQuasarVapor-link {
    font-size: 1.2rem;
  }

  .firstglanceSolarRune-title {
    font-size: 2rem;
  }
  
  .firstglanceSolarRune-feature {
    flex: 0 1 calc((100% - 1.8rem) / 2);
    min-width: 220px;
  }

  .treasuryboxNovaFlare-card {
    flex: 1 1 calc((100% - 2rem) / 2);
    min-width: 280px;
  }

  .galeHarborNovaFlare-card {
    flex: 0 1 calc((100% - 1.8rem) / 2);
  }

  .onyxIvoryNovaFlare-card {
    flex: 0 1 calc((100% - 2rem) / 2);
  }

  .limitshelpNovaFlare-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .limitshelpNovaFlare-age {
    justify-self: start;
  }
  
  .limitshelpNovaFlare-resource {
    flex: 0 1 calc((100% - 2rem) / 2);
  }

  .originstorySparkMoor-imagewrap {
    float: none;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    shape-outside: none;
  }
  
  .originstorySparkMoor-text {
    font-size: 0.82rem;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .firstglanceSolarRune {
    min-height: 55vh;
    padding: 2.5rem 1rem;
  }
  
  .firstglanceSolarRune-features {
    gap: 1.2rem;
  }
  
  .firstglanceSolarRune-feature {
    flex: 1 1 100%;
    max-width: 380px;
  }
  
  .firstglanceSolarRune-desc {
    font-size: 0.85rem;
  }

  .treasuryboxNovaFlare-grid {
    gap: 1.5rem;
  }
  
  .treasuryboxNovaFlare-card {
    flex: 1 1 100%;
    max-width: 400px;
  }
  
  .treasuryboxNovaFlare-title {
    font-size: 1.5rem;
  }

  .originstorySparkMoor-title {
    font-size: 1.5rem;
  }
  
  .originstorySparkMoor-card {
    padding: 1.2rem;
  }

  .galeHarborNovaFlare-title {
    font-size: 1.4rem;
  }

  .galeHarborNovaFlare-card {
    flex: 1 1 100%;
    max-width: 450px;
  }

  .answersbankHarborGale-title {
    font-size: 1.4rem;
  }

  .answersbankHarborGale-subtitle {
    font-size: 0.8rem;
  }

  .answersbankHarborGale-question {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }

  .answersbankHarborGale-question[aria-expanded="true"] + .answersbankHarborGale-answer {
    padding: 0 1rem 0.8rem;
  }

  .onyxIvoryNovaFlare-title {
    font-size: 1.4rem;
  }
  
  .onyxIvoryNovaFlare-card {
    flex: 1 1 100%;
    max-width: 350px;
  }
  
  .onyxIvoryNovaFlare-card-number {
    font-size: 1.8rem;
  }

  .limitshelpNovaFlare-title {
    font-size: 1.4rem;
  }
  
  .limitshelpNovaFlare-content {
    padding: 1.2rem;
  }

  .footwrapSparkMoor-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footwrapSparkMoor-nav {
    gap: 2rem;
    justify-content: center;
  }

  .footwrapSparkMoor-brand {
    align-items: center;
  }

  .footwrapSparkMoor-email {
    font-size: 0.7rem;
  }
}

@media (max-width: 589px) {
  .entrycheckBeaconHall {
    bottom: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
  }
  
  .entrycheckBeaconHall-card {
    max-width: 100%;
    padding: 1.2rem;
  }
  
  .entrycheckBeaconHall-title {
    font-size: 1.1rem;
  }

  .datapopupSerpentPrimal {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }
  
  .datapopupSerpentPrimal-card {
    max-width: 100%;
    padding: 1rem;
  }

  .scrolltopCosmicStellar {
    left: 0.4rem;
    width: 44px;
    height: 44px;
  }
  
  .scrolltopCosmicStellar-icon {
    font-size: 1.2rem;
  }
  
  .scrolltopCosmicStellar-ring-bg,
  .scrolltopCosmicStellar-ring-fill {
    stroke-width: 1.5;
  }

  .firstglanceSolarRune-title {
    font-size: 1.5rem;
  }
  
  .firstglanceSolarRune-btn {
    font-size: 0.8rem;
    padding: 0.7rem 1.5rem;
  }

  .treasuryboxNovaFlare {
    padding: 1.5rem 0.8rem;
  }
  
  .treasuryboxNovaFlare-card {
    min-width: auto;
  }
  
  .treasuryboxNovaFlare-desc {
    font-size: 0.8rem;
  }

  .originstorySparkMoor {
    padding: 1.5rem 0.8rem;
  }
  
  .originstorySparkMoor-imagewrap {
    width: 140px;
    height: 140px;
  }
  
  .originstorySparkMoor-link {
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
  }

  .galeHarborNovaFlare {
    padding: 1.5rem 0.8rem;
  }

  .galeHarborNovaFlare-grid {
    gap: 1.2rem;
  }
  
  .galeHarborNovaFlare-card {
    padding: 1.2rem;
  }

  .answersbankHarborGale {
    padding: 1.5rem 0.8rem;
  }

  .answersbankHarborGale-list {
    gap: 0.4rem;
  }

  .answersbankHarborGale-answer-text {
    font-size: 0.75rem;
  }

  .onyxIvoryNovaFlare {
    padding: 1.5rem 0.8rem;
  }
  
  .onyxIvoryNovaFlare-grid {
    gap: 1.2rem;
  }

  .limitshelpNovaFlare {
    padding: 1.5rem 0.8rem;
  }
  
  .limitshelpNovaFlare-resource {
    flex: 1 1 100%;
    max-width: 250px;
  }
  
  .limitshelpNovaFlare-resource-link {
    height: 90px;
  }
  
  .limitshelpNovaFlare-resource-img {
    height: 60px;
  }

  .footwrapSparkMoor {
    padding: 1.5rem 0.8rem 0;
  }

  .footwrapSparkMoor-nav {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

  .footwrapSparkMoor-column {
    align-items: center;
  }

  .footwrapSparkMoor-link {
    font-size: 0.75rem;
  }
}

@media (max-width: 389px) {
  .siteheadQuasarVapor-top {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  
  .siteheadQuasarVapor-logo {
    gap: 0.2rem;
    font-size: 1rem;
  }
  
  .siteheadQuasarVapor-logo-img {
    width: 24px;
    height: 25px;
  }
  
  .siteheadQuasarVapor-cta {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }

  .siteheadQuasarVapor-nav {
    padding: 1rem;
    gap: 1.5rem;
  }

  .entrycheckBeaconHall-card {
    padding: 0.8rem;
  }
  
  .entrycheckBeaconHall-icon {
    font-size: 2rem;
  }
  
  .entrycheckBeaconHall-btn {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }

  .datapopupSerpentPrimal-card {
    padding: 0.8rem;
  }
  
  .datapopupSerpentPrimal-iconwrap {
    width: 36px;
    height: 36px;
  }
  
  .datapopupSerpentPrimal-icon {
    font-size: 1.4rem;
  }
  
  .datapopupSerpentPrimal-btn {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .firstglanceSolarRune {
    padding: 1.5rem 0.15rem;
  }
  
  .firstglanceSolarRune-feature {
    padding: 1rem;
  }
  
  .firstglanceSolarRune-title {
    font-size: 1.3rem;
  }
  
  .firstglanceSolarRune-float-icon {
    font-size: 1.5rem;
  }

  .treasuryboxNovaFlare {
    padding: 1rem 0.15rem;
  }
  
  .treasuryboxNovaFlare-card {
    min-width: 100%;
  }
  
  .treasuryboxNovaFlare-card-title {
    font-size: 0.95rem;
  }
  
  .treasuryboxNovaFlare-card-link {
    font-size: 0.7rem;
    padding: 0.5rem;
  }

  .originstorySparkMoor {
    padding: 1rem 0.15rem;
  }
  
  .originstorySparkMoor-card {
    padding: 0.8rem 0.08rem;
  }
  
  .originstorySparkMoor-imagewrap {
    width: 100px;
    height: 100px;
  }
  
  .originstorySparkMoor-text {
    font-size: 0.75rem;
  }

  .galeHarborNovaFlare {
    padding: 1rem 0.15rem;
  }
  
  .galeHarborNovaFlare-card {
    padding: 0.8rem;
  }
  
  .galeHarborNovaFlare-card-avatar {
    width: 38px;
    height: 38px;
  }
  
  .galeHarborNovaFlare-card-avatar-icon {
    font-size: 1.3rem;
  }
  
  .galeHarborNovaFlare-card-text {
    font-size: 0.72rem;
  }

  .answersbankHarborGale {
    padding: 1rem 0.15rem;
  }

  .answersbankHarborGale-question {
    font-size: 0.78rem;
    gap: 0.5rem;
    padding: 0.7rem 0.8rem;
  }

  .answersbankHarborGale-question-icon {
    font-size: 1rem;
  }

  .answersbankHarborGale-chevron {
    font-size: 1.2rem;
  }

  .answersbankHarborGale-question[aria-expanded="true"] + .answersbankHarborGale-answer {
    padding: 0 0.8rem 0.7rem;
  }

  .onyxIvoryNovaFlare {
    padding: 1rem 0.15rem;
  }
  
  .onyxIvoryNovaFlare-card {
    padding: 1.2rem 1rem;
  }
  
  .onyxIvoryNovaFlare-card-iconwrap {
    width: 42px;
    height: 42px;
  }
  
  .onyxIvoryNovaFlare-card-icon {
    font-size: 1.5rem;
  }
  
  .onyxIvoryNovaFlare-card-number {
    font-size: 1.5rem;
  }

  .limitshelpNovaFlare {
    padding: 1rem 0.15rem;
  }
  
  .limitshelpNovaFlare-content {
    padding: 0.8rem;
  }
  
  .limitshelpNovaFlare-age {
    padding: 0.5rem 0.8rem;
  }
  
  .limitshelpNovaFlare-age-icon {
    font-size: 1.3rem;
  }
  
  .limitshelpNovaFlare-age-text {
    font-size: 0.65rem;
  }

  .footwrapSparkMoor {
    padding: 1rem 0.15rem;
  }

  .footwrapSparkMoor-link {
    font-size: 0.7rem;
  }

  .footwrapSparkMoor-logo {
    font-size: 0.95rem;
  }

  .footwrapSparkMoor-logo-img {
    width: 28px;
    height: 29px;
  }

  .footwrapSparkMoor-email {
    font-size: 0.65rem;
  }
}