@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,700,600);
@import url(https://fonts.googleapis.com/css2?family=Neuton:wght@400;500;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap);

:root {
  --ink: #161718;
  --panel: #081d2c;
  --panel-deep: #061522;
  --nav: #132a55;
  --nav-edge: #314b7e;
  --text: #f8f8f4;
  --muted: #8e9aa4;
  --dim-blue: #1f5a7a;
  --gold: #ffc073;
  --gold-deep: #d78c3e;
  --line: rgba(255, 255, 255, 0.09);
  --max: 1210px;
  --classic-border: url("assets/classic-border.webp");
  --payment-action: #e78533;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

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

button,
input {
  font: inherit;
}

.site-header,
.site-footer {
  position: relative;
}

.site-header {
  z-index: 5;
  height: 109px;
  background: #1a1a1a;
  overflow: visible;
}

.site-footer {
  overflow: hidden;
}

.header-art,
.footer-art {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-art {
  background-image:
    radial-gradient(farthest-side at top, rgba(26, 26, 26, 0.5), #1a1a1a),
    url("assets/artwork.webp");
}

.footer-art {
  background-image: url("assets/artwork.webp");
  filter: saturate(0.95) contrast(1.05);
}

.header-art::before,
.footer-art::before {
  content: none;
}

.footer-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 18, 0.48), #171717 96%),
    linear-gradient(90deg, #171717 0 9%, rgba(23, 23, 23, 0.82) 24%, rgba(23, 23, 23, 0.78) 76%, #171717 91%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 42%, rgba(0, 0, 0, 0.68)),
    repeating-linear-gradient(112deg, transparent 0 83px, rgba(255, 255, 255, 0.042) 84px 85px);
}

.nav-shell {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: 109px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 174px 1fr 226px;
  align-items: start;
  gap: 20px;
  padding-top: 23px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 92px;
  padding-top: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.55));
}

.store-nav,
.account-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  border: 1px solid #000;
  border-image: var(--classic-border) 500 500 stretch;
  border-image-outset: 6px !important;
  border-image-width: 18px !important;
  background: #233458;
  box-shadow: none;
}

.store-nav::before,
.store-nav::after,
.account-actions::before,
.account-actions::after {
  content: none;
}

.store-nav::before,
.account-actions::before {
  left: -8px;
}

.store-nav::after,
.account-actions::after {
  right: -8px;
  transform: scaleX(-1);
}

.store-nav {
  min-height: 31px;
}

.store-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0.5em 0.68em;
  border-left: 1px solid #070b36;
  border-right: 1px solid #070b36;
  color: #fff;
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  transition: background-color 180ms ease, transform 180ms ease;
}

.store-nav a:first-child {
  border-left: 0;
}

.store-nav a:last-child {
  border-right: 0;
}

.store-nav a:hover,
.account-actions button:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.store-nav a:active,
.account-actions button:active,
.continue-btn:active {
  transform: translateY(1px);
}

.account-actions {
  justify-self: end;
  min-height: 31px;
}

.account-actions > button,
.currency-menu > button {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  border: 0;
  border-left: 1px solid #070b36;
  border-right: 1px solid #070b36;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.account-actions > button:first-child {
  border-left: 0;
}

.account-actions > button:last-child {
  border-right: 0;
}

.user-chip {
  gap: 8px;
  padding: 0 11px 0 9px;
}

.skin-face {
  width: 26px;
  height: 26px;
  display: block;
  image-rendering: pixelated;
  background-image: url("assets/steve-head.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #090f18;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.currency-chip {
  width: 68px;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.currency-menu {
  position: relative;
  display: inline-flex;
  width: 68px;
}

.currency-menu.is-open .currency-chip,
.currency-menu:focus-within .currency-chip {
  background-color: rgba(255, 255, 255, 0.08);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 30;
  display: none;
  width: 68px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #1a1a1a;
  border: 2px solid #333;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.currency-menu.is-open .currency-dropdown,
.currency-menu:focus-within .currency-dropdown {
  display: block;
}

.currency-dropdown a {
  display: block;
  padding: 8px 10px;
  color: #fff;
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  text-shadow: none;
}

.currency-dropdown li:not(.active) a:hover,
.currency-dropdown li:not(.active) a:focus {
  background: #233458;
  color: #fff;
  text-decoration: underline;
  outline: 0;
}

.currency-dropdown .active a {
  background: var(--gold);
  color: #4e2d15;
}

.caret {
  width: 0;
  height: 0;
  border-top: 5px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.help-chip {
  justify-content: center;
  width: 33px;
  font-weight: 700;
}

.login-section {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #171717;
}

.login-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  height: 244px;
  padding: 29px 0 0;
}

.checkout-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 244px;
  padding: 29px 0 26px;
}

h1,
h2 {
  margin: 0;
  font-family: Neuton, Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  margin-bottom: 12px;
  font-size: 35px;
  line-height: 1.05;
}

.login-form {
  width: min(596px, 100%);
  margin: 0 auto;
  text-align: center;
}

.login-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.3;
}

.login-form input {
  width: 100%;
  height: 46px;
  margin-bottom: 16px;
  border: 1px solid #c7c7c7;
  border-radius: 999px;
  padding: 10px 16px;
  background: #f7f7f7;
  color: #555;
  font-size: 18px;
  line-height: 1.33;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 150ms, box-shadow ease-in-out 150ms;
}

.login-form input::placeholder {
  color: #9c9ca2;
}

.login-form input:focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.55);
}

.form-error {
  min-height: 0;
  margin: -11px 0 6px;
  color: #ffb3a5;
  font-size: 13px;
}

.continue-btn {
  position: relative;
  width: 100%;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  background: linear-gradient(#ffc986, #f8b66b);
  color: #33210e;
  font-size: 18px;
  line-height: 1.33;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: filter 180ms ease, transform 180ms ease;
}

.continue-btn:hover {
  filter: brightness(1.04);
}

.checkout-table {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(220px, 1.35fr) minmax(115px, 0.55fr);
  gap: 4px;
  margin-top: 24px;
}

.checkout-card {
  min-height: 88px;
  border: 1px solid #333;
  border-radius: 4px;
  background: #171717;
  overflow: hidden;
}

.checkout-card h2 {
  margin: 0;
  padding: 8px 12px;
  border-bottom: 1px solid #333;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.checkout-cell {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px;
}

.rank-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.45));
}

.rank-name {
  color: var(--gold);
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.receiver-head {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
  border: 1px solid #111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.receiver-name {
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.checkout-price {
  flex-direction: column;
  gap: 2px;
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.checkout-price .old-price {
  color: #ff3333;
  text-decoration: line-through;
}

.checkout-price .new-price {
  color: #fff;
}

.checkout-total {
  margin-top: 22px;
  text-align: center;
  font-size: 16px;
}

.checkout-total strong {
  font-weight: 700;
}

.checkout-submit {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-left: 10px;
  padding: 0 18px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  background: linear-gradient(#ffc986, #f8b66b);
  color: #33210e;
  font-family: "Raleway", "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.payment-mode {
  color-scheme: light;
  overflow: hidden;
}

.payment-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  background: rgba(0, 0, 0, 0.78);
}

.payment-screen {
  width: min(910px, calc(100vw - 48px));
  height: min(610px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 46px;
  background: #fff;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.payment-left {
  background: #f7f7f7;
  min-height: 0;
  overflow-y: auto;
}

.payment-panel {
  width: 100%;
  min-height: 100%;
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 25px 26px 24px;
}

.payment-logo {
  display: none;
}

.payment-cancel {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #111;
  font-size: 11px;
  text-decoration: underline;
}

.payment-panel h1 {
  margin: 0 0 24px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.payment-order-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.payment-order-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.payment-order-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.payment-order-item p {
  margin: 0;
  color: #111;
  font-size: 10px;
}

.payment-order-item p span {
  color: #d22;
  text-decoration: line-through;
}

.payment-fields {
  align-self: end;
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.payment-fields label {
  display: grid;
  gap: 7px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.payment-fields input {
  height: 36px;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  padding: 0 12px;
  background: #fff;
  color: #111;
  font-size: 12px;
  outline: none;
}

.payment-fields input::placeholder {
  color: #c9c9c9;
}

.payment-summary {
  margin-top: 44px;
  border-top: 1px solid #ddd;
}

.payment-summary div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 10px;
}

.payment-summary .payment-total {
  border-top: 1px solid #ddd;
  font-size: 17px;
  font-weight: 700;
}

.payment-right {
  min-height: 0;
  padding: 26px 38px 26px 30px;
  overflow-y: auto;
}

.payment-steps {
  display: flex;
  gap: 12px;
  margin-bottom: 42px;
  color: #999;
  font-size: 10px;
}

.payment-steps strong {
  color: var(--payment-action);
  font-weight: 400;
}

.payment-steps span:not(:first-child)::before,
.payment-steps strong:not(:first-child)::before {
  content: "›";
  margin-right: 10px;
  color: #bbb;
}

.payment-right h2 {
  margin: 0 0 18px;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.upsell-list {
  width: 100%;
  display: grid;
  gap: 12px;
}

.upsell-item {
  min-height: 64px;
  display: grid;
  grid-template-columns: 48px 1fr 74px;
  align-items: center;
  gap: 14px;
  border: 1px solid #dedede;
  background: #fbfbfb;
  padding: 10px 12px;
}

.upsell-item strong {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.upsell-item p {
  margin: 0;
  color: #111;
  font-size: 10px;
}

.upsell-item button {
  height: 38px;
  border: 0;
  background: #e6e6e6;
  color: #111;
  cursor: pointer;
}

.gem-icon {
  width: 38px;
  height: 26px;
  display: inline-block;
  background:
    radial-gradient(circle at 42% 35%, #f5ff87 0 9%, transparent 10%),
    linear-gradient(135deg, #4a3a13 0 18%, #86c94a 19% 44%, #e3ef71 45% 60%, #638a2e 61% 100%);
  border: 2px solid #6e5b23;
  transform: skewX(-9deg);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
}

.gem-medium {
  transform: skewX(-9deg) scale(0.92);
}

.gem-small {
  transform: skewX(-9deg) scale(0.84);
}

.payment-continue {
  margin-top: 34px;
  min-width: 178px;
  height: 42px;
  border: 0;
  background: var(--payment-action);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.payment-form {
  width: 100%;
  display: grid;
  gap: 20px;
}

.payment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-form-field {
  display: grid;
  gap: 7px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.payment-form-field input {
  width: 100%;
  height: 38px;
  border: 1px solid #d8d8d8;
  padding: 0 12px;
  background: #fff;
  color: #111;
  color-scheme: light;
  outline: 0;
}

.payment-form-field input::placeholder {
  color: #999;
}

.payment-form-field input[aria-invalid="true"] {
  border-color: #e63946;
  background: #fff7f7;
}

.payment-form-error {
  min-height: 13px;
  color: #e63946;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.payment-check {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  color: #555;
  font-size: 10px;
  line-height: 1.45;
}

.payment-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 1px solid #d8d8d8;
  background: #fff;
  color-scheme: light;
}

.payment-check input:checked {
  background:
    linear-gradient(135deg, transparent 0 42%, #111 43% 56%, transparent 57%),
    linear-gradient(45deg, transparent 0 47%, #111 48% 61%, transparent 62%),
    #fff;
}

.payment-check a {
  color: #111;
  text-decoration: underline;
}

.complete-order {
  width: 100%;
  height: 42px;
  margin-top: 10px;
  border: 0;
  background: var(--payment-action);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
}

.order-confirmed-step {
  display: grid;
  gap: 20px;
  padding-top: 0;
}

.confirmation-copy h2 {
  margin: 0 0 7px;
  color: #111;
  font-size: 11px;
  font-weight: 700;
}

.confirmation-copy p {
  margin: 0;
  color: #666;
  font-size: 10px;
  line-height: 1.45;
}

.confirmation-copy strong {
  color: #111;
}

.prompt-code-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.prompt-digit {
  width: 100%;
  height: 38px;
  min-width: 0;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  cursor: text;
  transition: border-color ease-in-out 150ms, box-shadow ease-in-out 150ms;
}

.prompt-digit:focus {
  outline: none;
  border-color: #b9b9b9;
  box-shadow: none;
}

.prompt-digit.invalid {
  border-color: #d8d8d8;
  background: #fff;
}

.prompt-action {
  width: 100%;
  height: 42px;
  margin-top: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background: var(--payment-action);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.prompt-action:hover:not(:disabled) {
  background: #d97427;
}

.prompt-action:disabled {
  background: #d8d8d8;
  cursor: not-allowed;
  opacity: 1;
}

@media (max-width: 720px) {
  .order-confirmed-step {
    gap: 24px;
    padding-top: 28px;
  }

  .prompt-code-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .prompt-action {
    height: 52px;
    font-size: 18px;
  }
}

.payment-footer {
  grid-column: 1 / -1;
  min-width: 0;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  background: #fff;
  border-top: 1px solid #efefef;
  color: #7f8792;
  font-size: 9px;
  overflow: hidden;
}

.tebex-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a0a6b0;
  font-size: 17px;
  font-weight: 700;
}

.tebex-mark::before {
  content: "";
  width: 17px;
  height: 22px;
  display: inline-block;
  background:
    linear-gradient(90deg, transparent 0 38%, currentColor 39% 61%, transparent 62%),
    linear-gradient(180deg, transparent 0 18%, currentColor 19% 40%, transparent 41%),
    linear-gradient(135deg, transparent 0 44%, currentColor 45% 62%, transparent 63%);
  opacity: 0.85;
}

.payment-footer nav {
  margin-left: auto;
  flex: 0 0 auto;
  display: flex;
  gap: 17px;
  align-items: center;
  white-space: nowrap;
}

.payment-footer a {
  color: #667086;
  text-decoration: underline;
}

.arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.notice-band {
  background: #061d2b;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notice-grid {
  width: min(1134px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 210px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 530px;
  gap: 44px;
  align-items: center;
  padding: 31px 0 27px;
}

h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.legal-copy p,
.payments p {
  margin: 0;
  color: #1c5878;
  font-size: 12px;
  line-height: 1.45;
}

.legal-copy em {
  color: #2f6681;
}

.quick-links {
  margin-top: 19px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 18px;
  color: #8d9aa5;
  font-size: 14px;
}

.quick-links strong {
  color: #fff;
  font-size: 14px;
}

.quick-links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #d4dbe0;
  cursor: pointer;
}

.quick-links .server-copy {
  color: #fff;
}

.quick-links .server-copy::after {
  content: none;
}

.quick-links button:not(.server-copy)::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  border-top: 5px solid currentColor;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  vertical-align: 2px;
}

.status-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(90deg, #a3adb5 0 47%, #4f5f69 48%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.copy-check {
  width: 10px;
  height: 6px;
  display: inline-block;
  margin-left: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-2px);
}

.payments {
  text-align: center;
  align-self: start;
  padding-top: 3px;
  justify-self: center;
  width: 530px;
  max-width: 100%;
}

.payment-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  margin: 17px 0 8px;
  min-width: max-content;
}

.footer-image-cc {
  width: 48px;
  height: 32px;
  position: relative;
  z-index: 0;
  display: inline-block;
  border: 3px solid #fff;
  border-radius: 3px;
  outline: 2px solid #061928;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}

.footer-image-cc:hover {
  z-index: 1;
  transform: scale(1.5);
  box-shadow: 0 2px 15px rgba(35, 35, 35, 0.5);
}

.footer-image-cc.mastercard {
  background-image: url("assets/mastercard.webp");
}

.footer-image-cc.visa {
  background-image: url("assets/visa.webp");
}

.footer-image-cc.amex {
  background-image: url("assets/americanexpress.webp");
}

.footer-image-cc.paypal {
  background-image: url("assets/paypal.webp");
}

.footer-image-cc.ideal {
  background-image: url("assets/ideal.webp");
}

.footer-image-cc.paysafecard {
  background-image: url("assets/paysafecard.webp");
}

.footer-image-cc.apple-pay {
  background-image: url("assets/apple-pay.webp");
}

.footer-image-cc.gpay {
  background-image: url("assets/gpay.webp");
}

.site-footer {
  height: 190px;
  background: #171717;
}

.site-footer .footer-art {
  opacity: 0.92;
  background-position: center 47%;
}

.site-footer .footer-art::before {
  content: none;
}

.site-footer .footer-art::after {
  background:
    linear-gradient(180deg, rgba(16, 16, 17, 0.38), rgba(23, 23, 23, 0.94) 88%),
    linear-gradient(90deg, #171717 0 8%, rgba(23, 23, 23, 0.82) 24%, rgba(23, 23, 23, 0.78) 76%, #171717 92%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), transparent 48%, rgba(0, 0, 0, 0.82)),
    repeating-linear-gradient(112deg, transparent 0 83px, rgba(255, 255, 255, 0.04) 84px 85px);
}

.footer-grid {
  position: relative;
  width: min(1136px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 388px 170px 170px;
  gap: 2px;
  padding: 28px 0 0;
}

.footer-brand img {
  width: 116px;
  display: block;
  margin-bottom: 1px;
}

.footer-brand p {
  margin: 0 0 7px;
  color: #969696;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 4px;
}

.socials a {
  width: 14px;
  height: 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171717;
  background: #9a9a9a;
  opacity: 0.88;
  overflow: hidden;
  text-decoration: none;
}

.socials a::before {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.social-youtube {
  border-radius: 3px;
}

.social-youtube::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid #171717;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  margin-left: 1px;
}

.social-twitter {
  border-radius: 50%;
}

.social-twitter::before {
  content: "X";
  font-size: 10px;
}

.social-tiktok {
  border-radius: 3px;
}

.social-tiktok::before {
  content: "t";
  font-size: 11px;
  font-style: italic;
}

.social-instagram {
  border-radius: 4px;
}

.social-instagram::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.6px solid #171717;
  border-radius: 50%;
  box-shadow: 4px -4px 0 -3px #171717;
}

.social-threads {
  border-radius: 50%;
}

.social-threads::before {
  content: "@";
  font-size: 11px;
}

.social-bluesky {
  border-radius: 40% 40% 55% 55%;
}

.social-bluesky::before {
  content: "";
  width: 11px;
  height: 9px;
  background: #171717;
  clip-path: polygon(0 0, 40% 44%, 50% 10%, 60% 44%, 100% 0, 72% 100%, 50% 64%, 28% 100%);
}

.social-facebook {
  border-radius: 50%;
}

.social-facebook::before {
  content: "f";
  font-size: 13px;
}

.social-discord {
  border-radius: 4px;
}

.social-discord::before {
  content: "";
  width: 10px;
  height: 7px;
  border-radius: 5px 5px 3px 3px;
  background:
    radial-gradient(circle at 33% 54%, #9a9a9a 0 1px, transparent 1.5px),
    radial-gradient(circle at 67% 54%, #9a9a9a 0 1px, transparent 1.5px),
    #171717;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 11px;
  padding-top: 9px;
}

.footer-grid nav a {
  color: #929292;
  font-size: 16px;
  line-height: 1.42857143;
}

.footer-grid a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 120px 1fr;
    align-items: center;
  }

  .store-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    overflow-x: auto;
  }

  .account-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .notice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payments {
    text-align: center;
    justify-self: center;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .payment-row {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .checkout-table {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .login-wrap,
  .notice-grid,
  .footer-grid {
    width: min(100% - 24px, var(--max));
  }

  .nav-shell {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }

  .brand,
  .account-actions {
    justify-self: center;
  }

  .account-actions {
    grid-column: 1;
    grid-row: 2;
  }

  .store-nav {
    grid-row: 3;
  }

  .store-nav a {
    min-width: max-content;
    padding: 0 12px;
    font-size: 15px;
  }

  .login-wrap {
    padding-top: 24px;
  }

  .quick-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    padding-bottom: 30px;
  }
}
