:root {
  --page-bg: #121214;
  --bar-bg: #0d0d0f;
  --nav-bg: #111113;
  --border: #242429;
  --text: #e6e4e8;
  --muted: #8b8991;
  --accent: #796cff;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.site-header {
  width: 100%;
  border-bottom: 1px solid var(--border);
}

.header-container {
  width: min(1244px, calc(100% - 40px));
  margin-inline: auto;
}

.notice-bar {
  height: 36px;
  background: var(--bar-bg);
  border-bottom: 1px solid #202024;
}

.notice-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.delivery-note,
.social-links {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.delivery-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #949199;
}

.shield {
  position: relative;
  width: 9px;
  height: 11px;
  background: linear-gradient(90deg, #fff 0 50%, #ff4f67 50%);
  clip-path: polygon(50% 0, 100% 18%, 88% 72%, 50% 100%, 12% 72%, 0 18%);
}

.social-links {
  display: flex;
  gap: 24px;
  color: #8e8c93;
}

.social-links a,
.menu__link {
  transition: color .2s ease;
}

.social-links a:hover,
.menu__link:hover {
  color: #c8c3ff;
}

.main-nav {
  height: 65px;
  background: var(--nav-bg);
}

.main-nav__inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.logo__mark {
  width: 28px;
  height: 36px;
  filter: drop-shadow(0 0 8px rgba(113, 94, 255, .35));
}

.logo__text {
  margin-left: 3px;
  color: #9388ff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-shadow: 0 0 9px rgba(122, 106, 255, .35);
}

.logo__text small {
  margin-left: 2px;
  font-size: 6px;
  letter-spacing: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 31px;
}

.menu__link {
  color: #929097;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu__link--dropdown::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 3px 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.header-actions {
  display: flex;
  gap: 8px;
}

.action-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid #2a292f;
  border-radius: 9px;
  color: #8d8b93;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.action-button:hover {
  background: #19181e;
  border-color: #47424f;
  color: #d5d2dc;
}

.action-button--accent {
  border-color: #4b4079;
  color: #c7c1ff;
}

.action-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
}

main {
  min-height: calc(100vh - 102px);
  background: linear-gradient(110deg, #111113 0%, #14141a 100%);
}

.hero-section {
  padding: 48px 20px 36px;
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(1232px, 100%);
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  background: #070b13;
  border: 1px solid #51478a;
  border-radius: 18px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, .26);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: -3%;
  background: url('assets/hero-banner.png') center / cover no-repeat;
  transform: scale(1.03);
  animation: hero-cinematic 14s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 30%, rgba(4, 6, 13, .1) 49%, rgba(7, 7, 20, .88) 72%, rgba(17, 14, 42, .96) 100%),
    linear-gradient(0deg, rgba(6, 7, 12, .3), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 52%;
  margin-left: auto;
  padding: 47px 48px 48px 28px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 14px;
  border: 1px solid #4f477f;
  border-radius: 999px;
  color: #b9b5d1;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.hero__lead,
.hero__subtitle,
.hero__description {
  margin: 0;
}

.hero__lead {
  margin-top: 10px;
  color: #f0eeeb;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1px 0 -2px;
  color: #8979ff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(51px, 4.5vw, 67px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(99, 76, 255, .17);
  transform: skewX(-4deg);
}

.hero__subtitle {
  color: #f0eeeb;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.hero__description {
  margin-top: 11px;
  color: #9693a1;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid #3f3a5b;
  border-radius: 8px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.hero-button--primary {
  gap: 7px;
  background: linear-gradient(135deg, #6150e8, #9a8cff);
  border-color: #8e81ff;
  box-shadow: 0 7px 24px rgba(106, 83, 255, .42);
  color: #fff;
}

.hero-button--primary:hover {
  background: linear-gradient(135deg, #715ef5, #aa9cff);
}

.hero-button--secondary {
  background: rgba(30, 27, 52, .8);
  color: #e8e5eb;
}

.hero-button--secondary:hover {
  border-color: #71679d;
}

.hero-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: rgba(29, 26, 42, .82);
  border: 1px solid #5c5295;
  border-radius: 50%;
  color: #ddd9e8;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease;
}

.hero__arrow:hover {
  background: #352d59;
  border-color: #8c7cf0;
}

.hero__arrow--left { left: 12px; }
.hero__arrow--right { right: 12px; }

.hero__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  transform: translateX(-50%);
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #57576b;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.hero__dot--active {
  width: 32px;
  background: linear-gradient(90deg, #705cff, #aaa1ff);
  border-radius: 999px;
}

@keyframes hero-cinematic {
  0% {
    transform: scale(1.03) translate3d(0, 0, 0);
    filter: saturate(1) brightness(1);
  }

  50% {
    filter: saturate(1.08) brightness(1.04);
  }

  100% {
    transform: scale(1.1) translate3d(-1.2%, -.7%, 0);
    filter: saturate(1.03) brightness(.98);
  }
}

.catalog-section {
  padding: 0 20px 34px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1232px, 100%);
  margin: 0 auto;
}

.catalog-card {
  position: relative;
  isolation: isolate;
  min-height: 208px;
  overflow: hidden;
  padding: 25px 24px 22px;
  background:
    radial-gradient(circle at 85% 85%, rgba(94, 66, 177, .19), transparent 44%),
    linear-gradient(135deg, #111016, #171322);
  border: 1px solid #302d37;
  border-radius: 15px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.catalog-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .22;
  transition: opacity .25s ease, transform .45s ease;
}

.catalog-card--orbs::before {
  background: radial-gradient(circle at 17% 20%, rgba(117, 85, 255, .38), transparent 24%), linear-gradient(145deg, transparent 45%, #241934);
}

.catalog-card--items::before {
  background: linear-gradient(110deg, transparent 25%, rgba(90, 74, 130, .3)), repeating-linear-gradient(75deg, transparent 0 23px, rgba(126, 98, 184, .08) 24px 26px);
}

.catalog-card--poe1::before {
  background: radial-gradient(circle at 74% 78%, rgba(119, 93, 201, .28), transparent 30%), linear-gradient(35deg, #231a32, transparent 55%);
}

.catalog-card:hover {
  transform: translateY(-5px);
  border-color: #5c5189;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .25), 0 0 25px rgba(104, 78, 209, .08);
}

.catalog-card:hover::before {
  opacity: .38;
  transform: scale(1.05);
}

.catalog-card__game {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border: 1px solid #574990;
  border-radius: 999px;
  color: #cbc5e8;
  font-size: 9px;
  font-weight: 700;
}

.catalog-card__label {
  color: #a99fdf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.catalog-card h2 {
  margin: 12px 0 8px;
  color: #f0eeed;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.catalog-card p {
  max-width: 250px;
  margin: 0;
  color: #92909a;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.catalog-card__link {
  position: absolute;
  bottom: 23px;
  left: 24px;
  color: #c5bedf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.catalog-card__link b {
  display: inline-block;
  margin-left: 7px;
  font-size: 17px;
  font-weight: 400;
  transition: transform .2s ease;
}

.catalog-card:hover .catalog-card__link b {
  transform: translateX(5px);
}

.advantages {
  border-top: 1px solid #29292d;
  border-bottom: 1px solid #29292d;
  background: #121214;
}

.advantages__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
  width: min(1232px, calc(100% - 40px));
  min-height: 112px;
  margin: 0 auto;
  align-items: center;
}

.advantage {
  display: flex;
  align-items: center;
  gap: 12px;
}

.advantage__icon {
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #4e437b;
  border-radius: 8px;
  color: #9e8cff;
}

.advantage__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.advantage h3 {
  margin: 0 0 5px;
  color: #dedcdf;
  font-size: 13px;
  font-weight: 800;
}

.advantage p {
  margin: 0;
  color: #85838b;
  font-size: 11px;
  line-height: 1.35;
}

.category-section {
  padding: 72px 20px 86px;
  background:
    radial-gradient(circle at 100% 0, rgba(64, 50, 123, .08), transparent 34%),
    #111113;
}

.category-block {
  width: min(1232px, 100%);
  margin: 0 auto;
}

.category-block + .category-block {
  margin-top: 64px;
}

.category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 12px;
  background: rgba(91, 68, 190, .25);
  border: 1px solid #5d4ab1;
  border-radius: 999px;
  color: #b5aaff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.category-heading h2 {
  margin: 11px 0 0;
  color: #f3f0ea;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.035em;
}

.category-heading > p {
  width: 448px;
  margin: 0 0 8px;
  color: #a19eb3;
  font-size: 13px;
  line-height: 1.5;
}

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

.category-card {
  position: relative;
  min-height: 218px;
  padding: 25px 24px 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #1d1d1e, #19191b);
  border: 1px solid #303034;
  border-radius: 15px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  background: rgba(113, 89, 219, .08);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity .25s ease;
}

.category-card:hover,
.category-card--featured {
  background: linear-gradient(145deg, #211f27, #1b1a20);
  border-color: #554787;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .23);
}

.category-card:hover::after { opacity: 1; }

.category-card__badge {
  position: absolute;
  top: 16px;
  right: 15px;
  min-height: 20px;
  padding: 3px 8px 0;
  border: 1px solid #55498b;
  border-radius: 999px;
  color: #b7adf5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.category-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
}

.category-card__icon svg {
  width: 42px;
  height: 42px;
  fill: rgba(255, 255, 255, .06);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px currentColor);
  transition: transform .3s ease;
}

.category-card__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 7px 11px rgba(0, 0, 0, .65));
  transition: transform .3s ease, filter .3s ease;
}

.category-card:hover .category-card__icon svg {
  transform: rotate(-4deg) scale(1.08);
}

.category-card:hover .category-card__icon img {
  transform: rotate(-4deg) scale(1.1);
  filter: drop-shadow(0 9px 15px rgba(0, 0, 0, .75)) brightness(1.12);
}

.category-card__icon--gold { color: #c9ad72; background: radial-gradient(circle, rgba(189, 153, 82, .22), transparent 68%); }
.category-card__icon--purple { color: #9275d5; background: radial-gradient(circle, rgba(112, 70, 167, .23), transparent 68%); }
.category-card__icon--teal { color: #4d988f; background: radial-gradient(circle, rgba(41, 123, 116, .22), transparent 68%); }
.category-card__icon--red { color: #a5535e; background: radial-gradient(circle, rgba(151, 48, 62, .24), transparent 68%); }
.category-card__icon--violet { color: #997eff; background: radial-gradient(circle, rgba(105, 78, 229, .27), transparent 68%); }
.category-card__icon--green { color: #8ba756; background: radial-gradient(circle, rgba(106, 143, 56, .22), transparent 68%); }
.category-card__icon--blue { color: #559fba; background: radial-gradient(circle, rgba(42, 124, 157, .22), transparent 68%); }

.category-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  color: #edeae6;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 21px;
  letter-spacing: -.035em;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #96949d;
  font-size: 13px;
  line-height: 1.48;
}

.bestsellers {
  padding: 64px 20px 84px;
  background: #111113;
  border-top: 1px solid #232327;
}

.bestsellers__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(1232px, 100%);
  margin: 0 auto 30px;
}

.bestsellers__heading h2 {
  margin: 11px 0 0;
  color: #f4f1eb;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(29px, 3vw, 39px);
  line-height: 1;
  letter-spacing: -.04em;
}

.bestsellers__heading h2 span { color: #8170ff; }

.all-products {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #36343c;
  border-radius: 7px;
  color: #d4d1d6;
  font-size: 11px;
  font-weight: 700;
  transition: border-color .2s ease, color .2s ease;
}

.all-products b { margin-left: 5px; }
.all-products:hover { border-color: #7565c9; color: #a99cff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1232px, 100%);
  margin: 0 auto;
}

.product-card {
  overflow: hidden;
  background: #1a1a1b;
  border: 1px solid #303034;
  border-radius: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card:hover,
.product-card--accent {
  border-color: #337fa6;
  box-shadow: 0 0 0 1px rgba(32, 166, 220, .15), 0 15px 35px rgba(0, 0, 0, .25);
}

.product-card:hover { transform: translateY(-5px); }

.product-card__image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background-color: #17171a;
  background-image: url('assets/product-atlas.png');
  background-repeat: no-repeat;
  background-size: 400% 200%;
  transition: filter .3s ease;
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 42%, rgba(25, 24, 28, .4) 100%);
}

.product-card__image--real {
  background-image: none;
  background:
    radial-gradient(circle at 50% 44%, rgba(142, 116, 60, .34), transparent 58%),
    linear-gradient(145deg, #201f1b, #171719);
}

.product-card__image--real img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 72%;
  height: 72%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .62));
  transition: transform .3s ease;
}

.product-card:hover .product-card__image--real img {
  transform: translate(-50%, -50%) scale(1.07);
}

.product-card__image--real::after { z-index: 0; }
.product-card__image--real .platforms { z-index: 2; }

.product-card:hover .product-card__image { filter: brightness(1.11) saturate(1.12); }
.product-card__image--1 { background-position: 0 0; }
.product-card__image--2 { background-position: 33.333% 0; }
.product-card__image--3 { background-position: 66.666% 0; }
.product-card__image--4 { background-position: 100% 0; }
.product-card__image--5 { background-position: 0 100%; }
.product-card__image--6 { background-position: 33.333% 100%; }
.product-card__image--7 { background-position: 66.666% 100%; }
.product-card__image--8 { background-position: 100% 100%; }

.platforms {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 9px;
  left: 12px;
  color: #53515c;
  font-size: 7px;
  text-align: center;
  text-transform: uppercase;
}

.product-card__body {
  position: relative;
  min-height: 142px;
  padding: 14px 14px 13px;
  border-top: 1px solid #2d2d31;
}

.product-card h3 {
  min-height: 38px;
  margin: 0 0 7px;
  color: #f1eee8;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.product-card__body > p {
  height: 31px;
  margin: 0 0 10px;
  overflow: hidden;
  color: #93909c;
  font-size: 9px;
  line-height: 1.45;
}

.product-rarity {
  display: inline-block;
  margin: -2px 0 6px;
  padding: 3px 6px;
  background: #08486b;
  border: 1px solid #1598d4;
  border-radius: 3px;
  color: #6ecfff;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-rarity + h3 { min-height: 20px; }

.product-tags {
  display: flex;
  gap: 4px;
  margin-bottom: 9px;
}

.product-tags span,
.product-tags i {
  padding: 3px 5px;
  background: #1d1c21;
  border: 1px solid #303038;
  border-radius: 5px;
  color: #74717f;
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
}

.product-tags span {
  background: #7462f6;
  border-color: #8273ff;
  color: #fff;
  font-weight: 700;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__bottom strong {
  color: #e6e1ff;
  font-family: Consolas, monospace;
  font-size: 14px;
  letter-spacing: .02em;
}

.product-card__bottom button {
  min-height: 25px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid #514a82;
  border-radius: 6px;
  color: #eeeaff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.product-card__bottom button:hover { background: #6757db; border-color: #897aff; }

.league-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 20px 86px;
  background: #111113;
}

.league-promo {
  position: relative;
  isolation: isolate;
  min-height: 365px;
  overflow: hidden;
  border: 1px solid #554b83;
  border-radius: 19px;
  box-shadow: inset 0 0 70px rgba(25, 16, 70, .16);
}

.league-promo:first-child { justify-self: end; }
.league-promo:last-child { justify-self: start; }
.league-promo { width: min(608px, 100%); }

.league-promo::before,
.league-promo::after {
  content: '';
  position: absolute;
  inset: 0;
}

.league-promo::before {
  z-index: -2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform .7s ease, filter .7s ease;
}

.league-promo:hover::before {
  transform: scale(1.045);
  filter: saturate(1.12) brightness(1.05);
}

.league-promo::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 13, 47, .94) 0%, rgba(17, 13, 47, .76) 52%, rgba(11, 12, 22, .38) 100%),
    linear-gradient(0deg, rgba(25, 18, 65, .55), transparent 55%);
}

.league-promo--poe2::before {
  background-image: url('assets/hero-banner.png');
  background-position: 31% center;
}

.league-promo--poe1::before {
  background-image: url('assets/product-atlas.png');
  background-position: 66% 15%;
  background-size: 205% auto;
  filter: brightness(.72) saturate(.7);
}

.league-promo--poe1::after {
  background:
    linear-gradient(90deg, rgba(19, 14, 52, .96), rgba(19, 14, 52, .78) 56%, rgba(11, 12, 22, .42)),
    radial-gradient(circle at 80% 80%, rgba(91, 67, 184, .28), transparent 45%);
}

.league-promo__content {
  max-width: 570px;
  padding: 57px 40px 40px;
}

.league-promo h2 {
  margin: 13px 0 12px;
  color: #f4f0ea;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.league-promo h2 span { color: #8372ff; }

.league-promo p {
  max-width: 535px;
  margin: 0;
  color: #a7a3b3;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.league-promo__actions {
  display: flex;
  gap: 9px;
  margin-top: 21px;
}

.league-promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 20px;
  background: rgba(31, 27, 48, .78);
  border: 1px solid #49445f;
  border-radius: 8px;
  color: #e8e4eb;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.league-promo__button:hover { transform: translateY(-2px); border-color: #786da5; }

.league-promo__button--primary {
  background: linear-gradient(135deg, #8e7fff, #6756ed);
  border-color: #9285ff;
  color: #fff;
  box-shadow: 0 8px 25px rgba(92, 72, 222, .3);
}

.league-promo__button--primary:hover { background: linear-gradient(135deg, #a093ff, #7967f8); }

.services {
  padding: 68px 20px 82px;
  background:
    radial-gradient(circle at 50% 0, rgba(100, 74, 203, .08), transparent 30%),
    #111113;
  border-top: 1px solid #232327;
}

.services__heading {
  margin-bottom: 38px;
  text-align: center;
}

.services__heading h2 {
  margin: 13px 0 0;
  color: #f3f0ea;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(31px, 3.2vw, 41px);
  line-height: 1;
  letter-spacing: -.04em;
}

.services__heading h2 span { color: #8170ff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1232px, 100%);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  overflow: hidden;
  padding: 18px 20px;
  background: linear-gradient(135deg, #202021, #1d1d1e);
  border: 1px solid #313135;
  border-radius: 15px;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -45px;
  right: -45px;
  width: 120px;
  height: 120px;
  background: rgba(114, 88, 224, .12);
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0;
  transition: opacity .24s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #242329, #1e1d22);
  border-color: #5e4f98;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.service-card:hover::after { opacity: 1; }

.service-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  background: rgba(34, 31, 49, .62);
  border: 1px solid #514682;
  border-radius: 8px;
  color: #a394ff;
  transition: color .24s ease, box-shadow .24s ease;
}

.service-card:hover .service-card__icon {
  color: #c4bbff;
  box-shadow: 0 0 20px rgba(111, 84, 233, .2);
}

.service-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card > span:last-child {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-card h3 {
  margin: 0 0 6px;
  color: #e9e6e2;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.service-card p {
  margin: 0;
  color: #949199;
  font-size: 12px;
  line-height: 1.35;
}

.about {
  padding: 72px 20px 86px;
  background:
    radial-gradient(circle at 70% 0, rgba(75, 58, 142, .06), transparent 34%),
    #111113;
  border-top: 1px solid #242428;
}

.about__intro {
  width: min(830px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.about__intro h2 {
  margin: 13px 0 15px;
  color: #f3f0ea;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(32px, 3.3vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
}

.about__intro h2 span { color: #8170ff; }

.about__intro > p {
  margin: 0;
  color: #a3a0ad;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.about__intro strong { color: #f0ede7; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(1105px, 100%);
  margin: 0 auto 47px;
}

.stat-card {
  min-height: 170px;
  padding: 20px 15px;
  background: linear-gradient(145deg, #1d1d1e, #1b1b1c);
  border: 1px solid #303034;
  border-radius: 15px;
  text-align: center;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: #514584;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.stat-card svg {
  width: 25px;
  height: 25px;
  margin-bottom: 7px;
  fill: none;
  stroke: #9d8cff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card strong {
  display: block;
  color: #8170ff;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.stat-card h3 {
  margin: 6px 0 3px;
  color: #e9e6e1;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.stat-card p {
  margin: 0;
  color: #686672;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.safety-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  width: min(1105px, 100%);
  margin: 0 auto;
  padding: 31px 33px;
  background: linear-gradient(135deg, #1e1e1f, #1b1b1c);
  border: 1px solid #303034;
  border-radius: 17px;
}

.safety-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: #19191b;
  border-radius: 15px;
  color: #b4a9ff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
}

.safety-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-card h3 {
  margin: 2px 0 13px;
  color: #ebe8e3;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.25;
  letter-spacing: -.035em;
}

.safety-card__content > p {
  margin: 0;
  color: #929099;
  font-size: 14px;
  line-height: 1.7;
}

.safety-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 25px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.safety-card li {
  position: relative;
  padding-left: 24px;
  color: #96939d;
  font-size: 12px;
}

.safety-card li::before {
  content: '✓';
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border: 1px solid #19c99a;
  border-radius: 50%;
  color: #19c99a;
  font-size: 9px;
  font-weight: 900;
}

.leagues-overview {
  padding: 66px 20px 84px;
  background: #111113;
  border-top: 1px solid #242428;
}

.league-group {
  width: min(1105px, 100%);
  margin: 0 auto;
}

.league-group + .league-group { margin-top: 37px; }

.league-group__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.league-group__heading span {
  color: #9e90ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.league-group__heading h2 {
  margin: 8px 0 0;
  color: #f0ede8;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 25px;
  letter-spacing: -.035em;
}

.league-group__heading > a {
  margin-bottom: 4px;
  color: #a694ff;
  font-size: 10px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.league-group__heading > a:hover { color: #d0c8ff; }

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

.league-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  min-height: 133px;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(135deg, #202021, #1c1c1d);
  border: 1px solid #303034;
  border-radius: 15px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.league-card::after {
  content: '';
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 180px;
  height: 150px;
  background: var(--league-glow, rgba(120, 90, 220, .12));
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
}

.league-card:hover {
  transform: translateY(-3px);
  border-color: var(--league-color, #5b4b91);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.league-card--gold { --league-color: #ae8e3f; --league-glow: rgba(167, 126, 43, .2); }
.league-card--red { --league-color: #a54249; --league-glow: rgba(166, 49, 58, .18); }
.league-card--cyan { --league-color: #358f8e; --league-glow: rgba(35, 139, 139, .18); }
.league-card--purple { --league-color: #744793; --league-glow: rgba(113, 63, 144, .18); }
.league-card--indigo { --league-color: #5949a5; --league-glow: rgba(78, 65, 157, .2); }

.league-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: color-mix(in srgb, var(--league-color) 18%, transparent);
  border: 1px solid var(--league-color);
  border-radius: 10px;
  color: var(--league-color);
}

.league-card__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.league-card h3 {
  margin: 0 0 4px;
  color: #eae7e3;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 17px;
  letter-spacing: -.035em;
}

.league-card small {
  display: block;
  color: #625f6c;
  font-size: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.league-card p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #95929b;
  font-size: 11px;
  line-height: 1.65;
}

.how-it-works { padding: 64px 20px 84px; background: #111113; border-top: 1px solid #242428; }
.process-block, .mini-catalog, .community-grid { width: min(1105px, 100%); margin-inline: auto; }
.process-label { color: #9d8cff; font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.process-block > h2, .mini-catalog > h2 { margin: 7px 0 18px; color: #f0ede7; font-family: "Arial Black", Impact, sans-serif; font-size: 24px; letter-spacing: -.035em; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-card { position: relative; min-height: 205px; padding: 23px 17px 17px; background: #1d1d1e; border: 1px solid #303034; border-radius: 13px; transition: transform .24s ease, border-color .24s ease; }
.process-card:hover { transform: translateY(-4px); border-color: #5b4e91; }
.process-card > b { position: absolute; top: -12px; left: 17px; display: grid; place-items: center; width: 24px; height: 24px; background: #7865ef; border-radius: 50%; color: #fff; font-size: 13px; }
.process-card svg { width: 24px; height: 24px; margin-bottom: 12px; fill: none; stroke: #a99bff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.process-card h3 { margin: 0 0 10px; color: #e9e6e2; font-family: "Arial Black", Impact, sans-serif; font-size: 15px; letter-spacing: -.025em; }
.process-card p { margin: 0; color: #95929c; font-size: 10px; line-height: 1.75; }
.mini-catalog { margin-top: 37px; }
.mini-catalog > h2 { margin-bottom: 6px; }
.mini-catalog__intro { max-width: 720px; margin: 0 0 17px; color: #96939d; font-size: 10px; line-height: 1.6; }
.mini-catalog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mini-category { min-height: 108px; padding: 16px; background: #1d1d1e; border: 1px solid #303034; border-radius: 12px; text-align: center; transition: transform .2s ease, border-color .2s ease; }
.mini-category:hover { transform: translateY(-3px); border-color: currentColor; }
.mini-category svg { width: 23px; height: 23px; margin-bottom: 8px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 7px currentColor); }
.mini-category h3 { margin: 0 0 5px; color: #e8e5e0; font-family: "Arial Black", Impact, sans-serif; font-size: 13px; }
.mini-category small { color: #5e5b68; font-size: 7px; text-transform: uppercase; }
.mini-category--yellow { color: #e0c84e; } .mini-category--violet { color: #7666ff; } .mini-category--pink { color: #c851ae; } .mini-category--orange { color: #db6e46; } .mini-category--cyan { color: #48d2c5; }
.community-grid { display: grid; grid-template-columns: 1fr; gap: 14px; width: min(700px, 100%); margin-top: 40px; }
.community-card { display: grid; grid-template-columns: 52px 1fr; gap: 14px; min-height: 188px; padding: 20px; background: #1d1d1e; border: 1px solid #303034; border-radius: 14px; }
.community-card__icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #267ba4; border-radius: 8px; color: #55c8f1; }
.community-card__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.community-card h3 { margin: 2px 0 2px; color: #ece9e4; font-family: "Arial Black", Impact, sans-serif; font-size: 18px; letter-spacing: -.035em; }
.community-card small { color: #5f5c67; font-size: 8px; text-transform: uppercase; }
.community-card p { margin: 13px 0; color: #94919a; font-size: 10px; line-height: 1.65; }
.community-card a { color: #c8c0eb; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.community-card a:hover { color: #9a88ff; }

.catalog-cta {
  padding: 0 20px 72px;
  background: #111113;
}

.catalog-cta__content {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 45px;
  width: min(1105px, 100%);
  min-height: 284px;
  margin: 0 auto;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at 72% 55%, rgba(96, 72, 212, .13), transparent 30%),
    linear-gradient(135deg, #19191b, #17171b);
  border: 1px solid #4f447d;
  border-radius: 18px;
}

.catalog-cta__content::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 21%;
  bottom: -100px;
  width: 330px;
  height: 210px;
  background: rgba(107, 78, 233, .12);
  border-radius: 50%;
  filter: blur(65px);
}

.catalog-cta__copy > span {
  color: #a999ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.catalog-cta h2 {
  max-width: 510px;
  margin: 10px 0 10px;
  color: #f3f0e9;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(26px, 2.8vw, 35px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.catalog-cta p {
  max-width: 510px;
  margin: 0;
  color: #918e9a;
  font-size: 10px;
  line-height: 1.55;
}

.catalog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 17px;
  background: rgba(31, 30, 36, .84);
  border: 1px solid #3c3946;
  border-radius: 7px;
  color: #e9e5ec;
  font-size: 11px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.catalog-cta__button:hover {
  transform: translateY(-3px);
  border-color: #7567a9;
}

.catalog-cta__button--primary {
  background: linear-gradient(135deg, #8574fa, #7663eb);
  border-color: #9486ff;
  color: #fff;
  box-shadow: 0 8px 25px rgba(98, 75, 224, .27);
}

.catalog-cta__button--primary:hover {
  background: linear-gradient(135deg, #9a8aff, #806cf3);
  box-shadow: 0 10px 30px rgba(98, 75, 224, .38);
}

.catalog-cta__button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 54px 20px 0;
  background: #0d0d0f;
  border-top: 1px solid #252529;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr repeat(2, 1fr);
  gap: 70px;
  width: min(992px, 100%);
  margin: 0 auto;
  padding-bottom: 38px;
}

.footer-logo { color: #8072ff; }
.footer-brand__tagline { display: block; margin-top: 8px; color: #7d78a0; font-size: 8px; letter-spacing: .22em; text-transform: uppercase; }
.footer-brand > p { max-width: 310px; margin: 15px 0; color: #9b98a7; font-size: 11px; line-height: 1.7; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { padding: 8px 11px; border: 1px solid #3a383f; border-radius: 6px; color: #d5d2d7; font-size: 9px; font-weight: 700; transition: border-color .2s ease, color .2s ease; }
.footer-socials a:hover { border-color: #6558a1; color: #a99dff; }
.footer-column { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
.footer-column h2 { margin: 2px 0 5px; color: #8375ff; font-size: 9px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.footer-column a { color: #a09cab; font-size: 10px; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: #d0c9ff; transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; width: min(992px, 100%); margin: 0 auto; padding: 22px 0 31px; border-top: 1px solid #202024; }
.footer-bottom p { margin: 0; color: #514e6e; font-size: 8px; }

.floating-action { position: fixed; z-index: 20; bottom: 19px; display: flex; align-items: center; flex-direction: column; color: #fff; }
.floating-action > span { display: grid; place-items: center; width: 49px; height: 49px; background: linear-gradient(135deg, #7665ed, #5e4dd7); border-radius: 50%; box-shadow: 0 0 28px rgba(103, 79, 230, .5); transition: transform .2s ease, box-shadow .2s ease; }
.floating-action:hover > span { transform: translateY(-4px) scale(1.04); box-shadow: 0 0 35px rgba(120, 95, 255, .65); }
.floating-action svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.floating-action--telegram { right: 28px; }

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
    transform: scale(1.03);
  }

  .hero-button,
  .action-button {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .main-nav__inner {
    grid-template-columns: 165px 1fr auto;
  }

  .menu {
    gap: 18px;
  }

  .menu__link {
    font-size: 11px;
  }

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

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

@media (max-width: 930px) {
  .main-nav__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    order: -1;
  }

  .menu {
    position: absolute;
    z-index: 10;
    top: 65px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #121216;
    border: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .35);
  }

  .menu--open {
    display: flex;
  }

  .menu__link {
    padding: 13px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 400px;
  }

  .hero::before { background-position: 38% center; }

  .hero__shade {
    background: linear-gradient(90deg, rgba(4, 6, 13, .1), rgba(8, 8, 19, .9) 54%, rgba(17, 14, 42, .98));
  }

  .hero__content {
    width: 60%;
    padding: 62px 35px 58px 20px;
  }

  .catalog-grid,
  .advantages__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages__inner {
    gap: 25px;
    padding: 24px 0;
  }

  .category-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .category-heading > p {
    width: min(100%, 600px);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .league-promos { grid-template-columns: 1fr; }
  .league-promo,
  .league-promo:first-child,
  .league-promo:last-child { width: min(100%, 720px); justify-self: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

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

  .process-grid, .mini-catalog__grid { grid-template-columns: repeat(2, 1fr); }

  .catalog-cta__content { grid-template-columns: 1fr; gap: 25px; }

  .footer-main { grid-template-columns: repeat(3, 1fr); gap: 35px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .header-container {
    width: min(100% - 24px, 1244px);
  }

  .notice-bar {
    height: 32px;
  }

  .delivery-note {
    font-size: 8px;
    letter-spacing: .12em;
  }

  .social-links {
    display: none;
  }

  .main-nav {
    height: 60px;
  }

  .menu {
    top: 60px;
  }

  .logo__text {
    font-size: 16px;
  }

  .header-actions {
    gap: 5px;
  }

  .action-button {
    width: 36px;
    height: 36px;
  }

  .header-actions .action-button:nth-last-child(3),
  .header-actions .action-button:nth-last-child(2) {
    display: none;
  }

  .hero-section {
    padding: 24px 12px 35px;
  }

  .hero {
    min-height: 520px;
    border-radius: 14px;
  }

  .hero::before { background-position: 30% center; }

  .hero__shade {
    background: linear-gradient(0deg, rgba(10, 8, 28, .99) 10%, rgba(8, 9, 20, .83) 56%, rgba(4, 6, 13, .15));
  }

  .hero__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 40px 30px 55px;
  }

  .hero__eyebrow {
    font-size: 8px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__subtitle {
    font-size: 19px;
  }

  .hero__description {
    font-size: 11px;
  }

  .hero__description br {
    display: none;
  }

  .hero__arrow {
    top: 38%;
    width: 34px;
    height: 34px;
  }

  .catalog-section {
    padding: 0 12px 25px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-card {
    min-height: 190px;
  }

  .advantages__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100% - 24px, 1232px);
  }

  .category-section {
    padding: 52px 12px 62px;
  }

  .category-block + .category-block {
    margin-top: 50px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card {
    min-height: 190px;
  }

  .bestsellers { padding: 52px 12px 62px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card__image { height: 260px; }
  .all-products { min-height: 34px; padding-inline: 10px; font-size: 9px; }

  .league-promos { padding: 0 12px 62px; }
  .league-promo { min-height: 420px; border-radius: 15px; }
  .league-promo__content { position: absolute; right: 0; bottom: 0; left: 0; padding: 45px 24px 32px; }
  .league-promo::after { background: linear-gradient(0deg, rgba(17, 12, 44, .98) 8%, rgba(17, 12, 44, .84) 58%, rgba(7, 8, 16, .18)); }
  .league-promo h2 { font-size: 31px; }
  .league-promo p { font-size: 12px; }
  .league-promo__button { min-height: 44px; padding-inline: 15px; font-size: 12px; }

  .services { padding: 52px 12px 62px; }
  .services__heading { margin-bottom: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 88px; padding: 16px; }
  .service-card h3 { font-size: 17px; }

  .about { padding: 52px 12px 62px; }
  .about__intro > p { font-size: 13px; line-height: 1.65; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { min-height: 150px; }
  .safety-card { grid-template-columns: 1fr; padding: 24px 20px; }
  .safety-card__icon { width: 55px; height: 55px; }
  .safety-card__content > p { font-size: 12px; }
  .safety-card ul { grid-template-columns: 1fr; }

  .leagues-overview { padding: 52px 12px 62px; }
  .league-group__heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .league-grid { grid-template-columns: 1fr; gap: 12px; }
  .league-card { min-height: 140px; }

  .how-it-works { padding: 52px 12px 62px; }
  .process-grid, .mini-catalog__grid, .community-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 180px; }
  .community-card { grid-template-columns: 45px 1fr; padding: 17px; }

  .catalog-cta { padding: 0 12px 52px; }
  .catalog-cta__content { min-height: 0; padding: 28px 20px; border-radius: 15px; }
  .catalog-cta__actions { flex-direction: column; }
  .catalog-cta__button { width: 100%; }

  .site-footer { padding: 45px 20px 0; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 35px 25px; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-action--telegram { right: 12px; }
  .floating-action > span { width: 44px; height: 44px; }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__content {
    padding-inline: 20px;
  }
}

/* Cart */
.cart-trigger { position: relative; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid #111115;
  border-radius: 20px;
  background: #7866ff;
  color: #fff;
  font: 700 10px/14px Inter, sans-serif;
  text-align: center;
}
.cart-overlay {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(3, 3, 8, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  backdrop-filter: blur(3px);
}
.cart-drawer {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  display: flex;
  width: min(430px, 100vw);
  height: 100dvh;
  flex-direction: column;
  border-left: 1px solid #292833;
  background: #111113;
  box-shadow: -24px 0 70px rgba(0, 0, 0, .5);
  color: #f4f2ee;
  transform: translateX(105%);
  transition: transform .3s ease;
}
.cart-is-open { overflow: hidden; }
.cart-is-open .cart-overlay { opacity: 1; pointer-events: auto; }
.cart-is-open .cart-drawer { transform: translateX(0); }
.cart-drawer__header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #29282e;
}
.cart-drawer__header > div { display: flex; align-items: center; gap: 9px; }
.cart-drawer__header h2 { margin: 0; font-size: 24px; }
.cart-drawer__header small {
  padding: 4px 8px;
  border-radius: 20px;
  background: #202024;
  color: #aaa7b4;
  font-size: 11px;
}
.cart-drawer__icon { color: #a89bff; font-size: 22px; }
.cart-close {
  width: 38px;
  height: 38px;
  border: 1px solid #2d2c33;
  border-radius: 11px;
  background: transparent;
  color: #a9a6b1;
  font-size: 24px;
  cursor: pointer;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid #2b2a31;
  border-radius: 16px;
  background: #171719;
}
.cart-item + .cart-item { margin-top: 10px; }
.cart-item > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 11px;
  background: radial-gradient(circle, #4d452e, #1c1b18 70%);
}
.cart-item__content { min-width: 0; }
.cart-item h3 {
  overflow: hidden;
  margin: 0 24px 5px 0;
  color: #f0eee9;
  font-size: 15px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item__content > span {
  display: block;
  margin-bottom: 10px;
  color: #73707e;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cart-item__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.cart-quantity {
  display: flex;
  height: 31px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #302f36;
  border-radius: 9px;
  background: #202024;
}
.cart-quantity button {
  width: 32px;
  height: 100%;
  border: 0;
  background: transparent;
  color: #918e9a;
  cursor: pointer;
}
.cart-quantity b { min-width: 25px; color: #eee; font-size: 12px; text-align: center; }
.cart-item__price { text-align: right; }
.cart-item__price strong { display: block; color: #bbb3ff; font-size: 14px; }
.cart-item__price small { color: #686572; font-size: 9px; }
.cart-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  color: #676471;
  font-size: 19px;
  cursor: pointer;
}
.cart-empty { padding: 100px 30px; color: #777482; text-align: center; }
.cart-empty span { font-size: 36px; }
.cart-empty h3 { margin: 15px 0 7px; color: #eeeaf3; }
.cart-empty p { margin: 0; font-size: 12px; line-height: 1.5; }
.cart-drawer__footer {
  padding: 18px 20px 22px;
  border-top: 1px solid #29282e;
  background: #121214;
}
.cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cart-total span { color: #706d7b; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.cart-total strong { color: #8878ff; font-size: 23px; }
.cart-checkout,
.cart-continue {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.cart-checkout { background: linear-gradient(100deg, #8d7fff, #6752ea); color: #fff; text-decoration: none; }
.cart-checkout.is-disabled { opacity: .35; pointer-events: none; }
.cart-continue { margin-top: 8px; border: 1px solid #36343d; background: #202023; color: #ddd9e1; }
.cart-clear {
  display: block;
  margin: 9px auto 0;
  border: 0;
  background: transparent;
  color: #5e5b67;
  font-size: 10px;
  text-transform: uppercase;
  cursor: pointer;
}

/* Checkout */
.checkout-page { min-height: 100vh; background: #111113; color: #f4f1ed; }
.checkout-header {
  border-bottom: 1px solid #242329;
  background: #0e0e10;
}
.checkout-header__inner {
  display: flex;
  max-width: 1180px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 24px;
}
.checkout-header__inner img { width: 130px; }
.checkout-header__inner nav { display: flex; gap: 20px; }
.checkout-header__inner nav a { color: #aaa6b4; font-size: 12px; text-decoration: none; }
.checkout-main { max-width: 1180px; margin: auto; padding: 54px 24px 80px; }
.checkout-breadcrumb { margin-bottom: 10px; color: #726f86; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.checkout-main > h1 { margin: 0 0 8px; font-size: clamp(30px, 5vw, 44px); }
.checkout-lead { max-width: 700px; margin: 0 0 28px; color: #a5a1af; font-size: 13px; line-height: 1.55; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr); gap: 24px; align-items: start; }
.checkout-panel {
  padding: 26px;
  border: 1px solid #2c2b31;
  border-radius: 18px;
  background: #18181a;
}
.checkout-panel h2 { margin: 0 0 23px; color: #b9b0ff; font-size: 14px; letter-spacing: .15em; text-transform: uppercase; }
.checkout-field { display: block; margin-bottom: 18px; }
.checkout-field > span { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 700; }
.checkout-field em { color: #ff7069; font-style: normal; }
.checkout-field__label {
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.checkout-field__label b { max-width: 58%; color: #f2eff4; font-size: 11px; line-height: 1.35; }
.checkout-field__label small { color: #67637d; font-size: 8px; font-weight: 400; line-height: 1.45; text-align: right; }
.checkout-field input,
.checkout-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid #35333b;
  border-radius: 6px;
  outline: 0;
  background: #232326;
  color: #f3f0f6;
  font: inherit;
}
.checkout-field input:focus,
.checkout-field textarea:focus { border-color: #7867f5; box-shadow: 0 0 0 3px rgba(120, 103, 245, .12); }
.checkout-field textarea { min-height: 90px; resize: vertical; }
.checkout-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 18px; }
.checkout-options--contact { grid-template-columns: repeat(4, 1fr); }
.checkout-option input { position: absolute; opacity: 0; }
.checkout-option span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #35333b;
  border-radius: 6px;
  background: #202023;
  color: #aaa6b1;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.checkout-option input:checked + span { border-color: #7b6bf5; background: #6f5deb; color: #fff; }
.checkout-check { display: flex; align-items: flex-start; gap: 9px; margin: 6px 0 20px; color: #c7c3cc; font-size: 11px; line-height: 1.45; }
.checkout-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(100deg, #8d7fff, #6752ea);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.checkout-payment-status { min-height: 18px; margin: 10px 0 0; color: #d7a7b4; font-size: 11px; line-height: 1.45; }
.checkout-back { display: inline-block; margin-top: 18px; color: #7b7787; font-size: 10px; text-decoration: none; text-transform: uppercase; }
.checkout-sidebar { position: sticky; top: 20px; display: grid; gap: 14px; }
.checkout-summary { position: static; }
.checkout-order-items { display: grid; gap: 10px; }
.checkout-order-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; }
.checkout-order-item img { width: 44px; height: 44px; border-radius: 9px; background: radial-gradient(circle, #51472d, #201f1c); object-fit: contain; }
.checkout-order-item h3 { margin: 0 0 3px; font-size: 11px; }
.checkout-order-item small { color: #777382; font-size: 9px; }
.checkout-order-item strong { color: #c9c2ff; font-size: 11px; white-space: nowrap; }
.checkout-summary-total { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 17px; border-top: 1px solid #302f35; }
.checkout-summary-total span { color: #777382; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.checkout-summary-total strong { color: #8878ff; font-size: 22px; }
.checkout-summary-line { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 15px; border-top: 1px solid #302f35; }
.checkout-summary-line span { color: #8e8a98; font-size: 10px; }
.checkout-summary-line strong { color: #d7d3dc; font-size: 11px; }
.checkout-tips { padding: 20px; }
.checkout-tips h2 { margin-bottom: 4px; color: #ffb5d4; font-size: 11px; }
.checkout-tips > p { margin: 0 0 15px; color: #aaa6b3; font-size: 9px; line-height: 1.45; }
.tip-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.tip-options input { position: absolute; opacity: 0; }
.tip-options span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #36343b;
  border-radius: 7px;
  background: #222225;
  color: #eeeaf1;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.tip-options span:hover { border-color: #6e61c9; transform: translateY(-1px); }
.tip-options input:checked + span { border-color: #806fff; background: linear-gradient(135deg, #8d7fff, #6752ea); color: #fff; }
.tip-custom { display: block; margin-top: 10px; }
.tip-custom[hidden] { display: none; }
.tip-custom span { display: block; margin-bottom: 6px; color: #8d8996; font-size: 9px; }
.tip-custom input { width: 100%; min-height: 38px; padding: 8px 10px; border: 1px solid #3a3742; border-radius: 6px; outline: 0; background: #232326; color: #fff; }
.checkout-footer { margin-top: 0; }
.legal-page { min-height: 100vh; background: #111113; color: #f3f0ed; }
.legal-main { width: min(860px, calc(100% - 32px)); margin: 0 auto; padding: 68px 0 90px; }
.legal-back { color: #9186ed; font-size: 10px; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.legal-main > h1 { margin: 18px 0 8px; font-size: clamp(30px, 6vw, 48px); line-height: 1.08; }
.legal-date { margin: 0 0 36px; color: #777380; font-size: 11px; }
.legal-main section { padding: 22px 0; border-top: 1px solid #29282e; }
.legal-main section h2 { margin: 0 0 10px; color: #b7adff; font-size: 17px; }
.legal-main section p { margin: 0; color: #aaa6b1; font-size: 13px; line-height: 1.75; }
.legal-main section p + p { margin-top: 9px; }
.legal-intro { margin-bottom: 34px; padding: 24px; border: 1px solid #302e38; border-radius: 16px; background: #18181a; }
.legal-intro p { margin: 0; color: #b5b1bc; font-size: 13px; line-height: 1.75; }
.legal-intro p + p { margin-top: 16px; }
.legal-main section ul { margin: 9px 0 13px; padding-left: 22px; color: #aaa6b1; font-size: 13px; line-height: 1.75; }
.legal-main section li + li { margin-top: 4px; }
.legal-main section a { color: #978bff; }
.legal-acceptance { margin: 34px 0 0; padding: 22px 24px; border: 1px solid #574c9a; border-radius: 14px; background: linear-gradient(135deg, rgba(104, 83, 220, .16), rgba(31, 29, 42, .8)); color: #c8c2dc; font-size: 13px; font-weight: 600; line-height: 1.7; }
.checkout-empty { color: #9995a2; font-size: 12px; line-height: 1.5; }
.checkout-empty a { color: #9f94ff; }

@media (max-width: 760px) {
  .cart-drawer { width: 100vw; }
  .checkout-header__inner nav { display: none; }
  .checkout-main { padding: 36px 14px 60px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; grid-row: 1; }
  .checkout-panel { padding: 20px 16px; }
  .checkout-options--contact { grid-template-columns: repeat(2, 1fr); }
  .checkout-field__label { align-items: flex-start; flex-direction: column; gap: 4px; }
  .checkout-field__label b { max-width: 100%; }
  .checkout-field__label small { text-align: left; }
}
