﻿:root {
  --accent-main: #48dcff;
  --accent-soft: rgba(72, 220, 255, 0.22);
  --accent-glow: rgba(72, 220, 255, 0.5);
  --black: #0e1014;
  --black-deep: #0a0c10;
  --dark-gray: #12151b;
  --card-bg: rgba(14, 16, 21, 0.76);
  --card-border: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --text-gray: #c9cbd2;
  --muted-gray: #8d929d;
  --header-height: 126px;
  --page-pad: 112px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-main);
  outline-offset: 4px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

.svg-sprite {
  display: none;
}

.icon,
.feature-card__icon {
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--black-deep) url("assets/bg.jpg") center center / cover no-repeat;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 4% 48%, rgba(72, 220, 255, 0.3), transparent 27%),
    radial-gradient(circle at 82% 78%, rgba(72, 220, 255, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(1, 2, 5, 0.76) 0%, rgba(1, 2, 5, 0.45) 42%, rgba(1, 2, 5, 0.18) 70%, rgba(1, 2, 5, 0.72) 100%);
}

.site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.1) 26%, rgba(0, 0, 0, 0.92) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
  opacity: 0.74;
}

.view-panel[hidden] {
  display: none !important;
}

.legacy-shop-grid[hidden] {
  display: none !important;
}

.view-panel.is-active:not(.hero) {
  animation: tabPanelIn 360ms ease both;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(230px, 320px) 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.86), rgba(10, 12, 16, 0.62));
  backdrop-filter: blur(16px);
  transition: height var(--ease), background var(--ease), box-shadow var(--ease);
}

.header.is-scrolled {
  height: 92px;
  background: rgba(10, 12, 16, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand__logo {
  width: 174px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(72, 220, 255, 0.12));
}

.brand__name {
  display: none;
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  min-width: 0;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color var(--ease), text-shadow var(--ease), transform var(--ease);
}

.nav__login {
  display: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -32px;
  height: 3px;
  opacity: 0;
  border-radius: 999px;
  background: var(--accent-main);
  box-shadow: 0 0 18px var(--accent-glow);
  transition: left var(--ease), right var(--ease), opacity var(--ease);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  color: var(--accent-main);
  text-shadow: 0 0 24px var(--accent-soft);
}

.nav__link:hover {
  transform: translateY(-1px);
}

.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after {
  left: 0;
  right: 0;
  opacity: 1;
}

.header__button,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.header__button::before,
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.header__button:hover::before,
.btn--primary:hover::before {
  transform: translateX(130%);
}

.header__button {
  width: 174px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-main), #1d7f96);
  box-shadow: 0 18px 40px rgba(72, 220, 255, 0.28);
}

.header-cart {
  flex: 0 0 auto;
  background: rgba(72, 220, 255, 0.06);
  box-shadow: 0 18px 38px rgba(72, 220, 255, 0.12);
}

.header__button .icon {
  width: 24px;
  height: 24px;
}

.header__button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header__button:hover {
  box-shadow: 0 22px 48px rgba(72, 220, 255, 0.42);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  cursor: pointer;
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

.menu-toggle .icon-close {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 52px;
  padding: 176px var(--page-pad) 44px;
}

.hero__overlay,
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.24) 46%, rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.42) 76%, rgba(0, 0, 0, 0.84) 100%);
}

.hero__grain {
  z-index: 0;
  background-image:
    radial-gradient(circle at 10% 52%, rgba(72, 220, 255, 0.26), transparent 21%),
    radial-gradient(circle at 92% 72%, rgba(72, 220, 255, 0.18), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.hero__character {
  position: absolute;
  right: 6.6vw;
  bottom: -3vh;
  z-index: 1;
  --character-opacity: 1;
  width: auto;
  height: 82vh;
  max-height: 900px;
  min-height: 610px;
  opacity: var(--character-opacity);
  pointer-events: none;
  filter: drop-shadow(-28px 22px 54px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 28px rgba(72, 220, 255, 0.18));
  animation: characterIn 900ms ease both;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(620px, 52vw);
  margin-bottom: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-main);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: var(--white);
  font-size: 80px;
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.45);
}

.hero__title span,
.hero__title strong {
  display: block;
}

.hero__title strong {
  color: var(--accent-main);
  font-weight: 950;
  text-shadow: 0 0 28px rgba(72, 220, 255, 0.22);
}

.hero__text {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--text-gray);
  font-size: 20px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.btn {
  min-width: 240px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 16px;
}

.btn .icon {
  width: 24px;
  height: 24px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-main), #1d7f96);
  box-shadow: 0 22px 48px rgba(72, 220, 255, 0.32);
}

.btn--primary:hover {
  box-shadow: 0 28px 58px rgba(72, 220, 255, 0.46);
}

.btn--ghost {
  color: var(--white);
  background: rgba(14, 16, 20, 0.74);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(72, 220, 255, 0.08);
}

.btn--ghost:hover {
  border-color: rgba(72, 220, 255, 0.7);
  background: rgba(72, 220, 255, 0.08);
  box-shadow: 0 18px 42px rgba(72, 220, 255, 0.18), inset 0 0 0 1px rgba(72, 220, 255, 0.26);
}

.quick-cards {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  width: min(710px, 100%);
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(5, 7, 12, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 88px;
  padding: 18px 26px;
  color: var(--white);
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

button.quick-card {
  cursor: pointer;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card .icon {
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.74);
}

.quick-card__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-main);
  box-shadow: 0 0 20px var(--accent-glow);
}

.server-status-dot {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 50%;
  background: #54ffb8;
  box-shadow: 0 0 20px rgba(84, 255, 184, 0.72);
}

.server-status-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(84, 255, 184, 0.48);
  border-radius: inherit;
  animation: statusPulse 1.8s ease-out infinite;
}

.quick-card small,
.feature-card p {
  color: var(--text-gray);
}

.quick-card small {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-card strong {
  display: block;
  color: var(--white);
  font-size: 19px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.feature-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  min-height: 142px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.08), transparent 48%),
    var(--card-bg);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 48px rgba(0, 0, 0, 0.24);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 220, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.16), transparent 54%),
    rgba(9, 11, 17, 0.8);
  box-shadow: 0 0 0 1px rgba(72, 220, 255, 0.08), 0 26px 62px rgba(72, 220, 255, 0.14);
}

.feature-card__icon {
  width: 54px;
  height: 54px;
  color: var(--accent-main);
  filter: drop-shadow(0 0 16px rgba(72, 220, 255, 0.32));
}

.feature-card h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.hero__tagline {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: -4px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__tagline .icon {
  width: 17px;
  height: 17px;
  color: var(--accent-main);
}

.hero__tagline span {
  color: var(--accent-main);
}

.content-section {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 70px) var(--page-pad) 82px;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.94), rgba(10, 12, 16, 0.9)),
    radial-gradient(circle at 82% 0%, rgba(72, 220, 255, 0.12), transparent 34%);
}

.section-band {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.96), rgba(14, 16, 21, 0.92)),
    radial-gradient(circle at 10% 20%, rgba(72, 220, 255, 0.12), transparent 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--compact {
  margin-bottom: 24px;
}

.section-heading--store {
  max-width: 560px;
  margin-bottom: 28px;
}

.section-heading h2,
.login-modal__header h2 {
  margin: 0;
  color: var(--white);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.55;
}

.info-grid,
.steps-grid,
.shop-grid {
  display: grid;
  gap: 22px;
}

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

.steps-grid,
.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card,
.product-card,
.terms-panel,
.ranking-list,
.account-preview {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.08), transparent 50%),
    rgba(8, 10, 15, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.info-card,
.step-card,
.product-card {
  min-height: 230px;
  padding: 28px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.info-card:hover,
.step-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(72, 220, 255, 0.38);
  box-shadow: 0 28px 72px rgba(72, 220, 255, 0.12);
}

.info-card .feature-card__icon {
  margin-bottom: 22px;
}

.info-card h3,
.step-card h3,
.product-card h3,
.account-preview h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card p,
.step-card p,
.product-card p,
.account-preview p,
.terms-body p {
  margin: 0;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.55;
}

.step-card span,
.product-card small {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent-main);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card strong {
  display: block;
  margin: auto 0 22px;
  color: var(--white);
  font-size: 30px;
  font-weight: 950;
}

.product-card .btn {
  width: 100%;
}

.store-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -12px 0 28px;
}

.store-kicker {
  display: grid;
  gap: 8px;
}

.store-kicker span {
  color: var(--accent-main);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.store-kicker strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.store-cart,
.product-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  border: 2px solid rgba(72, 220, 255, 0.8);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.store-cart {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.store-cart .icon {
  width: 24px;
  height: 24px;
}

.store-cart span {
  position: absolute;
  top: -9px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent-main);
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(72, 220, 255, 0.45);
}

.store-login {
  min-width: 172px;
}

.store-shell {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.store-sidebar,
.store-alert,
.store-product {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.09), transparent 56%),
    rgba(9, 11, 16, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 62px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.store-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
}

.store-sidebar h3 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.store-category {
  min-height: 52px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(72, 220, 255, 0.08);
  border: 2px solid rgba(72, 220, 255, 0.72);
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
}

.store-category:hover,
.store-category.is-active {
  color: var(--black);
  background: linear-gradient(135deg, var(--accent-main), #26aac6);
  box-shadow: 0 0 26px rgba(72, 220, 255, 0.3);
  transform: translateY(-2px);
}

.store-main {
  min-width: 0;
}

.store-alert {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  margin-bottom: 24px;
  padding: 18px 22px;
  color: var(--text-gray);
}

.store-alert .icon {
  width: 25px;
  height: 25px;
  color: var(--accent-main);
}

.store-alert p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.store-product {
  display: none;
  min-width: 0;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.store-product.is-visible {
  display: flex;
  flex-direction: column;
  animation: tabPanelIn 280ms ease both;
}

.store-product:hover {
  transform: translateY(-6px);
  border-color: rgba(72, 220, 255, 0.42);
  box-shadow: 0 30px 76px rgba(72, 220, 255, 0.12);
}

.product-media {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 44%),
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(72, 220, 255, 0.18), rgba(3, 5, 9, 0.9));
}

.product-media::before,
.product-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-media::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  clip-path: polygon(0 0, 22% 0, 22% 2px, 0 2px, 0 100%, 2px 100%, 2px 78%, 0 78%, 0 0, 100% 0, 100% 22%, calc(100% - 2px) 22%, calc(100% - 2px) 2px, 78% 2px, 78% 0);
}

.product-media::after {
  width: 160px;
  height: 70px;
  bottom: 24px;
  border-radius: 50% 50% 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(180, 190, 198, 0.22));
  filter: blur(0.2px);
  opacity: 0.52;
}

.product-media small {
  position: absolute;
  top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-media strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 48px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(72, 220, 255, 0.28), 0 10px 30px rgba(0, 0, 0, 0.6);
}

.product-media__icon {
  position: absolute;
  z-index: 1;
  bottom: 54px;
  width: 98px;
  height: 98px;
  color: rgba(255, 255, 255, 0.86);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  filter: drop-shadow(0 0 24px rgba(72, 220, 255, 0.2));
  opacity: 0.52;
}

.product-media--cash {
  background: linear-gradient(135deg, rgba(72, 220, 255, 0.22), rgba(3, 12, 16, 0.92));
}

.product-media--level {
  background: linear-gradient(135deg, rgba(84, 255, 184, 0.17), rgba(3, 7, 10, 0.94));
}

.product-media--group {
  background: linear-gradient(135deg, rgba(72, 220, 255, 0.17), rgba(28, 32, 42, 0.94));
}

.product-media--urban {
  background: linear-gradient(135deg, rgba(72, 220, 255, 0.16), rgba(28, 16, 18, 0.94));
}

.product-media--money {
  background: linear-gradient(135deg, rgba(86, 255, 159, 0.16), rgba(6, 12, 8, 0.94));
}

.product-media--private,
.product-media--permanent {
  background: linear-gradient(135deg, rgba(72, 220, 255, 0.2), rgba(7, 7, 13, 0.96));
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 24px;
}

.product-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.09);
  border: 1px solid rgba(72, 220, 255, 0.22);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--white);
  font-size: 21px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body p {
  margin: 0;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.5;
}

.product-body > strong {
  margin-top: auto;
  color: var(--accent-main);
  font-size: 28px;
  font-weight: 950;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 12px;
  width: 100%;
}

.product-actions .btn {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  font-size: 13px;
}

.product-info {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.store-cart:hover,
.product-info:hover {
  transform: translateY(-2px);
  background: rgba(72, 220, 255, 0.16);
  box-shadow: 0 0 26px rgba(72, 220, 255, 0.24);
}

.terms-panel {
  margin-top: 34px;
  padding: 34px;
}

.terms-body {
  display: grid;
  gap: 16px;
}

.terms-body h3 {
  margin: 0 0 4px;
  color: var(--accent-main);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.terms-body strong {
  color: var(--white);
}

.ranking-list {
  display: grid;
  gap: 0;
  max-width: 760px;
  overflow: hidden;
}

.ranking-list div {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ranking-list div:last-child {
  border-bottom: 0;
}

.ranking-list span {
  color: var(--accent-main);
  font-weight: 950;
}

.ranking-list strong {
  color: var(--white);
  font-weight: 900;
}

.ranking-list small {
  color: var(--text-gray);
  font-size: 14px;
}

.ranking-preview {
  width: min(760px, 100%);
  padding: 34px;
  border: 1px solid rgba(72, 220, 255, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(72, 220, 255, 0.16), transparent 38%),
    rgba(8, 11, 16, 0.8);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.ranking-preview__badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(72, 220, 255, 0.28);
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ranking-preview h3 {
  margin: 0;
  font-size: 25px;
}

.ranking-preview p {
  max-width: 620px;
  margin: 14px 0 24px;
  color: var(--text-gray);
  line-height: 1.65;
}

.ranking-preview .btn {
  min-width: 0;
}

.discord-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 116px;
}

.discord-section .section-heading {
  margin-bottom: 0;
}

.login-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.login-modal[hidden] {
  display: none !important;
}

.login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.login-modal__panel {
  position: relative;
  width: min(430px, calc(100vw - 28px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(72, 220, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.12), transparent 48%),
    rgba(10, 12, 16, 0.96);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58), 0 0 44px rgba(72, 220, 255, 0.14);
}

.account-panel {
  width: min(440px, calc(100vw - 28px));
  background:
    linear-gradient(135deg, rgba(72, 220, 255, 0.14), transparent 42%),
    radial-gradient(circle at 92% 8%, rgba(72, 220, 255, 0.16), transparent 26%),
    rgba(10, 12, 16, 0.97);
}

.login-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.login-modal__close .icon {
  width: 19px;
  height: 19px;
}

.login-modal__header {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding-right: 38px;
}

.login-modal__header .feature-card__icon {
  width: 40px;
  height: 40px;
}

.login-modal__header .eyebrow {
  margin-bottom: 6px;
  font-size: 12px;
}

.login-modal__header h2 {
  font-size: 28px;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 5, 9, 0.58);
}

.account-tab {
  min-height: 34px;
  border-radius: 6px;
  color: var(--text-gray);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: color var(--ease), background var(--ease), box-shadow var(--ease);
}

.account-tab:hover,
.account-tab.is-active {
  color: var(--black);
  background: linear-gradient(135deg, var(--accent-main), #2ab2cf);
  box-shadow: 0 0 24px rgba(72, 220, 255, 0.24);
}

.game-link-card {
  display: none;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(72, 220, 255, 0.2);
  border-radius: 8px;
  background: rgba(72, 220, 255, 0.07);
}

.game-link-card .icon {
  width: 28px;
  height: 28px;
  color: var(--accent-main);
}

.game-link-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.game-link-card p {
  margin: 0;
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.35;
}

.login-form {
  display: grid;
  gap: 12px;
}

.account-form[hidden] {
  display: none !important;
}

.account-form.is-active {
  animation: tabPanelIn 260ms ease both;
}

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

.form-grid--register {
  grid-template-columns: 1fr;
}

.login-form label {
  display: grid;
  gap: 6px;
}

.login-form span {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--white);
  background: rgba(4, 6, 10, 0.76);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.login-form input:focus {
  border-color: rgba(72, 220, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(72, 220, 255, 0.12);
}

.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  border: 1px solid rgba(72, 220, 255, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--white);
  background: rgba(72, 220, 255, 0.16);
  border-color: rgba(72, 220, 255, 0.58);
  box-shadow: 0 0 20px rgba(72, 220, 255, 0.18);
  outline: none;
}

.password-toggle .icon {
  width: 19px;
  height: 19px;
}

.password-toggle .icon-eye-off,
.password-toggle.is-visible .icon-eye {
  display: none;
}

.password-toggle.is-visible .icon-eye-off {
  display: block;
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 74, 92, 0.42);
  border-radius: 6px;
  color: #ffd7dc;
  background: rgba(255, 74, 92, 0.1);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.form-error[hidden] {
  display: none !important;
}

.account-mini-link {
  justify-self: start;
  min-height: 26px;
  padding: 0;
  color: var(--accent-main);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-mini-link:hover {
  color: var(--white);
}

.link-help,
.cart-panel,
.orders-panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 5, 9, 0.42);
}

.link-help strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.link-help p {
  margin: 0;
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.45;
}

.link-help b {
  color: var(--accent-main);
}

.account-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(3, 5, 9, 0.44);
}

.account-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent-main);
}

.account-check span {
  color: var(--text-gray);
  font-size: 12px;
  line-height: 1.45;
  text-transform: none;
}

.account-preview {
  display: block;
  margin-top: 12px;
  padding: 12px;
}

.account-form .btn {
  width: 100%;
  min-height: 48px;
  font-size: 13px;
}

.account-preview__status {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  border: 1px solid rgba(72, 220, 255, 0.22);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.account-preview__grid span {
  padding: 12px;
  border-radius: 6px;
  color: var(--text-gray);
  background: rgba(3, 5, 9, 0.5);
  font-size: 14px;
}

.account-preview__grid strong {
  color: var(--white);
}

.account-preview.is-connected {
  border-color: rgba(72, 220, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(72, 220, 255, 0.08), 0 22px 58px rgba(72, 220, 255, 0.1);
}

.account-preview.is-connected .account-preview__status {
  color: var(--black);
  background: var(--accent-main);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.account-page,
.cart-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.98) 0%, rgba(10, 12, 16, 0.91) 46%, rgba(10, 12, 16, 0.97) 100%),
    radial-gradient(circle at 58% 55%, rgba(72, 220, 255, 0.16), transparent 24%),
    radial-gradient(circle at 8% 20%, rgba(72, 220, 255, 0.1), transparent 28%),
    url("assets/bg.jpg") center / cover no-repeat;
}

.account-page .section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.account-dashboard {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 1500px;
}

.account-summary-panel,
.account-link-panel,
.account-page .orders-panel,
.cart-page .cart-panel,
.cart-page .checkout-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(72, 220, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.1), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(7, 9, 14, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 64px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.account-summary-panel::before,
.account-link-panel::before,
.account-page .orders-panel::before,
.cart-page .cart-panel::before,
.cart-page .checkout-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(72, 220, 255, 0.9), transparent);
  opacity: 0.55;
}

.account-summary-panel {
  grid-column: span 6;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-link-panel {
  grid-column: span 6;
  min-height: 326px;
}

.account-link-panel[hidden] {
  display: none;
}

.account-dashboard.is-linked .account-summary-panel {
  grid-column: 1 / -1;
  min-height: auto;
}

.account-dashboard.is-linked .account-summary-panel .account-preview__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-page .orders-panel {
  grid-column: 1 / -1;
}

.account-summary-panel h3,
.account-link-panel h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-summary-panel p,
.account-link-panel p {
  margin: 0;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.55;
}

.account-page .account-preview__status {
  margin-bottom: 14px;
}

.account-page .account-preview__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.account-page .account-preview__grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(3, 5, 9, 0.62);
  overflow-wrap: anywhere;
}

.account-profile {
  display: grid;
  gap: 16px;
}

.account-page .account-profile__identity {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-page .account-profile__identity span {
  display: grid;
  align-content: center;
  gap: 7px;
}

.account-profile__identity small,
.account-stat span,
.account-stat small {
  color: var(--text-gray);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-profile__identity strong {
  font-size: 15px;
}

.account-profile__stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.account-dashboard:not(.is-linked) .account-profile__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-stat {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(72, 220, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.1), transparent 62%),
    rgba(4, 7, 12, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.account-stat .icon {
  width: 22px;
  height: 22px;
  color: var(--accent-main);
  filter: drop-shadow(0 0 12px rgba(72, 220, 255, 0.32));
}

.account-stat strong {
  min-width: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.account-stat small {
  font-size: 10px;
  line-height: 1.35;
  opacity: 0.72;
}

.account-stat--good {
  border-color: rgba(72, 220, 255, 0.32);
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.17), transparent 64%),
    rgba(4, 7, 12, 0.76);
}

.account-page .btn,
.cart-page .btn {
  min-width: 0;
  min-height: 54px;
  padding: 0 18px;
  font-size: 14px;
}

.account-actions .btn {
  flex: 1 1 190px;
}

.account-actions [data-logout] {
  flex: 0 1 132px;
}

.account-link-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-link-panel b {
  color: var(--accent-main);
}

.account-link-panel label {
  display: grid;
  gap: 7px;
}

.account-link-panel label span {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-link-panel input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--white);
  background: rgba(4, 6, 10, 0.76);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.account-link-panel input:focus {
  border-color: rgba(72, 220, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(72, 220, 255, 0.12);
}

.account-link-panel .btn,
.cart-page .cart-panel > .btn {
  width: 100%;
  margin-top: auto;
}

.cart-page .section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.cart-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 22px;
  width: min(100%, 1420px);
  align-items: start;
}

.cart-panel--items {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}

.checkout-panel {
  position: relative;
  top: 0;
  display: grid;
  gap: 16px;
  align-self: start;
}

.cart-continue {
  min-height: 42px !important;
  padding: 0 14px !important;
  font-size: 12px !important;
}

.checkout-summary {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.checkout-summary__badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(72, 220, 255, 0.3);
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.09);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-summary__items {
  display: grid;
  gap: 8px;
}

.checkout-summary__line,
.checkout-summary__total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.checkout-summary__line {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-summary__line span {
  min-width: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.checkout-summary__line small {
  color: var(--text-gray);
  font-weight: 700;
}

.checkout-summary__line strong,
.checkout-summary__total strong {
  color: var(--accent-main);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.checkout-summary__total {
  padding-top: 6px;
}

.checkout-summary__total span {
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-summary__total strong {
  font-size: 22px;
}

.checkout-summary__hint {
  margin: 0;
  color: var(--text-gray);
  font-size: 12px;
  line-height: 1.45;
}

.policy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(72, 220, 255, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(72, 220, 255, 0.11), rgba(255, 255, 255, 0.035));
  cursor: pointer;
}

.policy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent-main);
}

.policy-check span {
  color: var(--text-gray);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.policy-check:has(input:checked) {
  border-color: rgba(72, 220, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(72, 220, 255, 0.08);
}

.checkout-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.checkout-actions .btn {
  width: 100%;
}

.checkout-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
  filter: grayscale(0.3);
}

.payment-box {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(72, 220, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.07), transparent 58%),
    rgba(3, 5, 9, 0.72);
}

.payment-box[hidden] {
  display: none !important;
}

.payment-box h4 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-box p {
  margin: 0;
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.45;
}

.payment-box__notice {
  padding: 10px 12px;
  border: 1px solid rgba(72, 220, 255, 0.24);
  border-radius: 6px;
  color: var(--white) !important;
  background: rgba(72, 220, 255, 0.08);
}

.pix-payment {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  align-items: start;
}

.pix-payment img {
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
}

.pix-code {
  width: 100%;
  min-height: 74px;
  resize: vertical;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--text-gray);
  background: rgba(0, 0, 0, 0.42);
  font-size: 12px;
  line-height: 1.35;
  outline: none;
}

.payment-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-box__actions .btn {
  min-width: 0;
  min-height: 44px;
  padding: 0 16px;
  font-size: 12px;
}

.card-payment-brick {
  min-height: 360px;
  padding: 12px;
  border: 1px solid rgba(72, 220, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.card-payment-brick iframe {
  color-scheme: dark;
}

.card-payment-fallback {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(72, 220, 255, 0.26);
  border-radius: 8px;
  background: rgba(72, 220, 255, 0.08);
}

.card-payment-fallback[hidden] {
  display: none !important;
}

.card-payment-fallback strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.card-payment-fallback span {
  color: var(--text-gray);
  font-size: 12px;
  line-height: 1.45;
}

.card-payment-fallback .btn {
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  font-size: 11px;
}

.account-summary-panel.is-connected {
  border-color: rgba(72, 220, 255, 0.34);
  box-shadow: 0 0 0 1px rgba(72, 220, 255, 0.08), 0 22px 58px rgba(72, 220, 255, 0.1);
}

.account-summary-panel.is-connected .account-preview__status {
  color: var(--black);
  background: var(--accent-main);
}

.cart-panel,
.orders-panel {
  display: grid;
  gap: 12px;
}

.cart-panel.cart-panel--items {
  grid-template-rows: auto auto;
  gap: 18px;
  align-content: start;
}

.cart-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-panel__head h3 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-panel__head > strong {
  color: var(--accent-main);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.cart-lines,
.order-lines {
  display: grid;
  gap: 8px;
  align-content: start;
  align-items: start;
}

.cart-line,
.order-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  background:
    linear-gradient(135deg, rgba(72, 220, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(4, 6, 10, 0.64);
}

.cart-line--locked {
  border: 1px solid rgba(72, 220, 255, 0.16);
  background: rgba(72, 220, 255, 0.06);
}

.cart-line strong,
.order-line strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 17px;
  font-weight: 950;
}

.cart-line small,
.order-line small {
  display: block;
  margin-top: 3px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.35;
}

.order-line--redeem {
  border: 1px solid rgba(72, 220, 255, 0.24);
  background: linear-gradient(135deg, rgba(72, 220, 255, 0.1), rgba(255, 255, 255, 0.035));
}

.redeem-code {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 10px;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(72, 220, 255, 0.24);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.26);
}

.redeem-code span {
  color: var(--accent-main);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.redeem-code code {
  grid-column: 1 / -1;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  word-break: break-word;
}

.redeem-code button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(72, 220, 255, 0.42);
  border-radius: 6px;
  color: var(--black);
  background: var(--accent-main);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-line button {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  border: 1px solid rgba(72, 220, 255, 0.24);
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.cart-line__status {
  padding: 7px 10px;
  border: 1px solid rgba(72, 220, 255, 0.28);
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.empty-state {
  margin: 0;
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.45;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 150;
  max-width: calc(100vw - 32px);
  padding: 13px 18px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(10, 12, 16, 0.94);
  border: 1px solid rgba(72, 220, 255, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 28px rgba(72, 220, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity var(--ease), transform var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 720ms ease forwards;
}

.feature-grid.reveal {
  animation-delay: 180ms;
}

.hero__tagline.reveal {
  animation-delay: 300ms;
}

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

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

@keyframes characterIn {
  from {
    opacity: 0;
    transform: translateX(42px) scale(0.98);
  }
  to {
    opacity: var(--character-opacity);
    transform: translateX(0) scale(1);
  }
}

@keyframes statusPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.65);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.nav__link[hidden],
.admin-console[hidden],
.admin-locked[hidden],
.admin-owner-panel[hidden],
[data-admin-new-password-field][hidden] {
  display: none !important;
}

.nav__admin {
  color: var(--accent-main);
}

.privacy-card {
  grid-column: 1 / -1;
}

.admin-page {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(7, 9, 14, 0.98), rgba(7, 9, 14, 0.9), rgba(7, 9, 14, 0.98)),
    radial-gradient(circle at 80% 12%, rgba(72, 220, 255, 0.15), transparent 28%),
    url("assets/bg.jpg") center / cover fixed;
}

.admin-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1500px;
  margin-bottom: 28px;
}

.admin-heading .section-heading {
  margin: 0;
}

.admin-heading__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-role-badge,
.admin-role-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(72, 220, 255, 0.28);
  border-radius: 999px;
  color: var(--accent-main);
  background: rgba(72, 220, 255, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-role-pill--owner {
  color: #11151a;
  background: var(--accent-main);
}

.admin-role-pill--admin {
  color: #ffe7a8;
  border-color: rgba(255, 193, 76, 0.35);
  background: rgba(255, 193, 76, 0.1);
}

.admin-role-pill--user {
  color: var(--text-gray);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.admin-locked,
.admin-panel,
.admin-stat {
  border: 1px solid rgba(72, 220, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(72, 220, 255, 0.075), transparent 58%),
    rgba(7, 9, 14, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 64px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.admin-locked {
  max-width: 760px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px;
}

.admin-locked h3,
.admin-panel h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 21px;
  text-transform: uppercase;
}

.admin-locked p,
.admin-panel p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.55;
}

.admin-console {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  max-width: 1500px;
}

.admin-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-stat {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px;
}

.admin-stat span,
.admin-stat small {
  color: var(--text-gray);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-stat strong {
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.admin-stat small {
  font-size: 10px;
  opacity: 0.68;
}

.admin-panel {
  grid-column: span 6;
  min-width: 0;
  overflow: hidden;
  padding: 24px;
}

.admin-panel--wide,
.admin-owner-panel {
  grid-column: 1 / -1;
}

.admin-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.admin-panel__head > p {
  max-width: 560px;
  font-size: 13px;
  text-align: right;
}

.admin-chart {
  height: 190px;
  display: grid;
  grid-template-columns: repeat(7, minmax(42px, 1fr));
  align-items: end;
  gap: 12px;
  padding: 18px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-chart__day {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 8px;
  text-align: center;
}

.admin-chart__bar-wrap {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.admin-chart__bar {
  width: min(46px, 72%);
  min-height: 5px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #8beaff, var(--accent-main) 55%, rgba(72, 220, 255, 0.35));
  box-shadow: 0 0 24px rgba(72, 220, 255, 0.22);
}

.admin-chart__day span {
  color: var(--text-gray);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-chart__day strong {
  display: block;
  color: var(--white);
  font-size: 12px;
}

.admin-table-wrap {
  width: 100%;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(2, 4, 8, 0.45);
}

.admin-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  color: var(--text-gray);
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--white);
  background: #0b0e14;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table strong,
.admin-table code {
  color: var(--white);
}

.admin-table small {
  display: block;
  margin-top: 3px;
  color: rgba(194, 199, 207, 0.68);
}

.admin-table code {
  font-family: Consolas, monospace;
  font-size: 12px;
}

.admin-user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-mini-button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(72, 220, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: rgba(72, 220, 255, 0.07);
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-mini-button:hover {
  border-color: var(--accent-main);
  color: var(--accent-main);
}

.admin-mini-button--danger {
  border-color: rgba(255, 87, 87, 0.28);
  background: rgba(255, 87, 87, 0.08);
}

.admin-mini-button--danger:hover {
  border-color: #ff6f6f;
  color: #ff8a8a;
}

.admin-mini-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.admin-search,
.admin-grant-form {
  display: grid;
  gap: 12px;
}

.admin-search {
  grid-template-columns: minmax(240px, 420px) auto;
}

.admin-search input,
.admin-grant-form input,
.admin-action-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(72, 220, 255, 0.18);
  border-radius: 6px;
  outline: 0;
  color: var(--white);
  background: rgba(2, 4, 8, 0.72);
  font: inherit;
}

.admin-search input:focus,
.admin-grant-form input:focus,
.admin-action-form input:focus {
  border-color: var(--accent-main);
  box-shadow: 0 0 0 3px rgba(72, 220, 255, 0.09);
}

.admin-grant-form {
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1fr) auto;
  align-items: end;
  margin-top: 20px;
}

.admin-grant-form label,
.admin-action-form label {
  display: grid;
  gap: 7px;
  color: var(--text-gray);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-grant-form .form-error {
  grid-column: 1 / -1;
}

.admin-permission-list,
.admin-audit-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-permission-item,
.admin-audit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  background: rgba(2, 4, 8, 0.48);
}

.admin-permission-item strong,
.admin-audit-item strong {
  color: var(--white);
}

.admin-permission-item small,
.admin-audit-item small {
  display: block;
  margin-top: 3px;
  color: var(--text-gray);
}

.admin-action-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.admin-action-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.admin-action-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.admin-action-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: 28px;
  border: 1px solid rgba(72, 220, 255, 0.22);
  border-radius: 10px;
  background: #0b0e14;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.58);
}

.admin-action-modal__panel h3 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 24px;
  text-transform: uppercase;
}

.admin-action-modal__panel > p {
  margin: 0 0 20px;
  color: var(--text-gray);
  line-height: 1.55;
}

.admin-action-form {
  display: grid;
  gap: 15px;
}

.admin-action-form__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 900px) {
  .admin-heading,
  .admin-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-heading__actions,
  .admin-panel__head > p {
    justify-content: flex-start;
    text-align: left;
  }

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

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

  .admin-panel,
  .admin-panel--wide,
  .admin-owner-panel {
    grid-column: 1 / -1;
  }

  .admin-grant-form,
  .admin-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-chart {
    gap: 5px;
    overflow-x: auto;
  }

  .admin-panel,
  .admin-stat,
  .admin-action-modal__panel {
    padding: 19px;
  }

  .admin-permission-item,
  .admin-audit-item,
  .admin-action-form__buttons {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 1500px) {
  :root {
    --page-pad: 72px;
  }

  .nav {
    gap: 32px;
  }

  .hero {
    gap: 42px;
  }

  .hero__title {
    font-size: 68px;
  }

  .hero__text {
    font-size: 18px;
  }

  .hero__character {
    right: 3vw;
    height: 79vh;
  }

  .feature-card {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 22px 24px;
  }

  .store-shell {
    grid-template-columns: 260px minmax(0, 1fr);
  }

}

@media (max-width: 1180px) {
  :root {
    --header-height: 104px;
    --page-pad: 42px;
  }

  .header {
    grid-template-columns: auto 1fr auto;
  }

  .brand__logo {
    width: 142px;
  }

  .nav {
    gap: 22px;
  }

  .nav__link {
    font-size: 13px;
  }

  .hero {
    padding-top: 142px;
  }

  .hero__content {
    width: min(570px, 58vw);
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__character {
    right: -5vw;
    height: 75vh;
    opacity: 0.94;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .feature-card {
    min-height: 122px;
  }

  .store-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .store-sidebar {
    padding: 22px;
  }

  .store-category {
    min-height: 48px;
  }

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

  .account-profile__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 24px;
    --header-height: 86px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .header,
  .header.is-scrolled {
    height: var(--header-height);
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    padding-right: 20px;
    padding-left: 20px;
    background: rgba(10, 12, 16, 0.92);
  }

  .brand,
  .header-actions {
    min-width: 0;
  }

  .header-actions {
    justify-self: end;
  }

  .brand__logo {
    width: 118px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 31;
  }

  .header__button {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .header-cart {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }

  .header-cart .icon {
    width: 22px;
    height: 22px;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(4, 5, 9, 0.96);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav__link {
    justify-content: center;
    min-height: 54px;
    border-radius: 6px;
    font-size: 14px;
  }

  .nav__login {
    display: inline-flex;
    width: 100%;
  }

  .nav__link::after {
    bottom: 6px;
  }

  body.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .menu-toggle .icon-menu {
    display: none;
  }

  .account-page .account-profile__identity,
  .account-profile__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.nav-open .menu-toggle .icon-close {
    display: block;
  }

  .site-shell {
    background-position: 64% center;
  }

  .hero {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 34px;
    gap: 34px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.54) 66%, rgba(0, 0, 0, 0.84) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.88) 100%);
  }

  .hero__character {
    top: 158px;
    right: -12vw;
    bottom: auto;
    height: 54vh;
    max-height: 560px;
    min-height: 380px;
    --character-opacity: 0.68;
    filter: drop-shadow(-20px 18px 42px rgba(0, 0, 0, 0.82)) drop-shadow(0 0 24px rgba(72, 220, 255, 0.18));
  }

  .hero__content {
    width: 100%;
    max-width: 620px;
  }

  .eyebrow {
    font-size: 15px;
  }

  .hero__title {
    font-size: 50px;
  }

  .hero__text {
    max-width: 560px;
    font-size: 17px;
  }

  .hero__actions {
    gap: 14px;
  }

  .btn {
    min-width: 0;
    flex: 1 1 220px;
  }

  .quick-cards {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .quick-card:last-child {
    border-bottom: 0;
  }

  .content-section {
    padding: calc(var(--header-height) + 42px) var(--page-pad) 58px;
  }

  .section-heading h2,
  .login-modal__header h2 {
    font-size: 34px;
  }

  .info-grid,
  .steps-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .store-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-shell {
    grid-template-columns: 1fr;
  }

  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-summary-panel,
  .account-link-panel,
  .account-page .orders-panel,
  .cart-page .cart-panel,
  .cart-page .checkout-panel {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .cart-page-shell {
    grid-template-columns: 1fr;
    width: min(100%, 920px);
  }

  .checkout-panel {
    position: relative;
    top: auto;
  }

  .store-sidebar {
    position: relative;
    top: auto;
  }

  .store-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .discord-section {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
  }

  html,
  body,
  .site-shell {
    max-width: 100%;
    overflow-x: clip;
  }

  .header,
  .header.is-scrolled {
    grid-template-columns: minmax(0, 1fr) 46px 46px;
    gap: 10px;
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    width: 104px;
    max-width: 100%;
  }

  .brand__logo {
    width: 100%;
  }

  .header-cart,
  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__content,
  .hero__text,
  .hero__actions,
  .quick-cards,
  .feature-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.42) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.9) 100%);
  }

  .hero__character {
    top: 210px;
    right: -18vw;
    height: 520px;
    max-height: none;
    min-height: 0;
    --character-opacity: 0.58;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 42px);
    overflow-wrap: anywhere;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 56px;
  }

  .quick-card {
    min-height: 82px;
    padding: 17px 18px;
  }

  .quick-card > span:last-child,
  .feature-card > div {
    min-width: 0;
  }

  .quick-card strong {
    font-size: 16px;
  }

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

  .feature-card {
    min-height: 116px;
    padding: 20px;
  }

  .feature-card h2 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 15px;
  }

  .ranking-preview {
    padding: 26px 22px;
  }

  .ranking-preview h3 {
    font-size: 21px;
  }

  .hero__tagline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    font-size: 13px;
    text-align: center;
  }

  .content-section {
    padding: calc(var(--header-height) + 34px) 18px 46px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading--store {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .login-modal__header h2 {
    font-size: 28px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .info-card,
  .step-card,
  .product-card,
  .terms-panel {
    padding: 22px;
  }

  .store-kicker strong {
    font-size: 20px;
  }

  .store-actions {
    width: 100%;
  }

  .store-login {
    flex: 1;
  }

  .store-sidebar {
    padding: 20px;
  }

  .store-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .store-category {
    min-height: 46px;
    font-size: 13px;
  }

  .store-alert {
    display: none;
  }

  .store-products {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-media {
    min-height: 186px;
  }

  .product-media strong {
    font-size: 38px;
  }

  .product-body {
    padding: 20px;
  }

  .ranking-list div {
    grid-template-columns: 52px 1fr;
    min-height: 84px;
  }

  .ranking-list small {
    grid-column: 2;
  }

  .login-modal {
    padding: 14px;
  }

  .login-modal__panel {
    padding: 26px 20px;
  }

  .login-modal__header {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .account-tabs,
  .form-grid,
  .form-grid--register,
  .account-page .account-preview__grid {
    grid-template-columns: 1fr;
  }

  .account-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .checkout-actions,
  .pix-payment {
    grid-template-columns: 1fr;
  }

  .pix-payment img {
    width: 180px;
    height: 180px;
    justify-self: center;
  }

  .account-page .account-profile__identity,
  .account-profile__stats {
    grid-template-columns: 1fr;
  }

  .account-actions .btn,
  .account-actions [data-logout] {
    width: 100%;
  }

  .game-link-card {
    grid-template-columns: 34px 1fr;
    padding: 14px;
  }

  .account-tab {
    min-height: 42px;
  }
}

@media (max-width: 420px) {
  .header,
  .header.is-scrolled {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand__logo {
    width: 100%;
  }

  .brand {
    width: 96px;
  }

  .header-cart,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero__character {
    top: 265px;
    right: -22vw;
    height: 520px;
    --character-opacity: 0.6;
  }

  .hero__title {
    font-size: clamp(32px, 10vw, 36px);
  }

  .feature-card {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .feature-card__icon {
    width: 44px;
    height: 44px;
  }

  .store-categories {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr 50px;
  }

  .product-actions .btn,
  .product-info {
    min-height: 50px;
    height: 50px;
  }
}

@media (max-height: 790px) and (min-width: 901px) {
  .hero {
    gap: 28px;
    padding-top: 132px;
    padding-bottom: 28px;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .quick-cards {
    margin-top: 24px;
  }

  .feature-card {
    min-height: 112px;
    padding: 18px 22px;
  }

  .hero__tagline {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

