:root {
  --bg: #000;
  --ink: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.6);
  --accent: #b700ff;
  --accent-2: rgba(183, 0, 255, 0.3);
  --glass: rgba(0, 0, 0, 0.3);
  --font: "Poppins", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: "Orbitron", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

/* Hide scrollbars globally */
* {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

*::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

html {
  scroll-behavior: smooth;
  height: 100%;
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

body {
  margin: 0;
  background: #0a0a0a;
  font-family: var(--font);
  color: var(--ink);
  overflow-x: hidden;
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
  /* Hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.desktop {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
  animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.desktop::before {
  content: "";
  position: fixed;
  width: 900px;
  height: 1159px;
  right: -180px;
  top: -60px;
  background: var(--accent);
  opacity: 0.3;
  filter: blur(275px);
  pointer-events: none;
  z-index: 0;
}

/* Top Banner */
.topBanner {
  background: linear-gradient(135deg, var(--accent), rgba(183, 0, 255, 0.7));
  padding: 12px 24px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.topBanner__content {
  max-width: px;
  margin: 0 auto;
}

/* Store Header */
.storeHeader {
  background: transparent;
  padding: 20px 48px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 48px;
  z-index: 10;
  max-width: 1440px;
  margin: 0 auto;
  min-height: auto;
}

.storeHeader__left {
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.storeHeader__right {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

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

/* Header Widgets (Server IP & Discord) */
.serverWidget,
.discordWidget {
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-heading);
  transition: transform 0.2s ease;
}

.serverWidget:hover,
.discordWidget:hover {
  transform: translateY(-2px);
}

.serverWidget__iconWrap,
.discordWidget__iconWrap {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--accent);
  /* EndCore Purple */
  border-radius: 50%;
  border-bottom: 4px solid #8a00c2;
  /* Darker purple bevel */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(183, 0, 255, 0.3);
}

.discordWidget__iconWrap {
  background: #5865F2;
  /* Discord default blurple */
  border-bottom-color: #404EED;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.serverWidget__img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.discordWidget__svg {
  width: 28px;
  height: 28px;
}

.serverWidget__icon,
.discordWidget__icon {
  font-size: 24px;
  color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
}

.serverWidget__badge,
.discordWidget__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff3b30;
  /* Red badge pop */
  border: 2px solid #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 24px;
  text-align: center;
  z-index: 2;
}

.serverWidget__content,
.discordWidget__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.discordWidget__content {
  text-align: right;
  align-items: flex-end;
}

.serverWidget__title {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.discordWidget__title {
  color: #5865F2;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Token Widget */
.tokenWidget {
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-heading);
  transition: transform 0.2s ease;
  margin-top: 12px;
}

.tokenWidget:hover {
  transform: translateY(-2px);
}

.tokenWidget:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(1);
}

.tokenWidget__iconWrap {
  position: relative;
  width: 56px;
  height: 56px;
  background: #FFD700;
  /* Gold */
  border-radius: 50%;
  border-bottom: 4px solid #B8860B;
  /* Dark Gold/Rod */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.tokenWidget__icon {
  font-size: 28px;
  line-height: 1;
}

.tokenWidget__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  align-items: flex-end;
}

.tokenWidget__title {
  color: #FFD700;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tokenWidget__sub {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.tokenWidget:hover .tokenWidget__sub {
  opacity: 1;
}

.serverWidget__sub,
.discordWidget__sub {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.serverWidget:hover .serverWidget__sub,
.discordWidget:hover .discordWidget__sub {
  opacity: 1;
}

/* Tooltip for Copy */
.serverWidget {
  position: relative;
}

.serverWidget::after {
  content: "Copied!";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.serverWidget.is-copied::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.headerLogo {
  width: 600px;
  height: 600px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(183, 0, 255, 0.4));
  animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.serverInfo,
.discordInfo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.serverInfo__badge,
.discordInfo__badge {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.serverInfo__content,
.discordInfo__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.serverInfo__icon {
  font-size: 36px;
  line-height: 1;
}

.serverInfo__text,
.discordInfo__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.serverInfo__label,
.discordInfo__label {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.serverInfo__copy,
.discordInfo__join {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  text-align: left;
}

.serverInfo__copy:hover,
.discordInfo__join:hover {
  color: #fff;
  text-decoration: underline;
}

.discordInfo__logo {
  font-size: 48px;
  color: #5865f2;
  line-height: 1;
}

.userInfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.userInfo__label {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.userInfo__login {
  background: rgba(183, 0, 255, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.userInfo__login:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Store Layout */
.storeLayout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding: 24px 48px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 200px);
}

/* Sidebar */
.sidebar {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: calc(48px + 20px);
}

.sidebar__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 20px;
  letter-spacing: 0.1em;
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar__link {
  padding: 12px 16px;
  background: rgba(183, 0, 255, 0.1);
  border: 1px solid rgba(183, 0, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  text-align: left;
}

.sidebar__link:hover {
  background: rgba(183, 0, 255, 0.2);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(4px);
}

.sidebar__link.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Main Content */
.mainContent {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Mobile Category Wrapper */
.mobileCategoryWrapper {
  position: relative;
  display: none;
  margin-bottom: 16px;
}

/* Mobile Category Button */
.mobileCategoryBtn {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(183, 0, 255, 0.2);
  border-radius: 8px;
  padding: 16px 24px;

  /* Text Styles */
  color: var(--accent);
  /* Theme Purple */
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  position: relative;
}

.mobileCategoryBtn:hover {
  background: rgba(183, 0, 255, 0.1);
  border-color: var(--accent);
}

.mobileCategoryBtn__icon {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.mobileCategoryBtn__text {
  flex: 1;
}

/* Mobile Category Dropdown */
.mobileCategoryDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0f0f0f;
  border: 1px solid rgba(183, 0, 255, 0.2);
  border-radius: 0 0 8px 8px;
  margin-top: 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.mobileCategoryDropdown.is-open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}

/* Hide the internal header since the main button toggles now */
.mobileCategoryDropdown__header {
  display: none;
}

.mobileCategoryDropdown__close {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobileCategoryDropdown__close:hover {
  color: #fff;
  transform: scale(1.1);
}

.mobileCategoryDropdown__title {
  color: var(--accent);
  /* Orange accent from reference */
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobileCategoryDropdown__nav {
  display: flex;
  flex-direction: column;
}

.mobileCategoryDropdown__link {
  padding: 20px 24px;
  color: #aaa;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #111;
  display: flex;
  align-items: center;
  position: relative;
}

.mobileCategoryDropdown__link:last-child {
  border-bottom: none;
}

.mobileCategoryDropdown__link:hover {
  background: #161616;
  color: #fff;
  padding-left: 32px;
}

.mobileCategoryDropdown__link.is-active {
  background: rgba(183, 0, 255, 0.1);
  /* Purple tint */
  color: #fff;
  padding-left: 32px;
  border-left: 4px solid var(--accent);
  /* Purple bar */
}


.sectionTitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 16px;
  letter-spacing: 0.1em;
}

.sectionText {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.welcomeSection,
.connectSection,
.supportSection,
.rewardsSection,
.discordSection,
.legalSection {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
}

.legalSection__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.connectSection .pill {
  margin-top: 16px;
}

.topbar__inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  gap: 24px;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: var(--transition);
  display: inline-block;
}

.brand:hover .brand__title {
  text-shadow: 0 0 20px rgba(183, 0, 255, 0.5);
  transform: scale(1.02);
}

.nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2em;
  color: var(--muted);
  transition: var(--transition);
  text-transform: none;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link.is-active {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(183, 0, 255, 0.3);
}

.nav__link.is-active::after {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  padding: 96px 48px 24px;
  min-height: 820px;
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.hero__left {
  padding-top: 170px;
  max-width: 700px;
}

.hero__headline {
  margin: 0;
  font-size: 65px;
  line-height: 65px;
  color: var(--accent);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 0 30px rgba(183, 0, 255, 0.3);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__subheadline {
  margin: 6px 0 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 50px;
  line-height: 66px;
  color: #fff;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__desc {
  margin: 0;
  margin-top: 10px;
  max-width: 520px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pill {
  height: 52px;
  padding: 14px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pill::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.pill:hover::before {
  width: 300px;
  height: 300px;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(183, 0, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.pill:active {
  transform: translateY(0);
}

/* Connected State (Log Out Button) */
.pill.is-connected {
  background: rgba(255, 59, 48, 0.2);
  /* Red tint for logout intent */
  border-color: #ff3b30;
  color: #ff3b30;
}

.pill.is-connected:hover {
  background: #ff3b30;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
}

.pill--primary {
  background: var(--accent);
}

.pill--glass {
  background: rgba(255, 255, 255, 0.3);
}

.pill__icon,
.pill__logo {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}

.hero__right {
  display: grid;
  place-items: center;
  padding-top: 50px;
}

.hero__art {
  width: min(850px, 100%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: radial-gradient(closest-side, rgba(183, 0, 255, 0.25), rgba(0, 0, 0, 0));
  filter: drop-shadow(11px 110px 31px rgba(0, 0, 0, 0.02)) drop-shadow(7px 71px 28px rgba(0, 0, 0, 0.13)) drop-shadow(4px 40px 24px rgba(0, 0, 0, 0.43)) drop-shadow(2px 18px 18px rgba(0, 0, 0, 0.72)) drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.83));
  position: relative;
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__art img:not([src]),
.hero__art img[src=""],
.hero__art img[src*="undefined"] {
  display: none;
}

.hero__art:has(img:not([src])) .hero__artMark,
.hero__art:has(img[src=""]) .hero__artMark,
.hero__art:has(img[src*="undefined"]) .hero__artMark {
  display: grid;
}

.hero__art--tight {
  width: min(709px, 92%);
}

.hero__artMark {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 140px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  padding: 16px 28px;
}

.hero__artHint {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 10px 12px;
}

.hero__artHint code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.footer {
  position: relative;
  padding: 40px 48px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.footer__legal {
  color: var(--muted);
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  text-transform: none;
}

.footer__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__link.is-active {
  color: var(--accent);
}

/* Discord page */
.twoCol {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  padding: 110px 48px 24px;
  min-height: 820px;
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.discordText {
  margin: 90px 0 0;
  width: min(653px, 100%);
  font-size: 25px;
  line-height: 36px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.discordText strong {
  color: var(--accent);
  font-weight: 600;
}

.ctaRow {
  margin-top: 36px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill--discord {
  height: 70px;
  background: rgba(88, 101, 242, 0.3);
  color: #5865f2;
  font-size: 30px;
}

.pill--youtube {
  height: 70px;
  background: rgba(255, 0, 0, 0.3);
  color: #ff0000;
  font-size: 30px;
}

.pill--discord .pill__logo,
.pill--youtube .pill__logo {
  width: 42px;
  height: 42px;
  font-size: 22px;
  color: #fff;
}

/* Rewards page */
.rewards {
  padding: 110px 48px 24px;
  min-height: 820px;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.pageTitle {
  margin: 0;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-heading);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.pageTitle--center {
  text-align: center;
}

.pageLead {
  margin: 10px auto 0;
  max-width: 900px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pageLead--small {
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
}

.watchWrap {
  margin: 70px auto 0;
  display: grid;
  place-items: center;
  gap: 16px;
}

.watchBtn {
  width: min(393px, 92%);
  min-height: 82px;
  padding: 16px 24px;
  border: 0;
  border-radius: 20px;
  background: var(--accent);
  box-shadow: 6px 7px 11.6px #000;
  cursor: pointer;
  color: #fff;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* key change */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.watchBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.watchBtn:hover::before {
  width: 400px;
  height: 400px;
}

.watchBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 8px 10px 20px rgba(183, 0, 255, 0.4);
}

.watchBtn:active:not(:disabled) {
  transform: translateY(0);
}

.watchBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.watchBtn__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(24px, 5vw, 32px);
  line-height: 1.2;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
  text-align: center;
  white-space: normal;
  /* allow wrapping if needed, but <br> handles it */
  display: block;
  /* changed from flex to block to allow <br> to work */
}

.watchMeta {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rewardGrid {
  margin: 36px auto 0;
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
  justify-items: center;
}

.rewardCard {
  width: 100%;
  max-width: 220px;
  display: grid;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  transform: translateY(0);
}

.rewardCard:hover {
  transform: translateY(-4px);
}

.rewardCard.is-claimed::after {
  content: "✓ Claimed";
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 10;
  pointer-events: none;
}

.rewardCard:hover .rewardCard__img {
  border-color: rgba(255, 255, 255, 0.22);
}

.pill.is-connected {
  opacity: 0.85;
  cursor: default;
}

.rewardCard__img {
  width: 100%;
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  overflow: visible;
  position: relative;
}

.rewardCard__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.rewardCard__img:has(img:not([src])),
.rewardCard__img:has(img[src=""]),
.rewardCard__img:has(img[src*="undefined"]) {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 14px;
}

.rewardCard__img img:not([src]),
.rewardCard__img img[src=""],
.rewardCard__img img[src*="undefined"] {
  display: none;
}

.rewardCard__title {
  font-family: var(--font);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #fef7ff;
  font-weight: 500;
}

.rewardCard__sub {
  font-family: var(--font);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  color: var(--accent);
  width: fit-content;
  padding: 1px 6px;
}

/* Legal pages */
.legal {
  padding: 110px 48px 24px;
  min-height: 820px;
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.legal__body {
  margin: 60px auto 0;
  width: min(820px, 100%);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.2em;
}

.legal__body--small {
  font-size: 15px;
  line-height: 18px;
}

.legal__body p {
  margin: 0 0 18px;
}

/* Modal + form */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.login {
  width: min(483px, calc(100vw - 40px));
  border-radius: 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 53px 82px 39px rgba(0, 0, 0, 0.01), 30px 46px 33px rgba(0, 0, 0, 0.05),
    13px 21px 24px rgba(0, 0, 0, 0.09), 3px 5px 13px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: grid;
  gap: 18px;
}

.login__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.login__title {
  margin: 0;
  font-size: 18px;
  color: #1e1e1e;
  font-weight: 600;
}

.iconBtn {
  border: 0;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 16px;
  line-height: 22px;
  color: #1e1e1e;
}

.field__input {
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  padding: 12px 16px;
  font-size: 16px;
}

.btn {
  height: 40px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 16px;
}

.btn--dark {
  background: #2c2c2c;
  color: #f5f5f5;
  border-color: #2c2c2c;
}

.login__link {
  font-size: 16px;
  line-height: 22px;
  text-decoration: underline;
  color: #1e1e1e;
  width: fit-content;
}

/* Page Transitions */
a[href$=".html"] {
  transition: var(--transition);
}

a[href$=".html"]:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {

  .hero,
  .twoCol {
    padding-left: 32px;
    padding-right: 32px;
  }

  .topbar__inner {
    padding: 0 32px;
  }
}

/* Responsive Store Layout */
@media (max-width: 1060px) {
  .storeHeader {
    padding: 15px 24px 20px;
    min-height: auto;
  }

  .headerLogo {
    width: 500px;
    height: 500px;
  }

  .storeLayout {
    grid-template-columns: 200px 1fr;
    padding: 24px;
    gap: 20px;
  }

  .topbar__inner {
    padding: 0 28px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .hero,
  .twoCol {
    grid-template-columns: 1fr;
    padding: 80px 28px 24px;
    gap: 32px;
  }

  .hero__left {
    padding-top: 0;
    text-align: center;
    max-width: 100%;
  }

  .hero__right {
    padding: 0;
    justify-self: center;
  }

  .twoCol__left {
    text-align: center;
  }

  .ctaRow {
    justify-content: center;
  }

  .rewardGrid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 16px;
  }

  .discordText {
    text-align: center;
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .storeHeader {
    padding: 15px 16px 20px;
    min-height: auto;
  }

  .headerLogo {
    width: 350px;
    height: 350px;
  }

  .serverInfo__label,
  .discordInfo__label,
  .userInfo__label {
    font-size: 10px;
  }

  .serverInfo__copy,
  .discordInfo__join,
  .userInfo__login {
    font-size: 10px;
    padding: 4px 8px;
  }

  .storeLayout {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  /* Hide header widgets on tablet/mobile or restyle them */
  .storeHeader {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping */
    justify-content: center;
    gap: 20px;
  }

  .storeHeader__center {
    width: 100%;
    order: 1;
    /* Logo first */
  }

  .storeHeader__left,
  .storeHeader__right {
    display: flex;
    order: 2;
    /* Widgets below */
  }

  /* Widget styling for mobile - Badges above icons */
  .serverWidget,
  .discordWidget,
  .tokenWidget {
    flex-direction: column;
    overflow: visible;
    align-items: center;
    /* Center them */
  }

  /* On sidebar open/mobile, hide text, show only icon pills */
  .serverWidget__content,
  .discordWidget__content,
  .tokenWidget__content {
    display: none;
  }

  .serverWidget__iconWrap,
  .discordWidget__iconWrap,
  .tokenWidget__iconWrap {
    width: 64px;
    height: 64px;
    background: transparent !important;
    /* Remove bg to match icon-only look if desired, or keep it */
    box-shadow: none !important;
    border: none !important;
    overflow: visible;
    /* Allow badge to sit outside */
  }

  /* If we want to keep the "Button/Icon" look but just reposition badge */
  .serverWidget__iconWrap,
  .discordWidget__iconWrap,
  .tokenWidget__iconWrap {
    background: var(--accent) !important;
    border-bottom: 4px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  }

  .tokenWidget__iconWrap {
    background: #FFD700 !important;
    border-bottom: 4px solid #B8860B !important;
  }

  .discordWidget__iconWrap {
    background: #5865F2 !important;
  }

  .serverWidget__badge,
  .discordWidget__badge {
    top: -24px;
    /* Move above */
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    background: #ff8c42;
    /* Orange to match reference or keep red? Reference has orange badge */
    /* Let's stick to theme red or reference orange? Reference shows orange everywhere. Keep red for contrast or switch to orange if user insists on "like this". User said "no colors from fire mc", but "use icons like this". The structure is key. */
    /* I'll use theme accent or red. Let's use the theme accent for badge background to be consistant? Or Red. */
    background: #ff8c42;
    /* Orange pill */
    color: #000;
    font-weight: 800;
    border: none;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 12px;
    min-width: fit-content;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }

  .mobileCategoryWrapper {
    display: block;
  }

  .sidebar {
    position: static;
    order: 2;
    display: none;
  }

  .sidebar.is-open {
    display: block;
  }

  .sidebar__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mainContent {
    order: 1;
  }

  .welcomeSection,
  .connectSection,
  .supportSection,
  .rewardsSection,
  .discordSection,
  .legalSection {
    padding: 20px;
  }

  .sectionTitle {
    font-size: 20px;
  }

  .topbar__inner {
    padding: 0 20px;
    height: auto;
    min-height: 70px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }

  .brand__title {
    font-size: 22px;
    letter-spacing: 0.03em;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav__link {
    font-size: 15px;
    letter-spacing: 0.1em;
    padding: 4px 0;
  }

  .hero {
    padding: 40px 20px 24px;
    min-height: auto;
  }

  .hero__left {
    padding-top: 0;
  }

  .hero__headline {
    font-size: clamp(32px, 8vw, 42px);
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero__subheadline {
    font-size: clamp(22px, 5vw, 28px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .pill {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    height: 48px;
    padding: 12px 20px;
  }

  .hero__right {
    padding: 20px 0;
  }

  .hero__art {
    width: min(100%, 400px);
    max-width: 100%;
  }

  .hero__art img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .twoCol__right img,
  .hero__art--tight img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .twoCol {
    padding: 40px 20px 24px;
    min-height: auto;
  }

  .twoCol__left {
    margin: 0;
  }

  .discordText {
    font-size: 18px;
    line-height: 28px;
    margin: 30px 0 0;
    text-align: left;
  }

  .ctaRow {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .pill--discord,
  .pill--youtube {
    width: 100%;
    justify-content: center;
    height: 60px;
    font-size: 24px;
  }

  .twoCol__right {
    margin-top: 30px;
  }

  .hero__art--tight {
    width: min(100%, 350px);
  }

  .rewards {
    padding: 40px 20px 24px;
    min-height: auto;
  }

  .pageTitle {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .pageLead {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .pageLead--small {
    font-size: 14px;
    line-height: 20px;
  }

  .watchWrap {
    margin: 40px auto 0;
    width: 100%;
    padding: 0 10px;
  }

  .watchBtn {
    width: 100%;
    max-width: 100%;
    min-height: 70px;
    padding: 14px 20px;
  }

  .watchBtn__label {
    font-size: clamp(20px, 5vw, 28px);
    white-space: normal;
    line-height: 1.3;
  }

  .watchMeta {
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
  }

  .rewardGrid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 16px;
    margin-top: 30px;
    padding: 0 10px;
  }

  .rewardCard {
    max-width: 100%;
  }

  .rewardCard__img {
    height: 100px;
  }

  .rewardCard__title {
    font-size: 13px;
  }

  .rewardCard__sub {
    font-size: 11px;
  }

  .legal {
    padding: 40px 20px 24px;
    min-height: auto;
  }

  .legal__body {
    font-size: 15px;
    line-height: 24px;
    margin-top: 30px;
  }

  .legal__body--small {
    font-size: 14px;
    line-height: 22px;
  }

  .footer {
    padding: 30px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .footer__legal {
    font-size: 10px;
    line-height: 1.4;
  }

  .footer__right {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__link {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .storeHeader {
    padding: 10px 12px 15px;
    min-height: auto;
  }

  .headerLogo {
    width: 280px;
    height: 280px;
  }

  .storeLayout {
    padding: 12px;
    gap: 16px;
  }

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

  .welcomeSection,
  .connectSection,
  .supportSection,
  .rewardsSection,
  .discordSection,
  .legalSection {
    padding: 16px;
  }

  .sectionTitle {
    font-size: 18px;
  }

  .sectionText {
    font-size: 14px;
  }

  .topbar__inner {
    padding: 0 16px;
    min-height: 60px;
  }

  .brand__title {
    font-size: 18px;
    letter-spacing: 0.02em;
  }

  .nav {
    gap: 8px;
    width: 100%;
  }

  .nav__link {
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 6px 4px;
  }

  .hero {
    padding: 30px 16px 20px;
  }

  .hero__headline {
    font-size: clamp(28px, 10vw, 36px);
    line-height: 1.1;
  }

  .hero__subheadline {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.2;
  }

  .hero__desc {
    font-size: 15px;
    line-height: 22px;
  }

  .hero__art {
    width: 100%;
    max-width: 300px;
  }

  .pill {
    height: 46px;
    padding: 10px 18px;
    font-size: 15px;
  }

  .twoCol {
    padding: 30px 16px 20px;
  }

  .discordText {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
  }

  .pill--discord,
  .pill--youtube {
    height: 56px;
    font-size: 20px;
  }

  .hero__art--tight {
    width: 100%;
    max-width: 280px;
  }

  .rewards {
    padding: 30px 16px 20px;
  }

  .pageTitle {
    font-size: clamp(20px, 7vw, 24px);
  }

  .pageLead {
    font-size: 15px;
    line-height: 22px;
  }

  .pageLead--small {
    font-size: 13px;
    line-height: 18px;
  }

  .watchWrap {
    margin: 30px auto 0;
    padding: 0 5px;
  }

  .watchBtn {
    min-height: 65px;
    padding: 12px 16px;
  }

  .watchBtn__label {
    font-size: clamp(18px, 6vw, 24px);
    letter-spacing: 0.1em;
  }

  .watchMeta {
    font-size: 14px;
  }

  .rewardGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 5px;
  }

  .rewardCard {
    width: 100%;
  }

  .rewardCard__img {
    height: 90px;
  }

  .rewardCard__title {
    font-size: 12px;
    line-height: 18px;
  }

  .rewardCard__sub {
    font-size: 10px;
    padding: 1px 4px;
  }

  .legal {
    padding: 30px 16px 20px;
  }

  .legal__body {
    font-size: 14px;
    line-height: 22px;
  }

  .legal__body--small {
    font-size: 13px;
    line-height: 20px;
  }

  .footer {
    padding: 24px 16px 16px;
  }

  .footer__legal {
    font-size: 9px;
  }

  .footer__link {
    font-size: 14px;
  }
}

/* Custom Modal (Alert/Confirm) */
.customModal {
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 2000;
}

.customModal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.customModal__content {
  background: #1a1a1a;
  border: 1px solid rgba(183, 0, 255, 0.3);
  border-radius: 16px;
  padding: 24px;
  width: min(400px, 90vw);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.customModal__title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);
  margin: 0;
}

.customModal__message {
  color: #ddd;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.customModal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.customModal__btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.customModal__btn--cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #aaa;
}

.customModal__btn--cancel:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.customModal__btn--confirm {
  background: var(--accent);
  color: #fff;
}

.customModal__btn--confirm:hover {
  box-shadow: 0 4px 15px rgba(183, 0, 255, 0.4);
  transform: translateY(-1px);
}

.customModal__btn--danger {
  background: #ff3b30;
  color: #fff;
}

.customModal__btn--danger:hover {
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.4);
  transform: translateY(-1px);
}

/* 404 Page Styles */
.notFound {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.notFound__card {
  position: relative;
  width: min(1440px, 95vw);
  height: min(1024px, 95vh);
  /* Maintain aspect ratio if possible, else fit */
  aspect-ratio: 1440/1024;

  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 80px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background Ellipse Glow */
.notFound__card::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 1159px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  background: #B700FF;
  opacity: 0.3;
  filter: blur(275px);
  z-index: -1;
  pointer-events: none;
}

.notFound__title {
  font-family: 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 10.4vw, 150px);
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

.notFound__subtitle {
  font-family: 'Minecrafter Alt', 'Courier New', monospace;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 50px);
  line-height: 1;
  letter-spacing: 0.2em;
  color: #FF0000;
  margin: 20px 0 80px;
  text-align: center;

  text-shadow:
    70px 39px 23px rgba(0, 0, 0, 0.02),
    45px 25px 21px rgba(0, 0, 0, 0.15),
    25px 14px 17px rgba(0, 0, 0, 0.5),
    11px 6px 13px rgba(0, 0, 0, 0.85),
    3px 2px 7px rgba(0, 0, 0, 0.98);
}

.notFound__btn {
  width: min(393px, 90%);
  height: 82px;
  background: #B700FF;
  box-shadow: 6px 7px 11.6px #000000;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  font-family: 'Minecrafter Alt', 'Courier New', monospace;
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.2em;
  color: #ECE6F0;
  border: none;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.notFound__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.notFound__btn:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .notFound__card {
    width: 95vw;
    height: auto;
    min-height: 80vh;
    padding: 40px 20px;
    border-radius: 40px;
    aspect-ratio: auto;
  }
}

/* Fix: Remove hover effects for animated logo */
.storeHeader .brand:hover {
  opacity: 1;
  transform: none;
  filter: none;
}

/* responsive adaptation for tablet/laptop */
@media (max-width: 1280px) {

  .serverWidget__content,
  .discordWidget__content,
  .tokenWidget__content {
    display: none;
  }

  /* Ensure widgets align nicely without text */
  .storeHeader__left {
    justify-self: center;
    /* Or start, depending on preference. Start keeps them at edges. */
  }

  .storeHeader__right {
    justify-self: center;
  }

  /* On strictly tablet vertical / small laptop, maybe we want to wrap?
     For now, just hiding text solves the crowding.
  */
}