:root {
  --sky: #7dd6ff;
  --sky-deep: #48a9d8;
  --grass: #73cf4d;
  --grass-bright: #b6f06f;
  --sun: #ffdf6f;
  --dirt: #7a4d2b;
  --dirt-dark: #432315;
  --panel: rgba(57, 31, 14, 0.88);
  --panel-edge: #241005;
  --panel-shadow: rgba(47, 17, 1, 0.5);
  --text-main: #fff8dd;
  --text-soft: #f6e7b0;
  --link-blue: #88f4ff;
  --link-gold: #ffd45e;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-main);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.42), transparent 18%),
    radial-gradient(circle at 86% 14%, rgba(255, 224, 109, 0.52), transparent 24%),
    radial-gradient(circle at 22% 80%, rgba(86, 220, 125, 0.44), transparent 22%),
    radial-gradient(circle at 80% 82%, rgba(120, 217, 255, 0.35), transparent 20%),
    linear-gradient(180deg, var(--sky) 0%, #8ddcb5 58%, #f2da74 100%);
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 82, 52, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.55;
}

body::after {
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 22%);
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  background: rgba(12, 25, 36, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.site-brand {
  color: var(--text-main);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: transform 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(12, 25, 36, 0.95);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .site-nav.open {
    display: flex;
  }
}

.about-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
}

.about-copy,
.about-list {
  max-width: 780px;
  margin: 0 auto;
}

.about-copy {
  line-height: 1.8;
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.about-list {
  margin: 1.5rem auto 0;
  padding-left: 1.15rem;
  list-style: disc;
  color: var(--text-soft);
}

.about-list li {
  margin: 0.65rem 0;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  background: rgba(10, 18, 26, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.footer-note {
  color: #d9d6b7;
  font-size: 0.94rem;
  margin: 0;
}

.panel {
  position: relative;
  background: linear-gradient(180deg, rgba(86, 46, 18, 0.94), var(--panel));
  border: 4px solid var(--panel-edge);
  border-radius: 20px;
  box-shadow:
    0 14px 0 rgba(91, 50, 17, 0.94),
    0 26px 40px var(--panel-shadow);
  padding: 1.8rem;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background:
    linear-gradient(180deg, #cdf891 0%, #7fdd4d 40%, #5cad34 40%, #69ba3c 100%);
  border-bottom: 4px solid rgba(46, 92, 20, 0.95);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 20px 0 auto;
  height: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent 34%, rgba(255, 255, 255, 0.08) 60%, transparent 100%);
  pointer-events: none;
}

.hero-panel {
  text-align: center;
  padding-top: 2.9rem;
}

.eyebrow,
.section-label {
  margin: 0;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 2.00rem;
  font-weight: 700;
  color: var(--link-blue);
}

.logo {
  width: min(400px, 100%);
  display: block;
  margin: 0.6rem auto 0;
  filter: drop-shadow(0 18px 28px rgba(40, 16, 0, 0.45));
}

h1,
h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin-top: 0.5rem;
  font-size: clamp(2.5rem, 9vw, 4.4rem);
  color: #fff3a7;
  text-shadow:
    0 4px 0 #a25b00,
    0 8px 0 rgba(78, 28, 0, 0.9);
}

h2 {
  font-size: clamp(4rem, 7.5vw, 4.8rem);
}

.hero-copy {
  width: min(720px, 100%);
  margin: 0.95rem auto 0;
  line-height: 1.7;
  font-size: 1.02rem;
  color: var(--text-soft);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button-link,
.apply-link,
.member-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.85rem 1.2rem;
  border: 3px solid #2b1706;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  font-weight: 800;
  color: #112304;
  background: linear-gradient(180deg, #99fff5 0%, #68dbe0 35%, #2fb1b5 70%, #177d88 100%);
  box-shadow: 0 8px 0 rgba(30, 86, 93, 0.85);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button-link--gold,
.apply-link,
.member-link {
  background: linear-gradient(180deg, #fff9d2 0%, #ffed80 35%, #ffc446 70%, #d97606 100%);
  box-shadow: 0 8px 0 rgba(127, 64, 0, 0.92);
}

.button-link:hover,
.button-link:focus-visible,
.apply-link:hover,
.apply-link:focus-visible,
.member-link:hover,
.member-link:focus-visible {
  transform: translateY(3px);
  box-shadow: 0 5px 0 rgba(68, 34, 0, 0.82);
  filter: brightness(1.03);
}

.button-link:focus-visible,
.apply-link:focus-visible,
.member-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.members-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
  display: flex;
  flex-direction: column;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (max-width: 640px) {
  .section-head .section-label {
    font-size: 1.4rem;
  }

  .section-head h2 {
    font-size: clamp(2.4rem, 6vw, 2.8rem);
  }

  .site-header {
    display: none;
  }
}

.apply-link {
  min-height: 60px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  align-self: center;
  max-width: 500px;
  font-size: 1.1rem;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.admin-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
  display: flex;
  flex-direction: column;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.map-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.map-image {
  width: 100%;
  max-width: 1000px;
  border-radius: 20px;
  border: 3px solid rgba(35, 14, 3, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.map-description {
  max-width: 900px;
  color: #f6e7b0;
  text-align: center;
  line-height: 1.6;
}

.member-card,
.admin-card {
  position: relative;
  padding: 1rem;
  border-radius: 18px;
  border: 3px solid rgba(35, 14, 3, 0.92);
  background:
    linear-gradient(180deg, rgba(166, 245, 117, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(24, 8, 0, 0.26));
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 201, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.admin-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 10px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(135deg, #ffd45e 0%, #ff8c00 50%, #ff6b6b 100%);
}

.admin-avatar {
  display: block;
  width: 80%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.12);
}

.admin-name {
  margin: 0;
  padding-top: 0.55rem;
  font-size: 1.08rem;
  color: #fff5c4;
}

.admin-role {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  color: #f6e7b0;
  line-height: 1.5;
}

.member-avatar {
  display: block;
  width: 80%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.12);
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 10px;
  border-radius: 14px 14px 0 0;
  background: var(--card-gradient, linear-gradient(90deg, rgba(119, 220, 68, 0.9), rgba(255, 221, 92, 0.9)));
}

/* New sections */
.events-panel,
.gallery-panel,
.faq-panel,
.contact-panel,
.changelog-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
}

.events-list {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.event-item h3 {
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.event-item p {
  margin: 0.25rem 0;
  color: var(--text-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  margin: 1rem 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-main);
}

.faq-item p {
  margin: 1rem;
  color: var(--text-soft);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.contact-form textarea {
  min-height: 100px;
}

.changelog-list {
  max-width: 800px;
  margin: 0 auto;
}

.changelog-item {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid var(--link-gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 8px 8px 0;
}

.changelog-item h3 {
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.changelog-item p {
  margin: 0;
  color: var(--text-soft);
}

.member-name {
  margin: 0;
  padding-top: 0.55rem;
  font-size: 1.08rem;
  color: #fff5c4;
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.member-link {
  min-height: 46px;
  padding: 0.65rem;
  width: auto;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 3px solid rgba(43, 23, 6, 0.65);
}

.member-link img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.member-live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 3px solid rgba(43, 23, 6, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f8f8;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.member-live-badge.live {
  background: linear-gradient(180deg, #ff5a5a 0%, #d92d2d 100%);
  color: #fff;
  border-color: #ff9191;
}

.member-link--discord {
  background: rgba(255, 255, 255, 0.06);
}

.member-note {
  margin: 1.4rem 0 0;
  color: #f8ebba;
  line-height: 1.7;
}

.server-status-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
  display: flex;
  flex-direction: column;
}

.server-info {
  margin-top: 1.5rem;
  text-align: center;
}

.server-info p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.status-online {
  color: #7dd6ff;
  font-weight: bold;
}

.status-offline {
  color: #ff6f6f;
  font-weight: bold;
}

.online-players {
  margin-top: 1rem;
}

.online-players ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.online-players li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #fff;
}

.online-player-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
}

.online-players li span {
  display: inline-block;
  min-width: 76px;
}

.creator-of-week-panel {
  margin-top: 2rem;
  padding-top: 2.8rem;
  display: flex;
  flex-direction: column;
}

.creator-of-week-panel .section-label {
  color: var(--text-main);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 7.5vw, 4.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.creator-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.creator-skin-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.creator-skin {
  display: block;
  width: 400px;
  height: 400px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 18px 28px rgba(40, 16, 0, 0.45));
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
}

.creator-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  min-width: 200px;
}

.creator-name {
  margin: 0;
  font-family: "Brush Script MT", cursive;
  font-size: clamp(2.8rem, 10vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b9d 0%, #c84b8a 25%, #ffd45e 50%, #ff6b9d 75%, #c84b8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  line-height: 1.2;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
}

.creator-live-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 3px solid rgba(43, 23, 6, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f8f8;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.creator-live-badge.live {
  background: linear-gradient(180deg, #ff5a5a 0%, #d92d2d 100%);
  color: #fff;
  border-color: #ff9191;
}

.creator-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  border: 3px solid #2b1706;
  background: linear-gradient(180deg, #fff9d2 0%, #ffed80 35%, #ffc446 70%, #d97606 100%);
  box-shadow: 0 8px 0 rgba(127, 64, 0, 0.92);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  text-decoration: none;
}

.creator-link:hover,
.creator-link:focus-visible {
  transform: translateY(3px);
  box-shadow: 0 5px 0 rgba(68, 34, 0, 0.82);
  filter: brightness(1.03);
}

.creator-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.creator-link img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.asset {
  position: absolute;
  left: var(--left);
  top: var(--top);
  width: var(--size);
  height: var(--size);
  transform:
    translate3d(var(--shift-x, 0px), var(--shift-y, 0px), 0)
    rotate(var(--tilt, 0deg));
  will-change: transform;
}

.asset-float {
  width: 100%;
  height: 100%;
  animation: float var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
  filter: drop-shadow(0 14px 16px rgba(40, 20, 7, 0.28));
}

.asset-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}

.mouse-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 40%, transparent 72%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .asset {
    transform: none !important;
  }

  .asset-float {
    animation: none;
  }

  .mouse-glow {
    display: none;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 1.1rem;
  }

  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .site-nav {
    justify-content: center;
    gap: 0.7rem;
  }

  .site-nav a {
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
  }

  .panel {
    border-radius: 18px;
    padding: 1.3rem;
  }

  .panel::before {
    height: 18px;
  }

  .panel::after {
    inset: 18px 0 auto;
  }

  .hero-panel {
    padding-top: 2.3rem;
  }

  .section-head {
    align-items: flex-start;
  }

  .asset {
    opacity: 0.85;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 0.9rem);
    padding-bottom: 2rem;
  }

  .site-header-inner {
    padding: 0.45rem 0;
    gap: 0.4rem;
    align-items: center;
  }

  .site-brand {
    width: 100%;
    text-align: center;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }

  .site-nav a {
    padding: 0.45rem 0.7rem;
    font-size: 0.86rem;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-note {
    text-align: center;
  }

  .panel {
    padding: 1.1rem;
  }

  .hero-panel {
    padding-top: 2rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .section-label {
    margin-top: 0.8rem;
  }

  .button-link,
  .member-link {
    width: 100%;
  }

  .apply-link {
    display: inline-flex;
    width: auto;
    max-width: 420px;
    margin: 1.4rem auto 0;
  }

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

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

  .creator-showcase {
    flex-direction: column;
    gap: 1.5rem;
  }

  .creator-skin {
    width: 280px;
    height: 280px;
  }

  .creator-name {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .creator-link {
    width: 60px;
    height: 60px;
  }

  .creator-link img {
    width: 40px;
    height: 40px;
  }

  .asset--bee,
  .asset--slime,
  .asset--allay {
    display: none;
  }

  .asset--sword {
    --size: 100px !important;
    --left: 72% !important;
    --top: 4% !important;
  }

  .asset--grass {
    --size: 120px !important;
    --left: 80% !important;
    --top: 70% !important;
  }

  .asset--bucket {
    --size: 126px !important;
    --left: 1% !important;
    --top: 78% !important;
  }
}
