/* =====================================================
   FORTNITE CREW STORE — Redesigned
   Inspired by fortnite.com/item-shop, fortnite.gg, fnbr.co
   ===================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('/assets/fonts/inter-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Content Protection ── */
img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
a img, button img, .live-card img, .fn-card img { pointer-events: auto; }
.fn-card__name, .fn-card__price, .fn-card__old-price,
.hero__title2, .shop-title, .section-title {
  user-select: none;
  -webkit-user-select: none;
}

/* ---- Reset & Tokens ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* colours */
  --bg:           #0e1220;
  --bg2:          #0a0d18;
  --bg-card:      #141928;
  --bg-card-h:    #1a2236;
  --blue:         #29dbff;
  --blue-dark:    #0088cc;
  --orange:       #ef8c00;
  --orange-bright:#fcd652;
  --purple:       #8a2be2;
  --purple-bright:#b44dff;
  --green:        #2db512;
  --text:         #e8ecf4;
  --muted:        #7d8aa0;
  --border:       rgba(255,255,255,0.07);

  /* rarity colours */
  --legendary: #ef8c00;
  --epic:      #8a2be2;
  --rare:      #2b7fc6;
  --uncommon:  #2db512;
  --common:    #6b7280;

  /* misc */
  --radius:    10px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --font:      'Inter', system-ui, sans-serif;
  --font-fn:   'Inter', system-ui, sans-serif;
  --container: 1240px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  font-synthesis-weight: none;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* =====================================================
   ANIMATED BG STRIPES (Fortnite.com diagonal pattern)
   ===================================================== */
.bg-stripes {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--bg);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(41, 219, 255, 0.022) 40px,
    rgba(41, 219, 255, 0.022) 42px
  );
  animation: stripes-scroll 60s linear infinite;
}

@keyframes stripes-scroll {
  from { background-position: 0 0; }
  to   { background-position: 400px 600px; }
}

/* =====================================================
   CONTAINER
   ===================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 780px; }

/* =====================================================
   BUTTONS (Fortnite style)
   ===================================================== */
.fn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-fn);
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 13px 30px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* primary: bright yellow flat (Fortnite style) */
.fn-btn--primary {
  background: #fce83a;
  color: #000;
  font-weight: 700;
}
.fn-btn--primary:hover {
  background: #ffe840;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(252,232,58,0.45);
}

/* secondary: blue ghost */
.fn-btn--secondary {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.fn-btn--secondary:hover {
  background: rgba(41, 219, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 219, 255, 0.25);
}

.fn-btn--sm  { padding: 9px 20px; font-size: 0.88rem; width: 100%; }
.fn-btn--lg  { padding: 15px 40px; font-size: 1.05rem; }

/* outline: subtle border */
.fn-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.18);
  color: #c8d4e0;
}
.fn-btn--outline:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

/* telegram */
.fn-btn--tg {
  background: #229ED9;
  color: #fff;
  font-weight: 700;
}
.fn-btn--tg:hover {
  background: #1e8fc4;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34,158,217,0.4);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 13, 24, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.brand-mark,
.logo__vbucks {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(41,219,255,0.35));
}
.brand-wordmark {
  width: 155px;
  height: 36px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(41,219,255,0.2));
}
.brand-wordmark--footer {
  width: 145px;
  height: 34px;
}
.footer .brand-mark,
.footer .logo__vbucks {
  width: 26px;
  height: 26px;
}
.logo__text {
  font-family: var(--font-fn);
  font-size: 1.55rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.logo__accent { color: var(--blue); }

/* Nav */
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav__link {
  font-family: var(--font-fn);
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* Header right */
.header__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(180deg, var(--orange-bright) 0%, var(--orange) 100%);
  color: #1a0a00;
  font-family: var(--font-fn);
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 4px;
  transition: filter 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.header__btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239, 140, 0, 0.4);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 38px; height: 38px;
  min-width: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 260;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 63px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 80%, rgba(41, 219, 255, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(14,18,32,0) 50%, var(--bg) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ---- Hero v2 redesign ---- */

/* Live badge */
.hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__live-dot {
  width: 7px; height: 7px;
  background: #22ee66;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,238,102,0.7);
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__live-time {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
}

/* Main title v2 */
.hero__title2 {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.hero__title2-top {
  font-family: var(--font-fn);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.hero__title2-accent {
  font-family: var(--font-fn);
  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  color: #fce83a;
  text-shadow: 0 0 60px rgba(252,232,58,0.3), 0 0 120px rgba(252,232,58,0.12);
  line-height: 1;
  margin: 4px 0;
}
.hero__title2-bottom {
  font-family: var(--font-fn);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  color: #fff;
  font-weight: 700;
}

/* Feature pills */
.hero__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 7px 14px;
}
.hero__pill svg { color: #22ee66; flex-shrink: 0; }

/* CTA buttons v2 */
.hero__actions2 {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fce83a;
  color: #000;
  font-family: var(--font-fn);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
}
.hero__cta-main:hover {
  background: #ffe840;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(252,232,58,0.4);
}
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-fn);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
.hero__cta-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* Stats v2 */
.hero__stats2 {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hero__stat2 strong {
  display: block;
  font-family: var(--font-fn);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5px;
}
.hero__stat2 span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  display: block;
}
.hero__stat2-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Tag (old — keep for compatibility) */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 219, 255, 0.08);
  border: 1px solid rgba(41, 219, 255, 0.25);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero__tag-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Title */
.hero__title {
  font-family: var(--font-fn);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 22px;
  letter-spacing: 1px;
}
.hero__title-blue {
  color: var(--blue);
  text-shadow: 0 0 40px rgba(41, 219, 255, 0.5);
}

.hero__desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-fn);
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}
.hero__stat span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.hero__divider { width: 1px; height: 36px; background: var(--border); }

/* Showcase */
.hero__showcase { position: relative; }
.hero__showcase-label {
  font-family: var(--font-fn);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* =====================================================
   FORTNITE ITEM CARDS
   ===================================================== */
.fn-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Clip the top-left corner like Fortnite cards */
.fn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 10;
  transition: background 0.2s;
}

.fn-card:hover { transform: translateY(-6px) scale(1.02); }

.fn-card__inner {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s;
}

/* Rarity glow on hover */
.fn-card--legendary:hover { box-shadow: 0 16px 40px rgba(239,140,0,0.35); }
.fn-card--legendary:hover .fn-card__inner { border-color: rgba(239,140,0,0.4); }

.fn-card--epic:hover { box-shadow: 0 16px 40px rgba(138,43,226,0.35); }
.fn-card--epic:hover .fn-card__inner { border-color: rgba(138,43,226,0.4); }

.fn-card--rare:hover { box-shadow: 0 16px 40px rgba(43,127,198,0.35); }
.fn-card--rare:hover .fn-card__inner { border-color: rgba(43,127,198,0.4); }

.fn-card--uncommon:hover { box-shadow: 0 16px 40px rgba(45,181,18,0.3); }
.fn-card--uncommon:hover .fn-card__inner { border-color: rgba(45,181,18,0.35); }

/* Badge */
.fn-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 5;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-fn);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.fn-card__badge--crew {
  background: linear-gradient(135deg, var(--purple), #5b00c2);
}

/* Card image area */
.fn-card__img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  padding: 28px 20px;
  position: relative;
  min-height: 160px;
}

/* gradient bg matching rarity */
.fn-card--legendary .fn-card__img { background: linear-gradient(160deg, #2a1600 0%, #0e1220 100%); }
.fn-card--epic .fn-card__img      { background: linear-gradient(160deg, #16002a 0%, #0e1220 100%); }
.fn-card--rare .fn-card__img      { background: linear-gradient(160deg, #001a2a 0%, #0e1220 100%); }
.fn-card--uncommon .fn-card__img  { background: linear-gradient(160deg, #001a00 0%, #0e1220 100%); }

.fn-card__img span {
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
  animation: fn-float 3.5s ease-in-out infinite;
}
@keyframes fn-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Rarity bar */
.fn-card__rarity-bar {
  height: 3px;
  flex-shrink: 0;
}
.fn-card--legendary .fn-card__rarity-bar { background: linear-gradient(90deg, var(--legendary), transparent); }
.fn-card--epic .fn-card__rarity-bar      { background: linear-gradient(90deg, var(--epic), transparent); }
.fn-card--rare .fn-card__rarity-bar      { background: linear-gradient(90deg, var(--rare), transparent); }
.fn-card--uncommon .fn-card__rarity-bar  { background: linear-gradient(90deg, var(--uncommon), transparent); }

/* Card footer */
.fn-card__footer {
  padding: 14px 16px 16px;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fn-card__name {
  font-family: var(--font-fn);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.2;
}

.fn-card__sub {
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.fn-card__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 10px;
}

.fn-card__price {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-fn);
  font-size: 1.15rem;
  color: var(--blue);
}

.fn-card__old-price {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
}

.vbucks-icon {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(41,219,255,0.5));
}

/* =====================================================
   V-BUCKS CARD BACKGROUNDS (official Fortnite colors)
   ===================================================== */
.vbucks-card-img {
  position: relative;
}
.vbucks-card-img--green  { background: linear-gradient(160deg, #2d6e1a 0%, #0e2a0a 100%) !important; }
.vbucks-card-img--blue   { background: linear-gradient(160deg, #0d3a6e 0%, #061525 100%) !important; }
.vbucks-card-img--purple { background: linear-gradient(160deg, #3a1060 0%, #160525 100%) !important; }
.vbucks-card-img--orange { background: linear-gradient(160deg, #7a3300 0%, #2a1000 100%) !important; }

/* Yellow "НА X% БОЛЬШЕ" bonus badge */
.vbucks-bonus-badge {
  background: #fce83a !important;
  color: #000 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.5px;
  border-radius: 100px !important;
  padding: 3px 10px !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
}

/* =====================================================
   CATALOG CARD IMAGES
   ===================================================== */
.catalog-img {
  height: 120px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  animation: fn-float 3.5s ease-in-out infinite;
  display: block;
}
.catalog-img--lg  { height: 160px; }
.catalog-img--legendary {
  filter: drop-shadow(0 0 28px rgba(239,140,0,0.55));
}
.catalog-img--epic {
  filter: drop-shadow(0 0 28px rgba(180,77,255,0.55));
}
.catalog-img--rare {
  filter: drop-shadow(0 0 28px rgba(41,219,255,0.45));
}
.catalog-img--uncommon {
  filter: drop-shadow(0 0 22px rgba(45,181,18,0.5));
}
.catalog-img--crew {
  filter: drop-shadow(0 0 28px rgba(41,180,255,0.6));
}

/* Small variant (hero showcase) */
.fn-card--sm .fn-card__img { min-height: 100px; padding: 18px 14px; font-size: 3rem; }
.fn-card--sm .catalog-img { height: 80px; }

/* Hero clickable cards */
.hero-card-link { display: block; text-decoration: none; }
.hero-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252,232,58,0.12);
  color: #fce83a;
  font-family: var(--font-fn);
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.hero-card-link:hover .hero-card-hover { opacity: 1; }
.hero-card-link:hover { transform: translateY(-6px) scale(1.03); }
.fn-card--sm .fn-card__name { font-size: 0.88rem; }
.fn-card--sm .fn-card__price { font-size: 0.88rem; }
.fn-card--sm .fn-card__footer { padding: 10px 12px 12px; gap: 2px; }
.fn-card--sm .fn-card__price-row { margin: 3px 0 0; }
.fn-card--sm::before { width: 12px; height: 12px; }

/* =====================================================
   SHOP SECTION
   ===================================================== */
.section { padding: 90px 0; }
.section--dark { background: var(--bg2); }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.shop-title {
  font-family: var(--font-fn);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 2px;
  position: relative;
}
.shop-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 48px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-chip {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-fn);
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
}
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #000;
}

.shop-section-label {
  font-family: var(--font-fn);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* Featured grid: 2 big cards */
.shop-grid--featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.shop-grid--featured .fn-card__img { min-height: 240px; font-size: 7rem; }
.shop-grid--featured .fn-card__name { font-size: 1.35rem; }
.shop-grid--featured .fn-card__price { font-size: 1.35rem; }
.shop-grid--featured .fn-card__footer { padding: 20px; gap: 6px; }
.shop-grid--featured .fn-card__price-row { margin: 8px 0 12px; }

/* V-Bucks 4-column grid */
.shop-grid--vbucks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .shop-grid--vbucks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shop-grid--vbucks { grid-template-columns: 1fr; } }

/* Regular grid */
.shop-grid--regular {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.fn-card.hidden { display: none; }

.fn-card.product-highlight .fn-card__inner {
  border-color: rgba(252,232,58,0.7);
  box-shadow: 0 0 0 2px rgba(252,232,58,0.18), 0 20px 54px rgba(252,232,58,0.18);
}

/* V-Bucks value comparison */
.shop-value {
  margin: 24px 0 40px;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.shop-value__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.shop-value__title {
  font-family: var(--font-fn);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
}

.shop-value__note {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.shop-value__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.shop-value__item {
  position: relative;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
  background: rgba(10,15,30,0.74);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 16px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.shop-value__item:hover {
  transform: translateY(-3px);
  border-color: rgba(41,219,255,0.34);
  background: rgba(41,219,255,0.07);
}
.shop-value__item strong {
  font-family: var(--font-fn);
  font-size: 1.65rem;
  color: var(--blue);
  line-height: 1;
}
.shop-value__item span:last-child {
  color: var(--muted);
  font-size: 0.76rem;
}
.shop-value__pack {
  font-family: var(--font-fn);
  font-size: 0.88rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.shop-value__item--best {
  border-color: rgba(252,232,58,0.36);
  background: linear-gradient(160deg, rgba(252,232,58,0.11), rgba(10,15,30,0.82));
}
.shop-value__item--best strong { color: #fce83a; }
.shop-value__badge {
  position: absolute;
  top: 10px;
  left: 12px;
  background: #fce83a;
  color: #000 !important;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.66rem !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* =====================================================
   HOW IT WORKS (Steps)
   ===================================================== */
.section-title {
  font-family: var(--font-fn);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 52px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 10px auto 0;
}

.steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(41,219,255,0.3); }
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.step-card__num {
  font-family: var(--font-fn);
  font-size: 4rem;
  color: rgba(41,219,255,0.08);
  line-height: 1;
  position: absolute;
  top: 12px; right: 16px;
  letter-spacing: -2px;
}

.step-card__icon { font-size: 2.8rem; margin-bottom: 16px; }

.step-card__title {
  font-family: var(--font-fn);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step-card__desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.steps__arrow { flex-shrink: 0; opacity: 0.5; }

/* =====================================================
   HOW IT WORKS — Steps2 redesign
   ===================================================== */
.steps2 {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.step2 {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.step2:hover {
  transform: translateY(-6px);
  border-color: rgba(41,219,255,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.step2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.step2__num {
  position: absolute;
  top: 10px; right: 14px;
  font-family: var(--font-fn);
  font-size: 5.5rem;
  color: rgba(41,219,255,0.055);
  line-height: 1;
  letter-spacing: -3px;
  pointer-events: none;
}

.step2__icon-wrap { margin-bottom: 22px; }

.step2__icon {
  width: 60px; height: 60px;
  background: rgba(41,219,255,0.08);
  border: 1px solid rgba(41,219,255,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.step2__title {
  font-family: var(--font-fn);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.step2__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.step2__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.step2__tags span {
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 9px;
  background: rgba(255,255,255,0.03);
  white-space: nowrap;
}

.step2__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--blue);
  background: rgba(41,219,255,0.07);
  border: 1px solid rgba(41,219,255,0.18);
  border-radius: 100px;
  padding: 4px 12px;
  margin-top: 14px;
}

.step2__connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 4px;
  margin-top: -16px;
  opacity: 0.5;
}

@media (max-width: 760px) {
  .steps2 { flex-direction: column; }
  .step2__connector { transform: rotate(90deg); margin: 0 auto; }
}

/* =====================================================
   TRUST CARDS
   ===================================================== */
.trust-section {
  background: linear-gradient(180deg, rgba(41,219,255,0.035), transparent 62%);
  border-top: 1px solid rgba(41,219,255,0.08);
}

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

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-height: 210px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41,219,255,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.trust-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41,219,255,0.08);
  border: 1px solid rgba(41,219,255,0.16);
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 1.35rem;
}
.trust-card h3 {
  font-family: var(--font-fn);
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.trust-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* =====================================================
   HOME REVIEWS
   ===================================================== */
.home-reviews__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.home-reviews__title {
  text-align: left;
  margin-bottom: 0;
}
.home-reviews__title::after { margin-left: 0; }
.home-reviews__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.review-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}
.review-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(41,219,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 800;
  color: #fff;
  font-size: 0.88rem;
}
.review-card__stars {
  color: #fbbf24;
  font-size: 0.86rem;
  letter-spacing: 1px;
}
.review-card__text {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  flex: 1;
}
.review-card__date {
  color: #475569;
  font-size: 0.72rem;
  margin-top: 12px;
}

/* Floating support */
.support-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 260;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #29dbff;
  color: #04101a;
  border-radius: 999px;
  font-family: var(--font-fn);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 14px 36px rgba(41,219,255,0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.support-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(41,219,255,0.38);
}
.support-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(41,219,255,0.3); }

.faq-item__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--font-fn);
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); }

.faq-item__a {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* =====================================================
   CTA / CONTACTS
   ===================================================== */
.cta-block {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-block__glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(41,219,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block__title {
  font-family: var(--font-fn);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}

.cta-block__desc {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 1rem;
  position: relative;
}

.cta-block__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-fn);
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text);
  transition: all 0.2s ease;
}
.contact-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(41,219,255,0.07);
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #06080f;
  border-top: 1px solid var(--border);
  padding: 28px 0 24px;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto minmax(280px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}

.footer__note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  justify-self: end;
}

.footer__links {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.footer__links a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.footer__links a:hover { color: var(--text); }

/* =====================================================
   SEO LANDING PAGES
   ===================================================== */
.seo-page {
  padding-top: 64px;
}

.seo-hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.seo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(41,219,255,0.14), transparent 62%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(252,232,58,0.10), transparent 58%);
  pointer-events: none;
}

.seo-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 86px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(41,219,255,0.08);
  border: 1px solid rgba(41,219,255,0.25);
  color: var(--blue);
  border-radius: 100px;
  padding: 6px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.seo-hero h1 {
  font-family: var(--font-fn);
  font-size: clamp(2.45rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}

.seo-hero__lead {
  color: #aeb8c8;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 28px;
}

.seo-actions,
.seo-card-actions,
.seo-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.seo-hero__panel {
  background: rgba(20,25,40,0.78);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.seo-hero__panel-title {
  font-family: var(--font-fn);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.seo-mini-list {
  display: grid;
  gap: 10px;
}

.seo-mini-list a,
.seo-mini-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 12px 14px;
  color: #dbe5f4;
}

.seo-mini-list strong {
  color: #fce83a;
  white-space: nowrap;
}

.seo-section {
  padding: 68px 0;
}

.seo-section--dark {
  background: rgba(0,0,0,0.14);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.seo-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.seo-section__head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.seo-section h2 {
  font-family: var(--font-fn);
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 1.3px;
  margin-bottom: 12px;
}

.seo-section p {
  color: var(--muted);
  line-height: 1.8;
}

.seo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.seo-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.seo-info-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.seo-info-card p {
  font-size: 0.92rem;
}

.seo-faq {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.seo-text-links {
  margin-top: 26px;
  color: var(--muted);
  line-height: 1.9;
}

.seo-text-links a,
.seo-section p a {
  color: var(--blue);
}

.seo-footer-links {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--muted);
}

.reviews-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
}

.reviews-trust__item {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.reviews-trust__item strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}

.seo-hero--sell .seo-hero__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  padding-top: 72px;
}

.seo-hero--sell h1 {
  max-width: 760px;
}

.seo-trustline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
}

.seo-trustline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  color: #dbe5f4;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.seo-hero-product {
  position: relative;
  background:
    linear-gradient(155deg, rgba(252,232,58,0.14), rgba(41,219,255,0.07) 42%, rgba(20,25,40,0.86));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 24px 90px rgba(0,0,0,0.45);
  overflow: hidden;
}

.seo-hero-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 26px, rgba(255,255,255,0.035) 26px, rgba(255,255,255,0.035) 27px);
  pointer-events: none;
}

.seo-hero-product > * {
  position: relative;
  z-index: 1;
}

.seo-hero-product__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.seo-hero-product__label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.seo-hero-product__badge {
  background: #fce83a;
  color: #000;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-hero-product__main {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.seo-hero-product__img {
  min-height: 150px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 38%, rgba(252,232,58,0.45), rgba(41,219,255,0.14) 54%, rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.11);
}

.seo-hero-product__img img {
  width: 102px;
  height: 102px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
}

.seo-hero-product__name {
  font-family: var(--font-fn);
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: 1px;
}

.seo-hero-product__price {
  margin: 12px 0 16px;
  color: #fce83a;
  font-family: var(--font-fn);
  font-size: 2rem;
  font-weight: 900;
}

.seo-hero-product__note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.seo-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.seo-choice-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.seo-choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41,219,255,0.34);
  box-shadow: 0 18px 42px rgba(0,0,0,0.26);
}

.seo-choice-card--hot {
  border-color: rgba(252,232,58,0.38);
  background: linear-gradient(160deg, rgba(252,232,58,0.10), var(--bg-card));
}

.seo-choice-card__media {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.04);
}

.seo-choice-card__media img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.seo-choice-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.seo-choice-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.seo-choice-card__price {
  color: #fce83a;
  font-family: var(--font-fn);
  font-size: 1.35rem;
  margin: 14px 0;
}

.seo-steps-sell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: seo-step;
}

.seo-step-sell {
  position: relative;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}

.seo-step-sell::before {
  counter-increment: seo-step;
  content: '0' counter(seo-step);
  display: inline-flex;
  color: var(--blue);
  font-family: var(--font-fn);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.seo-step-sell h3 {
  color: #fff;
  margin-bottom: 8px;
}

.seo-step-sell p {
  font-size: 0.9rem;
}

.seo-final-cta {
  background: linear-gradient(135deg, rgba(41,219,255,0.12), rgba(252,232,58,0.09));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.seo-final-cta h2 {
  margin-bottom: 8px;
}

.seo-final-cta p {
  max-width: 680px;
}

.topup-final-cta {
  align-items: center;
}

.topup-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(420px, 100%);
  flex: 0 0 min(420px, 100%);
}

.topup-final-actions .fn-btn {
  width: 100%;
  min-height: 54px;
  justify-content: center;
}

.topup-final-actions__main {
  grid-column: 1 / -1;
}

.faq-category__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-fn);
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.faq-full-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 980px) {
  .seo-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .seo-product-grid,
  .seo-info-grid,
  .seo-choice-grid,
  .seo-steps-sell {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-hero-product__main {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 620px) {
  .seo-page {
    padding-top: 58px;
  }

  .seo-hero__inner {
    padding: 52px 18px 48px;
  }

  .seo-section {
    padding: 48px 0;
  }

  .seo-product-grid,
  .seo-info-grid,
  .seo-choice-grid,
  .seo-steps-sell,
  .reviews-trust {
    grid-template-columns: 1fr;
  }

  .seo-hero-product__main {
    grid-template-columns: 1fr;
  }

  .seo-final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .topup-final-actions {
    width: 100%;
    flex-basis: auto;
  }

  .seo-actions .fn-btn,
  .seo-card-actions .fn-btn,
  .seo-final-cta .fn-btn {
    width: 100%;
  }
}

/* =====================================================
   REVEAL ANIMATION (scroll)
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SEO pages should feel like native FRNT SHOP inner pages, not a separate site. */
.seo-page {
  padding-top: 63px;
}

.seo-hero {
  border-bottom: 1px solid var(--border);
}

.seo-hero::before {
  background:
    radial-gradient(ellipse 60% 62% at 100% 20%, rgba(41,219,255,0.08), transparent 62%),
    linear-gradient(180deg, rgba(14,18,32,0) 0%, rgba(10,13,24,0.28) 100%);
}

.seo-hero__inner,
.seo-hero--sell .seo-hero__inner {
  max-width: var(--container);
  padding: 64px 24px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
}

.seo-kicker {
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
}

.seo-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.seo-hero__lead {
  max-width: 620px;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.seo-trustline {
  margin: 18px 0 24px;
  gap: 8px;
}

.seo-trustline span {
  border-radius: 6px;
  padding: 7px 11px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.04);
}

.seo-actions {
  gap: 10px;
}

.seo-hero-product {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: none;
}

.seo-hero-product::before {
  display: none;
}

.seo-hero-product__top {
  margin-bottom: 12px;
}

.seo-hero-product__label {
  font-size: 0.68rem;
}

.seo-hero-product__badge {
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.66rem;
}

.seo-hero-product__main {
  grid-template-columns: 96px 1fr;
  gap: 14px;
}

.seo-hero-product__img {
  min-height: 96px;
  border-radius: 8px;
}

.seo-hero-product__img img {
  width: 68px;
  height: 68px;
}

.seo-hero-product__name {
  font-size: 1.35rem;
}

.seo-hero-product__price {
  margin: 7px 0 10px;
  font-size: 1.35rem;
}

.seo-hero-product__note {
  font-size: 0.8rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.seo-mini-list {
  gap: 8px;
}

.seo-mini-list a,
.seo-mini-list div {
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.86rem;
}

.seo-section {
  padding: 64px 0;
}

.seo-section--dark {
  background: var(--bg2);
  border-top: 0;
  border-bottom: 0;
}

.seo-section__head {
  max-width: 720px;
  margin-bottom: 24px;
}

.seo-section h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.seo-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 10px;
}

.seo-section__head.center h2::after {
  margin-left: auto;
  margin-right: auto;
}

.seo-section p {
  font-size: 0.92rem;
  line-height: 1.75;
}

.seo-choice-grid {
  gap: 16px;
}

.seo-choice-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.seo-choice-card:hover {
  transform: none;
  box-shadow: none;
}

.seo-choice-card__media {
  height: auto;
  min-height: 150px;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
  background: linear-gradient(160deg, #001a2a 0%, #0e1220 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0;
}

.seo-choice-card--hot .seo-choice-card__media {
  background: linear-gradient(160deg, #3a1060 0%, #160525 100%);
}

.seo-choice-card__media img {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 24px rgba(41,219,255,0.45));
}

.seo-choice-card h3,
.seo-choice-card p,
.seo-choice-card__price,
.seo-choice-card .fn-btn {
  margin-left: 0;
}

.seo-choice-card h3 {
  background: rgba(0,0,0,0.3);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px 2px;
  margin-bottom: 0;
  font-size: 1rem;
}

.seo-choice-card p {
  background: rgba(0,0,0,0.3);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 3px 16px;
  min-height: 76px;
  font-size: 0.76rem;
}

.seo-choice-card__price {
  background: rgba(0,0,0,0.3);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--blue);
  font-size: 1.15rem;
  padding: 8px 16px 10px;
  margin: 0;
}

.seo-choice-card .fn-btn {
  border-radius: 0 0 var(--radius) var(--radius);
}

.seo-steps-sell {
  gap: 16px;
}

.seo-step-sell {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.seo-step-sell::before {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.seo-step-sell h3 {
  font-size: 1rem;
}

.seo-final-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

@media (max-width: 980px) {
  .seo-hero__inner,
  .seo-hero--sell .seo-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .seo-hero-product {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .seo-hero__inner,
  .seo-hero--sell .seo-hero__inner {
    padding: 42px 18px 38px;
  }

  .seo-section {
    padding: 48px 0;
  }

  .seo-trustline span {
    width: calc(50% - 4px);
    justify-content: center;
    text-align: center;
  }

  .seo-choice-card p {
    min-height: auto;
  }

}

/* V-Bucks category polish: keep typography aligned with the main catalog. */
#vbucks-packs .seo-section__head {
  margin-bottom: 28px;
}

#vbucks-packs .seo-section__head h2 {
  max-width: none;
  white-space: nowrap;
}

#vbucks-how-to .seo-section__head {
  max-width: none;
}

#vbucks-how-to .seo-section__head h2 {
  max-width: none;
  white-space: nowrap;
}

#vbucks-packs .seo-section__head p {
  max-width: 660px;
  color: #8f9bb0;
}

#vbucks-how-to .seo-section__head p {
  max-width: 760px;
}

@media (max-width: 820px) {
  #vbucks-packs .seo-section__head h2,
  #vbucks-how-to .seo-section__head h2 {
    white-space: normal;
  }
}

.crew-page .seo-hero__lead {
  max-width: 720px;
}

.crew-hero .seo-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

.crew-product-card {
  position: relative;
  overflow: hidden;
  max-width: 440px;
  justify-self: end;
  background: rgba(12,17,31,0.88);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  box-shadow: 0 24px 90px rgba(0,0,0,0.44);
}

.crew-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(180,77,255,0.15), transparent 40%),
    repeating-linear-gradient(-55deg, transparent, transparent 26px, rgba(255,255,255,0.03) 26px, rgba(255,255,255,0.03) 27px);
  pointer-events: none;
}

.crew-product-card > * {
  position: relative;
  z-index: 1;
}

.crew-product-card__media {
  min-height: 170px;
  background: linear-gradient(135deg, #35105a, #0c1730 58%, #080b16);
  border-bottom: 3px solid #b44dff;
}

.crew-product-card__media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.crew-product-card__body {
  padding: 18px 20px 20px;
}

.crew-product-card__label {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  margin-bottom: 8px;
}

.crew-product-card__title {
  font-family: var(--font-fn);
  color: #fff;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  line-height: 1;
  letter-spacing: 1px;
}

.crew-product-card__body p {
  margin: 10px 0 14px;
  color: #9aa6ba;
  font-size: 0.92rem;
  line-height: 1.65;
}

.crew-product-card__price {
  color: #fce83a;
  font-family: var(--font-fn);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.crew-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.crew-feature-card {
  min-height: 100%;
  background: rgba(12,17,31,0.78);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 22px;
}

.crew-feature-card h3 {
  color: #fff;
  font-family: var(--font-fn);
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  margin-bottom: 9px;
}

.crew-feature-card p {
  color: #8f9bb0;
  font-size: 0.92rem;
  line-height: 1.7;
}

#crew-how-to .seo-section__head {
  max-width: none;
}

#crew-included .seo-section__head {
  max-width: none;
}

#crew-included .seo-section__head h2 {
  max-width: none;
  white-space: nowrap;
}

#crew-included .seo-section__head p {
  max-width: 780px;
}

#crew-how-to .seo-section__head h2 {
  max-width: none;
  white-space: nowrap;
}

#crew-how-to .seo-section__head p {
  max-width: 760px;
}

@media (max-width: 980px) {
  .crew-hero .seo-hero__inner {
    grid-template-columns: 1fr;
  }

  .crew-product-card {
    max-width: 560px;
    justify-self: start;
  }

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

@media (max-width: 760px) {
  #crew-included .seo-section__head h2,
  #crew-how-to .seo-section__head h2 {
    white-space: normal;
  }

  .crew-product-card__media,
  .crew-product-card__media img {
    min-height: 160px;
    height: 160px;
  }
}

.skins-hero .seo-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.skins-shop-card {
  position: relative;
  overflow: hidden;
  max-width: 430px;
  justify-self: end;
  background: rgba(12,17,31,0.88);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 24px 90px rgba(0,0,0,0.42);
}

.skins-shop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(180,77,255,0.2), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(41,219,255,0.16), transparent 36%),
    repeating-linear-gradient(-55deg, transparent, transparent 26px, rgba(255,255,255,0.03) 26px, rgba(255,255,255,0.03) 27px);
  pointer-events: none;
}

.skins-shop-card > * {
  position: relative;
  z-index: 1;
}

.skins-shop-status {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 4px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  color: #8f9bb0;
  padding: 9px 12px;
  margin-bottom: 20px;
  font-family: var(--font-fn);
  font-size: 0.68rem;
  line-height: 1.1;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  text-align: center;
}

.skins-shop-status__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.skins-shop-status__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #23c966;
  box-shadow: 0 0 14px rgba(35,201,102,0.75);
  flex: 0 0 auto;
}

.skins-shop-status strong {
  color: #aab4c5;
  white-space: nowrap;
}

.skins-shop-status__time {
  color: rgba(170,180,197,0.7);
  white-space: nowrap;
  font-size: 0.64rem;
  letter-spacing: 0.55px;
  padding-left: 0;
}

.skins-shop-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 0 2px;
}

.skins-shop-card__top span {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.skins-shop-card__top strong {
  color: #fce83a;
  font-family: var(--font-fn);
  font-size: 0.86rem;
  letter-spacing: 0.7px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.skins-shop-card__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.skins-shop-tile {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  padding: 12px;
  overflow: hidden;
}

.skins-shop-tile span {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skins-shop-tile strong {
  color: #fff;
  font-family: var(--font-fn);
  font-size: 1.05rem;
  line-height: 1;
}

.skins-shop-tile--epic { background: linear-gradient(135deg, rgba(97,24,146,0.95), rgba(15,20,36,0.9)); border-bottom: 3px solid #b44dff; }
.skins-shop-tile--rare { background: linear-gradient(135deg, rgba(13,74,132,0.95), rgba(15,20,36,0.9)); border-bottom: 3px solid #29dbff; }
.skins-shop-tile--legendary { background: linear-gradient(135deg, rgba(135,66,0,0.95), rgba(15,20,36,0.9)); border-bottom: 3px solid #ef8c00; }
.skins-shop-tile--uncommon { background: linear-gradient(135deg, rgba(28,108,24,0.95), rgba(15,20,36,0.9)); border-bottom: 3px solid #2bc52b; }

.skins-shop-card p {
  color: #9aa6ba;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.skins-shop-card .fn-btn {
  width: 100%;
}

#skins-flow .seo-section__head,
#skins-vbucks .seo-section__head,
#skins-how-to .seo-section__head {
  max-width: none;
}

#skins-flow .seo-section__head h2,
#skins-vbucks .seo-section__head h2,
#skins-how-to .seo-section__head h2 {
  max-width: none;
  white-space: nowrap;
}

#skins-flow .seo-section__head p,
#skins-vbucks .seo-section__head p,
#skins-how-to .seo-section__head p {
  max-width: 780px;
}

.skins-vbucks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.skins-vbucks-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  background: rgba(12,17,31,0.84);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 18px;
}

.skins-vbucks-card--best {
  border-color: rgba(252,232,58,0.34);
  background: linear-gradient(145deg, rgba(252,232,58,0.08), rgba(12,17,31,0.88));
}

.skins-vbucks-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(41,219,255,0.22));
}

.skins-vbucks-card h3 {
  color: #fff;
  font-family: var(--font-fn);
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  margin-bottom: 7px;
}

.skins-vbucks-card p {
  color: #8f9bb0;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.skins-vbucks-card strong {
  display: block;
  color: #29dbff;
  font-family: var(--font-fn);
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 13px;
}

@media (max-width: 980px) {
  .skins-hero .seo-hero__inner {
    grid-template-columns: 1fr;
  }

  .skins-shop-card {
    justify-self: start;
  }

  .skins-vbucks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  #skins-flow .seo-section__head h2,
  #skins-vbucks .seo-section__head h2,
  #skins-how-to .seo-section__head h2 {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .skins-shop-status {
    line-height: 1.25;
  }

  .skins-shop-status__time {
    width: 100%;
    padding-left: 0;
  }

  .skins-shop-card__items,
  .skins-vbucks-card {
    grid-template-columns: 1fr;
  }

  .skins-shop-card {
    padding: 18px;
  }
}

.seo-choice-card h3 {
  font-family: var(--font-fn);
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}

.seo-choice-card p {
  color: #8f9bb0;
}

.seo-choice-card__price {
  font-family: var(--font-fn);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.seo-choice-card .fn-btn {
  min-height: 40px;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
}

#vbucks-packs .shop-value {
  margin-top: 26px;
}

#vbucks-packs .shop-grid--vbucks {
  margin-bottom: 0;
}

#vbucks-packs .fn-card__img {
  min-height: 176px;
}

#vbucks-packs .fn-card__footer {
  min-height: 204px;
}

#vbucks-packs .fn-card__sub {
  line-height: 1.65;
}

.vbucks-guide {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.vbucks-guide__step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: rgba(12,17,31,0.82);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}

.vbucks-guide__step::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(41,219,255,0.07), transparent 34%),
    repeating-linear-gradient(-55deg, transparent, transparent 26px, rgba(255,255,255,0.025) 26px, rgba(255,255,255,0.025) 27px);
  pointer-events: none;
}

.vbucks-guide__step > * {
  position: relative;
  z-index: 1;
}

.vbucks-guide__num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #fce83a;
  border-radius: 8px;
  color: #05070d;
  font-family: var(--font-fn);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(252,232,58,0.13);
}

.vbucks-guide h3 {
  margin: 2px 0 8px;
  color: #fff;
  font-family: var(--font-fn);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0.4px;
}

.vbucks-guide p {
  max-width: 760px;
  color: #8f9bb0;
  font-size: 0.93rem;
  line-height: 1.7;
}

.vbucks-guide__tip {
  margin-top: 12px;
  color: #cbd6e6;
  background: rgba(41,219,255,0.065);
  border: 1px solid rgba(41,219,255,0.16);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.86rem;
  line-height: 1.55;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

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

.pay-card {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.pay-card__icon {
  width: fit-content;
  min-width: 38px;
  border-radius: 999px;
  background: rgba(252,232,58,0.12);
  border: 1px solid rgba(252,232,58,0.26);
  color: #fce83a;
  padding: 4px 7px;
  font-family: var(--font-fn);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.7px;
  text-align: center;
}

@media (max-width: 760px) {
  .vbucks-guide__step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

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

@media (max-width: 420px) {
  .pay-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
/* =====================================================
   LIVE SHOP
   ===================================================== */
.live-shop__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}
.live-shop__date {
  color: var(--blue);
  font-weight: 600;
}
.live-shop__official {
  flex-shrink: 0;
  font-size: 0.85rem;
  padding: 10px 20px;
  gap: 7px;
}

/* Skeleton */
.live-shop__skeletons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.skeleton-card {
  height: 180px;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-h) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  animation: skeleton-shimmer 1.6s infinite;
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Live grid — outer wrapper */
.live-shop__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section header */
.live-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: -18px;
}
.live-section-header__name {
  font-family: var(--font-fn);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.live-section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Section inner grid — 6 columns */
.live-section-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

/* Tile sizes */
.live-card.tile-4x1 { grid-column: span 4; }
.live-card.tile-3x1 { grid-column: span 3; }
.live-card.tile-2x1 { grid-column: span 2; }
.live-card.tile-1x1 { grid-column: span 1; }

/* Live card image — fixed aspect ratio, compact */
.live-card .fn-card__img {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: unset;
}
.live-card.tile-4x1 .fn-card__img { aspect-ratio: 21 / 9; }
.live-card.tile-3x1 .fn-card__img { aspect-ratio: 16 / 9; }
.live-card.tile-2x1 .fn-card__img { aspect-ratio: 4 / 3; }

.live-card .fn-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.live-card:hover .fn-card__img img { transform: scale(1.06); }

/* Карточки товаров с загруженным фото */
.fn-card__img--photo {
  padding: 0 !important;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: unset !important;
}
.fn-card__img--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.fn-card:hover .fn-card__img--photo img { transform: scale(1.06); }
.live-card .fn-card__img span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
}

/* Compact footer for live cards */
.live-card .fn-card__footer {
  padding: 8px 10px 10px;
  gap: 2px;
}
.live-card .fn-card__name  { font-size: 0.82rem; }
.live-card .fn-card__sub   { font-size: 0.68rem; }
.live-card .fn-card__price { font-size: 0.88rem; }
.live-card .fn-card__old-price { font-size: 0.72rem; }
.live-card .fn-card__price-row { margin: 3px 0 0; gap: 6px; }
.live-card .vbucks-icon { width: 13px; height: 13px; }

/* Bundle badge */
.badge-bundle {
  background: linear-gradient(135deg, #ef8c00, #d97706);
  color: #000;
}

/* Error */
.live-shop__error {
  text-align: center;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.live-shop__error span { font-size: 2.5rem; }
.live-shop__error p { color: var(--muted); }

/* Source note */
.live-shop__source {
  margin-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.live-shop__source a { color: var(--blue); transition: opacity 0.2s; }
.live-shop__source a:hover { opacity: 0.75; }

/* Section tabs (Featured / Daily) */
.live-shop__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Live card — clickable cursor */
.live-card { cursor: pointer; }

/* =====================================================
   ITEM MODAL — Full-screen Fortnite style
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(5, 8, 18, 0.96);
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Full-screen modal */
.modal {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  overflow: hidden;
}

/* Panel left, visual right */
.modal__panel  { grid-column: 1; }
.modal__visual { grid-column: 2; cursor: pointer; }

/* Right side — character/background */
.modal__visual {
  position: relative;
  overflow: hidden;
}
.modal__visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: modal-bg-in 0.6s ease forwards;
}
@keyframes modal-bg-in {
  from { transform: scale(1.12); opacity: 0; }
  to   { transform: scale(1.05); opacity: 1; }
}
.modal__visual-bg-fallback {
  position: absolute;
  inset: 0;
}
.modal__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,13,24,0.85) 0%, transparent 40%);
}
.modal__character {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 92%;
  max-width: 70%;
  object-fit: contain;
  object-position: bottom right;
  transform: translateX(60px);
  opacity: 0;
  animation: char-slide-in 0.55s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(-20px 0 40px rgba(0,0,0,0.5));
}
@keyframes char-slide-in {
  to { transform: translateX(0); opacity: 1; }
}

/* Left side — info panel */
.modal__panel {
  position: relative;
  background: rgba(8, 11, 22, 0.96);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  transform: translateX(-40px);
  opacity: 0;
  animation: panel-in 0.45s 0.05s ease forwards;
  z-index: 2;
}
@keyframes panel-in {
  to { transform: translateX(0); opacity: 1; }
}

/* Rarity accent bar at top */
.modal__panel-bar {
  height: 4px;
  flex-shrink: 0;
}

.modal__panel-scroll {
  flex: 1;
  padding: 36px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Close btn */
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.modal__close:hover { background: rgba(255,255,255,0.15); }

/* Type label */
.modal__type {
  font-family: var(--font-fn);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Name */
.modal__name {
  font-family: var(--font-fn);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #fff;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: -8px;
}

/* Price row */
.modal__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal__price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-fn);
  font-size: 1.6rem;
  color: var(--blue);
}
.modal__old-price {
  font-family: var(--font-fn);
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.modal__discount {
  background: #ef4444;
  color: #fff;
  font-family: var(--font-fn);
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Description card */
.modal__desc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__desc-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}
.modal__desc-intro {
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.modal__desc-set {
  font-size: 0.78rem;
  color: var(--blue);
  opacity: 0.8;
}

/* Bundle items */
.modal__items-label {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  font-family: var(--font-fn);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: -12px;
}
.modal__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}
.modal-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.18s, border-color 0.18s;
}
.modal-item:hover { transform: translateY(-3px); }
.modal-item__rarity-bar { height: 2px; }
.modal-item--legendary .modal-item__rarity-bar { background: var(--legendary); }
.modal-item--epic      .modal-item__rarity-bar { background: var(--epic); }
.modal-item--rare      .modal-item__rarity-bar { background: var(--rare); }
.modal-item--uncommon  .modal-item__rarity-bar { background: var(--uncommon); }
.modal-item--common    .modal-item__rarity-bar { background: var(--common); }
.modal-item--legendary:hover { border-color: rgba(239,140,0,0.5); }
.modal-item--epic:hover      { border-color: rgba(138,43,226,0.5); }
.modal-item--rare:hover      { border-color: rgba(43,127,198,0.5); }
.modal-item__img {
  width: 100%; aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: linear-gradient(160deg, #0d1525, #1a2236);
}
.modal-item__img-placeholder {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  background: linear-gradient(160deg, #0d1525, #1a2236);
}
.modal-item__body { padding: 6px 8px 8px; }
.modal-item__name {
  font-family: var(--font-fn);
  font-size: 0.72rem;
  color: #fff;
  line-height: 1.2;
}
.modal-item__type { font-size: 0.64rem; color: var(--muted); }

/* Active item highlight */
.modal-item--active {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
  background: rgba(41,219,255,0.06);
}
.modal-item { cursor: pointer; }

/* Back button */
.modal__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #0a0a0a;
  background: var(--blue);
  cursor: pointer;
  margin-left: 10px;
  padding: 3px 10px 3px 7px;
  border-radius: 20px;
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: background 0.18s, transform 0.15s;
  vertical-align: middle;
  white-space: nowrap;
}
.modal__back-btn:hover { background: #5ee8ff; transform: translateX(-2px); }

/* Smooth character transitions */
.modal__character {
  transition: opacity 0.3s ease, transform 0.35s ease;
}

/* Video preview */
.modal__preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
  pointer-events: none;
}

/* CTA */
.modal__cta {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__cta-note {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}
.modal__cta-note a { color: var(--blue); }

/* Mouse parallax on character */
.modal__character { will-change: transform; }

/* Mobile */
@media (max-width: 760px) {
  .modal {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
  }
  .modal__visual { grid-row: 1; }
  .modal__visual-overlay {
    background: linear-gradient(0deg, rgba(8,11,22,0.9) 0%, transparent 60%);
  }
  .modal__character { height: 100%; max-width: 55%; right: 0; }
  .modal__panel { grid-row: 2; }
  .modal__panel-scroll { padding: 24px 20px; gap: 16px; }
  .modal__name { font-size: 1.6rem; }
  .modal__items { grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-top: 60px; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__cards { grid-template-columns: repeat(3, 1fr); }
  .shop-grid--featured { grid-template-columns: 1fr 1fr; }
  .shop-value__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .home-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  /* v2 */
  .hero__live-badge { justify-content: center; }
  .hero__pills { justify-content: center; }
  .hero__actions2 { justify-content: center; }
  .hero__stats2 { justify-content: center; }
  .hero__title2 { align-items: center; }
}

@media (max-width: 1100px) {
  .live-section-grid   { grid-template-columns: repeat(4, 1fr); }
  .live-card.tile-4x1  { grid-column: span 4; }
  .live-card.tile-3x1  { grid-column: span 4; }
  .live-card.tile-2x1  { grid-column: span 2; }
  .live-shop__skeletons { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 720px) {
  .live-section-grid   { grid-template-columns: repeat(3, 1fr); }
  .live-card.tile-4x1  { grid-column: span 3; }
  .live-card.tile-3x1  { grid-column: span 3; }
  .live-card.tile-2x1  { grid-column: span 2; }
  .live-card.tile-1x1  { grid-column: span 1; }
  .live-shop__skeletons { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: fixed;
    inset: 64px 0 0;
    background: rgba(10,13,24,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 150;
  }
  .nav.open { display: flex; }
  .nav__link { font-size: 1.3rem; padding: 14px 32px; }
  .burger { display: flex; }
  .header__btn { display: none; }

  .hero__title { font-size: 3rem; }
  .hero__cards { grid-template-columns: 1fr; max-width: 220px; margin: 0 auto; }

  .shop-grid--featured { grid-template-columns: 1fr; }
  .shop-grid--regular { grid-template-columns: repeat(2, 1fr); }
  .shop-value__head,
  .home-reviews__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps { flex-direction: column; align-items: stretch; }
  .steps__arrow { display: none; }

  .cta-block { padding: 48px 24px; }
  .benefits-strip__inner { gap: 12px; }
  .benefit-sep { display: none; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer__note {
    justify-self: center;
  }
  .footer__links { justify-content: center; }
}

@media (max-width: 420px) {
  .shop-grid--regular { grid-template-columns: 1fr; }
  .fn-logo { margin-right: 10px; }
  .brand-wordmark { width: 136px; height: 32px; }
  .brand-wordmark--footer { width: 140px; height: 33px; }
  .shop-value { padding: 16px; }
  .shop-value__grid,
  .trust-grid,
  .home-reviews__grid {
    grid-template-columns: 1fr;
  }
  .support-float {
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }
  .support-float__text { display: none; }
  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__divider { width: 40px; height: 1px; }
}

@media (max-width: 360px) {
  .fn-logo__text {
    font-size: 1.05rem;
    letter-spacing: 0.6px;
  }
  .fn-logo svg {
    width: 24px;
    height: 24px;
  }
  .burger {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
}

/* =====================================================
   FN-HEADER — Fortnite.com style header
   ===================================================== */
.fn-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: #000;
  transition: box-shadow 0.3s;
  pointer-events: auto;
}

.fn-header__top-line {
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple-bright) 50%, var(--orange) 100%);
}

.fn-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.fn-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-right: 24px;
}
.fn-logo .brand-mark {
  width: 30px;
  height: 30px;
}
.fn-logo__text {
  font-family: var(--font-fn);
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}
.fn-logo__accent { color: var(--blue); }

/* Nav */
.fn-nav {
  display: flex;
  flex: 1;
  align-self: stretch;
}
.fn-nav__link {
  display: flex;
  align-items: center;
  font-family: var(--font-fn);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 14px;
  position: relative;
  transition: color 0.18s;
  white-space: nowrap;
}
.fn-nav__link:hover { color: #fff; }
.fn-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.fn-nav__link:hover::after { transform: scaleX(1); }
.fn-nav__link--active {
  color: #fff;
}
.fn-nav__link--active::after {
  transform: scaleX(1);
  background: var(--blue);
}

/* Header right */
.fn-nav__buttons { display: none; }

.fn-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.fn-header__login {
  font-family: var(--font-fn);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.1);
  padding: 9px 20px;
  border-radius: 5px;
  transition: background 0.18s;
  white-space: nowrap;
}
.fn-header__login:hover {
  background: rgba(255,255,255,0.18);
}

.fn-header__cta {
  font-family: var(--font-fn);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #fce83a;
  color: #000;
  padding: 9px 22px;
  border-radius: 5px;
  font-weight: 700;
  transition: background 0.18s, transform 0.15s;
  white-space: nowrap;
}
.fn-header__cta:hover {
  background: #ffe840;
  transform: translateY(-1px);
}

/* =====================================================
   SHOP PAGE (item-shop.html)
   ===================================================== */
.shop-page-header {
  padding: 103px 0 36px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.shop-page-title {
  font-family: var(--font-fn);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.shop-page-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 auto 12px;
  max-width: 1040px;
  line-height: 1.7;
}
.shop-page-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #8f9aac;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.shop-page-updated::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.7);
}
.shop-page-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px auto 0;
  max-width: 960px;
}
.shop-page-actions .fn-btn {
  min-width: 190px;
  height: 54px;
  padding: 0 24px;
}
.shop-page-body {
  padding: 36px 0 80px;
}

@media (max-width: 760px) {
  .shop-page-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .shop-page-actions .fn-btn {
    width: 100%;
    min-width: 0;
  }
}

/* =====================================================
   EPIC LOGIN MODAL
   ===================================================== */
#epic-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.epic-modal {
  position: relative;
  background: #0d1525;
  border: 1px solid rgba(41,219,255,0.2);
  border-radius: 16px;
  padding: 40px 36px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.epic-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  border-radius: 8px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.epic-modal__close:hover { background: rgba(255,255,255,0.15); }
.epic-modal__logo { margin-bottom: 16px; }
.epic-modal__title {
  font-family: var(--font-fn);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 28px;
}
.epic-modal__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px 0;
}
.epic-modal__step {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: left;
}
.epic-modal__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(41,219,255,0.08);
  border: 1px solid rgba(41,219,255,0.25);
  color: var(--blue);
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  transition: background 0.2s;
}
.epic-modal__link:hover { background: rgba(41,219,255,0.15); }
.epic-modal__code {
  font-family: var(--font-fn);
  font-size: 2rem;
  letter-spacing: 6px;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.epic-modal__code:hover { background: rgba(255,255,255,0.1); }
.epic-modal__hint {
  font-size: 0.75rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: opacity 0.3s;
}
.epic-modal__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
}
.epic-modal__error {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.epic-spinner {
  width: 22px; height: 22px;
  border: 2px solid rgba(41,219,255,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
.epic-spinner--sm { width: 14px; height: 14px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Profile modal */
.epic-modal--profile {
  max-width: 500px;
  padding: 0;
  overflow: hidden;
  background: #0a0e1a;
}
.epic-profile__hero {
  background: linear-gradient(135deg, #0d1f3a 0%, #0a0e1a 100%);
  border-bottom: 1px solid rgba(41,219,255,0.1);
  padding: 32px 28px 24px;
  position: relative;
  overflow: hidden;
}
.epic-profile__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 20px, rgba(41,219,255,0.015) 20px, rgba(41,219,255,0.015) 21px);
}
.epic-profile__header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.epic-profile__avatar {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(41,219,255,0.15), rgba(41,219,255,0.05));
  border: 2px solid rgba(41,219,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(41,219,255,0.15);
}
.epic-profile__info { flex: 1; text-align: left; }
.epic-profile__name {
  font-family: var(--font-fn);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 20px rgba(41,219,255,0.3);
}
.epic-profile__sub {
  font-size: 0.72rem;
  color: var(--blue);
  margin-top: 3px;
  opacity: 0.7;
  letter-spacing: 0.5px;
}
.epic-profile__balance-wrap {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.epic-profile__balance-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.epic-profile__balance-amount {
  font-family: var(--font-fn);
  font-size: 1.3rem;
  color: #fce83a;
  letter-spacing: 1px;
  text-shadow: 0 0 16px rgba(252,232,58,0.3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 80px;
  min-height: 24px;
}
.epic-profile__body { padding: 20px 28px 28px; }
.epic-profile__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}
.epic-tab {
  flex: 1 1 calc(33.33% - 3px);
  background: none;
  border: none;
  color: var(--muted);
  padding: 8px 6px;
  border-radius: 9px;
  font-family: var(--font-fn);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}
.epic-tab.active {
  background: linear-gradient(135deg, rgba(41,219,255,0.15), rgba(41,219,255,0.08));
  color: var(--blue);
  box-shadow: 0 2px 12px rgba(41,219,255,0.1);
}
.epic-profile__content { min-height: 200px; max-height: 380px; overflow-y: auto; }
.epic-profile__content details[open] summary svg { transform: rotate(180deg); }
.epic-profile__content::-webkit-scrollbar { width: 4px; }
.epic-profile__content::-webkit-scrollbar-track { background: transparent; }
.epic-profile__content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }
.epic-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.epic-stat {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.epic-stat:hover { border-color: rgba(41,219,255,0.25); transform: translateY(-2px); }
.epic-stat__val {
  font-family: var(--font-fn);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.epic-stat__lbl {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.epic-locker-value {
  background: linear-gradient(135deg, rgba(252,232,58,0.1), rgba(252,232,58,0.03));
  border: 1px solid rgba(252,232,58,0.25);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.epic-locker-value::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(252,232,58,0.08), transparent 70%);
}
.epic-locker-value__label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.epic-locker-value__amount { font-family: var(--font-fn); font-size: 2.2rem; color: #fce83a; letter-spacing: 3px; line-height: 1; text-shadow: 0 0 20px rgba(252,232,58,0.3); }
.epic-locker-value__sub { font-size: 0.75rem; color: var(--muted); margin-top: 8px; }
.epic-locker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.epic-locker-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.epic-locker-item:hover { border-color: rgba(41,219,255,0.2); transform: translateY(-2px); }
.epic-locker-icon  { font-size: 1.5rem; }
.epic-locker-count { font-family: var(--font-fn); font-size: 1.2rem; color: #fff; line-height: 1; }
.epic-locker-lbl   { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.epic-profile__logout {
  width: 100%;
  margin-top: 20px;
  background: rgba(255,60,60,0.07);
  border: 1px solid rgba(255,60,60,0.2);
  color: rgba(255,100,100,0.8);
  border-radius: 10px;
  padding: 11px;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.epic-profile__logout:hover {
  background: rgba(255,60,60,0.14);
  color: #ff6b6b;
  border-color: rgba(255,60,60,0.35);
}

/* Locker items panel */
.epic-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-fn);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}
.epic-items-close {
  background: rgba(255,255,255,0.07);
  border: none;
  color: var(--muted);
  border-radius: 6px;
  width: 24px; height: 24px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.2s;
}
.epic-items-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.epic-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(41,219,255,0.2) transparent;
}
.epic-item-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s, border-color 0.2s;
  cursor: default;
}
.epic-item-card:hover { transform: translateY(-2px); border-color: rgba(41,219,255,0.3); }
.epic-item-card--legendary { border-color: rgba(239,140,0,0.25); }
.epic-item-card--epic      { border-color: rgba(180,77,255,0.25); }
.epic-item-card--rare      { border-color: rgba(41,219,255,0.25); }
.epic-item-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.epic-item-card__placeholder { width: 100%; aspect-ratio: 1; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 1.2rem; }
.epic-item-card__name {
  font-size: 0.6rem;
  color: var(--muted);
  text-align: center;
  padding: 4px 4px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.epic-items-more {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  padding: 8px;
}

/* fn-header mobile */
@media (max-width: 1100px) {
  .fn-header__inner {
    padding: 0 14px;
  }
  .fn-logo {
    margin-right: 0;
    min-width: 0;
  }
  .fn-logo__text {
    font-size: 1.25rem;
    letter-spacing: 1.2px;
  }
  .fn-header__right {
    margin-left: auto;
    min-width: 38px;
    position: relative;
    z-index: 10001;
  }
  .fn-nav {
    display: none;
    position: fixed;
    top: 63px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 63px);
    min-height: calc(100vh - 63px);
    background: rgba(0,0,0,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    gap: 4px;
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open {
    overflow: hidden;
  }
  .fn-nav.open { display: flex !important; }
  .fn-nav__link {
    font-size: 1.3rem;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .fn-nav__link::after { display: none; }
  .fn-header__login { display: none; }
  .fn-header__cta { display: none; }
  .burger {
    display: flex;
    background: rgba(41,219,255,0.12);
    border-color: rgba(41,219,255,0.35);
    pointer-events: auto !important;
  }
  .fn-nav__buttons {
    display: flex;
    gap: 12px;
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }
  .fn-nav__buttons .fn-header__login,
  .fn-nav__buttons .fn-header__cta {
    display: flex;
  }
}

/* =====================================================
   UI ALIGNMENT PASS
   Keeps typography, spacing and buttons consistent across
   SEO pages, FAQ, reviews, docs and utility pages.
   ===================================================== */
.fn-btn {
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.65px;
  border-radius: 5px;
}
.fn-btn--sm {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.86rem;
  letter-spacing: 0.55px;
}
.fn-btn--lg {
  min-height: 56px;
  padding: 0 32px;
  font-size: 0.98rem;
}

.fn-nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.42px;
  padding-inline: 11px;
}
.fn-nav__link::after {
  left: 11px;
  right: 11px;
}
.fn-header__login,
.fn-header__cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.45px;
  padding: 0 18px;
  border-radius: 5px;
}

.seo-hero__inner {
  padding-top: 78px;
  padding-bottom: 68px;
  gap: 42px;
}
.seo-kicker,
.guide-hero__label,
.faq-hero__label,
.reviews-hero__label,
.doc-hero__label {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.15px !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  color: var(--blue) !important;
  background: rgba(41,219,255,0.08) !important;
  border-color: rgba(41,219,255,0.24) !important;
}
.seo-hero h1,
.guide-hero__title,
.faq-hero__title,
.reviews-hero__title,
.doc-hero__title,
.shop-page-title {
  font-family: var(--font-fn) !important;
  font-size: clamp(2.35rem, 4.5vw, 4.15rem) !important;
  line-height: 1.04 !important;
  letter-spacing: 1.1px !important;
  color: #fff !important;
}
.seo-hero__lead,
.guide-hero__sub,
.faq-hero__sub,
.reviews-hero__sub,
.shop-page-sub,
.doc-hero__date {
  font-size: 0.98rem !important;
  line-height: 1.72 !important;
  color: #9aa7bb !important;
}

.seo-section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.seo-section h2,
.faq-contact-strip__title,
.reviews-trust h2,
.doc-section h2,
.guide-related h2,
.error-page__title {
  font-family: var(--font-fn) !important;
  font-size: clamp(1.55rem, 2.8vw, 2.55rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 1px !important;
  color: #fff !important;
}
.seo-section p,
.seo-info-card p,
.seo-step-sell p,
.seo-choice-card p,
.faq-item__a,
.doc-section p,
.doc-section ul li,
.reviews-trust p,
.guide-step__desc,
.guide-tip,
.faq-contact-strip__sub {
  font-size: 0.92rem !important;
  line-height: 1.75 !important;
  color: #98a6ba !important;
}
.seo-info-card h3,
.seo-step-sell h3,
.seo-choice-card h3,
.guide-step__title,
.faq-category__title,
.review-card__name {
  font-family: var(--font-fn) !important;
  font-size: 1.12rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0.35px !important;
  color: #fff !important;
}

.guide-hero,
.faq-hero,
.reviews-hero,
.doc-hero {
  padding-top: 112px !important;
  padding-bottom: 58px !important;
}
.guide-body,
.faq-page-body,
.reviews-body,
.doc-body {
  padding-top: 56px !important;
}

.seo-final-cta,
.faq-contact-strip,
.reviews-trust {
  border-radius: var(--radius) !important;
}
.seo-final-cta h2 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}
.shop-page-updated {
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

@media (max-width: 1100px) {
  .fn-nav__link {
    font-size: 1.12rem;
    padding: 13px 28px;
  }
}

@media (max-width: 760px) {
  .fn-btn {
    width: 100%;
    min-height: 50px;
    font-size: 0.88rem;
  }
  .seo-hero__inner,
  .guide-hero,
  .faq-hero,
  .reviews-hero,
  .doc-hero {
    padding-top: 92px !important;
    padding-bottom: 44px !important;
  }
  .seo-hero h1,
  .guide-hero__title,
  .faq-hero__title,
  .reviews-hero__title,
  .doc-hero__title,
  .shop-page-title {
    font-size: clamp(2rem, 11vw, 2.7rem) !important;
    letter-spacing: 0.6px !important;
  }
  .seo-section h2,
  .faq-contact-strip__title,
  .reviews-trust h2,
  .doc-section h2,
  .guide-related h2,
  .error-page__title {
    font-size: clamp(1.45rem, 8vw, 2.1rem) !important;
    letter-spacing: 0.5px !important;
  }
}

/* =====================================================
   HOME PAGE REFRESH
   ===================================================== */
.home-hero-lead {
  max-width: 650px;
  color: #aeb8c8;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 24px;
}
.home-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.home-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-section-head--center .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-section-head--center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.home-section-head p {
  color: #98a6ba;
  font-size: 0.94rem;
  line-height: 1.75;
  margin-top: 12px;
}
.trust-section .home-section-head {
  max-width: 720px;
}
.trust-section .section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem) !important;
  line-height: 1.14 !important;
  letter-spacing: 0.9px !important;
}
.home-routes {
  padding-top: 72px;
  padding-bottom: 72px;
}
.home-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-route-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.home-route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}
.home-route-card--vbucks::before { background: radial-gradient(circle at 80% 15%, rgba(41,219,255,0.25), transparent 42%); }
.home-route-card--crew::before { background: radial-gradient(circle at 80% 15%, rgba(180,77,255,0.25), transparent 42%); }
.home-route-card--skins::before { background: radial-gradient(circle at 80% 15%, rgba(239,140,0,0.22), transparent 42%); }
.home-route-card--topup::before { background: radial-gradient(circle at 80% 15%, rgba(45,181,18,0.20), transparent 42%); }
.home-route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41,219,255,0.28);
}
.home-route-card span,
.home-route-card h3,
.home-route-card p,
.home-route-card strong {
  position: relative;
  z-index: 1;
}
.home-route-card span {
  width: fit-content;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.home-route-card h3 {
  color: #fff;
  font-family: var(--font-fn);
  font-size: 1.35rem;
  line-height: 1.15;
}
.home-route-card p {
  color: #98a6ba;
  font-size: 0.9rem;
  line-height: 1.65;
}
.home-route-card strong {
  color: #fce83a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: auto;
}

.home-region__box,
.home-itemshop__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.home-region__box p,
.home-itemshop__box p {
  max-width: 760px;
  color: #98a6ba;
  font-size: 0.94rem;
  line-height: 1.75;
}
.home-region__actions,
.home-itemshop__actions,
.home-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.home-itemshop__box {
  background:
    radial-gradient(circle at 95% 0%, rgba(41,219,255,0.16), transparent 34%),
    var(--bg-card);
}
.home-faq-actions {
  justify-content: center;
  margin-top: 24px;
}
.cta-block__links .fn-btn {
  min-width: 180px;
}

@media (max-width: 1100px) {
  .home-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-region__box,
  .home-itemshop__box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .home-route-grid {
    grid-template-columns: 1fr;
  }
  .home-route-card {
    min-height: 220px;
  }
  .home-region__actions .fn-btn,
  .home-itemshop__actions .fn-btn,
  .home-faq-actions .fn-btn,
  .cta-block__links .fn-btn {
    width: 100%;
  }
}

/* Home page compact commercial blocks */
#how-it-works {
  padding-top: 72px;
  padding-bottom: 72px;
}
#how-it-works .home-section-head {
  max-width: 680px;
  margin-bottom: 34px;
}
#how-it-works .section-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem) !important;
  letter-spacing: 1px !important;
}
#how-it-works .steps2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
#how-it-works .step2__connector {
  display: none;
}
#how-it-works .step2 {
  min-height: 300px;
  padding: 28px 28px 26px;
}
#how-it-works .step2__icon-wrap {
  margin-bottom: 22px;
}
#how-it-works .step2__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}
#how-it-works .step2__icon svg {
  width: 30px;
  height: 30px;
}
#how-it-works .step2__num {
  top: 12px;
  right: 16px;
  font-size: 4.6rem;
  letter-spacing: -2px;
}
#how-it-works .step2__title {
  font-size: 1.08rem !important;
  line-height: 1.35;
  margin-bottom: 12px;
}
#how-it-works .step2__desc {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
}

.home-region,
.home-itemshop {
  padding-top: 56px;
  padding-bottom: 56px;
}
.home-region__box,
.home-itemshop__box {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 34px;
  padding: 34px 30px;
}
.home-region .shop-section-label,
.home-itemshop .shop-section-label {
  margin-bottom: 14px;
}
.home-region .section-title,
.home-itemshop .section-title {
  max-width: 680px;
  font-size: clamp(1.85rem, 3.1vw, 2.75rem) !important;
  line-height: 1.12 !important;
  letter-spacing: 0.7px !important;
  text-align: left;
  margin-bottom: 18px;
}
.home-region .section-title::after,
.home-itemshop .section-title::after {
  margin-left: 0;
  margin-right: 0;
}
.home-region__box p,
.home-itemshop__box p {
  max-width: 680px;
  font-size: 0.94rem !important;
  line-height: 1.75 !important;
}
.home-region__actions,
.home-itemshop__actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-self: stretch;
  align-self: center;
}
.home-region__actions .fn-btn,
.home-itemshop__actions .fn-btn {
  width: 100%;
}

@media (max-width: 1100px) {
  #how-it-works .steps2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #how-it-works .step2 {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  #how-it-works {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  #how-it-works .steps2 {
    grid-template-columns: 1fr;
  }
  #how-it-works .step2 {
    min-height: 0;
    padding: 24px;
  }
  .home-region,
  .home-itemshop {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .home-region__box,
  .home-itemshop__box {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .home-region .section-title,
  .home-itemshop .section-title {
    font-size: clamp(1.55rem, 8vw, 2.15rem) !important;
  }
}
