:root {
  --bg: #0b1217;
  --bg-elevated: #121c23;
  --text: #eff5f7;
  --muted: #adc1ca;
  --line: #24323d;
  --accent: #4fd4c8;
  --accent-2: #f5b971;
  --danger: #e57f7f;
}

body[data-theme="light"] {
  --bg: #edf4f7;
  --bg-elevated: #ffffff;
  --text: #0e1a24;
  --muted: #405160;
  --line: #d3e0e8;
  --accent: #168d84;
  --accent-2: #b86c19;
  --danger: #be4f4f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1c2a35 0, var(--bg) 35%), var(--bg);
  color: var(--text);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 17, 30, 0.26) 0%, rgba(7, 14, 24, 0.58) 54%, rgba(5, 10, 20, 0.9) 100%),
    radial-gradient(circle at 14% 64%, rgba(30, 70, 120, 0.35), transparent 38%);
}

.dust-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  top: -14vh;
  left: var(--x, 50%);
  width: var(--size, 2.4px);
  height: var(--size, 2.4px);
  border-radius: 50%;
  background: rgba(227, 239, 255, var(--opacity, 0.5));
  filter: blur(var(--blur, 0px));
  will-change: transform, opacity;
  animation:
    dustFallChaos var(--dur, 13s) linear infinite,
    dustTwinkle var(--twinkle-dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s), var(--twinkle-delay, 0s);
}

.top-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: min(1120px, 94vw);
  margin: 1.2rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(152, 180, 213, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.5), rgba(8, 18, 32, 0.25));
  box-shadow: 0 14px 30px rgba(4, 8, 16, 0.35);
  backdrop-filter: blur(5px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.top-nav.scrolled {
  background: linear-gradient(180deg, rgba(8, 18, 32, 0.62), rgba(8, 18, 32, 0.28));
  box-shadow: 0 14px 30px rgba(4, 8, 16, 0.35);
  border-color: rgba(152, 180, 213, 0.22);
}

.brand {
  margin-right: auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  letter-spacing: 0.04em;
}

.brand-snow {
  color: #8f4ef6;
}

.brand-pocket {
  color: #22d2c9;
}

.brand-studios {
  color: rgba(228, 236, 255, 0.72);
  font-size: 0.8em;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
  margin-right: 1.4rem;
}

.nav-links a {
  color: rgba(223, 233, 255, 0.6);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: rgba(236, 246, 255, 0.94);
}

.nav-discord-btn {
  padding: 0.62rem 1.45rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(140deg, #5667f3, #5760d4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  padding: clamp(1.5rem, 5vw, 3.3rem);
  margin: 10vh auto 0;
  text-align: center;
  animation: rise 0.75s ease;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: #20d2cb;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 800;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.8rem, 12vw, 10.5rem);
  line-height: 0.9;
  margin: 0.35rem 0 0.16rem;
  letter-spacing: 0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, #9547ff 8%, #35d8cd 48%, #6f79ff 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  color: rgba(232, 240, 255, 0.9);
  font-size: clamp(1.9rem, 4.8vw, 3.7rem);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lead {
  max-width: 900px;
  margin: 1.15rem auto 0;
  color: rgba(210, 225, 240, 0.72);
  font-size: clamp(1.15rem, 2.3vw, 2.2rem);
  line-height: 1.35;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.95rem;
}

.hero-discord-btn,
.hero-outline-btn {
  padding: 0.86rem 2rem;
  min-width: 190px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.hero-discord-btn {
  background: linear-gradient(140deg, #596bf5, #585fd4);
}

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(133, 103, 255, 0.6);
  color: #e7ecff;
  background: rgba(20, 30, 49, 0.3);
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-outline-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  border-color: rgba(145, 119, 255, 0.94);
}

.hero-bottom {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: min(980px, 94vw);
}

.rule-strip {
  width: 100%;
  margin-top: 1.15rem;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(150, 175, 216, 0.18);
  background: rgba(5, 12, 24, 0.68);
  backdrop-filter: blur(7px);
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.45rem 0.55rem;
}

.rule-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(138, 80, 255, 0.18);
  border: 1px solid rgba(148, 105, 251, 0.32);
  color: #a976ff;
}

.rule-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.rule-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.rule-copy strong {
  color: #f2f6ff;
  font-size: 1.05rem;
  font-weight: 800;
}

.rule-copy small {
  color: rgba(196, 211, 238, 0.78);
  font-size: 0.98rem;
  font-weight: 600;
}

.scroll-arrow {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(200, 217, 251, 0.2);
  background: rgba(7, 16, 24, 0.25);
  text-decoration: none;
  animation: bounceDown 1.4s ease-in-out infinite;
}

.scroll-arrow span {
  width: 12px;
  height: 12px;
  border-right: 2px solid #d7e7f0;
  border-bottom: 2px solid #d7e7f0;
  transform: rotate(45deg) translateY(-1px);
}

.mobile-cta {
  display: none;
}

.primary-btn,
.discord-btn,
.ghost-btn,
.card-btn {
  border: 0;
  font: inherit;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: linear-gradient(140deg, var(--accent), #30a89d);
  color: #06211e;
}

.discord-btn {
  background: linear-gradient(140deg, #2f73de, #1753b0);
  color: #f1f5ff;
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
}

.primary-btn:hover,
.discord-btn:hover,
.ghost-btn:hover,
.card-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

main {
  width: min(1150px, 92vw);
  margin: 24px auto 40px;
  position: relative;
  z-index: 3;
}

.panel {
  background: color-mix(in srgb, var(--bg-elevated) 85%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(7px);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.section-head {
  margin-bottom: 1.1rem;
}

.section-head h2 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.shop-grid,
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 0.8rem;
}

.shop-card,
.status-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.shop-card p,
.status-card p {
  color: var(--muted);
}

.shop-card strong {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--accent-2);
}

#status {
  margin-top: 0.8rem;
  background: radial-gradient(circle at 50% -20%, rgba(58, 87, 197, 0.18), rgba(8, 15, 30, 0.88) 52%),
    rgba(7, 12, 24, 0.86);
}

.status-head {
  text-align: center;
}

.status-head h2 {
  color: #f2f5ff;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.status-accent {
  color: #8d56ff;
}

.status-intro {
  margin: 0.65rem auto 0;
  max-width: 58ch;
  color: rgba(176, 198, 231, 0.78);
  font-size: 1.08rem;
}

.status-updated {
  margin: 0.5rem 0 0;
  color: rgba(141, 166, 206, 0.8);
  font-size: 0.9rem;
}

.status-grid {
  margin-top: 1.1rem;
  gap: 0.9rem;
}

.status-card {
  background: rgba(13, 21, 42, 0.88);
  border: 1px solid rgba(95, 130, 193, 0.22);
  border-radius: 14px;
  padding: 1rem;
}

.status-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.status-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  color: #20dfd4;
  background: rgba(37, 223, 215, 0.12);
  border: 1px solid rgba(37, 223, 215, 0.24);
}

.status-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.status-title {
  margin: 0;
  font-size: 1.1rem;
  color: #eef3ff;
}

.status-meta {
  margin: 0.2rem 0 0;
  color: rgba(152, 176, 214, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.status-pill {
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.status-card.online .status-pill {
  color: #29de86;
  background: rgba(38, 187, 120, 0.18);
  border-color: rgba(38, 187, 120, 0.35);
}

.status-card.offline .status-pill {
  color: #ff8383;
  background: rgba(194, 69, 69, 0.18);
  border-color: rgba(194, 69, 69, 0.34);
}

.status-players {
  margin-top: 0.9rem;
}

.status-players-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(166, 188, 224, 0.82);
  font-size: 0.92rem;
}

.status-players-row strong {
  color: #eff4ff;
}

.status-progress {
  margin-top: 0.4rem;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(112, 140, 193, 0.2);
  overflow: hidden;
}

.status-progress-bar {
  height: 100%;
  border-radius: inherit;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, #20dfd4, #2dd8c4);
}

.status-card.busy .status-progress-bar {
  background: linear-gradient(90deg, #f5cb2f, #f39a2f);
}

.status-address {
  margin: 0.65rem 0 0;
  color: rgba(122, 150, 193, 0.65);
  font-size: 0.82rem;
}

.status-empty {
  text-align: center;
  color: rgba(153, 176, 213, 0.74);
  padding: 1.3rem 0;
}

#shop {
  margin-top: 4rem;
  background: radial-gradient(circle at 52% -25%, rgba(113, 72, 204, 0.15), rgba(8, 15, 30, 0.9) 52%),
    rgba(7, 12, 24, 0.86);
}

.site-footer {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(114, 142, 187, 0.2);
  background: rgba(6, 12, 24, 0.95);
}

.footer-inner {
  width: min(1350px, 92vw);
  margin: 0 auto;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.footer-brand h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

.footer-brand p {
  margin: 0.45rem 0 0;
  color: rgba(147, 173, 214, 0.86);
  font-size: 1.02rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: rgba(164, 185, 223, 0.9);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: #dfe9ff;
}

.footer-note {
  margin: 0;
  justify-self: end;
  color: rgba(139, 162, 201, 0.82);
  font-size: 1rem;
}

.footer-note span {
  color: #ff6f89;
}

.shop-head {
  text-align: center;
}

.shop-head h2 {
  color: #f2f5ff;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.shop-accent {
  color: #8d56ff;
}

.shop-intro {
  margin: 0.65rem auto 0;
  max-width: 58ch;
  color: rgba(176, 198, 231, 0.78);
  font-size: 1.08rem;
}

.shop-grid {
  margin-top: 1.1rem;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.shop-card {
  background: rgba(13, 21, 42, 0.88);
  border: 1px solid rgba(95, 130, 193, 0.22);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 150, 208, 0.42);
  box-shadow: 0 18px 26px rgba(7, 12, 24, 0.35);
}

.shop-media {
  position: relative;
  height: 152px;
  border-bottom: 1px solid rgba(95, 130, 193, 0.12);
  background:
    radial-gradient(circle at 15% 20%, rgba(141, 86, 255, 0.4), transparent 42%),
    linear-gradient(180deg, rgba(45, 62, 107, 0.4), rgba(13, 21, 42, 0.2));
}

.shop-media.tone-creature {
  background:
    radial-gradient(circle at 18% 24%, rgba(234, 193, 73, 0.4), transparent 44%),
    linear-gradient(180deg, rgba(72, 61, 35, 0.4), rgba(13, 21, 42, 0.2));
}

.shop-media.tone-vip {
  background:
    radial-gradient(circle at 18% 24%, rgba(141, 86, 255, 0.45), transparent 44%),
    linear-gradient(180deg, rgba(69, 48, 104, 0.4), rgba(13, 21, 42, 0.2));
}

.shop-media.tone-build {
  background:
    radial-gradient(circle at 18% 24%, rgba(55, 219, 201, 0.42), transparent 44%),
    linear-gradient(180deg, rgba(31, 78, 95, 0.4), rgba(13, 21, 42, 0.2));
}

.shop-popular {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  border-radius: 999px;
  padding: 0.2rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #f8d84a;
  border: 1px solid rgba(246, 214, 78, 0.5);
  background: rgba(50, 45, 13, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-body {
  padding: 0.88rem 0.92rem 0.95rem;
}

.shop-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.45rem;
}

.shop-title {
  margin: 0;
  color: #f2f5ff;
  font-size: 1.06rem;
}

.shop-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.34rem;
}

.shop-price {
  color: #a569ff;
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1;
}

.shop-old-price {
  color: rgba(150, 170, 205, 0.65);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.shop-category {
  margin: 0.12rem 0 0;
  color: rgba(152, 176, 214, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.shop-desc {
  margin: 0.5rem 0 0;
  color: rgba(183, 202, 230, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 11, 0.75);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 20;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(560px, 92vw);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  position: relative;
  animation: rise 0.35s ease;
}

.modal-price {
  color: var(--accent-2);
  font-size: 1.35rem;
  font-weight: 800;
}

.modal-extra {
  color: var(--muted);
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.9rem;
  cursor: pointer;
}

.full {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

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

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes dustFallChaos {
  0% {
    transform: translate3d(0, -16vh, 0);
  }
  24% {
    transform: translate3d(var(--drift-a, 24px), 18vh, 0);
  }
  47% {
    transform: translate3d(var(--drift-b, -16px), 44vh, 0);
  }
  73% {
    transform: translate3d(var(--drift-c, 34px), 77vh, 0);
  }
  100% {
    transform: translate3d(var(--drift-d, -26px), 114vh, 0);
  }
}

@keyframes dustTwinkle {
  0%,
  100% {
    opacity: calc(var(--opacity, 0.5) * 0.62);
  }
  50% {
    opacity: var(--opacity, 0.5);
  }
}

@media (max-width: 940px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .nav-links {
    margin-right: 0;
  }

  .hero-content {
    margin-top: 9vh;
  }

  .hero-subtitle {
    letter-spacing: 0.08em;
  }

  .rule-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }

  .top-nav {
    display: none;
  }

  .hero-content {
    margin-top: 6vh;
  }

  .hero-kicker {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(3.8rem, 15vw, 6.1rem);
  }

  .hero-subtitle {
    font-size: clamp(1.25rem, 6vw, 2rem);
    letter-spacing: 0.09em;
  }

  .lead {
    font-size: clamp(1rem, 3.8vw, 1.25rem);
  }

  .hero-content .rule-strip {
    margin-top: 0.95rem;
    padding: 0.7rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    background: rgba(5, 12, 24, 0.74);
  }

  .rule-item {
    padding: 0.35rem;
  }

  .rule-icon {
    width: 38px;
    height: 38px;
  }

  .rule-copy strong {
    font-size: 0.9rem;
  }

  .rule-copy small {
    font-size: 0.78rem;
  }

  .hero-content .hero-cta {
    display: none;
  }

  .mobile-cta {
    display: flex;
    justify-content: center;
  }

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

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

  .status-head h2 {
    font-size: clamp(2rem, 9.5vw, 2.6rem);
  }

  .status-intro {
    font-size: 0.95rem;
  }

  .shop-head h2 {
    font-size: clamp(2rem, 9.5vw, 2.6rem);
  }

  .shop-intro {
    font-size: 0.95rem;
  }

  .shop-media {
    height: 132px;
  }

  .shop-price {
    font-size: 1.68rem;
  }

  #shop {
    margin-top: 2.6rem;
  }

  .site-footer {
    margin-top: 1.6rem;
  }

  .footer-inner {
    min-height: unset;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.2rem 0 1.4rem;
    gap: 0.9rem;
  }

  .footer-links {
    gap: 1.4rem;
  }

  .footer-note {
    justify-self: center;
    font-size: 0.94rem;
  }

  main {
    margin-top: 14px;
  }

  .hero-bottom {
    bottom: 0.8rem;
    gap: 0.6rem;
  }

  .scroll-arrow {
    margin-top: 0.15rem;
  }
}
