/* ============================================================
   DESIGN TOKENS
   NOTE: Figma image URLs (figma.com/api/mcp/asset/…) expire in
   7 days — replace every src="" with locally hosted files before
   shipping to production.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@100;300;400;500;700&display=swap');

:root {
  /* ── Palette ── */
  --c-bg: #111111;
  --c-green: #99ee2d;
  --c-green-light: #bef970;
  --c-green-lighter: #eafec9;
  --c-green-pale: #f5ffe6;
  --c-green-dark: #46810a;
  --c-white: #ffffff;
  --c-orange: #f15d09;

  /* ── Typography ── */
  --font-display: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  /* ── Layout ── */
  --container-max: 1224px;
  --container-px: clamp(20px, 5.47vw, 80px);
  --header-h: 80px;
  --section-gap: clamp(60px, 8.2vw, 120px);

  /* ── Button clip-paths ── */
  --clip-lg: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  --clip-sm: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
}


/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
}


/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px !important;
    height: 50px;
    padding: 0 48px 0 32px;
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    clip-path: var(--clip-lg) !important;
    transition: filter .2s ease, transform .15s ease !important;
    flex-shrink: 0;
    font-weight: 400 !important;
}

.btn:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 4px;
  border-radius: 2px;
}

.btn:active {
  transform: scale(0.96);
}

/* Green variant */
.btn--green {
  background-color: var(--c-green) !important;
  color: var(--c-bg) !important;
  filter: drop-shadow(0 0 17px rgba(153, 238, 45, 0.3));
      font-family: var(--font-display) !important;
}

.btn--green:hover {
  filter: drop-shadow(0 0 26px rgba(153, 238, 45, 0.6)) brightness(1.07);
}

/* Light / pale variant */
.btn--light {
  background-color: var(--c-green-pale);
  color: var(--c-bg);
  filter: drop-shadow(0 0 17px rgba(245, 255, 230, 0.25));
}

.btn--light:hover {
  filter: drop-shadow(0 0 26px rgba(245, 255, 230, 0.5)) brightness(1.05);
}

/* Small size */
.btn--sm {
  height: 40px;
  padding: 0 36px 0 24px;
  font-size: 18px;
  clip-path: var(--clip-sm);
}

/* Icon-only (arrow-right button in category cards) */
.btn--icon {
  height: 40px;
  padding: 0 14px;
  clip-path: var(--clip-sm);
}

.btn__arrow,
.btn__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding-inline: clamp(20px, 4.1vw, 60px);
  transition: background-color .3s ease, backdrop-filter .3s ease;
}

.header--scrolled {
  background-color: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* Nav — flex-centered, no absolute positioning */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.74vw, 40px);
}

.header__nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: var(--c-white);
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--c-green-light);
  transition: width .25s ease;
}

.header__nav-link:hover {
  opacity: 1;
  color: var(--c-green-light);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__nav-link--active {
  opacity: 1;
  color: var(--c-green-light);
}

/* Login */
.header__login {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-white);
  flex-shrink: 0;
  transition: color .2s ease;
}

.header__login:hover {
  color: var(--c-green-light);
}

.header__login-avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-green-lighter);
  flex-shrink: 0;
}

.header__steam-icon {
  width: 16px;
  height: 16px;
  color: var(--c-white);
  display: block;
}

/* Burger (mobile) */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}

.header__burger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.header__burger--open .header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger--open .header__burger-bar:nth-child(2) {
  opacity: 0;
}

.header__burger--open .header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.header__mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background-color: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(16px);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.header__mobile-nav--open {
  display: flex;
}

.header__mobile-nav-link {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--c-white);
  transition: color .2s ease;
}

.header__mobile-nav-link:hover {
  color: var(--c-green-light);
}

.header__mobile-login {
  margin-top: 16px;
}

/* Mobile nav utility row: search + wishlist */
.header__mobile-utils {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 8px;
}

.header__mobile-search-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.header__mobile-search-input {
  width: 100%;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0 44px 0 16px;
  outline: none;
  transition: border-color .2s ease;
}

.header__mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.header__mobile-search-input:focus {
  border-color: var(--c-green-light);
}

.header__mobile-search-wrap svg {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  flex-shrink: 0;
}

.header__mobile-wish-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  flex-shrink: 0;
}

.header__mobile-wish-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__mobile-wish-btn:hover {
  border-color: var(--c-green-light);
  color: var(--c-green-light);
  background: rgba(153, 238, 45, 0.06);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 648px;
  padding-top: var(--header-h);
  overflow: hidden;
  /* background-color: var(--c-bg); */
  background: linear-gradient(255deg, #090B0D 10.31%, #010101 100.34%);
}

/* Background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__bg-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0) 0%, #111111 100%);
}

/* ── Inner layout: content left, visual right ── */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  /* Left col: text content (min auto, max 460px). Right col: fills rest. */
  grid-template-columns: minmax(auto, 460px) 1fr;
  align-items: center;
  min-height: calc(648px - var(--header-h));
}

/* Content (left) */
.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero__title {
  font-family: var(--font-display);
  /* Each line is independently forced by <br>; keep font big enough for 2 clear lines */
  font-size: clamp(64px, 8.75vw, 128px);
  line-height: 0.93;
  color: var(--c-white);
  text-transform: uppercase;
  margin-bottom: clamp(24px, 2.74vw, 40px);
  /* Prevent unintended wrap — <br> controls the break */
  width: max-content;
  /* max-width: 100%; */
  z-index: 1;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-white);
  max-width: 392px;
  margin-bottom: 40px;
}

/* ── Visual column (right) — character centred on viewport ── */
.hero__visual {
  position: relative;
  align-self: stretch;
  /* Character is centred relative to the full container via absolute positioning */
}

/* Glow blob BEHIND character */
.hero__blur--behind {
  position: absolute;
  /* offset so the glow sits behind the character's torso */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 495px;
  height: 495px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

/* CS2 character — centred in the visual column */
.hero__character {
  position: absolute;
  left: calc(50% - 100px);
  /* центр колонки, сдвиг влево на 100px */
  transform: translateX(-50%);
  bottom: 0;
  width: 368px;
  height: 552px;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  z-index: 5;
}

/* BlurShadow ON TOP of character (item 6) — upper body glow overlay */
.hero__blur--over {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 440px;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  z-index: 2;
  opacity: 0.18;
  mix-blend-mode: soft-light;
}

/* Decorative diamond polygon (Polygon2) */
.hero__polygon {
  position: absolute;
  right: -30px;
  top: clamp(40px, 8%, 80px);
  width: 160px;
  height: 160px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.75;
}

.hero__polygon svg {
  width: 100%;
  height: 100%;
}

/* ── Product card — L-shaped glass (Subtract from Figma) ── */
.hero__card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-45%);
  z-index: 3;
  /* Exact Figma dimensions: DateCard 252×178 */
  width: 252px;
  height: 178px;
  /* Drop-shadow on wrapper (not bg) so it follows the L-clip shape */
  filter: drop-shadow(-8px 8px 17px rgba(0, 0, 0, 0.28));
}

/* L-shaped frosted glass background
   Clip polygon derived from Figma path M302 18H50V196H149V138H302V18Z
   scaled to 252×178:
     (0,0) → (100%,0) → (100%,67.4%) → (39.3%,67.4%) → (39.3%,100%) → (0,100%) */
.hero__card-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  clip-path: polygon(0 0,
      100% 0,
      100% 67.4%,
      39.3% 67.4%,
      39.3% 100%,
      0 100%);
}

/* Stroke border overlay — matches Figma SVG stroke path */
.hero__card-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

/* Card text info (left strip — visible in both sections of the L) */
.hero__card-info {
  position: absolute;
  left: 24px;
  top: 24px;
  /* Constrain to the narrow left portion so text stays within the glass */
  /* max-width: 92px; */
}

.hero__card-name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  color: var(--c-white);
  margin-bottom: 8px;
}

.hero__card-delivery {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.3;
  color: var(--c-white);
  opacity: 0.6;
  margin-bottom: 40px;
}

.hero__card-price {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.1;
  color: var(--c-green-light);
}

/* CTA button — floats at the step (bottom-right outside the glass clip) */
.hero__card-cta {
  position: absolute;
  /* Aligns to where the L-step begins: x = 39.3% = ~99px from left */
  left: 107px;
  right: 0;
  bottom: 0;
  height: 50px;
  font-size: 15px;
  padding: 0 20px 0 16px;
  /* Override default clip so it fills the right-side width */
  clip-path: var(--clip-lg);
  width: auto;
}


/* ============================================================
   POPULAR CATEGORIES
   ============================================================ */
.categories {
  margin-top: clamp(32px, 3.28vw, 48px);
}

.categories__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.categories__title {
  font-family: var(--font-display) !important;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.32;
  color: var(--c-white);
}

.categories__view-all {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-white);
  border-bottom: 1px solid var(--c-green-light);
  padding-bottom: 4px;
  transition: color .2s ease, border-color .2s ease;
}

.categories__view-all:hover {
  color: var(--c-green-light);
  border-color: var(--c-green);
}

/* Grid — full viewport width, no gap */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Card base */
.category-card {
  position: relative;
  height: 424px;
  overflow: hidden;
  box-shadow: -20px 0 20px rgba(0, 0, 0, 0.2);
  transition: box-shadow .35s ease;
  isolation: isolate;
  /* contain stacking + blend modes */
}

.category-card:hover {
  z-index: 2;
}

/* ── Shimmer sweep (Dota-style light pass on hover) ── */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 20%,
      rgba(255, 255, 255, 0.13) 50%,
      transparent 80%);
  transform: translateX(-160%);
  pointer-events: none;
  z-index: 20;
  transition: none;
}

.category-card:hover::before {
  animation: card-shimmer 0.85s ease forwards;
}

@keyframes card-shimmer {
  to {
    transform: translateX(160%);
  }
}

/* ── Colour-matched neon glow on hover ── */
.category-card--yellow:hover {
  box-shadow:
    0 0 0 2px rgba(190, 249, 112, 0.9),
    0 0 40px rgba(190, 249, 112, 0.45),
    0 0 90px rgba(190, 249, 112, 0.2);
}

.category-card--pale:hover {
  box-shadow:
    0 0 0 2px rgba(245, 255, 230, 0.9),
    0 0 40px rgba(245, 255, 230, 0.4),
    0 0 90px rgba(245, 255, 230, 0.18);
}

.category-card--dark-green:hover {
  box-shadow:
    0 0 0 2px rgba(153, 238, 45, 0.75),
    0 0 40px rgba(153, 238, 45, 0.35),
    0 0 90px rgba(153, 238, 45, 0.15);
}

.category-card--light-green:hover {
  box-shadow:
    0 0 0 2px rgba(234, 254, 201, 0.9),
    0 0 40px rgba(234, 254, 201, 0.4),
    0 0 90px rgba(234, 254, 201, 0.18);
}

/* ── Neon title glow on hover ── */
.category-card:hover .category-card__name {
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.35);
  transition: text-shadow .3s ease;
}

/* ── Top-right corner cut (Subtract SVG) ── */
.category-card__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  z-index: 10;
  display: block;
}

/* Noise texture overlay */
.category-card__noise {
  position: absolute;
  inset: 0;
  background-image: url('https://www.figma.com/api/mcp/asset/bb0779c6-7817-40f1-8128-c10c7f7584db');
  background-size: 440px 440px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* Card color variants */
.category-card--yellow {
  background-color: var(--c-green-light);
}

.category-card--pale {
  background-color: var(--c-green-pale);
}

.category-card--dark-green {
  background-color: var(--c-green-dark);
}

.category-card--light-green {
  background-color: var(--c-green-lighter);
}

/* Card title — z-index 3 keeps it above the character image (z-index 2) */
.category-card__name {
  position: relative;
  z-index: 3;
  padding: 24px 24px 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.7vw, 54px);
  line-height: 1;
  color: var(--c-bg);
}

.category-card__name--light {
  color: var(--c-green-pale);
}

/* Character image — anchored to card bottom, bleeds into the glass footer */
.category-card__character {
  position: absolute;
  bottom: 0;
  /* touches the very bottom of the card */
  right: 0;
  width: 100%;
  height: auto;
  /* natural proportions */
  max-height: 88%;
  /* never obscures the full card */
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
  /* behind title */
  transition: transform .4s ease;
  pointer-events: none;
}

.category-card:hover .category-card__character {
  transform: scale(1.05) translateY(-10px);
}

/* Footer bar (blurred overlay) */
.category-card__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(7.5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 3;
}

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

.category-card__price {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  color: var(--c-white);
}

.category-card__price--light {
  color: var(--c-green-lighter);
}

.category-card__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--c-white);
  opacity: 0.6;
}

.category-card__desc--light {
  color: var(--c-green-lighter);
}


/* ============================================================
   TRENDING / BROWSE
   ============================================================ */
.trending {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.70) -38.99%, #111111 100%),
    url('../img/bg-map.jpg') 50% / cover no-repeat;
  background-color: #111111;
}

.trending__inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5.47vw, 80px);
  min-height: 296px;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Left content */
.trending__content {
  flex: 0 0 auto;
  width: clamp(280px, 41%, 600px);
}

.trending__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.38vw, 64px);
  line-height: 1;
  color: var(--c-white);
  margin-bottom: clamp(16px, 2.05vw, 30px);
}

.trending__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-white);
  opacity: 0.55;
  margin-bottom: 32px;
}

/* Right: Swiper slider — bleeds to right viewport edge */
.trending__slider {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.trending-swiper {
  overflow: visible;
  width: 100%;
}

/* Trending swiper — product-card inside each slide */
.trending-swiper .swiper-slide {
  width: 200px;
  flex-shrink: 0;
  transform: scale(0.9) !important;  /* !important: overrides Swiper JS inline transforms */
  transform-origin: center top;
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0.65;
}

/* Active (leftmost visible) slide: full size, full opacity */
.trending-swiper .swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1;
}

.trending-swiper .product-card {
  height: 100%;
}


/* ============================================================
   TRUST — Trusted by CS2 Players Worldwide
   ============================================================ */
.trust {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 314px;
  overflow: hidden;
}

/* Left visual */
.trust__visual {
  position: relative;
  overflow: hidden;
}

.trust__bg-shapes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.trust__player {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
}

/* Right content */
.trust__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(24px, 4.1vw, 60px);
}

.trust__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.38vw, 64px);
  line-height: 1;
  color: var(--c-white);
  margin-bottom: 24px;
}

.trust__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-white);
  opacity: 0.55;
  margin-bottom: 36px;
  max-width: 392px;
}

.trust__content .btn {
  align-self: flex-start;
}


/* ============================================================
   BLOG / NEWS
   ============================================================ */
.blog {
  margin-top: var(--section-gap);
}

/* Header */
.blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.blog__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.32;
  color: var(--c-white);
}

/* Filter tabs */
.blog__filters {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog__filter {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: var(--c-white);
  opacity: 0.5;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: opacity .2s ease, border-color .2s ease, color .2s ease;
}

.blog__filter:hover {
  opacity: 0.8;
}

.blog__filter--active {
  opacity: 1;
  color: var(--c-white);
  border-color: var(--c-green-light);
}

/* Card grid */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.03);
  border-bottom: 4px solid var(--c-green);
  transition: transform .3s ease, background-color .2s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.07);
}

.blog-card__image-wrap {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.06);
}

.blog-card__body {
  flex: 1;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--c-white);
}

.blog-card__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-white);
  opacity: 0.6;
}

/* Load More */
.blog__more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}


/* ============================================================
   SUBSCRIBE
   ============================================================ */
.subscribe {
  position: relative;
  margin-top: var(--section-gap);
  min-height: 517px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-bg);
}

/* Background layers */
.subscribe__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.subscribe__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.subscribe__shine {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: soft-light;
  filter: blur(150px);
  pointer-events: none;
}

.subscribe__shine--left {
  width: 523px;
  height: 523px;
  left: -102px;
  top: 79px;
  background: rgba(190, 249, 112, 0.65);
}

.subscribe__shine--right {
  width: 663px;
  height: 663px;
  right: -100px;
  top: -146px;
  background: rgba(190, 249, 112, 0.5);
}

.subscribe__gradient--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, var(--c-bg), transparent);
}

.subscribe__gradient--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--c-bg), transparent);
}

/* Content */
.subscribe__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--container-px);
  text-align: center;
  max-width: 860px;
}

.subscribe__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.28vw, 48px);
  line-height: 1.05;
  color: var(--c-white);
  text-transform: uppercase;
}

/* Form */
.subscribe__form {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.subscribe__field {
  flex: 0 0 288px;
}

.subscribe__input {
  width: 100%;
  height: 40px;
  background: transparent;
  border-bottom: 1px solid var(--c-green-pale);
  color: var(--c-green-pale);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  padding: 0 0 10px 0;
  outline: none;
  transition: border-color .2s ease;
}

.subscribe__input::placeholder {
  color: rgba(245, 255, 230, 0.55);
}

.subscribe__input:focus {
  border-color: var(--c-green-light);
}

.subscribe__btn {
  height: 40px;
  font-size: 18px;
  clip-path: var(--clip-sm);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--section-gap);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 464px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Left panel */
.footer__left {
  padding: 60px clamp(24px, 8.2vw, 120px) 60px clamp(20px, 8.2vw, 120px);
  padding-inline: clamp(20px, 4.1vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.32px;
  color: var(--c-white);
  opacity: 0.75;
  max-width: 496px;
}

.footer__language {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__language-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-white);
}

.footer__language-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--c-white);
  border-bottom: 1px solid var(--c-green-pale);
  padding-bottom: 8px;
  width: fit-content;
  transition: color .2s ease;
}

.footer__language-btn:hover {
  color: var(--c-green-light);
}

.footer__language-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer__copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: var(--c-white);
  opacity: 0.5;
  margin-top: auto;
}

/* Right panel — glass effect */
.footer__right {
  position: relative;
  background-color: rgba(72, 77, 67, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px clamp(24px, 3.28vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Top-left corner cut — same Subtract shape mirrored from category card */
/* .footer__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  z-index: 2;
  display: block;
} */

/* Horizontal divider in right panel */
.footer__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* Nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

.footer__nav::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.32px;
  color: var(--c-white);
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}

.footer__nav-link:hover {
  opacity: 1;
  color: var(--c-green-light);
}

/* Social links */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: var(--c-white);
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}

.footer__social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__social-link:hover {
  opacity: 1;
  color: var(--c-green-light);
}


/* ============================================================
   RESPONSIVE — TABLET  (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  /* Header: hide centered nav, show burger */
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  /* Hide search, wishlist, profile — leave only cart.
     .header__icons parent increases specificity above .header__icon-btn { display:flex } */
  .header__icons .header__search-wrap,
  .header__icons .header__icon-btn--wishlist,
  .header__icons .header__icon-btn--profile {
    display: none !important;
  }

  /* Hide Steam login from header — it lives in the mobile nav */
  .header__login {
    display: none;
  }

  /* Hero: collapse to single column */
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
    z-index: 3;
  }

  .hero__content {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .hero__title {
    width: auto;
    /* allow wrap on small screens */
  }

  .hero__visual {
    height: 380px;
    position: relative;
  }

  .hero__character {
    width: 260px;
    height: auto;
    max-height: 380px;
  }

  .hero__blur--behind {
    width: 320px;
    height: 320px;
  }

  .hero__blur--over {
    width: 260px;
    height: 200px;
  }

  .hero__card {
    right: 16px;
    top: 16px;
    transform: none;
    width: 200px;
    height: 148px;
    filter: drop-shadow(-5px 5px 10px rgba(0, 0, 0, 0.25));
  }

  .hero__card-bg {
    clip-path: polygon(0 0, 100% 0, 100% 64%, 38% 64%, 38% 100%, 0 100%);
  }


  .hero__card-name {
    font-size: 22px;
  }

  .hero__card-price {
    font-size: 16px;
  }

  .hero__card-cta {
    left: 76px;
    height: 40px;
    font-size: 13px;
    padding: 0 12px 0 10px;
  }

  .hero__polygon {
    right: -60px;
    width: 120px;
    height: 120px;
  }

  .header__login-avatar {
    display: none;
  }

  /* Categories: 2 cols */
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    height: 360px;
  }

  /* Trending: stack */
  .trending__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .trending__content {
    width: 100%;
  }

  .trending__slider {
    width: 100%;
  }

  /* Trust: stack */
  .trust {
    grid-template-columns: 1fr;
  }

  .trust__visual {
    min-height: 280px;
  }

  .trust__content {
    padding: 40px var(--container-px);
  }

  /* Blog: 2 cols */
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer: stack */
  .footer {
    grid-template-columns: 1fr;
  }

  .footer__left {
    padding: 48px var(--container-px);
  }

  .footer__right {
    padding: 40px var(--container-px);
  }
}


/* ============================================================
   RESPONSIVE — MOBILE  (max 640px)
   ============================================================ */
@media (max-width: 640px) {

  /* Header login: text hidden */
  .header__login-text {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__visual {
    height: 280px;
  }

  .hero__character {
    width: 200px;
    height: auto;
    max-height: 280px;
  }

  .hero__blur--behind {
    width: 240px;
    height: 240px;
  }

  .hero__blur--over {
    display: none;
  }

  /* Mobile card: stays absolutely positioned on the right */
  .hero__card {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 160px;
    margin-top: 0;
    filter: drop-shadow(-5px 5px 12px rgba(0, 0, 0, 0.5));
    display: block;
    gap: 0;
  }

  /* Dark gradient card bg — lets weapon show through, makes text readable */
  .hero__card-bg {
    position: absolute;
    inset: 0;
    clip-path: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.82) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }



  /* Info text above the gradient and weapon (z-index: 5 > weapon z-index: 4) */
  .hero__card-info {
    position: absolute;
    top: 12px;
    left: 10px;
    /* max-width: 85px; */
    padding: 0;
    z-index: 5;
  }

  .hero__card-name {
    font-size: 16px;
  }

  .hero__card-price {
    font-size: 13px;
  }

  /* CTA button: full card width, pinned to bottom, above everything */
  .hero__card-cta {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 36px;
    /* font-size: 11px; */
    padding: 0 8px;
    margin: 0;
    clip-path: var(--clip-sm);
  }

  .hero__card-delivery {
    margin-bottom: 24px;
  }

  .hero__polygon {
    display: none;
  }

  /* Categories: single col */
  .categories__grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 300px;
  }

  /* Subscribe form: stack */
  .subscribe__form {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .subscribe__field {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  /* Blog: single col */
  .blog__grid {
    grid-template-columns: 1fr;
  }

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

  /* Footer */
  .footer__left {
    padding: 40px var(--container-px) 32px;
  }
}

/* ============================================================
   HEADER ICON BUTTONS (square, no border-radius)
   ============================================================ */
.header__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 12px;
}

.header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
  flex-shrink: 0;
}

.header__icon-btn:hover {
  color: var(--c-white);
  border-color: var(--c-green-light);
  background: rgba(157, 255, 0, 0.05);
}

.header__icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* Cart badge */
.header__cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 17px;
  height: 17px;
  border-radius: 0;
  background: var(--c-green-light);
  color: #111;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__cart-badge:empty { display: none; }

/* Search expand */
.header__search-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__search-input {
  width: 0;
  height: 40px;
  padding: 0;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-right: none;
  background: rgba(17, 17, 17, .9);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: width .3s ease, opacity .3s ease, padding .3s ease;
  border-radius: 0;
}

.header__search-wrap.open .header__search-input {
  width: 160px;
  padding: 0 14px;
  opacity: 1;
  border-color: var(--c-green-light);
}

.header__search-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  background-color: var(--c-bg);
}

.faq__inner {
  max-width: 860px;
  margin-inline: auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 16px;
}

.faq__title span {
  color: var(--c-green-light);
}

.faq__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: border-color .25s ease;
}

.faq__item:hover {
  border-color: rgba(157, 255, 0, 0.25);
}

.faq__item.faq--open {
  border-color: rgba(157, 255, 0, 0.4);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  gap: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: var(--c-white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s ease;
}

.faq__q:hover {
  color: var(--c-green-light);
}

.faq__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: transform .35s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.faq--open .faq__icon {
  transform: rotate(45deg);
  background: var(--c-green-light);
  border-color: var(--c-green-light);
  color: #111;
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq--open .faq__a {
  max-height: 260px;
}

.faq__a p {
  padding: 0 28px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   REVIEWS — MARQUEE TICKER
   ============================================================ */
.reviews {
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--c-bg);
}

.reviews__header {
  margin-bottom: 48px;
}

.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
}

.reviews__track-wrap {
  position: relative;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewsMarquee 40s linear infinite;
}

.reviews__track:hover {
  animation-play-state: paused;
}

@keyframes reviewsMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.reviews__card {
  width: 268px;
  flex-shrink: 0;
  background: #1a1a1a;
  padding: 24px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
  transition: border-color .25s ease;
  /* border: 1px solid rgba(255, 255, 255, .05); */
  border-bottom: 4px solid var(--c-green);
}

.reviews__card:hover {
  border-color: rgba(157, 255, 0, .2);
}

.reviews__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.reviews__star {
  font-size: 20px;
  line-height: 1;
}

.reviews__star--full {
  color: #F4A623;
}

.reviews__star--half {
  color: #F4A623;
  opacity: .55;
}

.reviews__star--empty {
  color: rgba(255, 255, 255, .18);
}

.reviews__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
  margin-bottom: 14px;
}

.reviews__date {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  display: block;
}

.reviews__bar {
  height: 3px;
  width: 100%;
  background: var(--c-green-light);
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-form {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.70) -38.99%, #111111 100%),
    url('../img/form-bg-image.png') 50% / cover no-repeat;
  background-color: #111111;
}

.contact-form__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-form__shine {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.contact-form__shine--left {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-green-light);
}

.contact-form__shine--right {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-green-light);
}

.contact-form__gradient--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--c-bg), transparent);
}

.contact-form__gradient--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--c-bg), transparent);
}

.contact-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}


.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
}

.contact-form__sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form__field {
  width: 100%;
}

.contact-form__input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  max-height: 130px;
}

.contact-form__input:focus {
  border-color: var(--c-green-light);
  background: rgba(157, 255, 0, 0.03);
}

.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__textarea {
  min-height: 130px;
}

.contact-form__btn {
  align-self: flex-start;
  margin-top: 6px;
}

.contact-form__msg {
  font-family: var(--font-body);
  font-size: 13px;
  min-height: 20px;
  margin-top: -6px;
}

@media (max-width: 768px) {
  .contact-form__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .header__icons {
    gap: 4px;
  }

  .header__icon-btn {
    width: 36px;
    height: 36px;
  }
}


/* ============================================================
   HEADER — RIGHT GROUP (icons + steam button)
   ============================================================ */
.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
  /* pushes right since nav is absolute-centered */
}

/* Remove old margin from icons div */
.header__icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 0;
}

/* Square icon buttons — NO border-radius */
.header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  flex-shrink: 0;

}

.header__icon-btn:hover {
  color: #fff;
  border-color: var(--c-green-light);
  background: rgba(157, 255, 0, 0.06);
}

.header__icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

/* Cart badge */
.header__cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 17px;
  height: 17px;
  border-radius: 0;
  background: var(--c-green-light);
  color: #111;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__cart-badge:empty { display: none; }

/* Search expand */
.header__search-wrap {
  display: flex;
  align-items: center;
}

.header__search-input {
  width: 0;
  height: 40px;
  padding: 0;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-right: none;
  background: rgba(17, 17, 17, .95);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  transition: width .3s, opacity .3s, padding .3s;
}

.header__search-wrap.open .header__search-input {
  width: 160px;
  padding: 0 14px;
  opacity: 1;
  border-color: var(--c-green-light);
}

.header__search-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

/* ============================================================
   HERO — BG VIDEO LAYER STACK
   ============================================================ */

/* Video is the deepest layer */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 1280px;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);


}

/* Bgimage.png sits on top of video with transparency */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.55;
  /* semi-transparent so video shows through */
  mix-blend-mode: normal;
}

/* Bottom gradient locked to z-index 2, on top of both */
.hero__bg-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.00) 0%, #111111 100%);
  z-index: 2;
}

/* Hero card weapon image */
.hero__card-weapon {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-60%);
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(200, 80, 80, 0.5));
  pointer-events: none;
  z-index: 4;
  animation: floatKnife 4s ease-in-out infinite;
}

@keyframes floatKnife {

  0%,
  100% {
    transform: translateY(-60%) rotate(-8deg);
  }

  50% {
    transform: translateY(-65%) rotate(-5deg);
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRODUCTS — MOST POPULAR NOW
   ============================================================ */
.products {
  padding: 80px 0 100px;
  background: var(--c-bg);
}

.products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.products__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--c-white);
}

/* Tabs */
.products__tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.products__tab {
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .2s;
}

.products__tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-green-light);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.products__tab--active {
  color: #fff;
}

.products__tab--active::after {
  transform: scaleX(1);
}

.products__tab:hover {
  color: #fff;
}

/* Grid */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─── Product Card ─── */
.product-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  /* Gradient border via padding trick */
  padding: 1px;
}

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

/* ── Rarity variants ── */

/* Rare — #4B69FF blue */
.card-bg--rare {
  background: linear-gradient(135deg, #4B69FF 0%, rgba(75, 105, 255, 0) 60%);
}

.card-bg--rare:hover {
  box-shadow: 0 8px 40px rgba(75, 105, 255, .30);
}

/* Ancient — #EB4B4B red */
.card-bg--ancient {
  background: linear-gradient(135deg, #EB4B4B 0%, rgba(235, 75, 75, 0) 60%);
}

.card-bg--ancient:hover {
  box-shadow: 0 8px 40px rgba(235, 75, 75, .30);
}

/* Legendary — #8847FF purple */
.card-bg--legendary {
  background: linear-gradient(135deg, #8847FF 0%, rgba(136, 71, 255, 0) 60%);
}

.card-bg--legendary:hover {
  box-shadow: 0 8px 40px rgba(136, 71, 255, .30);
}

/* Common — #B0C3D9 gray-blue */
.card-bg--common {
  background: linear-gradient(135deg, #B0C3D9 0%, rgba(176, 195, 217, 0) 60%);
}

.card-bg--common:hover {
  box-shadow: 0 8px 40px rgba(176, 195, 217, .20);
}

/* Uncommon — #5E98D9 light blue */
.card-bg--uncommon {
  background: linear-gradient(135deg, #5E98D9 0%, rgba(94, 152, 217, 0) 60%);
}

.card-bg--uncommon:hover {
  box-shadow: 0 8px 40px rgba(94, 152, 217, .30);
}

/* Exceedingly — #D32CE6 pink/magenta */
.card-bg--exceedingly {
  background: linear-gradient(135deg, #D32CE6 0%, rgba(211, 44, 230, 0) 60%);
}

.card-bg--exceedingly:hover {
  box-shadow: 0 8px 40px rgba(211, 44, 230, .30);
}

/* Immortal — #E4AE39 gold */
.card-bg--immortal {
  background: linear-gradient(135deg, #E4AE39 0%, rgba(228, 174, 57, 0) 60%);
}

.card-bg--immortal:hover {
  box-shadow: 0 8px 40px rgba(228, 174, 57, .30);
}

/* Inner card surface */
.product-card>* {
  position: relative;
  z-index: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: 0;
  background: #0e1520;
}

/* Each rarity: weapon-card image + dark tint overlay */
.card-bg--rare::before {
  background:
    linear-gradient(180deg, rgba(13, 18, 32, 0.12) 0%, rgba(13, 18, 32, 0.28) 100%),
    url('../img/weapon-card--rare.png') center / cover no-repeat,
    #0d1220;
}

.card-bg--ancient::before {
  background:
    linear-gradient(180deg, rgba(26, 8, 8, 0.12) 0%, rgba(26, 8, 8, 0.28) 100%),
    url('../img/weapon-card--anciant.png') center / cover no-repeat,
    #1a0808;
}

.card-bg--legendary::before {
  background:
    linear-gradient(180deg, rgba(16, 13, 26, 0.12) 0%, rgba(16, 13, 26, 0.28) 100%),
    url('../img/weapon-card--legendary.png') center / cover no-repeat,
    #100d1a;
}

.card-bg--common::before {
  background:
    linear-gradient(180deg, rgba(14, 18, 22, 0.12) 0%, rgba(14, 18, 22, 0.28) 100%),
    url('../img/weapon-card--common.png') center / cover no-repeat,
    #0e1216;
}

.card-bg--uncommon::before {
  background:
    linear-gradient(180deg, rgba(10, 17, 22, 0.12) 0%, rgba(10, 17, 22, 0.28) 100%),
    url('../img/weapon-card--uncommon.png') center / cover no-repeat,
    #0a1116;
}

.card-bg--exceedingly::before {
  background:
    linear-gradient(180deg, rgba(22, 8, 24, 0.12) 0%, rgba(22, 8, 24, 0.28) 100%),
    url('../img/weapon-card--exceedingly.png') center / cover no-repeat,
    #160818;
}

.card-bg--immortal::before {
  background:
    linear-gradient(180deg, rgba(26, 18, 4, 0.12) 0%, rgba(26, 18, 4, 0.28) 100%),
    url('../img/weapon-card--immortal.png') center / cover no-repeat,
    #1a1204;
}

/* Sale badge */
.product-card__sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 4px 10px;
  background: #c0392b;
  border: 1px solid #e74c3c;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  color: #fff;
  text-transform: uppercase;
}

/* Wishlist button */
/* Basket / Add-to-cart button — bottom-right of card */
.product-card__basket {
  position: absolute;
  bottom: 20px;
  right: 16px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.product-card__basket img {
  width: 20px;
  height: 20px;
  display: block;
  /* invert white so it reads on dark bg */
}

.product-card__basket:hover {
  background: rgba(153, 238, 45, .15);
  border-color: var(--c-green-light);
}

/* Image area */
.product-card__img-wrap {
  position: relative;
  padding: 32px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
}

/* Radial glow behind weapon */
.product-card__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(32px);
  opacity: .45;
  pointer-events: none;
}

.card-bg--rare .product-card__img-wrap::before {
  background: rgba(75, 105, 255, .7);
}

.card-bg--ancient .product-card__img-wrap::before {
  background: rgba(235, 75, 75, .7);
}

.card-bg--legendary .product-card__img-wrap::before {
  background: rgba(136, 71, 255, .7);
}

.card-bg--common .product-card__img-wrap::before {
  background: rgba(176, 195, 217, .5);
}

.card-bg--uncommon .product-card__img-wrap::before {
  background: rgba(94, 152, 217, .7);
}

.card-bg--exceedingly .product-card__img-wrap::before {
  background: rgba(211, 44, 230, .7);
}

.card-bg--immortal .product-card__img-wrap::before {
  background: rgba(228, 174, 57, .7);
}

/* Subtle grid lines on image area */
.product-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.product-card__wish svg {
  width: 15px;
  height: 15px;
}

.product-card__wish:hover,
.product-card__wish.active {
  background: rgba(255, 255, 255, .95);
  color: #c0392b;
}

.product-card__img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform .35s ease;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .5));
}

.product-card:hover .product-card__img {
  transform: scale(1.06) rotate(-2deg);
}

/* Body — transparent, no solid bg, room for basket btn on right */
.product-card__body {
  padding: 12px 64px 20px 16px;
  margin-top: auto;
  background: transparent;
}

.product-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-card__prices {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-card__old {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  text-decoration: line-through;
}

.product-card__new {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

/* Load More button */
.products__load {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.btn--load {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
  font-family: var(--font-body) !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: border-color .2s, background .2s, color .2s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn--load:hover {
  border-color: var(--c-green-light);
  color: var(--c-green-light);
  background: rgba(157, 255, 0, .05);
}

.btn--load svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .product-card__img-wrap {
    min-height: 150px;
  }

  .hero__bg-video {
    position: absolute;
    inset: 0;
    width: 1280px;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    top: 50%;
    left: 0;
    transform: none;
    /* bottom: 0; */
    top: 35%;
  }

  .header__icon-btn {
    margin-right: 24px;
  }

}

/* Responsive header__right on mobile */
@media (max-width: 900px) {
  .header__right {
    gap: 6px;
  }

  .header__login-text {
    display: none;
  }

  .header__search-wrap.open .header__search-input {
    width: 120px;
  }
}
.contact-page {
    padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
}
.page-hero {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, #111111 100%), url(../img/bg-map.jpg) 50% / cover no-repeat;
    background-color: #111111;
    text-align: center;
    overflow: hidden;
}
.price-input-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 4px 8px;
}
.price-currency {
    color: #888;
    font-size: 14px;
    margin-right: 4px;
}
.price-range__input-text {
    width: 80px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    text-align: left;
    outline: none;
}
.price-range__input-text:focus {
    border-color: #FF5A00;
}
.wd-toolbar{
    display: none !important;
}
.product-card__basket img {
    content: url('../img/basket.svg') !important;
}