:root {
  color-scheme: dark;
  --bg: #03060a;
  --panel: rgba(13, 20, 31, 0.88);
  --panel-strong: rgba(8, 13, 21, 0.94);
  --line: rgba(168, 191, 213, 0.22);
  --text: #f5f7f3;
  --muted: #bcc3ca;
  --green: #b7ff35;
  --green-2: #70ff35;
  --purple: #bb62ff;
  --purple-2: #6120a4;
  --gold: #f2b84b;
  --danger: #ff4a66;
  --shadow-green: 0 0 24px rgba(183, 255, 53, 0.42);
  --shadow-purple: 0 0 26px rgba(172, 72, 255, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 66% 12%, rgba(92, 31, 163, 0.28), transparent 30rem),
    radial-gradient(circle at 14% 34%, rgba(34, 255, 71, 0.1), transparent 25rem),
    linear-gradient(180deg, #02050a 0%, #070a10 58%, #03060a 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

body.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

body.is-leaving {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-8px) scale(0.992);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(183, 255, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 53, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.page-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 42%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
  align-items: center;
  gap: 2rem;
  height: 5.55rem;
  padding: 0 5.4vw;
  border-bottom: 1px solid rgba(150, 170, 190, 0.18);
  background: rgba(3, 6, 10, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  color: var(--green);
  border: 2px solid var(--purple);
  border-radius: 50%;
  box-shadow: inset 0 0 18px rgba(183, 255, 53, 0.22), var(--shadow-purple);
  font-family: Permanent Marker, cursive;
  font-size: 1.35rem;
  line-height: 1;
  rotate: -10deg;
}

.brand-mark.small {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  font-size: 1.15rem;
}

.brand-word {
  color: var(--green);
  text-shadow: 0 0 14px rgba(112, 255, 53, 0.58);
  font-family: Permanent Marker, cursive;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  transform: skew(-8deg) rotate(-2deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 3rem);
  color: #fbfbf6;
  font-size: 1.03rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 0.15rem;
  content: "";
  border-radius: 999px;
  background: var(--green);
  box-shadow: var(--shadow-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links .active::after {
  transform: scaleX(1);
}

.nav-links .active {
  color: var(--green);
}

.primary-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  min-height: 3.3rem;
  padding: 0 1.35rem;
  color: #101506;
  border: 0;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #c8ff56, #9dff24);
  box-shadow: var(--shadow-green);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 850;
  cursor: pointer;
}

.primary-cta svg,
.btn svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: clamp(31rem, 50vw, 48rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(147, 170, 194, 0.13);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.96;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 8, 0.98) 0%, rgba(2, 5, 8, 0.91) 25%, rgba(2, 5, 8, 0.34) 55%, rgba(2, 5, 8, 0.56) 100%),
    linear-gradient(180deg, rgba(2, 5, 8, 0.1) 0%, rgba(2, 5, 8, 0.12) 56%, #03060a 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(45rem, 54vw);
  padding: clamp(2.8rem, 5.3vw, 6rem) 0 10.5rem 5.5vw;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  color: #f5f5f0;
  font-family: Bangers, Impact, fantasy;
  font-size: clamp(5.3rem, 9.1vw, 11.7rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0.04em 0.04em 0 rgba(0, 0, 0, 0.8),
    0 0 1px #000;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.75);
  filter: drop-shadow(0 0 0.6rem rgba(255, 255, 255, 0.12));
}

.tagline {
  margin: 0.75rem 0 1.05rem;
  color: var(--green);
  font-family: Permanent Marker, cursive;
  font-size: clamp(1.45rem, 2.1vw, 2.55rem);
  line-height: 1.05;
  text-shadow: 0 0 12px rgba(112, 255, 53, 0.42);
  transform: rotate(-1deg);
}

.intro {
  max-width: 38rem;
  margin: 0;
  color: #f1f3ef;
  font-size: clamp(1rem, 1.12vw, 1.22rem);
  line-height: 1.32;
  text-shadow: 0 1px 2px #000;
}

.intro strong {
  color: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 13.9rem;
  min-height: 3.85rem;
  padding: 0 1.45rem;
  border-radius: 0.45rem;
  font-size: 1.22rem;
  font-weight: 850;
}

.btn-green {
  color: #111807;
  background: linear-gradient(180deg, #d0ff60, #a2ff2d);
  box-shadow: var(--shadow-green);
}

.btn-green svg {
  fill: none;
  stroke-width: 2.6;
}

.btn-ghost {
  color: #f4f6f4;
  border: 1px solid var(--purple);
  background: rgba(12, 7, 24, 0.72);
  box-shadow: inset 0 0 20px rgba(169, 84, 255, 0.12);
}

.feature-grid,
.spotlight {
  position: relative;
  z-index: 5;
  width: min(76rem, 78vw);
  margin-right: auto;
  margin-left: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: -8.1rem;
}

.feature-card,
.spotlight,
.character-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 26, 39, 0.9), rgba(7, 12, 20, 0.92));
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.feature-card,
.character-card,
.dash-panel,
.episode-card,
.profile-panel,
.gear-panel,
.glossary-panel,
.join-card,
.drops-card,
.follow-card {
  animation: riseIn 520ms ease both;
}

.feature-card:nth-child(2),
.character-card:nth-child(2),
.dash-panel:nth-child(2),
.episode-card:nth-child(2) {
  animation-delay: 70ms;
}

.feature-card:nth-child(3),
.dash-panel:nth-child(3),
.episode-card:nth-child(3) {
  animation-delay: 120ms;
}

.dash-panel:nth-child(4),
.episode-card:nth-child(4) {
  animation-delay: 170ms;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 11.2rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 9.1rem;
  padding: 0.75rem;
  border-radius: 0.45rem;
}

.feature-card h2 {
  margin: 0 0 0.3rem;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: #d9dde0;
  font-size: 1rem;
  line-height: 1.42;
}

.feature-card a {
  display: inline-block;
  margin-top: 0.75rem;
  color: #d18aff;
  font-weight: 760;
}

.episode-screen,
.duo-medallion {
  position: relative;
  min-width: 0;
  height: 7.4rem;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #080d16;
}

.episode-screen {
  border: 1px solid rgba(191, 92, 255, 0.55);
  background:
    linear-gradient(rgba(156, 66, 255, 0.3), rgba(156, 66, 255, 0.02)),
    url("assets/hero.png") center / cover;
  box-shadow: inset 0 0 1.4rem rgba(188, 83, 255, 0.5);
}

.screen-glow {
  position: absolute;
  inset: 1.05rem;
  border: 1px solid rgba(187, 98, 255, 0.6);
  box-shadow: 0 0 1.1rem rgba(187, 98, 255, 0.62);
}

.episode-screen svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0.55rem;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 50%;
  fill: currentColor;
  background: rgba(4, 7, 12, 0.68);
  box-shadow: var(--shadow-green);
  transform: translate(-50%, -50%);
}

.duo-medallion {
  width: 7.6rem;
  height: 7.6rem;
  justify-self: center;
  border: 1px solid rgba(183, 255, 53, 0.25);
  border-radius: 50%;
  background: url("assets/hero.png") 65% 50% / 205% no-repeat;
  box-shadow: inset 0 0 0 3px rgba(6, 9, 16, 0.82), 0 0 1.2rem rgba(105, 255, 53, 0.2);
}

.coin-icon {
  width: 7.5rem;
  height: 7.5rem;
  justify-self: center;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 1.2rem rgba(183, 255, 53, 0.35));
}

.spotlight {
  margin-top: 0.95rem;
  margin-bottom: 4.4rem;
  padding: 0.8rem;
  border-radius: 0.45rem;
}

.spotlight > h2 {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.spotlight > h2 svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.character-card {
  display: grid;
  grid-template-columns: 13.5rem minmax(0, 1fr);
  align-items: center;
  min-height: 7.9rem;
  overflow: hidden;
  border-radius: 0.45rem;
}

.character-card.rugz {
  border-color: rgba(187, 98, 255, 0.72);
  background: linear-gradient(100deg, rgba(50, 20, 92, 0.74), rgba(14, 16, 31, 0.94));
}

.character-card.lucky {
  border-color: rgba(95, 255, 73, 0.58);
  background: linear-gradient(100deg, rgba(25, 64, 42, 0.8), rgba(6, 31, 25, 0.94));
}

.character-crop {
  align-self: stretch;
  min-height: 8.4rem;
  background-image: url("assets/hero.png");
  background-repeat: no-repeat;
  filter: drop-shadow(0 0.3rem 0.8rem rgba(0, 0, 0, 0.75));
}

.rugz-crop {
  background-position: 53% 42%;
  background-size: 265%;
}

.lucky-crop {
  background-position: 75% 42%;
  background-size: 255%;
}

.name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.38rem;
}

.name-row h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1;
}

.name-row span {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0 0.75rem;
  border-radius: 0.34rem;
  background: rgba(187, 98, 255, 0.35);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 800;
}

.lucky .name-row span,
.lucky .chips span {
  background: rgba(183, 255, 53, 0.18);
  color: var(--green);
}

.character-card p {
  max-width: 28rem;
  margin: 0;
  color: #e6eaec;
  font-size: 0.96rem;
  line-height: 1.32;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 1.35rem;
  padding: 0 0.62rem;
  border-radius: 0.28rem;
  background: rgba(187, 98, 255, 0.34);
  color: #f1dbff;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto minmax(19rem, 1.2fr) auto;
  align-items: center;
  gap: 2rem;
  min-height: 4.55rem;
  padding: 0.55rem 5.5vw;
  border-top: 1px solid rgba(150, 170, 190, 0.2);
  background: rgba(9, 14, 22, 0.96);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand p,
.copyright {
  margin: 0;
  color: #a7adb5;
  font-size: 0.78rem;
  line-height: 1.38;
}

.contract-address {
  margin: 0;
  color: #a7adb5;
  font-size: 0.82rem;
  font-weight: 700;
}

.contract-address span {
  color: var(--green);
}

.community-link {
  color: var(--green);
  font-weight: 850;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  color: #eef2f3;
  font-size: 0.92rem;
  font-weight: 700;
}

.soon-link {
  position: relative;
  color: #7f8790;
  cursor: default;
}

.soon-link::after {
  content: "soon";
  margin-left: 0.35rem;
  padding: 0.1rem 0.35rem;
  color: var(--green);
  border: 1px solid rgba(183, 255, 53, 0.28);
  border-radius: 0.25rem;
  background: rgba(183, 255, 53, 0.08);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.copyright {
  text-align: right;
}

.characters-body {
  background:
    radial-gradient(circle at 74% 20%, rgba(40, 255, 80, 0.08), transparent 28rem),
    radial-gradient(circle at 43% 18%, rgba(153, 56, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #02050a 0%, #05080e 56%, #020408 100%);
}

.characters-page {
  position: relative;
  width: min(86vw, 92rem);
  margin: 0 auto;
  padding: 1.2rem 0 3rem;
}

.characters-page::before {
  position: absolute;
  top: 0;
  right: -7vw;
  left: -7vw;
  height: 35rem;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background:
    linear-gradient(90deg, #03060a 0%, rgba(3, 6, 10, 0.64) 34%, rgba(3, 6, 10, 0.38) 65%, #03060a 100%),
    url("assets/hero.png") center 18% / cover no-repeat;
  mask-image: linear-gradient(#000 0%, #000 65%, transparent 100%);
}

.characters-top,
.characters-dashboard,
.gear-panel {
  position: relative;
  z-index: 2;
}

.characters-top {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.15fr;
  gap: 0.9rem;
  align-items: stretch;
}

.characters-intro {
  align-self: center;
  padding: 1rem 1.2rem 1rem 0;
}

.characters-intro h1,
.profile-copy h2 {
  margin: 0;
  color: #f7f7f2;
  font-family: Bangers, Impact, fantasy;
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 #1c1f20;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.72);
}

.characters-intro h1 {
  font-size: clamp(4.2rem, 5.6vw, 7rem);
}

.characters-intro .tagline {
  max-width: 35rem;
  margin-top: 0.85rem;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.green-link {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--green);
  font-weight: 700;
}

.profile-panel,
.dash-panel,
.gear-panel {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(11, 17, 27, 0.9), rgba(5, 9, 16, 0.94));
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.profile-panel {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 20.4rem;
  overflow: hidden;
}

.profile-rugz {
  border-color: rgba(187, 98, 255, 0.76);
  background:
    radial-gradient(circle at 76% 20%, rgba(111, 45, 171, 0.36), transparent 15rem),
    linear-gradient(180deg, rgba(23, 14, 43, 0.9), rgba(7, 10, 17, 0.95));
}

.profile-lucky {
  border-color: rgba(147, 255, 53, 0.62);
  background:
    radial-gradient(circle at 72% 18%, rgba(85, 255, 53, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(10, 42, 26, 0.88), rgba(4, 16, 12, 0.95));
}

.profile-portrait {
  min-height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  filter: drop-shadow(0 0.6rem 1rem rgba(0, 0, 0, 0.8));
}

.rugz-profile {
  background-image: url("assets/rugz.png");
}

.lucky-profile {
  background-image: url("assets/lucky.png");
}

.profile-copy {
  position: relative;
  padding: 1.25rem 1.2rem 1rem;
}

.profile-copy h2 {
  margin-top: 0.25rem;
  font-size: clamp(3.8rem, 4.6vw, 5.5rem);
}

.role-pill {
  display: inline-flex;
  min-height: 1.55rem;
  align-items: center;
  padding: 0 0.65rem;
  border-radius: 0.34rem;
  font-size: 0.86rem;
  font-weight: 800;
}

.role-pill.purple {
  color: #fff;
  border: 1px solid rgba(187, 98, 255, 0.58);
  background: rgba(98, 43, 145, 0.58);
}

.role-pill.green {
  color: var(--green);
  border: 1px solid rgba(183, 255, 53, 0.48);
  background: rgba(99, 144, 22, 0.36);
}

.profile-line {
  color: #cf86ff;
  font-weight: 800;
}

.profile-lucky .profile-line {
  color: var(--green);
}

.profile-copy p {
  margin: 0.6rem 0;
  color: #edf1ed;
  font-size: 0.9rem;
  line-height: 1.34;
}

.profile-copy blockquote {
  margin: 0.95rem 0 0;
  padding: 0.9rem 1rem;
  color: #fff;
  border: 1px solid rgba(187, 98, 255, 0.5);
  border-radius: 0.4rem;
  background: rgba(25, 12, 42, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
}

.profile-lucky blockquote {
  border-color: rgba(146, 255, 53, 0.45);
  background: rgba(10, 41, 20, 0.7);
}

.characters-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.73fr 0.92fr;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.dash-panel {
  min-height: 16rem;
  padding: 1rem;
}

.dash-panel h2,
.gear-panel h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.9rem;
  padding-bottom: 0.75rem;
  color: #c184ff;
  border-bottom: 1px solid rgba(160, 180, 202, 0.14);
  font-size: 0.96rem;
  line-height: 1;
  text-transform: uppercase;
}

.dash-panel h2 svg,
.gear-panel h2 svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chemistry-panel h2,
.relations-panel h2,
.gear-panel h2 {
  color: var(--green);
}

.stats-head,
.stat-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 2rem 1fr 2rem;
  gap: 0.6rem;
  align-items: center;
}

.stats-head {
  margin-bottom: 0.65rem;
  color: var(--green);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.stats-head strong:first-of-type {
  color: #c184ff;
}

.stat-row {
  min-height: 1.55rem;
  color: #e7ecea;
  font-size: 0.78rem;
}

.stat-row div {
  height: 0.68rem;
  overflow: hidden;
  border-radius: 0.08rem;
  background: rgba(255, 255, 255, 0.12);
}

.stat-row div::before {
  display: block;
  width: var(--w);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #8b43ff, #cf80ff);
}

.stat-row div:nth-of-type(2)::before {
  background: linear-gradient(90deg, #9eff28, #cdff4c);
}

.stat-row b {
  color: #d59bff;
  font-size: 0.78rem;
}

.stat-row b:nth-of-type(2) {
  color: var(--green);
}

.chemistry-panel h3 {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 1rem;
}

.chemistry-panel p {
  margin: 0;
  color: #dce0e2;
  font-size: 0.82rem;
  line-height: 1.42;
}

.chemistry-meter {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.15rem 0 0.8rem;
  padding-top: 1.55rem;
  color: #bd82ff;
  font-size: 0.78rem;
}

.chemistry-meter::before {
  position: absolute;
  top: 0.55rem;
  right: 0.45rem;
  left: 0.45rem;
  height: 0.48rem;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #a64dff 0 45%, var(--green) 45% 100%);
  box-shadow: 0 0 1rem rgba(183, 255, 53, 0.28);
}

.chemistry-meter strong {
  position: absolute;
  top: -0.28rem;
  left: 50%;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--green);
  border: 2px solid var(--purple);
  border-radius: 50%;
  background: #080b13;
  font-family: Permanent Marker, cursive;
  transform: translateX(-50%) rotate(-9deg);
}

.chemistry-meter span:last-child {
  color: var(--green);
}

.mini-callout {
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid rgba(183, 255, 53, 0.34);
  border-radius: 0.4rem;
  background: rgba(11, 39, 17, 0.35);
}

.mini-callout img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 50%;
}

.mini-callout strong {
  display: block;
  color: var(--green);
}

.quote-tabs {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.quote-tabs span {
  min-width: 3.8rem;
  padding: 0.48rem 0.7rem;
  border-radius: 0.35rem;
  background: rgba(93, 42, 143, 0.65);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
}

.quote-tabs span:last-child {
  color: var(--green);
  background: rgba(18, 49, 27, 0.55);
}

.quotes-panel p {
  margin: 0.42rem 0;
  padding: 0.58rem 0.75rem;
  border-radius: 0.34rem;
  background: rgba(51, 24, 84, 0.52);
  color: #dca9ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.quotes-panel .lucky-quote {
  background: rgba(15, 57, 24, 0.56);
  color: var(--green);
}

.relation-row {
  display: grid;
  grid-template-columns: 4.4rem 1fr 4.4rem;
  gap: 0.7rem;
  align-items: center;
  margin: 0.7rem 0;
}

.relation-row p {
  position: relative;
  margin: 0;
  color: #c586ff;
  font-size: 0.84rem;
  line-height: 1.12;
  text-align: center;
}

.relation-row p::before,
.relation-row p::after {
  position: absolute;
  top: 50%;
  width: 2.1rem;
  height: 1px;
  content: "";
  background: rgba(190, 111, 255, 0.65);
}

.relation-row p::before {
  right: calc(100% + 0.4rem);
}

.relation-row p::after {
  left: calc(100% + 0.4rem);
}

.relation-row:nth-child(4) p {
  color: var(--green);
}

.face {
  display: block;
  width: 4.1rem;
  height: 4.1rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  background-repeat: no-repeat;
  box-shadow: 0 0 1rem rgba(183, 255, 53, 0.16);
}

.rugz-face {
  color: #b56cff;
  background-image: url("assets/rugz.png");
  background-position: center 12%;
  background-size: 230%;
}

.lucky-face {
  color: var(--green);
  background-image: url("assets/lucky.png");
  background-position: center 10%;
  background-size: 220%;
}

.skull-face {
  color: var(--green);
  background-image: url("assets/coin.png");
  background-position: center;
  background-size: cover;
}

.doge-face {
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 40%, #d79a45 0 36%, transparent 37%),
    radial-gradient(circle at 36% 42%, #16110b 0 5%, transparent 6%),
    radial-gradient(circle at 64% 42%, #16110b 0 5%, transparent 6%),
    radial-gradient(circle at 50% 59%, #fff 0 13%, transparent 14%),
    #6f421d;
}

.gear-panel {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem 1rem;
  border-color: rgba(138, 255, 53, 0.48);
}

.gear-panel img {
  display: block;
  width: 100%;
  height: 9.6rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.35rem;
  opacity: 0.94;
}

.gear-copy {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: -8.9rem;
}

.gear-copy article {
  min-height: 8.7rem;
  padding: 4.6rem 0.85rem 0.7rem;
  border-right: 1px solid rgba(160, 180, 202, 0.12);
  background: linear-gradient(180deg, transparent, rgba(5, 8, 14, 0.72) 55%);
}

.gear-copy article:last-child {
  border-right: 0;
}

.gear-copy h3 {
  margin: 0 0 0.25rem;
  color: var(--green);
  font-size: 1rem;
}

.gear-copy p {
  margin: 0;
  color: #e1e5e5;
  font-size: 0.82rem;
  line-height: 1.25;
}

.gear-copy span {
  display: inline-flex;
  min-height: 1.25rem;
  align-items: center;
  margin-top: 0.45rem;
  padding: 0 0.55rem;
  border-radius: 0.24rem;
  background: rgba(183, 255, 53, 0.18);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.lore-body {
  background:
    radial-gradient(circle at 55% 12%, rgba(91, 255, 53, 0.11), transparent 30rem),
    radial-gradient(circle at 82% 15%, rgba(160, 62, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #02050a 0%, #05080e 60%, #020408 100%);
}

.lore-page {
  width: min(96vw, 98rem);
  margin: 0 auto;
  padding: 0.7rem 0 1.1rem;
}

.lore-hero {
  position: relative;
  min-height: 19.6rem;
  overflow: hidden;
  border: 1px solid rgba(160, 180, 202, 0.1);
  border-radius: 0 0 0.45rem 0.45rem;
  background: #05090f;
}

.lore-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.95;
}

.lore-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.98) 0%, rgba(3, 6, 10, 0.88) 28%, rgba(3, 6, 10, 0.16) 62%, rgba(3, 6, 10, 0.88) 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 6, 10, 0.24) 68%, #03060a 100%);
}

.lore-copy {
  position: relative;
  z-index: 2;
  width: min(51rem, 56vw);
  padding: 1.35rem 0 1rem 1.6rem;
}

.lore-copy h1 {
  margin: 0;
  color: #f7f7f2;
  font-family: Bangers, Impact, fantasy;
  font-size: clamp(4.4rem, 5.7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 #171b1d;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.72);
  white-space: nowrap;
}

.lore-copy h1 span {
  color: var(--green);
  font-family: Permanent Marker, cursive;
  font-size: 0.45em;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 0.85rem rgba(183, 255, 53, 0.44);
  transform: rotate(-3deg);
  display: inline-block;
}

.lore-mobile-break {
  display: none;
}

.lore-copy .tagline {
  max-width: 36rem;
  margin: 0.55rem 0 0.65rem;
  font-size: clamp(1.25rem, 1.45vw, 1.7rem);
}

.lore-copy .intro {
  max-width: 33rem;
  font-size: 0.98rem;
}

.lore-copy .hero-actions {
  margin-top: 0.9rem;
}

.lore-copy .btn {
  min-height: 3rem;
  min-width: 13.2rem;
  font-size: 0.98rem;
}

.activity-stack {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  gap: 0.65rem;
  width: min(17rem, 23vw);
}

.activity-card,
.chaos-card {
  padding: 0.65rem 0.82rem;
  border: 1px solid rgba(160, 180, 202, 0.22);
  border-radius: 0.45rem;
  background: rgba(8, 13, 21, 0.88);
  box-shadow: inset 0 0 1.5rem rgba(143, 255, 53, 0.03);
}

.activity-card h2,
.chaos-card h2 {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0 0 0.58rem;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.activity-card h2 span {
  font-size: 0.68rem;
}

.activity-card div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.34rem 0;
  border-top: 1px solid rgba(160, 180, 202, 0.1);
}

.activity-card strong {
  color: #dce2e4;
  font-size: 0.78rem;
  font-weight: 600;
}

.activity-card b,
.chaos-card strong {
  color: var(--green);
  flex-shrink: 0;
}

.chaos-card h2 span {
  color: #ff4f4f;
}

.chaos-card strong {
  float: left;
  margin-right: 0.7rem;
  font-size: 2.05rem;
  line-height: 1;
}

.chaos-card small {
  color: #aeb6bd;
  font-size: 0.8rem;
}

.sparkline {
  height: 1.9rem;
  margin-left: 5rem;
  background:
    linear-gradient(135deg, transparent 7%, rgba(255, 72, 72, 0.9) 7% 9%, transparent 9% 16%, rgba(255, 72, 72, 0.9) 16% 18%, transparent 18% 27%, rgba(255, 72, 72, 0.9) 27% 29%, transparent 29% 38%, rgba(255, 72, 72, 0.9) 38% 40%, transparent 40% 50%, rgba(255, 72, 72, 0.9) 50% 52%, transparent 52% 63%, rgba(255, 72, 72, 0.9) 63% 65%, transparent 65% 74%, rgba(255, 72, 72, 0.9) 74% 76%, transparent 76%),
    linear-gradient(rgba(255, 70, 70, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 70, 70, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 1rem 0.75rem, 1rem 0.75rem;
}

.chaos-card p {
  clear: both;
  margin: 0.1rem 0 0;
  color: #c6ccd1;
  font-size: 0.75rem;
}

.lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 1.13fr;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.lore-grid .dash-panel {
  position: relative;
  min-height: 15.7rem;
  overflow: hidden;
}

.lore-grid .dash-panel h2 {
  justify-content: flex-start;
  color: var(--green);
  font-family: Permanent Marker, cursive;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.lore-grid .dash-panel h2 a {
  margin-left: auto;
  color: #d57aff;
  font-family: Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: none;
}

.trenches-panel p {
  max-width: 20rem;
  margin: 0.8rem 0;
  color: #dce1e2;
  font-size: 0.85rem;
  line-height: 1.44;
}

.watermark-coin {
  position: absolute;
  right: -1rem;
  bottom: 1.4rem;
  width: 9.5rem;
  height: 9.5rem;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.14;
  filter: grayscale(1);
}

.lore-list {
  position: relative;
  z-index: 1;
  max-width: 17rem;
  margin: 1rem 0 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(160, 180, 202, 0.12);
  border-radius: 0.35rem;
  background: rgba(8, 13, 21, 0.68);
  list-style: none;
}

.lore-list li {
  padding: 0.32rem 0;
  color: #dce1e2;
  font-size: 0.78rem;
}

.lore-list li::before {
  content: "☢";
  margin-right: 0.45rem;
  color: var(--green);
}

.panel-link {
  position: absolute;
  right: 0.85rem;
  bottom: 0.7rem;
  left: 0.85rem;
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #d57aff;
  border: 1px solid rgba(187, 98, 255, 0.44);
  border-radius: 0.35rem;
  background: rgba(51, 20, 82, 0.46);
  font-size: 0.82rem;
  font-weight: 800;
}

.feed-row {
  display: grid;
  grid-template-columns: 1.7rem 1fr auto 3.1rem;
  gap: 0.55rem;
  align-items: center;
  min-height: 2.25rem;
  border-bottom: 1px solid rgba(160, 180, 202, 0.1);
}

.feed-row p {
  margin: 0;
  color: #dce1e2;
  font-size: 0.74rem;
}

.feed-row b {
  color: var(--green);
}

.feed-row em {
  padding: 0.2rem 0.38rem;
  color: #ff5b5b;
  border: 1px solid currentColor;
  border-radius: 0.25rem;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.feed-row:nth-child(4) em,
.feed-row:nth-child(6) em {
  color: #53ff53;
}

.feed-row:nth-child(5) em {
  color: #ffbd34;
}

.feed-row time {
  color: #8f98a1;
  font-size: 0.7rem;
}

.grave-row {
  display: grid;
  grid-template-columns: 1.7rem 1fr 5rem 3.8rem;
  gap: 0.4rem;
  align-items: center;
  min-height: 2.1rem;
  color: #e8ecec;
  border-bottom: 1px solid rgba(160, 180, 202, 0.1);
  font-size: 0.78rem;
}

.grave-row span {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #111;
  border-radius: 0.18rem;
  background: #aaa;
}

.grave-row small {
  color: #9ba4aa;
}

.grave-row em {
  color: #ff4d4d;
  font-style: normal;
  text-align: right;
}

.radar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.radar {
  position: relative;
  width: min(12rem, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid var(--green);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(183, 255, 53, 0.32) 0 5%, transparent 6% 100%),
    repeating-radial-gradient(circle, transparent 0 22%, rgba(183, 255, 53, 0.45) 23% 24%, transparent 25% 43%),
    linear-gradient(90deg, transparent 49%, rgba(183, 255, 53, 0.75) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(183, 255, 53, 0.75) 50%, transparent 51%),
    conic-gradient(from 45deg, transparent, rgba(100, 255, 53, 0.18), transparent 22%);
  box-shadow: inset 0 0 1.5rem rgba(119, 255, 53, 0.25), 0 0 1rem rgba(119, 255, 53, 0.22);
}

.radar::after {
  position: absolute;
  inset: 50% 0 49% 50%;
  content: "";
  background: var(--green);
  transform-origin: left;
  animation: sweep 5s linear infinite;
}

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

.dot {
  position: absolute;
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 8, 14, 0.85);
  border: 1px solid currentColor;
}

.dot::before {
  font-size: 1.25rem;
}

.dot.dog {
  top: 26%;
  left: 25%;
  color: #ffca55;
}

.dot.dog::before {
  content: "🐶";
}

.dot.frog {
  top: 27%;
  right: 18%;
  color: #53ff53;
}

.dot.frog::before {
  content: "🐸";
}

.dot.skull {
  right: 21%;
  bottom: 24%;
  color: var(--green);
}

.dot.skull::before {
  content: "💀";
}

.dot.cat {
  bottom: 17%;
  left: 35%;
  color: #d37bff;
}

.dot.cat::before {
  content: "😼";
}

.radar-legend {
  border: 1px solid rgba(160, 180, 202, 0.18);
  border-radius: 0.4rem;
  padding: 0.55rem 0.75rem;
  background: rgba(8, 13, 21, 0.66);
}

.radar-legend p {
  display: grid;
  grid-template-columns: 0.8rem 1fr auto;
  gap: 0.55rem;
  align-items: center;
  margin: 0;
  min-height: 1.75rem;
  border-bottom: 1px solid rgba(160, 180, 202, 0.1);
}

.radar-legend p:last-child {
  border-bottom: 0;
}

.radar-legend span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #48ff55;
}

.radar-legend p:nth-child(2) span {
  background: #ffd35a;
}

.radar-legend p:nth-child(3) span {
  background: #62c7ff;
}

.radar-legend p:nth-child(n+4) span {
  background: #ff4d4d;
}

.radar-legend b,
.radar-legend em {
  color: #e8eeee;
  font-size: 0.82rem;
}

.radar-legend em {
  color: var(--green);
  font-style: normal;
}

.radar-legend p:nth-child(n+4) em {
  color: #ff5b5b;
}

.glossary-panel {
  margin-top: 0.65rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(11, 17, 27, 0.9), rgba(5, 9, 16, 0.94));
}

.glossary-panel h2 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  color: var(--green);
  font-family: Permanent Marker, cursive;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.glossary-panel svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.65rem;
}

.glossary-grid article {
  min-height: 4.8rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(160, 180, 202, 0.14);
  border-radius: 0.35rem;
  background: rgba(8, 13, 21, 0.68);
}

.glossary-grid span {
  float: left;
  margin-right: 0.6rem;
  font-size: 1.75rem;
}

.glossary-grid h3 {
  margin: 0 0 0.25rem;
  color: var(--green);
  font-size: 0.94rem;
  text-transform: uppercase;
}

.glossary-grid p {
  margin: 0;
  color: #d1d7da;
  font-size: 0.72rem;
  line-height: 1.28;
}

.community-body {
  background:
    radial-gradient(circle at 70% 12%, rgba(160, 62, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 25% 22%, rgba(79, 255, 53, 0.1), transparent 28rem),
    linear-gradient(180deg, #02050a 0%, #05080e 60%, #020408 100%);
}

.community-page {
  width: min(92rem, 92vw);
  margin: 0 auto;
  padding: 0.75rem 0 1.1rem;
}

.community-hero {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid rgba(160, 180, 202, 0.1);
  border-radius: 0 0 0.45rem 0.45rem;
  background: #05090f;
}

.community-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.community-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.98) 0%, rgba(3, 6, 10, 0.88) 25%, rgba(3, 6, 10, 0.18) 58%, rgba(3, 6, 10, 0.36) 100%),
    linear-gradient(180deg, transparent 0%, rgba(3, 6, 10, 0.08) 68%, #03060a 100%);
}

.community-copy {
  position: relative;
  z-index: 2;
  width: min(39rem, 43vw);
  padding: 1.55rem 0 1.25rem 1rem;
}

.community-copy h1 {
  margin: 0;
  color: #f7f7f2;
  font-family: Bangers, Impact, fantasy;
  font-size: clamp(5.6rem, 6.6vw, 8.1rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 #171b1d;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.72);
}

.community-copy .tagline {
  margin: 0.7rem 0;
  font-size: clamp(1.35rem, 1.7vw, 2rem);
}

.community-copy .intro {
  max-width: 30rem;
  font-size: 0.95rem;
}

.community-copy .hero-actions {
  margin-top: 1rem;
}

.community-copy .btn {
  min-width: 10.5rem;
  min-height: 2.8rem;
  font-size: 0.9rem;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.98fr 0.88fr 1.12fr;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.community-grid .dash-panel {
  min-height: 14.2rem;
  padding: 0.85rem;
  overflow: hidden;
}

.community-grid h2,
.community-bottom h2 {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0 0 0.7rem;
  color: #c184ff;
  font-size: 0.88rem;
  line-height: 1;
  text-transform: uppercase;
}

.community-grid h2 a,
.community-grid h2 select {
  color: #d57aff;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
}

.post-row {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.7rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(160, 180, 202, 0.11);
}

.avatar {
  width: 2.7rem;
  height: 2.7rem;
}

.post-row p {
  min-width: 0;
  margin: 0;
  color: #d8dde0;
  font-size: 0.78rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.post-row b {
  display: inline-block;
  margin-right: 0.7rem;
  color: #d68cff;
}

.post-row small {
  color: #848d96;
}

.post-row em {
  color: #a8ff3d;
  font-style: normal;
}

.post-stats {
  grid-column: 2;
  display: flex;
  gap: 1.2rem;
  color: #b679ff;
  font-size: 0.75rem;
}

.post-stats span::before {
  margin-right: 0.25rem;
  color: var(--green);
}

.post-stats span:nth-child(1)::before { content: "♡"; }
.post-stats span:nth-child(2)::before { content: "↻"; }
.post-stats span:nth-child(3)::before { content: "↗"; }

.art-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.48fr 0.48fr;
  grid-template-rows: 7.2rem 4rem;
  gap: 0.35rem;
}

.art-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(187, 98, 255, 0.32);
  border-radius: 0.25rem;
}

.art-mosaic img:first-child {
  grid-column: 1 / -1;
}

.top-degens ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: degen;
}

.top-degens li {
  counter-increment: degen;
  display: grid;
  grid-template-columns: 1.5rem 2.25rem 1fr auto;
  gap: 0.6rem;
  align-items: center;
  min-height: 2.35rem;
  color: #e7ecec;
  border-top: 1px solid rgba(160, 180, 202, 0.1);
  font-size: 0.78rem;
}

.top-degens li b,
.top-degens li em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.top-degens li::before {
  content: counter(degen);
  color: var(--green);
  font-weight: 900;
}

.top-degens .avatar {
  width: 2rem;
  height: 2rem;
}

.frog-mini {
  display: grid;
  place-items: center;
  color: #53ff53;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #132719;
}

.frog-mini::before {
  content: "🐸";
}

.top-degens em {
  color: var(--green);
  font-style: normal;
}

.challenge {
  display: grid;
  grid-template-columns: 4.9rem 1fr;
  gap: 0.9rem;
  align-items: center;
  margin-top: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(160, 180, 202, 0.14);
  border-radius: 0.35rem;
  background: rgba(8, 13, 21, 0.58);
}

.challenge img,
.chart-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
}

.challenge img {
  object-fit: cover;
}

.chart-icon {
  display: grid;
  place-items: center;
  color: #d168ff;
  border: 2px solid currentColor;
  background: rgba(85, 21, 134, 0.35);
  font-size: 2.2rem;
}

.challenge h3 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.25rem;
  color: var(--green);
  font-size: 0.9rem;
}

.challenge h3 span {
  color: var(--green);
  border: 1px solid rgba(183, 255, 53, 0.24);
  border-radius: 0.25rem;
  padding: 0.12rem 0.45rem;
  background: rgba(183, 255, 53, 0.08);
  font-size: 0.72rem;
}

.challenge:nth-of-type(2) h3,
.challenge:nth-of-type(2) h3 span {
  color: #d168ff;
}

.challenge p,
.challenge small {
  margin: 0;
  color: #d6dcde;
  font-size: 0.74rem;
}

.progress {
  height: 0.4rem;
  margin: 0.5rem 0 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.progress.purple span {
  background: #c066ff;
}

.community-bottom {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1.55fr;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.join-card,
.drops-card,
.follow-card {
  min-height: 8.7rem;
  border: 1px solid rgba(138, 255, 53, 0.48);
  border-radius: 0.45rem;
  background: linear-gradient(180deg, rgba(11, 31, 18, 0.86), rgba(5, 9, 16, 0.94));
  padding: 0.85rem;
}

.join-card {
  display: grid;
  grid-template-columns: 1fr 9rem;
  overflow: hidden;
}

.community-bottom h2 {
  color: var(--green);
}

.join-card p,
.follow-card p {
  max-width: 22rem;
  margin: 0 0 0.9rem;
  color: #d7dddf;
  font-size: 0.78rem;
  line-height: 1.35;
}

.join-card .btn {
  min-width: 10rem;
  min-height: 3.1rem;
  font-size: 0.88rem;
}

.hoodie {
  display: grid;
  place-items: center;
  min-height: 7rem;
  color: var(--green);
  border-radius: 38% 38% 12% 12%;
  background:
    radial-gradient(circle at 50% 2%, transparent 0 21%, rgba(12, 16, 18, 0.95) 22%),
    linear-gradient(135deg, #13181b, #050607);
  box-shadow: 0 0 1.5rem rgba(53, 255, 103, 0.28);
  font-family: Permanent Marker, cursive;
  text-align: center;
  transform: rotate(-7deg);
}

.drop-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr 4rem;
  gap: 0.75rem;
  align-items: center;
  min-height: 3.6rem;
  padding: 0.45rem;
  border: 1px solid rgba(160, 180, 202, 0.14);
  border-radius: 0.35rem;
  background: rgba(8, 13, 21, 0.5);
}

.drop-row + .drop-row {
  margin-top: 0.45rem;
}

.drop-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--purple);
  border-radius: 50%;
  background: rgba(57, 22, 92, 0.48);
  font-family: Permanent Marker, cursive;
}

.drop-icon.blue {
  color: #60dcff;
  border-color: #23b8ff;
}

.drop-row p {
  margin: 0;
  color: #cbd3d7;
  font-size: 0.74rem;
  line-height: 1.25;
}

.drop-row b {
  display: block;
  color: var(--green);
  font-size: 0.86rem;
}

.drop-row time {
  color: #d57aff;
  border: 1px solid rgba(187, 98, 255, 0.42);
  border-radius: 0.35rem;
  padding: 0.35rem 0.2rem;
  background: rgba(42, 18, 67, 0.58);
  font-size: 0.86rem;
  line-height: 1.12;
  text-align: center;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.channel-grid a,
.channel-soon {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  color: #dce2e5;
  font-size: 0.78rem;
}

.channel-grid a > span,
.channel-soon > span {
  display: grid;
  width: 4.35rem;
  height: 4.35rem;
  place-items: center;
  border: 1px solid rgba(183, 255, 53, 0.42);
  border-radius: 0.35rem;
  background: rgba(8, 13, 21, 0.72);
  color: #d680ff;
  box-shadow: 0 0 1.3rem rgba(187, 98, 255, 0.22);
  font-size: 2rem;
}

.channel-soon {
  color: #7f8790;
  cursor: default;
}

.channel-soon > span {
  opacity: 0.55;
  filter: grayscale(0.5);
}

.episodes-body {
  background:
    radial-gradient(circle at 70% 18%, rgba(187, 98, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 20% 30%, rgba(82, 255, 53, 0.1), transparent 28rem),
    linear-gradient(180deg, #02050a 0%, #05080e 58%, #020408 100%);
}

.episodes-page {
  position: relative;
  width: min(90rem, 90vw);
  margin: 0 auto;
  padding: 1.25rem 0 1.15rem;
}

.episodes-page::before {
  position: absolute;
  inset: 0 -5vw auto;
  z-index: 0;
  height: 40rem;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background:
    linear-gradient(90deg, #03060a 0%, rgba(3, 6, 10, 0.56) 50%, #03060a 100%),
    url("assets/community-hero.png") center / cover no-repeat;
  mask-image: linear-gradient(#000 0%, transparent 88%);
}

.episodes-hero,
.episode-list {
  position: relative;
  z-index: 1;
}

.episodes-hero {
  display: grid;
  grid-template-columns: 0.92fr 2.18fr;
  gap: 1.25rem;
  align-items: center;
}

.episodes-copy h1 {
  margin: 0;
  color: #f7f7f2;
  font-family: Bangers, Impact, fantasy;
  font-size: clamp(6rem, 8.6vw, 10rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 #171b1d;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.72);
}

.episodes-copy .tagline {
  margin: 0.7rem 0 0.9rem;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
}

.drop-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: #f1f5ef;
  font-size: 1.1rem;
  font-weight: 600;
}

.drop-note svg,
.season-pill svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.episodes-copy .intro {
  max-width: 27rem;
}

.season-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.25rem;
  margin-top: 1.2rem;
  padding: 0 1.6rem;
  color: var(--green);
  border: 1px solid var(--purple);
  border-radius: 0.45rem;
  background: rgba(31, 12, 52, 0.72);
  box-shadow: inset 0 0 1.2rem rgba(187, 98, 255, 0.24), var(--shadow-purple);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-episode {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  min-height: 23rem;
  overflow: hidden;
  border: 1px solid rgba(187, 98, 255, 0.82);
  border-radius: 0.5rem;
  background:
    radial-gradient(circle at 38% 50%, rgba(187, 98, 255, 0.2), transparent 20rem),
    rgba(4, 7, 13, 0.92);
  box-shadow: 0 0 1.6rem rgba(187, 98, 255, 0.38), inset 0 0 2rem rgba(187, 98, 255, 0.12);
}

.featured-episode img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
  object-position: center;
}

.featured-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 2.2rem 2rem;
}

.featured-copy span,
.episode-card > span {
  color: #d15cff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-copy h2,
.episode-card h2 {
  margin: 0.65rem 0 0.9rem;
  color: #f7f7f2;
  font-family: Bangers, Impact, fantasy;
  font-size: clamp(3.5rem, 4.4vw, 5.3rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0.05em 0.05em 0 #171b1d;
}

.featured-copy p {
  margin: 0 0 1.4rem;
  color: #d8dde0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.featured-copy .btn {
  min-width: 16rem;
  min-height: 3.35rem;
}

.episode-badge {
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  z-index: 4;
  width: 8rem;
  padding: 0.7rem 0.65rem 0.9rem;
  color: #f4dcff;
  background: linear-gradient(135deg, #7022a5, #b653ff);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 74%);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 1rem rgba(187, 98, 255, 0.6);
}

.episode-badge::after {
  content: "⚡";
  color: var(--green);
}

.episode-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.episode-card {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(187, 98, 255, 0.62);
  border-radius: 0.45rem;
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.78), rgba(5, 8, 14, 0.28)),
    var(--episode-bg);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 2rem rgba(187, 98, 255, 0.14);
}

.episode-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
}

.episode-card > * {
  position: relative;
  z-index: 2;
}

.episode-card h2 {
  max-width: 10rem;
  color: rgba(247, 247, 242, 0.72);
  font-size: clamp(2.1rem, 2.6vw, 3.1rem);
}

.episode-card p {
  margin: 2.1rem 0 0.8rem;
  color: #eee;
  font-weight: 800;
}

.episode-card p::before {
  content: "🔒";
  margin-right: 0.55rem;
}

.episode-card em {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.75rem;
  color: #e187ff;
  border: 1px solid rgba(187, 98, 255, 0.72);
  border-radius: 0.35rem;
  background: rgba(23, 8, 38, 0.72);
  font-style: normal;
}

.episode-card.launch {
  --episode-bg: url("assets/lore-hero.png");
}

.episode-card.too-good {
  --episode-bg: url("assets/community-hero.png");
}

.episode-card.rug-pull {
  --episode-bg: url("assets/coin.png");
}

.episode-card.chart {
  --episode-bg: url("assets/hero.png");
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .feature-grid,
  .spotlight {
    width: min(92vw, 76rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: -5.5rem;
  }

  .feature-card {
    grid-template-columns: 10rem 1fr;
  }

  .characters-page {
    width: min(92vw, 92rem);
  }

  .characters-top,
  .characters-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .characters-intro {
    grid-column: 1 / -1;
  }

  .relations-panel,
  .quotes-panel {
    min-height: 14rem;
  }

  .lore-copy {
    width: min(45rem, 62vw);
  }

  .activity-stack {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    grid-template-columns: 1fr 1fr;
    margin: 0.7rem 1rem 1rem;
  }

  .lore-hero {
    min-height: 25rem;
  }

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

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

  .community-copy {
    width: min(38rem, 52vw);
  }

  .community-grid,
  .community-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .challenges,
  .follow-card {
    grid-column: 1 / -1;
  }

  .episodes-page {
    width: min(92vw, 90rem);
  }

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

  .episodes-copy .intro {
    max-width: 42rem;
  }

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

@media (max-width: 820px) {
  .site-header {
    height: auto;
    min-height: 4.8rem;
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  .brand-word {
    font-size: 1.85rem;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.05rem;
  }

  .primary-cta {
    display: none;
  }

  .hero {
    min-height: 46rem;
  }

  .hero-art {
    object-position: 62% top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 5, 8, 0.48), rgba(2, 5, 8, 0.72) 43%, #03060a 85%),
      linear-gradient(90deg, rgba(2, 5, 8, 0.9), rgba(2, 5, 8, 0.12) 80%);
  }

  .hero-copy {
    width: 100%;
    padding: 18.5rem 1rem 8.3rem;
  }

  .hero h1 {
    font-size: clamp(3.85rem, 16vw, 5.2rem);
    -webkit-text-stroke-width: 1px;
  }

  .tagline {
    font-size: 1.45rem;
  }

  .intro {
    max-width: 32rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .btn {
    flex: 1 1 100%;
    min-width: min(100%, 14rem);
    min-height: 3.35rem;
    font-size: 1rem;
  }

  .feature-grid {
    margin-top: -4.5rem;
  }

  .feature-card {
    grid-template-columns: 7rem 1fr;
  }

  .episode-screen,
  .duo-medallion,
  .coin-icon {
    width: 6.2rem;
    height: 6.2rem;
  }

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

  .character-card {
    grid-template-columns: 9.2rem 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.2rem 1rem;
  }

  .socials {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .copyright {
    text-align: left;
  }

  .characters-top,
  .characters-dashboard,
  .gear-copy {
    grid-template-columns: 1fr;
  }

  .characters-intro h1 {
    font-size: clamp(3.55rem, 15vw, 5.4rem);
  }

  .profile-panel {
    grid-template-columns: 42% 58%;
    min-height: 21rem;
  }

  .profile-copy h2 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .stats-head,
  .stat-row {
    grid-template-columns: 1.05fr 0.8fr 2rem 0.8fr 2rem;
  }

  .gear-panel img {
    height: 22rem;
  }

  .gear-copy {
    margin-top: -21.2rem;
  }

  .gear-copy article {
    min-height: 5.1rem;
    padding: 2.2rem 0.85rem 0.7rem;
    border-right: 0;
    border-bottom: 1px solid rgba(160, 180, 202, 0.12);
  }

  .lore-page {
    width: calc(100vw - 1rem);
  }

  .lore-hero {
    min-height: 36rem;
  }

  .lore-hero > img {
    object-position: 58% top;
  }

  .lore-shade {
    background:
      linear-gradient(180deg, rgba(3, 6, 10, 0.28) 0%, rgba(3, 6, 10, 0.76) 38%, #03060a 76%),
      linear-gradient(90deg, rgba(3, 6, 10, 0.88), rgba(3, 6, 10, 0.2));
  }

  .lore-copy {
    width: 100%;
    padding: 14rem 1rem 0;
  }

  .lore-copy h1 {
    font-size: clamp(2.9rem, 12vw, 3.55rem);
    white-space: normal;
  }

  .lore-mobile-break {
    display: block;
  }

  .lore-copy .tagline {
    max-width: 21rem;
    font-size: 1.02rem;
  }

  .lore-copy .intro {
    max-width: 20.5rem;
    font-size: 0.92rem;
  }

  .activity-stack,
  .lore-grid,
  .radar-content,
  .glossary-grid {
    grid-template-columns: 1fr;
  }

  .activity-stack {
    margin: 0.8rem 0.5rem 1rem;
  }

  .activity-card div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .activity-card b {
    justify-self: start;
  }

  .community-page {
    width: calc(100vw - 1rem);
  }

  .community-hero {
    min-height: 39rem;
  }

  .community-hero > img {
    object-position: 58% top;
  }

  .community-shade {
    background:
      linear-gradient(180deg, rgba(3, 6, 10, 0.24) 0%, rgba(3, 6, 10, 0.68) 44%, #03060a 86%),
      linear-gradient(90deg, rgba(3, 6, 10, 0.9), rgba(3, 6, 10, 0.18));
  }

  .community-copy {
    width: 100%;
    padding: 18rem 1rem 1rem;
  }

  .community-copy h1 {
    font-size: clamp(3.9rem, 17vw, 5.2rem);
  }

  .community-copy .tagline {
    font-size: 1.18rem;
  }

  .community-copy .intro {
    max-width: 21rem;
    font-size: 0.9rem;
  }

  .community-grid,
  .community-bottom,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .post-row {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .post-stats {
    grid-column: 1 / -1;
    padding-left: 3.3rem;
  }

  .art-mosaic {
    grid-template-rows: 9rem 5rem;
  }

  .join-card {
    grid-template-columns: 1fr;
  }

  .hoodie {
    min-height: 8rem;
    margin-top: 0.8rem;
  }

  .follow-card {
    grid-column: auto;
  }

  .channel-grid {
    gap: 0.6rem;
  }

  .channel-grid a,
  .channel-soon {
    grid-template-columns: 4rem 1fr;
    align-items: center;
    justify-items: start;
  }

  .channel-grid a > span,
  .channel-soon > span {
    width: 3.6rem;
    height: 3.6rem;
  }

  .episodes-page {
    width: calc(100vw - 1rem);
  }

  .episodes-copy h1 {
    font-size: clamp(4.4rem, 19vw, 6rem);
  }

  .episodes-copy .intro,
  .featured-copy p {
    max-width: 21rem;
    overflow-wrap: anywhere;
  }

  .season-pill {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .featured-episode {
    grid-template-columns: 1fr;
  }

  .featured-episode img {
    min-height: 14rem;
  }

  .featured-copy {
    padding: 1.2rem;
  }

  .featured-copy h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .episode-list {
    grid-template-columns: 1fr;
  }

  .panel-link {
    position: static;
    margin-top: 0.8rem;
  }

  .lore-grid .dash-panel {
    min-height: auto;
  }

  .glossary-grid {
    gap: 0.5rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    max-width: 100%;
  }

  .brand-word {
    min-width: 0;
    font-size: clamp(1.5rem, 8.3vw, 1.85rem);
  }

  .hero {
    min-height: 50rem;
  }

  .hero-copy {
    padding-top: 18rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 14vw, 4.05rem);
  }

  .tagline {
    font-size: 1.12rem;
    line-height: 1.18;
  }

  .intro {
    font-size: 0.92rem;
    line-height: 1.36;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .episode-screen {
    width: 100%;
  }

  .duo-medallion,
  .coin-icon {
    justify-self: start;
  }

  .character-card {
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
  }

  .character-crop {
    min-height: 9rem;
  }

  .character-card > div:last-child {
    padding: 0 1rem;
  }

  .characters-page {
    width: calc(100vw - 2rem);
  }

  .characters-top {
    gap: 0.75rem;
  }

  .characters-intro {
    padding-right: 0;
  }

  .profile-panel {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    min-height: 19rem;
  }

  .rugz-profile {
    background-position: center bottom;
    background-size: contain;
  }

  .lucky-profile {
    background-position: center bottom;
    background-size: contain;
  }

  .stats-head {
    display: none;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr 2rem;
    margin-bottom: 0.55rem;
  }

  .stat-row div:nth-of-type(2),
  .stat-row b:nth-of-type(2) {
    display: none;
  }

  .relation-row {
    grid-template-columns: 3.5rem 1fr 3.5rem;
  }

  .face {
    width: 3.35rem;
    height: 3.35rem;
  }
}
