:root {
  --color-text: rgba(255, 255, 255, .92);
  --color-text-darker: rgba(255, 255, 255, .82);
  --color-text-secondary: rgba(255, 255, 255, .66);
  --color-text-dark: #1c1a21;
  --color-bg: #1c1a21;
  --color-brighter-bg: #25222b;
  --color-primary: #d0a385;
  --color-primary-hover: #f0ceb5;
  --color-primary-text: #1c1a21;
  --color-primary-text-hover: #151318;
  --color-secondary: rgba(255, 255, 255, .12);
  --color-secondary-hover: rgba(255, 255, 255, .2);
  --color-secondary-text: rgba(255, 255, 255, .92);
  --color-secondary-text-hover: #fff;
  --color-tertiary-hover: rgba(255, 255, 255, .12);
  --bib-glass: rgba(28, 26, 33, .72);
  --bib-glass-strong: rgba(28, 26, 33, .94);
  --bib-panel: rgba(255, 255, 255, .06);
  --bib-panel-strong: rgba(12, 12, 16, .34);
  --bib-stroke: rgba(255, 255, 255, .14);
  --bib-stroke-strong: rgba(255, 255, 255, .2);
  --bib-muted: rgba(255, 255, 255, .76);
  --bib-muted-soft: rgba(255, 255, 255, .58);
  --bib-shadow: 0 18px 60px rgba(0, 0, 0, .58);
  --bib-shadow-soft: 0 12px 40px rgba(0, 0, 0, .34);
  --bib-radius: 18px;
  --bib-radius-sm: 12px;
  --content-inner-width: 1480px;
}

html {
  scrollbar-color: rgba(208, 163, 133, .68) rgba(13, 14, 18, .72);
}

body {
  min-height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  width: auto;
  height: auto;
  max-height: none;
  background:
    radial-gradient(1200px 750px at 18% 10%, rgba(208, 163, 133, .18), transparent 60%),
    radial-gradient(900px 650px at 82% 22%, rgba(132, 100, 92, .14), transparent 58%),
    linear-gradient(to bottom, rgba(0, 0, 0, .28), rgba(0, 0, 0, .82)),
    url("ForestDawn.jpg") center center / cover no-repeat;
  filter: saturate(1.04) contrast(1.03);
  mask-image: none;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(28, 26, 33, .18), rgba(28, 26, 33, .82));
  pointer-events: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #8fd3ff;
  outline-offset: 3px;
}

.site {
  gap: 22px;
  padding-top: clamp(18px, 3vw, 34px);
}

.page-index.home-categories-enabled .site {
  grid-template-rows: auto auto auto auto auto minmax(0, 1fr) auto;
  grid-auto-rows: auto;
}

.page-index.home-categories-enabled .site-footer {
  grid-row: -2 / -1;
}

.site-header,
.site-sale-banner,
.site-home-categories,
.site-content,
.bib-store-hero,
.site-footer-inner {
  max-width: calc(var(--content-inner-width) + (var(--content-padding) * 2));
}

.site-header {
  z-index: 25;
}

.bib-site-topbar {
  position: sticky;
  top: 18px;
  z-index: 75;
  display: grid;
  gap: 14px;
  padding: 14px 18px;
  overflow: visible;
  border: 1px solid var(--bib-stroke);
  border-radius: 22px;
  background: rgba(28, 26, 33, .78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.bib-site-topbar {
  margin-inline: auto;
}

.bib-site-topbar::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(920px 200px at 26% 0%, rgba(208, 163, 133, .18), transparent 58%);
  pointer-events: none;
}

.bib-mobile-bar {
  display: none;
}

.bib-store-utility,
.bib-user-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bib-status-pill,
.bib-store-utility .btn-primary,
.bib-store-utility .btn-secondary,
.bib-mobile-action,
.btn-primary,
.btn-secondary,
.btn-tertiary {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  box-shadow: none;
  font-weight: 900;
  transition: transform .15s ease, filter .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: var(--btn-size);
  line-height: 1.2;
  text-align: center;
}

.bib-status-pill,
.bib-mobile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .07);
}

.bib-status-pill:hover,
.bib-status-pill:focus,
.bib-mobile-action:hover,
.bib-mobile-action:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
  transform: translateY(-1px);
  filter: brightness(1.06);
  border-color: rgba(208, 163, 133, .56);
}

.bib-copy-pill {
  cursor: pointer;
}

.bib-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(140, 220, 170, .95);
  box-shadow: 0 0 0 3px rgba(140, 220, 170, .14);
}

.bib-pill-text {
  max-width: 34ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bib-pill-action {
  color: rgba(240, 220, 205, .96);
  font-size: 12px;
  text-transform: uppercase;
}

.bib-store-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, .9fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: calc(100% - (var(--content-padding) * 2));
  margin-inline: auto;
  padding: clamp(18px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid var(--bib-stroke);
  border-radius: var(--bib-radius);
  background: var(--bib-glass);
  box-shadow: var(--bib-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.bib-store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 26, 33, .12), rgba(28, 26, 33, .78)),
    url("spawntower.jpg") center center / cover no-repeat;
  opacity: .3;
  pointer-events: none;
}

.bib-logo-wrap,
.bib-store-copy {
  position: relative;
  z-index: 1;
}

.bib-logo-wrap {
  display: block;
  overflow: hidden;
  border-radius: var(--bib-radius);
  background: rgba(0, 0, 0, .18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .62);
}

.bib-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.bib-store-copy {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.bib-home-hero-description {
  display: grid;
  gap: 10px;
  max-width: 680px;
  color: var(--bib-muted);
  line-height: 1.55;
}

.bib-home-hero-description h2,
.bib-home-hero-description p {
  margin: 0;
}

.bib-home-hero-description h2 {
  color: rgba(255, 255, 255, .96);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.12;
}

.bib-home-hero-description .descr {
  display: grid;
  gap: 10px;
}

.bib-supporter-hero-info {
  display: grid;
  gap: 10px;
  max-width: 860px;
  color: var(--bib-muted);
  line-height: 1.55;
}

.bib-supporter-hero-info h2,
.bib-store-copy .bib-supporter-title-copy p,
.bib-store-copy .bib-bedrock-alert p {
  margin: 0;
}

.bib-supporter-hero-info h2 {
  color: rgba(255, 255, 255, .96);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 950;
  line-height: 1.12;
}

.bib-supporter-title-copy {
  display: grid;
  gap: 10px;
  width: 100%;
  font-size: clamp(12.5px, .92vw, 14px);
}

.bib-supporter-policy-copy {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--bib-radius-sm);
  background: rgba(0, 0, 0, .18);
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.bib-bedrock-alert {
  display: grid;
  gap: 9px;
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(255, 225, 125, .86);
  border-radius: var(--bib-radius-sm);
  background: linear-gradient(180deg, rgba(241, 206, 128, .24), rgba(255, 120, 120, .14));
  box-shadow:
    0 0 0 4px rgba(241, 206, 128, .16),
    0 16px 35px rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .96);
}

.bib-bedrock-alert h3 {
  margin: 0;
  color: #ffe49d;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.bib-bedrock-alert strong {
  color: #fff;
  font-weight: 950;
}

.bib-bedrock-format {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(0, 0, 0, .34);
  box-shadow: 0 0 0 2px rgba(255, 228, 157, .12) inset;
  text-align: center;
}

.bib-bedrock-format-label,
.bib-bedrock-format-help {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.bib-bedrock-format strong {
  color: #ffe49d;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: clamp(24px, 4.2vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.bib-username-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.bib-username-example {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(12, 12, 16, .36);
}

.bib-username-example-bedrock {
  border-color: rgba(241, 206, 128, .58);
  background: rgba(241, 206, 128, .14);
}

.bib-username-label {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.bib-username-value,
.bib-inline-username {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.bib-minecraft-disclaimer {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 10px;
  background: rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .96);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}

.bib-username-bedrock-alert {
  margin-bottom: 18px;
  font-size: 15px;
  text-align: left;
}

.bib-support-options-bedrock-alert {
  margin-bottom: 18px;
}

.bib-support-options-bedrock-alert .bib-bedrock-format {
  justify-items: start;
  text-align: left;
}

.bib-support-options-bedrock-alert .bib-bedrock-format strong {
  font-size: clamp(22px, 3vw, 34px);
}

@media (min-width: 1180px) {
  .bib-store-copy .bib-supporter-title-copy-home {
    grid-template-columns: minmax(0, .92fr) minmax(280px, 1.08fr);
    align-items: start;
  }
}

.bib-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(208, 163, 133, .4);
  border-radius: 999px;
  color: rgba(240, 220, 205, .96);
  background: rgba(208, 163, 133, .14);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bib-store-copy h1 {
  margin: 0;
  text-align: left;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.site-sale-banner {
  margin-top: 0;
  border: 1px solid rgba(208, 163, 133, .35);
  border-radius: var(--bib-radius-sm);
  background: linear-gradient(180deg, rgba(208, 163, 133, .22), rgba(255, 255, 255, .08));
  color: rgba(255, 255, 255, .95);
  box-shadow: var(--bib-shadow-soft);
  font-weight: 900;
}

@media (min-width: 961px) {
  .bib-primary-nav.site-navigation {
    position: relative;
    z-index: 4;
  }

  .bib-primary-nav .close-navigation {
    display: none;
  }

  .bib-primary-nav.navigation-horizontal .menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    background: transparent;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 950;
  }

  .bib-primary-nav.navigation-horizontal .menu > li > a,
  .bib-primary-nav.navigation-horizontal .has-children > a,
  .bib-primary-nav.navigation-horizontal .has-children .toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .08);
    transition: transform .15s ease, filter .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
  }

  .bib-primary-nav.navigation-horizontal .menu > li > a:hover,
  .bib-primary-nav.navigation-horizontal .menu > li > a:focus,
  .bib-primary-nav.navigation-horizontal .menu > li > a.link-active,
  .bib-primary-nav.navigation-horizontal .has-children:hover > a,
  .bib-primary-nav.navigation-horizontal .has-children:focus-within > a {
    transform: translateY(-2px);
    border-color: rgba(208, 163, 133, .6);
    color: rgba(255, 255, 255, .96);
    background: linear-gradient(180deg, rgba(208, 163, 133, .18), rgba(255, 255, 255, .06));
    filter: brightness(1.06);
  }

  .bib-primary-nav.navigation-horizontal .has-children {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .bib-primary-nav.navigation-horizontal .has-children .toggle {
    --btn-size: 40px;
    --btn-icon-size: 16px;
    width: 40px;
    padding: 0;
  }

  .bib-primary-nav.navigation-horizontal .has-children > ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 120;
    display: grid;
    gap: 8px;
    min-width: 250px;
    max-width: min(320px, calc(100vw - 48px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(28, 26, 33, .96);
    box-shadow: var(--bib-shadow-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translate(-50%, -8px) scale(.96);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .2s ease, visibility 0s linear .18s;
  }

  .bib-primary-nav.navigation-horizontal .has-children:hover > ul,
  .bib-primary-nav.navigation-horizontal .has-children:focus-within > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
  }

  .bib-primary-nav.navigation-horizontal .has-children > ul .has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .bib-primary-nav.navigation-horizontal .has-children > ul ul {
    grid-column: 1 / -1;
    position: static;
    min-width: 0;
    margin: 4px 0 0;
    padding: 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .bib-primary-nav.navigation-horizontal li li a {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .04);
    font-size: 14px;
    font-weight: 800;
  }

  .bib-primary-nav.navigation-horizontal li li a:hover,
  .bib-primary-nav.navigation-horizontal li li a:focus,
  .bib-primary-nav.navigation-horizontal li li a.link-active {
    color: rgba(255, 255, 255, .96) !important;
    background: rgba(255, 255, 255, .08) !important;
    border-color: rgba(208, 163, 133, .35);
  }
}

@media (max-width: 960px) {
  body.show-navigation {
    overflow: hidden;
  }

  .site {
    padding-top: 12px;
  }

  .bib-site-topbar {
    position: relative;
    top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .bib-site-topbar::after {
    display: none;
  }

  .bib-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 100001;
  }

  .mobileMenuBtn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: rgba(255, 255, 255, .96);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  }

  .mobileMenuBtn span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  body.show-navigation .mobileMenuBtn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.show-navigation .mobileMenuBtn span:nth-child(2) {
    opacity: 0;
  }

  body.show-navigation .mobileMenuBtn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .bib-mobile-brand {
    flex: 1;
    color: rgba(255, 255, 255, .96);
    font-size: 17px;
    font-weight: 900;
    text-align: center;
  }

  .bib-mobile-action {
    min-width: 72px;
    min-height: 44px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .bib-store-utility {
    justify-content: center;
  }

  .bib-user-actions {
    display: none;
  }

  .bib-primary-nav.site-navigation {
    position: fixed;
    inset: 0;
    z-index: 100000;
    padding: 0;
    background: linear-gradient(180deg, rgba(11, 15, 24, .28), rgba(11, 15, 24, .56));
    backdrop-filter: blur(16px) saturate(.92);
    -webkit-backdrop-filter: blur(16px) saturate(.92);
    transition: opacity .22s ease, visibility 0s linear .22s;
  }

  body:not(.show-navigation) .bib-primary-nav.site-navigation {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .bib-primary-nav.site-navigation .menu {
    position: fixed;
    inset: calc(env(safe-area-inset-top) + 68px) 14px auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: min(calc(100dvh - env(safe-area-inset-top) - 92px), 620px);
    padding: 14px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    color: rgba(255, 255, 255, .92);
    background: rgba(28, 26, 33, .96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .46);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(-8px) scale(.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }

  body.show-navigation .bib-primary-nav.site-navigation .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .bib-primary-nav.site-navigation .close-navigation {
    --btn-icon-size: 20px;
    position: fixed;
    top: calc(env(safe-area-inset-top) + 12px);
    right: 14px;
    z-index: 100002;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
  }

  .bib-primary-nav.site-navigation .menu > li > a,
  .bib-primary-nav.site-navigation .has-children > a,
  .bib-primary-nav.site-navigation .has-children .toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .08);
    font-size: 16px;
    font-weight: 900;
    text-align: center;
  }

  .bib-primary-nav.site-navigation .has-children {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .bib-primary-nav.site-navigation .has-children .toggle {
    --btn-size: 52px;
    width: 52px;
    padding: 0;
  }

  .bib-primary-nav.site-navigation .has-children > ul {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    margin-top: 0;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
  }

  .bib-primary-nav.site-navigation .has-children:not(.expanded) > ul {
    display: none;
  }

  .bib-primary-nav.site-navigation li li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .04);
    font-size: 15px;
    font-weight: 800;
  }

  .bib-store-hero {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .bib-store-copy {
    justify-items: center;
    text-align: center;
  }

  .bib-home-hero-description {
    justify-items: center;
    max-width: 100%;
    text-align: center;
  }

  .bib-supporter-hero-info {
    justify-items: center;
    max-width: 100%;
    text-align: center;
  }

  .bib-bedrock-alert {
    text-align: left;
  }

  .bib-store-copy h1 {
    text-align: center;
    font-size: 32px;
  }

}

.site-content {
  position: relative;
  z-index: 2;
}

.bib-tiered-layout,
.bib-wide-category-layout {
  display: grid;
  gap: 18px;
}

.bib-tiered-main,
.bib-wide-category-layout .store-products {
  width: min(var(--content-inner-width), 100%);
  margin-inline: auto;
}

.bib-wide-category-layout.site-content-widgets {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 18px;
}

.bib-wide-category-layout .store-products {
  display: grid;
  gap: 18px;
  order: 1;
}

.bib-home-widgets-layout {
  display: grid;
  gap: 18px;
}

.bib-home-widgets-layout .store-sidebar {
  width: min(var(--content-inner-width), 100%);
  margin-inline: auto;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.bib-home-widgets-layout .store-sidebar .widget {
  width: 100%;
}

.site-content > .basket,
.site-content > .store-form,
.site-content > .store-quote,
.site-content > .store-product-options {
  max-width: 980px;
  margin-inline: auto;
}

@media (min-width: 961px) {
  .site-content-widgets {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  }
}

.category-description,
.store-text,
.store-form,
.store-product,
.store-product-full,
.store-product-options,
.store-quote,
.store-category-tiered,
.widget,
.no-products,
.basket,
.popup-content {
  border: 1px solid var(--bib-stroke);
  border-radius: var(--bib-radius);
  background: rgba(28, 26, 33, .72);
  box-shadow: var(--bib-shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.store-product,
.store-product-tiered,
.widget {
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.store-product:hover,
.store-product-tiered:hover,
.widget:hover {
  transform: translateY(-2px);
  border-color: rgba(208, 163, 133, .42);
  filter: brightness(1.03);
}

.site-home-categories {
  gap: 14px;
}

.site-home-categories .category {
  position: relative;
  overflow: hidden;
  min-height: 138px;
  padding: 16px;
  border: 1px solid var(--bib-stroke-strong);
  border-radius: var(--bib-radius);
  color: rgba(255, 255, 255, .94);
  background: rgba(28, 26, 33, .68);
  box-shadow: var(--bib-shadow-soft);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}

.site-home-categories .category:hover,
.site-home-categories .category:focus {
  transform: translateY(-3px);
  border-color: rgba(208, 163, 133, .55);
  filter: brightness(1.04);
}

.site-home-categories .category .image,
.site-home-categories .category .image-default {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .08), rgba(0, 0, 0, .64)),
    url("biblogo.jpg") center center / cover no-repeat;
}

.site-home-categories .category .image-default::before,
.store-product .image-default::before {
  display: none;
}

.store-products-images,
.store-products-tiered {
  gap: 16px;
}

.bib-tiered-main .store-products-tiered {
  grid-template-columns: 1fr;
  justify-content: stretch;
  gap: 18px;
}

.bib-wide-category-layout .store-products-images {
  grid-template-columns: 1fr;
  justify-content: stretch;
  gap: 18px;
}

.bib-wide-category-layout .store-products-list {
  gap: 18px;
}

.store-products-images .store-product,
.widget .store-product,
.store-product-tiered {
  text-align: center;
}

.store-product .image,
.store-product-full .image,
.media-slider .slider,
.media-slider .thumb {
  border-radius: var(--bib-radius-sm);
}

.store-product .image-default {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)),
    url("biblogo.jpg") center center / cover no-repeat;
}

.bib-tiered-main .store-product-tiered {
  grid-row: auto;
  grid-template-rows: none;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "descr"
    "media"
    "actions";
  justify-items: center;
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
  padding: clamp(18px, 3vw, 28px);
}

.bib-tiered-main .store-product-tiered .product-title {
  grid-area: title;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.bib-tiered-main .store-product-tiered .descr {
  grid-area: descr;
  display: block;
  width: min(1040px, 100%);
  max-height: none;
  overflow: visible;
  padding: 0 0 14px;
  border-block: 0 1px;
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  line-height: 1.62;
  text-align: left;
}

.bib-tiered-main .store-product-tiered .descr :where(p, ul, ol) {
  margin: 0 0 10px;
}

.bib-tiered-main .store-product-tiered .descr :where(p:last-child, ul:last-child, ol:last-child) {
  margin-bottom: 0;
}

.bib-tiered-main .store-product-tiered .descr :where(h1, h2, h3, h4, h5, h6) {
  margin: 16px 0 8px;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 950;
  line-height: 1.2;
}

.bib-tiered-main .store-product-tiered .descr :where(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}

.bib-tiered-main .store-product-tiered .descr :where(ul, ol) {
  padding-left: 1.25rem;
}

.bib-tiered-main .store-product-tiered .descr li {
  display: list-item;
  margin: 5px 0;
}

.bib-tiered-main .store-product-tiered .descr strong {
  color: rgba(255, 255, 255, .94);
  font-weight: 900;
}

.bib-tiered-main .store-product-tiered .image {
  grid-area: media;
  max-width: min(260px, 80%);
  max-height: 220px;
}

.bib-tiered-main .store-product-tiered .actions {
  grid-area: actions;
  width: min(520px, 100%);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .bib-tiered-main .store-product-tiered {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    grid-template-areas:
      "title media"
      "descr media"
      "descr actions";
    align-items: start;
    justify-items: stretch;
    text-align: left;
  }

  .bib-tiered-main .store-product-tiered .product-title {
    align-self: end;
    text-align: left;
  }

  .bib-tiered-main .store-product-tiered .image {
    justify-self: center;
    width: min(260px, 100%);
    max-width: 100%;
  }

  .bib-tiered-main .store-product-tiered .actions {
    justify-self: stretch;
    width: 100%;
  }
}

.bib-wide-category-layout .store-products-images .store-product,
.bib-wide-category-layout .store-products-list .store-product {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  width: 100%;
  padding: clamp(18px, 3vw, 28px);
  text-align: center;
}

.bib-wide-category-layout .store-product .image-link {
  margin-inline: auto;
}

.bib-wide-category-layout .store-product .image {
  max-width: min(260px, 80%);
  max-height: 220px;
  object-fit: contain;
}

.bib-wide-category-layout .store-product .product-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.bib-wide-category-layout .store-product .descr {
  display: block;
  width: min(760px, 100%);
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.bib-wide-category-layout .store-product .actions {
  width: min(520px, 100%);
  margin-inline: auto;
}

.bib-wide-category-layout .store-product .price {
  width: 100%;
  margin-bottom: 0;
}

.store-product .product-title,
.store-product-tiered .product-title,
.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6,
.widget-title {
  color: rgba(255, 255, 255, .96);
  font-weight: 950;
  text-align: center;
}

.store-product .product-title a:hover,
.store-product .product-title a:focus {
  color: rgba(240, 220, 205, .96);
}

.store-category-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
  text-align: center;
}

.store-category-heading h2 {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
}

.store-category-heading .descr {
  max-width: 860px;
  margin-inline: auto;
}

.store-product .descr,
.store-product-tiered .descr,
.store-text,
.store-form,
.store-product-options,
.store-quote,
.category-description,
.widget,
.no-products {
  color: var(--bib-muted);
  line-height: 1.6;
}

.store-text,
.store-form,
.store-product-options,
.store-quote,
.category-description,
.no-products {
  padding: clamp(18px, 3vw, 28px);
}

.store-text h1,
.store-text h2,
.store-text h3,
.store-form h1,
.store-form h2,
.store-form h3,
.store-product-options .product-title,
.store-quote h2,
.basket-title {
  color: rgba(255, 255, 255, .96);
  font-weight: 950;
}

.store-product-full {
  max-width: 1120px;
  margin-inline: auto;
}

.store-product-options {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.store-form-options {
  display: grid;
  gap: 14px;
}

.store-form .field,
.store-form .field-inline,
.store-form .input-group {
  border-color: rgba(255, 255, 255, .11);
  border-radius: var(--bib-radius-sm);
  background: rgba(255, 255, 255, .04);
}

.store-form .field {
  padding: 14px;
}

.store-form .actions,
.store-product-options .actions,
.store-quote .actions {
  gap: 10px;
  flex-wrap: wrap;
}

.store-quote {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.store-product .price,
.store-product-tiered .price,
.store-product-full .price {
  color: rgba(240, 220, 205, .96);
}

.store-product .price strong,
.store-product-tiered .price strong,
.basket .total strong {
  color: rgba(255, 255, 255, .96);
}

.quantity-field,
.store-form input,
.store-form select,
.store-form textarea,
.widget-gift-card .gift-card-input,
.basket-item {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--bib-radius-sm);
  background: rgba(12, 12, 16, .44);
}

.quantity-field input[type=number] {
  border: 0;
}

.basket {
  overflow: hidden;
}

.basket .basket-header,
.basket .basket-second-header,
.basket .basket-checkout {
  background: rgba(255, 255, 255, .04);
}

.basket .basket-item {
  background: rgba(255, 255, 255, .05);
}

.basket .basket-item .title a:hover,
.basket .basket-item .title a:focus {
  color: rgba(240, 220, 205, .96);
}

.alert,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 900;
}

.alert-danger,
.badge-danger {
  border-color: rgba(255, 120, 120, .36);
  background: rgba(255, 120, 120, .14);
}

.alert-warning {
  border-color: rgba(241, 206, 128, .36);
  background: rgba(241, 206, 128, .14);
}

.badge-success {
  border-color: rgba(140, 220, 170, .36);
  background: rgba(140, 220, 170, .14);
}

.store-sidebar {
  display: grid;
  gap: var(--widget-padding);
}

.bib-tiered-layout .store-sidebar,
.bib-wide-category-layout .store-sidebar {
  width: min(var(--content-inner-width), 100%);
  margin-inline: auto;
  grid-template-columns: 1fr;
  align-items: stretch;
  order: 2;
}

.bib-tiered-layout .store-sidebar .widget,
.bib-wide-category-layout .store-sidebar .widget {
  height: 100%;
  width: 100%;
}

.widget {
  display: grid;
  gap: 12px;
}

.widget-title {
  margin-bottom: 0;
}

.widget-content {
  display: grid;
  gap: 12px;
}

.widget-gift-card .widget-content {
  display: grid;
}

.widget-gift-card .check {
  width: 100%;
}

.widget-recent .purchases {
  display: grid;
  gap: 10px;
}

.widget-recent .purchase {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--bib-radius-sm);
  background: rgba(255, 255, 255, .04);
}

.widget-recent .avatar,
.widget-top-donator .avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}

.widget-recent .username,
.widget-top-donator .username,
.widget-server-status h6 {
  color: rgba(255, 255, 255, .94);
  font-weight: 900;
}

.widget-recent time,
.widget-recent .empty,
.widget-top-donator .empty {
  color: var(--bib-muted-soft);
}

.widget-top-donator .widget-content {
  justify-items: center;
  text-align: center;
}

.widget-community-goal .goal-image {
  max-width: 120px;
  margin-inline: auto;
  border-radius: 18px;
}

.progress,
.progress-bar,
.toast,
.toast-close,
.popup-close {
  border-radius: var(--bib-radius-sm);
}

.progress {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .28);
}

.progress-bar {
  background: linear-gradient(90deg, rgba(208, 163, 133, .92), rgba(240, 206, 181, .92));
}

.widget-server-status .widget-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.widget-server-status h6 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(208, 163, 133, .28);
  border-radius: 999px;
  background: rgba(208, 163, 133, .12);
  cursor: pointer;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: transparent;
}

.site-footer-inner.bib-footer-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 24px;
  color: var(--bib-muted-soft);
  text-align: center;
}

.bib-site-footer .bib-footer-nav {
  display: none;
}

.bib-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1080px;
}

.bib-footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, border-color .15s ease;
}

.bib-footer-nav a:hover,
.bib-footer-nav a:focus {
  transform: translateY(-1px);
  border-color: rgba(208, 163, 133, .52);
  filter: brightness(1.05);
}

.site-footer-inner .we-accept {
  position: static;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  pointer-events: auto;
}

.site-footer-inner .we-accept img {
  max-width: 50px;
  max-height: 24px;
  opacity: .86;
}

.footerMeta {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.footerDisclaimer {
  max-width: 960px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  background: rgba(0, 0, 0, .28);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.45;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .08) inset;
}

@media (max-width: 720px) {
  .bib-store-utility {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bib-status-pill {
    width: 100%;
  }

  .bib-footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bib-footer-nav a {
    min-height: 44px;
  }

  .bib-tiered-layout .store-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site {
    padding-top: 8px;
  }

  .bib-primary-nav.site-navigation .menu {
    inset: calc(env(safe-area-inset-top) + 58px) 10px auto;
    padding: 12px;
  }

  .bib-primary-nav.site-navigation .menu > li > a,
  .bib-primary-nav.site-navigation .has-children > a,
  .bib-primary-nav.site-navigation .has-children .toggle {
    min-height: 50px;
    padding: 12px 10px;
    font-size: 15px;
  }

  .bib-mobile-brand {
    font-size: 16px;
  }

  .bib-store-copy h1 {
    font-size: 28px;
  }

  .footerDisclaimer {
    font-size: 12px;
  }

  .bib-username-examples {
    grid-template-columns: 1fr;
  }
}
