:root {
    --red: #f0182b;
    --red-rgb: 240, 24, 43;
    --red-soft: rgba(240, 24, 43, 0.5);
    --bg: #000000;
    --text-dim: #c8c8c8;
    --text-faint: #8a8a8a;

    --panel-bg: #0d0d0d;
    --panel-bg-solid: #0d0d0d;
    --panel-bg-nested: #0d0d0d;
    --panel-border: #1a1a1a;
    --panel-border-soft: #1a1a1a;
    --panel-border-hover: rgba(255, 255, 255, 0.14);
    --panel-hover: rgba(255, 255, 255, 0.05);

    --accent-top: inset 0 2px 0 rgba(255, 255, 255, 0.08);

    --nested-bevel: inset 0 1px 0 rgba(255, 255, 255, 0.11), inset 0 -1px 0 rgba(255, 255, 255, 0.05);

    --btn-bevel-red: inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 0 rgba(255, 255, 255, 0.12);

    --input-bevel: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(0, 0, 0, 0.55);
    --nested-bg: #131314;

    --product-inner-max: 1200px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  ::selection { background: var(--red); color: #fff; }
  ::-moz-selection { background: var(--red); color: #fff; }

  html {
    overflow-x: hidden;
  }
  body {
    min-height: 100%;
    background: var(--bg);
    font-family: "Geist", system-ui, -apple-system, sans-serif;
    color: #fff;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
  }

  html.modal-open, body.modal-open { overflow: hidden; }

  html.lenis, html.lenis body { height: auto; }
  .lenis.lenis-smooth { scroll-behavior: auto !important; }
  .lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
  .lenis.lenis-stopped { overflow: hidden; }

  body.is-scrolling .video-card iframe { pointer-events: none; }

  .navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: 64px;
    padding: 0;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    z-index: 50;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(32px) saturate(1.3);
    -webkit-backdrop-filter: blur(32px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-inner {
    position: relative;
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 0;
  }
  .nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 30px;
    align-items: center;
  }
  .nav-links a {
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
  }
  .nav-links a:hover { color: #fff; }

  .nav-right {
    display: flex;
    gap: 13px;
    align-items: center;
  }

  .nav-flag {
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 6px 8px 6px 11px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .nav-flag:hover { background: rgba(255, 255, 255, 0.06); }

  .flag-us {
    position: relative;
    width: 30px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
  }
  .flag-us > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  .flag-us .flag-canton {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 46.17%;
  }
  .flag-us .flag-stars {
    position: absolute;
    inset: 7.22% 55.11% 53.39% 5.11%;
  }
  .flag-us .flag-canton img,
  .flag-us .flag-stars img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .nav-chevron {
    width: 8px;
    height: 4px;
    display: block;
    transition: transform 0.2s ease;
  }

  .nav-lang { position: relative; }
  .nav-lang.open .nav-chevron { transform: rotate(180deg); }

  .flag-img {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    display: block;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 226px;
    padding: 8px;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 60;
  }
  .nav-lang.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .lang-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
  }
  .lang-item:hover { background: rgba(255, 255, 255, 0.05); }
  .lang-item.active { background: rgba(255, 255, 255, 0.07); }
  .lang-item .flag-img { width: 34px; height: 23px; border-radius: 5px; }
  .lang-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
  }
  .lang-native { font-size: 14px; font-weight: 600; color: #fff; }
  .lang-en { font-size: 12px; font-weight: 500; color: #8a8a8a; }
  .lang-check {
    width: 16px;
    height: 16px;
    color: var(--red);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.15s ease;
  }
  .lang-item.active .lang-check { opacity: 1; }

  .nav-cart {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .nav-cart:hover { background: rgba(255, 255, 255, 0.06); }
  .nav-cart img { width: 32px; height: 32px; display: block; }
  .cart-badge {
    position: absolute;
    top: -6px;
    right: -7px;
    box-sizing: border-box;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--red);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .cart-badge[hidden] { display: none; }

  .btn-login {
    height: 32px;
    padding: 0 22px;
    border: none;
    border-radius: 12.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    background: var(--red);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    transition: filter 0.2s ease, transform 0.15s ease;
  }
  .btn-login:hover { filter: brightness(1.12); }
  .btn-login:active { transform: scale(0.97); }

  .btn-login.is-account {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #2a0d0d, #160707);
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
  }
  .btn-login.is-account:hover { filter: brightness(1.25); }

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .hero-bg .tint {
    position: absolute;
    inset: 0;
    background: radial-gradient(
      140% 110% at 50% 0%,
      rgba(56, 0, 0, 0.24) 0%,
      rgba(20, 0, 0, 0.1) 55%,
      transparent 85%
    );
  }

  .ink,
  .ink-hot,
  .ink-veins {
    position: absolute;
    left: -20%;
    right: -20%;
    top: -10vh;
    height: 100vh;
    -webkit-mask-image: linear-gradient(180deg,
      #000 0%, #000 32%, rgba(0, 0, 0, 0.5) 55%, transparent 78%);
    mask-image: linear-gradient(180deg,
      #000 0%, #000 32%, rgba(0, 0, 0, 0.5) 55%, transparent 78%);
    will-change: transform;
  }

  .ink {
    background:
      radial-gradient(40% 28% at 14% 18%, rgba(var(--red-rgb), 0.66) 0%, transparent 70%),
      radial-gradient(48% 34% at 50% 12%, rgba(var(--red-rgb), 0.5) 0%, transparent 72%),
      radial-gradient(36% 26% at 78% 16%, rgba(var(--red-rgb), 0.55) 0%, transparent 70%),
      radial-gradient(34% 24% at 30% 32%, rgba(var(--red-rgb), 0.46) 0%, transparent 70%),
      radial-gradient(30% 22% at 65% 30%, rgba(var(--red-rgb), 0.44) 0%, transparent 70%),
      radial-gradient(26% 18% at 90% 36%, rgba(var(--red-rgb), 0.38) 0%, transparent 68%),
      radial-gradient(28% 20% at 8% 40%, rgba(var(--red-rgb), 0.38) 0%, transparent 68%),
      radial-gradient(24% 16% at 45% 44%, rgba(var(--red-rgb), 0.32) 0%, transparent 68%),
      radial-gradient(22% 15% at 22% 54%, rgba(var(--red-rgb), 0.24) 0%, transparent 68%);
    filter: blur(24px) contrast(1.18) saturate(1.12);
    animation: inkDrift 52s ease-in-out infinite alternate;
  }

  .ink-hot {
    background:
      radial-gradient(22% 15% at 20% 20%, rgba(var(--red-rgb), 0.6) 0%, transparent 70%),
      radial-gradient(11% 7% at 21% 18%, rgba(255, 234, 222, 0.55) 0%, transparent 70%),
      radial-gradient(19% 12% at 72% 14%, rgba(var(--red-rgb), 0.55) 0%, transparent 70%),
      radial-gradient(10% 6.5% at 73% 13%, rgba(255, 240, 230, 0.45) 0%, transparent 70%),
      radial-gradient(17% 11% at 46% 26%, rgba(var(--red-rgb), 0.48) 0%, transparent 70%),
      radial-gradient(8.5% 5.5% at 45% 24%, rgba(255, 228, 214, 0.36) 0%, transparent 70%),
      radial-gradient(13% 9% at 88% 30%, rgba(var(--red-rgb), 0.4) 0%, transparent 70%),
      radial-gradient(7% 4.5% at 89% 28%, rgba(255, 226, 212, 0.26) 0%, transparent 70%),
      radial-gradient(12% 8% at 8% 30%, rgba(var(--red-rgb), 0.36) 0%, transparent 70%),
      radial-gradient(10% 7% at 36% 38%, rgba(var(--red-rgb), 0.3) 0%, transparent 70%);
    filter: blur(16px);
    mix-blend-mode: screen;
    animation: inkDrift 64s ease-in-out infinite alternate-reverse;
  }

  .ink-veins {
    background:
      radial-gradient(34% 19% at 40% 22%, rgba(0, 0, 0, 0.85) 0%, transparent 64%),
      radial-gradient(26% 16% at 64% 34%, rgba(0, 0, 0, 0.75) 0%, transparent 62%),
      radial-gradient(20% 14% at 18% 34%, rgba(0, 0, 0, 0.7) 0%, transparent 62%),
      radial-gradient(18% 12% at 82% 18%, rgba(0, 0, 0, 0.6) 0%, transparent 62%);
    filter: blur(26px);
    animation: inkDrift 76s ease-in-out infinite alternate;
  }

  @keyframes inkDrift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(2.2%, 1.4%, 0) scale(1.045); }
  }

  .hero-bg .noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.07;
    mix-blend-mode: overlay;
  }

  .hero-bg .grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.32' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    opacity: 0.035;
    mix-blend-mode: soft-light;
  }

  .hero-bg .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 130% 100% at 50% 30%,
      transparent 60%,
      rgba(0, 0, 0, 0.5) 100%
    );
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .headline {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.04;
    white-space: nowrap;
    opacity: 0;
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
  }

  .headline .buy { color: #fff; }

  .rotator {
    position: relative;
    display: inline-block;
    height: 1.04em;
    overflow: hidden;
    vertical-align: bottom;
    transition: width 0.55s cubic-bezier(0.65, 0, 0.35, 1);
    color: var(--red);
  }
  .rotator .word {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    will-change: transform, opacity, filter;
  }

  .rotator .word:only-child:not(.leaving):not(.entering) {
    position: relative;
  }
  .rotator .word.entering {
    animation: wordIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }
  .rotator .word.leaving {
    animation: wordOut 0.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  }

  @keyframes wordOut {
    from { transform: translateY(0); opacity: 1; filter: blur(0); }
    to   { transform: translateY(-72%); opacity: 0; filter: blur(10px); }
  }
  @keyframes wordIn {
    from { transform: translateY(72%); opacity: 0; filter: blur(10px); }
    to   { transform: translateY(0); opacity: 1; filter: blur(0); }
  }

  .hero-sub {
    margin-top: 26px;
    max-width: 520px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-faint);
    opacity: 0;
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 42px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 30px;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, filter 0.2s ease,
      background 0.2s ease, border-color 0.2s ease;
  }
  .btn:active { transform: scale(0.97); }

  .btn-primary {
    --bs-btn-bg: var(--red);
    --bs-btn-border-color: var(--red);
    --bs-btn-hover-bg: var(--red);
    --bs-btn-hover-border-color: var(--red);
    --bs-btn-active-bg: var(--red);
    --bs-btn-active-border-color: var(--red);
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-bg: var(--red);
    --bs-btn-disabled-border-color: var(--red);
    --bs-btn-focus-shadow-rgb: var(--red-rgb);
    background: var(--red);
    color: #fff;
    border: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  }

  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:focus-visible,
  .btn-primary:active {
    background: var(--red);
    color: #fff;
    border-color: transparent;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  }
  .btn-primary:hover { filter: brightness(1.12); }
  .btn-primary svg { width: 17px; height: 17px; flex-shrink: 0; }

  .btn-secondary {
    background: #262626;
    color: #fff;
    border: none;
    box-shadow: var(--nested-bevel);
  }
  .btn-secondary:hover {
    background: #262626;
  }
  .btn-secondary svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

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

  .fx {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  .fx i {
    position: absolute;
    display: block;
    top: -20vh;
    width: 2px;
    height: 130px;
    border-radius: 2px;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(var(--red-rgb), 0) 10%,
      rgba(var(--red-rgb), 0.8) 58%,
      rgba(255, 190, 160, 1) 92%,
      #fff 100%);
    filter: drop-shadow(0 0 5px rgba(var(--red-rgb), 0.9));
    opacity: 0;

    transform-origin: 50% 100%;
    will-change: transform, opacity;
    animation: fall linear infinite;
  }

  .fx i::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #fff 0%, rgba(var(--red-rgb), 0.9) 40%, transparent 72%);
  }
  @keyframes fall {
    0%   { transform: translate3d(0, 0, 0) rotate(15deg) scaleY(0.35); opacity: 0; }
    8%   { opacity: var(--mx, 1); transform: translate3d(-1.2vw, 9vh, 0) rotate(15deg) scaleY(1); }
    66%  { opacity: var(--mx, 1); transform: translate3d(-9.5vw, 68vh, 0) rotate(15deg) scaleY(1); }
    100% { opacity: 0; transform: translate3d(-13vw, 90vh, 0) rotate(15deg) scaleY(0.1); }
  }
  .fx .m1 { left: 26%; animation-duration: 6s;   animation-delay: 1.2s; }
  .fx .m2 { left: 58%; animation-duration: 7s;   animation-delay: 3s;   --mx: 0.7; height: 95px; width: 1.5px; }
  .fx .m3 { left: 78%; animation-duration: 5.5s; animation-delay: 0s; }
  .fx .m4 { left: 42%; animation-duration: 8s;   animation-delay: 5.2s; --mx: 0.55; height: 80px; width: 1.5px; }
  .fx .m5 { left: 90%; animation-duration: 6.6s; animation-delay: 2.1s; --mx: 0.8; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-delay: 0s !important;
      transition-duration: 0.01ms !important;
    }
  }

  .nav-burger {
    display: none;
    width: 32px; height: 32px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    border: none; background: transparent; border-radius: 8px; cursor: pointer;
    transition: background 0.2s ease;
  }
  .nav-burger:hover { background: rgba(255, 255, 255, 0.06); }
  .nav-burger span {
    display: block; width: 18px; height: 2px; border-radius: 2px; background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .navbar.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  .navbar.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile {
    position: fixed; left: 0; right: 0; top: 64px; z-index: 49;
    background: rgba(4, 4, 5, 0.97);
    backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--accent-top), 0 24px 40px -24px rgba(0, 0, 0, 0.9);
    padding: 14px 20px 20px;
    display: flex; flex-direction: column; gap: 4px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  }
  .navbar.nav-open .nav-mobile { transform: none; opacity: 1; pointer-events: auto; }
  .nav-mobile a.nm-link {
    display: block; padding: 13px 12px; border-radius: 10px;
    color: #d6d6dc; font-size: 16px; font-weight: 500; text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
  }
  .nav-mobile a.nm-link:hover, .nav-mobile a.nm-link.active { background: var(--nested-bg); color: #fff; }
  .nav-mobile .nm-divider { height: 1px; background: rgba(255, 255, 255, 0.07); margin: 8px 4px; }
  .nav-mobile .nm-login {
    margin-top: 4px; height: 46px; border: none; border-radius: 11px;
    background: var(--red); color: #fff; font-family: inherit; font-size: 15px; font-weight: 600;
    cursor: pointer; box-shadow: var(--btn-bevel-red);
  }
  .nav-mobile .nm-langs { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px; }
  .nav-mobile .nm-lang {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 9px;
    border: none; background: var(--nested-bg); box-shadow: var(--nested-bevel);
    color: #d6d6dc; font-family: inherit; font-size: 13.5px; cursor: pointer;
  }
  .nav-mobile .nm-lang .flag-img { width: 22px; height: 15px; border-radius: 2px; background-size: cover; background-position: center; }

  @media (max-width: 820px) {
    .nav-links { display: none; }
    .nav-lang { display: none; }
    .btn-login { display: none; }
    .nav-burger { display: inline-flex; }
    .nav-inner { padding: 0 16px; }
  }

  .videos {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 96px 24px 70px;
  }
  .videos-inner {
    max-width: 1180px;
    margin: 0 auto;
  }
  .videos-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
  }
  .videos-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
  }

  .sec-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
  }

  .videos-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }

  .videos-nav button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: var(--nested-bg);
    box-shadow: var(--nested-bevel);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
  }
  .videos-nav button:hover { background: #1b1b1f; }
  .videos-nav button:active { transform: scale(0.94); }
  .videos-nav button:disabled { opacity: 0.35; cursor: default; }
  .videos-nav svg { width: 18px; height: 18px; }

  .videos-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
  }
  .videos-track::-webkit-scrollbar { display: none; }

  .video-card {
    flex: 0 0 calc((100% - 22px) / 2);
    scroll-snap-align: start;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    background: #0a0a0a;
    box-shadow: var(--accent-top);
    transition: transform 0.22s ease;
  }
  .video-card:hover { transform: translateY(-2px); }
  .video-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .yt-lite {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    background: #0a0a0a;
    cursor: pointer;
    overflow: hidden;
  }
  .yt-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease, filter 0.3s ease; }
  .yt-lite::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.28));
    transition: background 0.3s ease;
  }
  .yt-lite:hover .yt-thumb { transform: scale(1.04); filter: brightness(1.06); }
  .yt-lite:hover::after { background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18)); }
  .yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 44px;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
    transition: transform 0.2s ease;
  }
  .yt-play svg { width: 100%; height: 100%; display: block; }
  .yt-play path:first-of-type { opacity: 0.86; transition: opacity 0.2s ease; }
  .yt-lite:hover .yt-play { transform: translate(-50%, -50%) scale(1.07); }
  .yt-lite:hover .yt-play path:first-of-type { opacity: 1; }

  .yt-play-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 31px;
    z-index: 1;
    border-radius: 8px;
    background: rgba(255, 0, 0, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .yt-play-sm::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
  }
  .yt-lite:hover .yt-play-sm { transform: translate(-50%, -50%) scale(1.08); background: #ff0000; }

  .page-spacer {
    height: 80vh;
    background: #000;
  }

  .videos.reveal .videos-head,
  .videos.reveal .video-card {
    opacity: 0;
    transform: translateY(64px) scale(0.96);
    transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.22s ease;
  }
  .videos.reveal .videos-head.in,
  .videos.reveal .video-card.in {
    opacity: 1;
    transform: none;
  }

  @media (max-width: 820px) {
    .video-card { flex-basis: calc((100% - 22px) / 1.18); }
  }
  @media (max-width: 560px) {
    .videos { padding: 44px 20px 90px; }
    .video-card { flex-basis: 88%; }
  }

  .shorts {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 56px 24px 120px;
  }
  .shorts-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 94%, transparent 100%);
  }
  .shorts-track::-webkit-scrollbar { display: none; }

  .short-card {
    flex: 0 0 calc((100% - 4 * 18px) / 5);
    scroll-snap-align: start;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    background: #0a0a0a;
    box-shadow: var(--accent-top);
    transition: transform 0.22s ease;
  }
  .short-card:hover { transform: translateY(-2px); }
  .short-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .shorts.reveal .videos-head,
  .shorts.reveal .short-card {
    opacity: 0;
    transform: translateY(64px) scale(0.96);
    transition: opacity 0.7s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.22s ease;
  }
  .shorts.reveal .videos-head.in,
  .shorts.reveal .short-card.in {
    opacity: 1;
    transform: none;
  }
  @media (max-width: 980px) {
    .short-card { flex-basis: calc((100% - 3 * 18px) / 4); }
  }
  @media (max-width: 720px) {
    .short-card { flex-basis: calc((100% - 2 * 18px) / 3); }
  }
  @media (max-width: 520px) {
    .shorts { padding: 40px 20px 90px; }
    .short-card { flex-basis: calc((100% - 18px) / 2.3); }
  }

  .faq {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 150px 24px 110px;
  }
  .faq-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1fr;
    gap: 56px;
    align-items: start;
  }

  .faq-left { padding-top: 8px; }
  .faq-left h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .faq-left p {
    margin-top: 22px;
    max-width: 360px;
    font-size: 16px;
    line-height: 1.62;
    color: #bababa;
  }

  .faq-right { position: relative; }

  .faq-acc {
    position: relative;
    border: none;
    border-radius: 16px;
    background: var(--panel-bg);
    overflow: hidden;
    box-shadow: var(--accent-top), 0 20px 50px -28px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .faq-item {
    border-top: 1px solid var(--panel-border-soft);
    transition: background 0.25s ease, box-shadow 0.25s ease;
  }
  .faq-item:first-child { border-top: none; }
  .faq-item:hover:not(.open) { background: rgba(255, 255, 255, 0.022); }
  .faq-item.open { background: rgba(255, 255, 255, 0.03); }

  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: clamp(16px, 1.5vw, 21px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #fff;
    text-align: left;
    transition: color 0.2s ease;
  }
  .faq-q:hover { color: #fff; }
  .faq-chev {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #9a9a9a;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  }
  .faq-item.open .faq-chev { transform: rotate(180deg); color: #fff; }

  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-item.open .faq-a { grid-template-rows: 1fr; }
  .faq-a > div { overflow: hidden; }
  .faq-a p {
    margin: 0;
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.66;
    color: #9a9a9a;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .faq-item.open .faq-a p {
    opacity: 1;
    transform: none;
    transition-delay: 0.08s;
  }

  @media (max-width: 880px) {
    .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  }

  .ready {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 60px 24px 96px;
  }
  .ready-card {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    padding: 48px 52px;
    border-radius: 14px;
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    overflow: hidden;
  }
  .ready-text { position: relative; z-index: 1; max-width: 620px; }
  .ready-text h2 {
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .ready-text p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
  }
  .ready-btns {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 208px;
    flex-shrink: 0;
  }
  .ready-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--nested-bevel);
    transition: filter 0.2s ease, background 0.2s ease, transform 0.15s ease;
  }
  .ready-btn:active { transform: scale(0.98); }

  .ready-buy {
    background: var(--red);
    font-weight: 600;
    box-shadow: var(--btn-bevel-red);
  }
  .ready-buy:hover { filter: brightness(1.12); }
  .ready-buy svg { width: 16px; height: 13px; }
  .ready-discord { background: #262626; }
  .ready-discord:hover { background: #303030; }
  .ready-discord img { width: 21px; height: 21px; object-fit: contain; }
  .ready-discord svg { width: 21px; height: 21px; flex: 0 0 auto; }

  @media (max-width: 760px) {
    .ready-card { flex-direction: column; align-items: stretch; gap: 30px; padding: 40px 28px; }
    .ready-btns { width: 100%; }
  }

  .reveal-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.4s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-up.in { opacity: 1; transform: none; }

  .faq-acc.reveal-up { transition-delay: 0.1s; }

  @keyframes enterDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
  @keyframes enterUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  .home .navbar { animation: enterDown 0.45s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .home .headline { animation: enterUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both; }
  .home .hero-sub { animation: enterUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both; }
  .home .hero-actions { animation: enterUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both; }

  @media (prefers-reduced-motion: reduce) {
    .reveal-up { opacity: 1; transform: none; transition: none; }
    .home .navbar, .home .headline, .home .hero-sub, .home .hero-actions { animation: none; }
  }

  .auth-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s;
  }
  .auth-overlay.open { opacity: 1; visibility: visible; }

  .auth-card {
    position: relative;
    width: 400px;
    max-width: calc(100vw - 32px);
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    border-radius: 12px;
    padding: 34px 36px 34px;
    transform: translateY(14px) scale(0.97);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
  }

  .auth-beam { display: none !important; }
  .auth-overlay.open .auth-card { transform: none; opacity: 1; }

  .auth-beam {
    position: absolute;
    inset: -1px;
    border-radius: 11px;
    padding: 1px;
    background: conic-gradient(from var(--beam-angle, 0deg),
      transparent 0deg,
      rgba(var(--red-rgb), 0) 150deg,
      rgba(var(--red-rgb), 0.35) 168deg,
      rgba(var(--red-rgb), 0.8) 178deg,
      var(--red) 180deg,
      transparent 184deg,
      transparent 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: beam-rotate 9s linear infinite;

    animation-play-state: paused;
  }

  .auth-beam::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 11px;
    padding: 2px;
    background: conic-gradient(from var(--beam-angle, 0deg),
      transparent 174deg,
      rgba(var(--red-rgb), 0.6) 178.5deg,
      var(--red) 180deg,
      rgba(var(--red-rgb), 0.6) 181.5deg,
      transparent 186deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: beam-rotate 9s linear infinite;
    animation-play-state: paused;
  }

  .auth-overlay.open .auth-beam,
  .auth-overlay.open .auth-beam::before { animation-play-state: running; }
  @property --beam-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes beam-rotate { to { --beam-angle: 360deg; } }

  .auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    z-index: 2;
  }
  .auth-close:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

  .auth-view { position: relative; z-index: 1; }
  .auth-view[hidden] { display: none; }

  .auth-title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
  }

  .auth-form { display: flex; flex-direction: column; }
  .auth-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
  }

  .auth-input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: none;
    border-radius: 10px;
    background: #070708;
    box-shadow: var(--input-bevel);
    color: #fff;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    outline: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  .auth-input::placeholder { color: rgba(255, 255, 255, 0.32); }
  .auth-input:focus { background: #0a0a0b; box-shadow: var(--input-bevel), inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
  .auth-hint {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
  }
  .auth-hint b { color: rgba(255, 255, 255, 0.7); font-weight: 600; }
  .auth-hint.auth-error { color: #ff6b6b; }

  .otp-row { display: flex; gap: 6px; width: 100%; }
  .otp-box {
    flex: 1 1 0;
    min-width: 0;
    max-width: 52px;
    height: 52px;
    padding: 0;
    text-align: center;
    border: none;
    border-radius: 10px;
    background: #070708;
    box-shadow: var(--input-bevel);
    color: #fff;
    font-family: inherit;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    caret-color: rgba(255, 255, 255, 0.55);
    transition: background 0.18s ease, box-shadow 0.18s ease;
  }
  .otp-box:focus { background: #0a0a0b; box-shadow: var(--input-bevel), inset 0 0 0 1px rgba(255, 255, 255, 0.14); }
  .otp-box.filled { background: #0d0d0e; }

  .auth-verify {
    position: relative;
    width: 100%;
    height: 51px;
    margin-top: 40px;
    border: none;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--btn-bevel-red);
    transition: filter 0.2s ease, transform 0.12s ease;
  }
  .auth-verify:hover { filter: brightness(1.12); }
  .auth-verify:active { transform: scale(0.985); }

  .auth-done {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 0 14px;
    text-align: center;
  }
  .auth-done .check {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--red-rgb), 0.12);
    border: 1px solid rgba(var(--red-rgb), 0.5);
    color: var(--red);
  }
  .auth-done .check svg { width: 28px; height: 28px; }
  .auth-done h2 { font-size: 22px; font-weight: 600; color: #fff; }
  .auth-done p { font-size: 13px; color: rgba(255, 255, 255, 0.45); }

  .footer {
    position: relative;
    z-index: 1;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 56px 24px 32px;
  }
  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-brand { max-width: 320px; }
  .footer-logo { display: flex; align-items: center; gap: 11px; }
  .footer-logo img { width: 36px; height: 36px; object-fit: cover; }
  .footer-logo span { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
  .footer-brand p { margin-top: 16px; font-size: 13.5px; line-height: 1.6; color: #777; }
  .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
  .footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--nested-bg);
    box-shadow: var(--nested-bevel);
    color: #cfcfcf;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .footer-socials a:hover { color: #fff; background: #17171a; }
  .footer-socials svg { width: 18px; height: 18px; }
  .footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
  .footer-col h4 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #ededed;
    margin-bottom: 14px;
  }
  .footer-col a {
    display: block;
    font-size: 14px;
    color: #bdbdbd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    max-width: 1180px;
    margin: 42px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: #666;
  }
  @media (max-width: 680px) {
    .footer-inner { flex-direction: column; gap: 30px; }
  }

  .product {
    position: relative;
    z-index: 1;
    background: #000;
    padding: 128px 24px 110px;
    min-height: 100vh;
  }
  .product-inner { max-width: var(--product-inner-max); margin: 0 auto; }

  .breadcrumb { font-size: 13px; color: rgba(255, 255, 255, 0.5); margin-bottom: 26px; }
  .breadcrumb a { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s ease; }
  .breadcrumb a:hover { color: #fff; }
  .breadcrumb .sep { color: rgba(255, 255, 255, 0.25); margin: 0 8px; }
  .breadcrumb .current { color: rgba(255, 255, 255, 0.85); }

  .product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: start;
  }

  .gallery { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
  .gallery-main {
    position: relative;
    aspect-ratio: 15 / 8;
    border-radius: 12px;
    overflow: hidden;
    background: #0d0d0d;
    cursor: zoom-in;
  }
  .gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.4s ease; }
  .gallery-main img.swapping { opacity: 0; }

  .gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .gallery-main:hover .gallery-zoom { opacity: 1; }
  .zoom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    box-shadow: var(--nested-bevel);
    color: #fff;
    transform: scale(0.9);
    transition: transform 0.25s ease;
  }
  .gallery-main:hover .zoom-icon { transform: scale(1); }
  .zoom-icon svg { width: 22px; height: 22px; }

  .gallery-thumbs-wrap { min-width: 0; }
  .gallery-thumbs {
    min-width: 0;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .thumb {
    flex: 0 0 96px;
    height: 64px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #0d0d0d;
    cursor: pointer;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.2s ease;
  }
  .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .thumb:hover { opacity: 0.8; }

  .thumb.active { opacity: 1; }

  .product-info {
    border: none;
    border-radius: 14px;
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    padding: 30px 32px 32px;
  }

  .product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px 13px;
  }

  .product-head-divider { height: 1px; background: #1a1a1a; margin: 16px 0; }

  .product-title {
    font-size: clamp(26px, 2.7vw, 34px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--red);
  }

  .status-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1;
  }
  .status-dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .status-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: status-pulse 2.4s ease-out infinite;
  }
  @keyframes status-pulse {
    0% { transform: scale(1); opacity: 0.55; }
    70%, 100% { transform: scale(2.6); opacity: 0; }
  }
  .status-undetected { color: #05df72; background: #091f14; }
  .status-undetected .status-dot { background: #05df72; }
  .status-maintenance { color: #ffc247; background: #2c2005; }
  .status-maintenance .status-dot { background: #ffc247; }
  .status-updating { color: #4aa3ff; background: #0a1a2e; }
  .status-updating .status-dot { background: #4aa3ff; }
  .status-detected { color: #ff5f5f; background: #2c0a0a; }
  .status-detected .status-dot { background: #ff5f5f; }

  .product-desc { margin-top: 4px; font-size: 14.5px; line-height: 1.62; color: var(--text-faint); }
  .product-divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 22px 0; }

  .plan-label { font-size: 13px; font-weight: 500; color: var(--text-faint); margin-bottom: 12px; }

  .plan-wrap { position: relative; }
  .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .plan {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border: none;
    border-radius: 11px;
    background: var(--nested-bg);
    box-shadow: var(--nested-bevel);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s ease;
  }
  .plan-name { font-size: 15px; font-weight: 500; color: var(--text-dim); transition: color 0.2s ease; white-space: nowrap; }
  .plan.selected .plan-name { color: #fff; }

  .product-price-row { display: flex; align-items: baseline; gap: 10px; margin: 24px 0 18px; }
  .product-price { font-size: 32px; font-weight: 500; color: #fff; letter-spacing: -0.02em; }
  .product-price-sub { font-size: 13px; color: rgba(255, 255, 255, 0.45); }

  .product-actions { display: flex; gap: 12px; }
  .btn-cart, .btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 52px;
    border-radius: 12px;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.14s ease;
  }

  .btn-cart {
    flex: 1;
    background: #262626;
    color: #fff;
    font-size: 14.5px;
    font-weight: 500;
    box-shadow: var(--nested-bevel);
  }

  .btn-buy {
    flex: 1;
    background: var(--red);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--btn-bevel-red);
  }
  .btn-buy:hover { filter: brightness(1.12); }
  .btn-cart:active, .btn-buy:active { transform: scale(0.98); }
  .btn-cart svg { width: 17px; height: 17px; }
  .btn-buy svg { width: 17px; height: 14px; }

  .product-reassure { margin-top: 16px; display: flex; gap: 18px; font-size: 12px; color: rgba(255, 255, 255, 0.4); }
  .product-reassure span { display: inline-flex; align-items: center; gap: 6px; }
  .product-reassure svg { width: 14px; height: 14px; color: rgba(255, 255, 255, 0.35); }

  @media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; gap: 26px; }
  }
  @media (max-width: 460px) {
    .plan-grid { grid-template-columns: 1fr; }

    .product-actions { flex-direction: column; }
    .product-actions .btn-cart, .product-actions .btn-buy { flex: 0 0 auto; width: 100%; height: 52px; }
  }

  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
  }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lightbox img {
    max-width: min(1100px, 90vw);
    max-height: 86vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.14s ease;
  }
  .lightbox-nav:hover { background: #141416; border-color: #2a2a2e; }
  .lightbox-nav:active { transform: translateY(-50%) scale(0.94); }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .lightbox-nav svg { width: 20px; height: 20px; }
  @media (max-width: 560px) {
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-nav { width: 42px; height: 42px; }
  }
  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .lightbox-close:hover { background: #141416; border-color: #2a2a2e; }

  .cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }
  .cart-overlay.open { opacity: 1; visibility: visible; }
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 420px;
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    border-left: 1px solid #1a1a1a;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.65);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .cart-overlay.open .cart-drawer { transform: none; }
  .cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid #1a1a1a;
  }
  .cart-head h3 { font-size: 16px; font-weight: 600; color: #fff; }
  .cart-head .count { color: rgba(255, 255, 255, 0.4); font-weight: 500; font-size: 14px; margin-left: 4px; }
  .cart-close {
    width: 32px; height: 32px; border: none; border-radius: 8px;
    background: transparent; color: rgba(255, 255, 255, 0.4); font-size: 18px; cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .cart-close:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

  .cart-items { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
  .cart-item {
    display: flex;
    gap: 13px;
    padding: 12px;
    border-radius: 12px;
    background: #0d0d0d;
    transition: border-color 0.2s ease;
  }
  .cart-item:hover { border-color: #222226; }
  .cart-item-img { flex: 0 0 64px; height: 64px; border-radius: 9px; overflow: hidden; background: #0d0d0d; box-shadow: var(--nested-bevel); }
  .cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .cart-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
  .cart-item-name { font-size: 14px; font-weight: 600; color: #fff; }
  .cart-item-plan { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin-top: 2px; }
  .cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
  .cart-qty { display: flex; align-items: center; gap: 2px; border: 1px solid #1c1c1f; border-radius: 8px; padding: 2px; }
  .cart-qty button {
    width: 24px; height: 24px; border-radius: 6px; border: none;
    background: transparent; color: #cfcfcf; cursor: pointer; font-size: 14px; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: background 0.18s ease, color 0.18s ease;
  }
  .cart-qty button:hover { background: #17171a; color: #fff; }
  .cart-qty span { font-size: 13px; color: #fff; min-width: 20px; text-align: center; }
  .cart-item-price { font-size: 14px; font-weight: 600; color: #fff; }
  .cart-qty-group { display: flex; align-items: center; gap: 8px; }
  .cart-item-trash {
    background: none; border: none; color: rgba(255, 255, 255, 0.32); cursor: pointer; padding: 5px; line-height: 0;
    border-radius: 7px; transition: color 0.2s ease, background 0.2s ease;
  }
  .cart-item-trash:hover { color: var(--red); background: rgba(255, 255, 255, 0.05); }
  .cart-item-trash svg { width: 16px; height: 16px; display: block; }

  .cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255, 255, 255, 0.35); text-align: center; padding: 40px; }
  .cart-empty svg { width: 42px; height: 42px; opacity: 0.5; }
  .cart-empty p { font-size: 14px; }
  .cart-empty-cta {
    margin-top: 2px; display: inline-flex; align-items: center; height: 40px; padding: 0 18px;
    border-radius: 10px; border: none; background: var(--nested-bg); color: #fff; box-shadow: var(--nested-bevel);
    font-size: 14px; font-weight: 500; text-decoration: none;
    transition: background 0.2s ease;
  }
  .cart-empty-cta:hover { border-color: #26262a; background: #0d0d0d; }

  .cart-foot { border-top: 1px solid #1a1a1a; padding: 16px 20px 18px; background: #0d0d0d; }
  .cart-line { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
  .cart-line b { color: #fff; font-weight: 500; }
  .cart-subtotal { display: flex; align-items: baseline; justify-content: space-between; margin: 4px 0 14px; }
  .cart-subtotal .label { font-size: 14px; color: #fff; font-weight: 500; }
  .cart-subtotal .amount { font-size: 22px; font-weight: 700; color: #fff; }
  .cart-checkout {
    width: 100%; height: 50px; border: none; border-radius: 12px; background: var(--red); color: #fff;
    font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
    box-shadow: var(--btn-bevel-red);
    transition: filter 0.2s ease, transform 0.14s ease;
  }
  .cart-checkout:hover { filter: brightness(1.12); }
  .cart-checkout:active { transform: scale(0.99); }
  .cart-checkout:disabled { opacity: 0.4; cursor: default; filter: none; }
  .cart-reassure { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 13px; font-size: 11.5px; color: rgba(255, 255, 255, 0.38); }
  .cart-reassure span { display: inline-flex; align-items: center; gap: 5px; }
  .cart-reassure svg { width: 12px; height: 12px; }

  .tabs { margin: 104px 0 40px; }
  .tabs-bar {
    position: relative;
    display: flex;
    gap: 28px;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tabs-bar::-webkit-scrollbar { display: none; }
  .tab {
    position: relative;
    padding: 0 0 12px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #b4b4bd;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
  }
  .tab:hover { color: #fff; }
  .tab.active { color: var(--red); }

  .tab-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: left 0.32s cubic-bezier(0.22, 1, 0.36, 1), width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .tab-panel {
    margin-top: 22px;
    min-height: 220px;
    border-radius: 14px;
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    padding: 36px;
  }
  .tab-panel[hidden] { display: none; }

  .tab-lead { font-size: 15px; line-height: 1.7; color: var(--text-dim); max-width: 880px; }
  .tab-lead b { color: #fff; font-weight: 700; }
  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 26px;
  }

  .info-card {
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: var(--nested-bg);
    box-shadow: var(--nested-bevel);
  }
  .info-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--nested-bg);
    box-shadow: var(--nested-bevel);
    color: var(--red);
    margin-bottom: 13px;
  }
  .info-ic svg { width: 19px; height: 19px; }
  .info-card h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
  .info-card p { font-size: 13.5px; line-height: 1.55; color: var(--text-faint); }

  .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
  .feature-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--text-dim);
  }
  .feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
  }

  .product .reveal-up {
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .product .product-info.reveal-up { transition-delay: 0.1s; }
  .product .gallery-thumbs-wrap.reveal-up { transition-delay: 0.16s; }

  .blog { position: relative; z-index: 1; background: #000; padding: 128px 24px 110px; min-height: 100vh; }
  .blog-inner { max-width: 1300px; margin: 0 auto; }
  .blog-head { display: flex; align-items: center; gap: 44px; margin: 26px 0 50px; }
  .blog-head-img {
    width: 220px;
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--accent-top);
    flex-shrink: 0;
  }
  .blog-head-text h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 600; color: #fff; letter-spacing: -0.02em; line-height: 1; }
  .blog-head-text p { margin-top: 16px; font-size: 15px; line-height: 1.6; color: rgba(154, 154, 162, 0.85); max-width: 470px; }

  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .blog-card {
    display: flex;
    flex-direction: column;
    padding: 9px;
    border: none;
    border-radius: 12px;
    background: var(--panel-bg);
    box-shadow: var(--accent-top);
    transition: transform 0.25s ease;
  }
  .blog-card:hover { transform: translateY(-3px); }
  .blog-card-img { height: 188px; border-radius: 9px; overflow: hidden; background: #0a0a0a; }
  .blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .blog-card-divider { height: 1px; background: var(--panel-border-soft); margin: 14px 2px 0; }
  .blog-card-body { display: flex; flex-direction: column; flex: 1; padding: 14px 8px 8px; }
  .blog-card-body h3 { font-size: 18px; font-weight: 600; color: #fff; line-height: 1.25; }
  .blog-card-body p { margin-top: 11px; font-size: 13px; line-height: 1.6; color: rgba(154, 154, 162, 0.85); flex: 1; }
  .blog-card-btn {
    align-self: flex-start;
    margin-top: 18px;
    padding: 8px 16px;
    border-radius: 9px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--btn-bevel-red);
    transition: filter 0.2s ease, transform 0.14s ease;
  }
  .blog-card-btn:hover { filter: brightness(1.12); }
  .blog-card-btn:active { transform: scale(0.97); }
  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-head { flex-direction: column; align-items: flex-start; gap: 28px; }
  }
  @media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

  .blog-anim {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .blog-anim.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .blog-anim { opacity: 1; transform: none; transition: none; }
  }

  .post { position: relative; z-index: 1; background: #000; padding: 124px 24px 110px; min-height: 100vh; }

  .post-inner { max-width: 720px; margin: 0 auto; }
  .post-title {
    margin-top: 6px;
    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.022em;
    line-height: 1.14;
  }

  .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    font-size: 13.5px;
    color: var(--text-faint);
  }
  .post-cat {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 6px;
    background: #0d0d0d;
    box-shadow: var(--accent-top);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-dim);
  }
  .post-dot { color: rgba(255, 255, 255, 0.24); }

  .post-sub {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.62;
    color: var(--text-dim);
  }
  .post-banner {
    margin: 30px 0 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--accent-top);
    aspect-ratio: 16 / 7;
    background: #0d0d0d;
  }
  .post-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .post-body p { font-size: 16.5px; line-height: 1.85; color: var(--text-dim); margin-bottom: 24px; }

  .post-lead { font-size: 19px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; }

  .post-body h2 { font-size: 21px; font-weight: 600; color: #fff; letter-spacing: -0.015em; line-height: 1.25; margin: 46px 0 14px; }
  .post-divider { height: 1px; background: var(--panel-border-soft); margin: 52px 0 0; }
  .post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-faint);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .post-back:hover { color: #fff; }
  .post-back svg { width: 16px; height: 16px; }

  .store {
    position: relative; z-index: 1; padding: 168px 24px 120px; min-height: 100vh; overflow: hidden;

    background:
      radial-gradient(90% 55% at 50% 102%, rgba(125, 14, 14, 0.18), transparent 66%),
      radial-gradient(60% 45% at 88% 3%, rgba(85, 10, 10, 0.12), transparent 60%),
      radial-gradient(55% 40% at 8% 40%, rgba(70, 8, 8, 0.08), transparent 62%),
      #000;
  }

  .store-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; display: block; }
  .store-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

  .store-head { text-align: center; margin: 0 0 52px; }
  .store-head h1 { font-size: 42px; font-weight: 600; color: #fff; letter-spacing: -0.02em; line-height: 1.05; }
  .store-controls { display: flex; align-items: center; justify-content: flex-start; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }

  .store-select { position: relative; }
  .store-select select {
    appearance: none; -webkit-appearance: none;
    width: 100%; height: 38px; padding: 0 30px 0 14px;
    border: none; border-radius: 10px; box-shadow: var(--nested-bevel);
    background: #0d0d0d url("assets/fig-caret.svg") no-repeat right 13px center;
    background-size: 9px 5px;
    color: #fff; font-family: inherit; font-size: 12.5px; font-weight: 500;
    cursor: pointer; outline: none;
    transition: background 0.2s ease;
  }
  .store-select select:hover { background-color: #131315; }
  .store-select option { background: #111113; color: #fff; }
  .game-select { width: 128px; }
  .price-select { width: 124px; }

  .search-expand {
    display: flex; align-items: center; flex-shrink: 0;
    width: 38px; height: 38px; overflow: hidden;
    border: none; border-radius: 10px; background: #0d0d0d; box-shadow: var(--input-bevel);
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .search-expand.open { width: 220px; }
  .search-btn {
    flex: 0 0 38px; width: 38px; height: 38px; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0; background: transparent; color: rgba(255, 255, 255, 0.72);
    cursor: pointer; transition: color 0.2s ease;
  }
  .search-btn:hover { color: #fff; }
  .search-btn svg { width: 16px; height: 16px; display: block; }
  .search-expand input {
    flex: 1; width: 0; min-width: 0; height: 100%; padding: 0;
    border: 0; background: transparent; color: #fff;
    font-family: inherit; font-size: 12px; outline: none; opacity: 0;
    transition: opacity 0.18s ease;
  }
  .search-expand.open input { opacity: 1; padding: 0 12px 0 2px; }
  .search-expand input::placeholder { color: rgba(255, 255, 255, 0.32); }

  @keyframes storeRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .store-head { animation: storeRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .store-controls { animation: storeRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both; }

  .game-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
  .game-card {
    flex: 0 0 calc((100% - 48px) / 4); max-width: calc((100% - 48px) / 4);
    border: none; border-radius: 13px; background: #0d0d0d; overflow: hidden;
    box-shadow: var(--accent-top);
    isolation: isolate;
    opacity: 0;
    transition: flex-basis 0.44s cubic-bezier(0.22, 1, 0.36, 1), max-width 0.44s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.5s ease;
  }
  .game-card.in { opacity: 1; }
  .game-card.open { flex-basis: 100%; max-width: 100%; }
  .game-card.is-hidden { display: none; }

  .game-card.tuck { opacity: 0; transform: scale(0.95); pointer-events: none; transition: opacity 0.26s ease, transform 0.26s ease; }
  .game-card.gone { display: none; }

  .game-head {
    position: relative; display: block; width: 100%;
    height: 310px;
    margin: 0; padding: 0; border: 0; cursor: pointer; overflow: hidden;
    border-radius: 12px;
    background-position: center; background-size: cover; background-repeat: no-repeat;
    background-clip: padding-box;
    transform: translateZ(0);
    text-align: left;
    transition: height 0.44s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .game-card.open .game-head { height: 210px; border-radius: 12px 12px 0 0; }
  .game-card[data-game="dayz"] .game-head { background-image: url("assets/dayz_game.jpg"); }
  .game-card[data-game="marathon"] .game-head { background-image: url("assets/Marathon%20Game.png"); }
  .game-card[data-game="rust"] .game-head { background-image: url("assets/rust_banner.jpeg"); }
  .game-card[data-game="war-thunder"] .game-head { background-image: url("assets/War%20Thunder.jpg"); }
  .game-card[data-game="fortnite"] .game-head { background-image: url("assets/Fortnite.jpg"); }
  .game-card[data-game="cs2"] .game-head { background-image: url("assets/Counter_Strike_CS2.jpg"); }
  .game-card[data-game="valorant"] .game-head { background-image: url("assets/valorant.jpg"); }

  .game-card[data-game="apex"] .game-head { background-image: url("assets/rust_banner.jpeg"); }
  .game-card[data-game="warzone"] .game-head { background-image: url("assets/dayz_game.jpg"); }
  .game-card[data-game="tarkov"] .game-head { background-image: url("assets/Marathon%20Game.png"); }
  .game-card[data-game="gta"] .game-head { background-image: url("assets/rust_banner.jpeg"); }
  .game-card[data-game="arma"] .game-head { background-image: url("assets/Counter_Strike_CS2.jpg"); }
  .game-head::after {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg, rgba(6, 6, 7, 0.16) 0%, rgba(6, 6, 7, 0.86) 100%);
    transition: opacity 0.25s ease;
  }

  .game-card:not(.open) .game-head:hover::after { opacity: 0.72; }

  .game-head::before {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 60px; z-index: 1;
    background: linear-gradient(180deg, transparent, #0d0d0d);
    opacity: 0; pointer-events: none; transition: opacity 0.32s ease;
  }
  .game-card.open .game-head::before { opacity: 1; }
  .game-head-text { position: absolute; left: 18px; bottom: 16px; z-index: 2; transition: left 0.32s ease, bottom 0.32s ease; }
  .game-name { display: block; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.02em; line-height: 1.05; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55); transition: font-size 0.32s ease; }
  .game-count { display: block; margin-top: 5px; font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, 0.7); transition: font-size 0.32s ease; }
  .game-count .game-count-n { color: #fff; font-weight: 600; }

  .game-card.open .game-head-text { left: 24px; bottom: 22px; }
  .game-card.open .game-name { font-size: 36px; }
  .game-card.open .game-count { font-size: 15px; margin-top: 9px; }
  .game-chev {
    position: absolute; right: 18px; bottom: 26px; z-index: 2;
    width: 18px; height: 18px; color: rgba(255, 255, 255, 0.85);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), right 0.32s ease, bottom 0.32s ease;
  }
  .game-card.open .game-chev { transform: rotate(180deg); right: 24px; bottom: 40px; }

  .game-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
  .game-card.open .game-panel { grid-template-rows: 1fr; transition-delay: 0.32s; }
  .game-panel-inner { overflow: hidden; }
  .game-products { display: flex; flex-direction: column; gap: 12px; padding: 14px; }

  .store-card {
    position: relative; height: 200px;
    display: flex; align-items: center; gap: 20px;
    padding: 17px 20px;
    border: none; border-radius: 12px;
    background: var(--nested-bg);
    box-shadow: var(--nested-bevel);
    transition: background 0.2s ease;
  }
  .store-card.is-hidden { display: none; }
  .store-card:hover { background: #17171a; }
  .store-card-img { flex: 0 0 291px; width: 291px; height: 166px; border-radius: 9px; overflow: hidden; background: #0a0a0a; }
  .store-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .store-card-main { align-self: flex-start; min-width: 0; padding-top: 2px; }
  .store-card-main h3 { font-size: 23px; font-weight: 700; color: #fff; line-height: normal; }
  .store-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
  .badge-type {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 3px 8px; border-radius: 5px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 12px; line-height: 1; color: rgba(255, 255, 255, 0.9);
  }
  .badge-type .ic { width: 16px; height: 13px; display: block; flex-shrink: 0; }
  .badge-type span { line-height: 1; }

  .badge-status { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 7px; background: #091f14; line-height: 1; }
  .badge-status .dot { width: 6px; height: 6px; display: block; flex-shrink: 0; }
  .badge-status span { font-size: 12px; font-weight: 600; line-height: 1; color: #05df72; }
  .store-buy { position: absolute; right: 20px; bottom: 18px; display: flex; align-items: center; gap: 16px; }
  .store-price { font-size: 16px; font-weight: 500; color: rgba(255, 255, 255, 0.7); white-space: nowrap; }
  .store-price b { color: #fff; font-weight: 500; }
  .store-purchase {
    width: 116px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 0; border-radius: 9px; background: var(--red); color: #fff;
    font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none;
    box-shadow: var(--btn-bevel-red);
    transition: filter 0.2s ease, transform 0.14s ease;
  }
  .store-purchase:hover { filter: brightness(1.1); }
  .store-purchase:active { transform: scale(0.98); }

  .store-empty { display: none; margin-top: 20px; padding: 60px 20px; text-align: center; color: rgba(255, 255, 255, 0.4); font-size: 14px; }
  .store-empty.show { display: block; }

  @media (max-width: 1040px) { .game-card { flex-basis: calc((100% - 32px) / 3); max-width: calc((100% - 32px) / 3); } .game-card.open { flex-basis: 100%; max-width: 100%; } }
  @media (max-width: 760px) {
    .store { padding: 116px 18px 84px; }
    .store-head h1 { font-size: 38px; }
    .game-card { flex-basis: calc((100% - 16px) / 2); max-width: calc((100% - 16px) / 2); }
    .game-card.open { flex-basis: 100%; max-width: 100%; }
    .game-card.open .game-name { font-size: 30px; }
    .store-card { height: auto; flex-direction: column; align-items: stretch; gap: 12px; padding: 14px; }
    .store-card-img { flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 16 / 9; }
    .store-card-main { align-self: stretch; }
    .store-buy { position: static; justify-content: space-between; gap: 12px; margin-top: 4px; }
    .store-price { font-size: 14px; }
  }
  @media (max-width: 470px) {
    .game-card { flex-basis: 100%; max-width: 100%; }
    .game-head { height: 200px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .store-head, .store-controls { animation: none; }
    .game-card { animation: none; opacity: 1; }
    .store-card { opacity: 1; transform: none; transition: border-color 0.2s ease; }
  }

  .dash { position: relative; z-index: 1; background: #000; padding: 130px 24px 110px; min-height: 100vh; }
  .dash-inner { max-width: 1180px; margin: 0 auto; }

  .dash-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
  .dash-id { display: flex; align-items: center; gap: 14px; }
  .dash-avatar {
    width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(180deg, #2a0d0d, #160707); border: 1px solid #2a1414;
    color: var(--red); font-size: 19px; font-weight: 700;
  }
  .dash-id-text { display: flex; flex-direction: column; gap: 3px; }
  .dash-email { font-size: 15px; font-weight: 600; color: #fff; }
  .dash-since { font-size: 13px; color: rgba(255, 255, 255, 0.42); }
  .dash-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .dash-action {
    display: inline-flex; align-items: center; height: 38px; padding: 0 15px; border-radius: 10px;
    border: none; background: var(--nested-bg); color: #d6d6d6;
    box-shadow: var(--nested-bevel);
    font-size: 14px; font-weight: 500; text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .dash-action:hover { color: #fff; background: #17171a; }
  .dash-logout {
    display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 15px; border-radius: 10px;
    border: none; background: var(--nested-bg); color: #d6d6d6;
    box-shadow: var(--nested-bevel);
    font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .dash-logout svg { width: 16px; height: 16px; }
  .dash-logout:hover { background: #17171a; color: #fff; }
  .o-status.pending, .o-status.processing, .o-status.on_hold { color: #4aa3ff; background: #0a1a2e; }
  .o-status.cancelled, .o-status.chargeback { color: #ff5f5f; background: #2c0a0a; }
  .dash-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 46px 20px; color: var(--text-faint); text-align: center; }
  .o-prod { color: rgba(255, 255, 255, 0.72); }
  .dash-pagination { margin-top: 18px; display: flex; justify-content: center; }
  .dash-pagination .pagination { display: inline-flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
  .dash-pagination .page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px; border-radius: 9px; background: var(--nested-bg); box-shadow: var(--nested-bevel); color: #d6d6d6; text-decoration: none; font-size: 13px; border: none; }
  .dash-pagination .active .page-link, .dash-pagination .page-link:hover { background: var(--red); color: #fff; }
  .dash-pagination .disabled .page-link { opacity: 0.4; pointer-events: none; }

  .dash-tabs { display: flex; gap: 28px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); margin-bottom: 28px; }
  .dash-tab {
    position: relative; padding: 0 2px 14px; background: none; border: none;
    color: rgba(255, 255, 255, 0.5); font-family: inherit; font-size: 15px; font-weight: 500;
    cursor: pointer; transition: color 0.2s ease;
  }
  .dash-tab:hover { color: rgba(255, 255, 255, 0.82); }
  .dash-tab.active { color: #fff; }
  .dash-tab.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--red); border-radius: 2px; }

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

  .dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
  .dash-stat { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: none; border-radius: 14px; background: #0d0d0d; box-shadow: var(--accent-top); }
  .dash-stat-ic {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; display: grid; place-items: center;
    background: var(--nested-bg); border: none; box-shadow: var(--nested-bevel); color: var(--red);
  }
  .dash-stat-text .value.dash-stat-sm { font-size: 17px; }
  .dash-stat-ic svg { width: 20px; height: 20px; }
  .dash-stat-text { display: flex; flex-direction: column; gap: 4px; }
  .dash-stat-text .value { font-size: 26px; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1; }
  .dash-stat-text .label { font-size: 13px; color: rgba(255, 255, 255, 0.45); }

  .dash-card { border: none; border-radius: 16px; background: #0d0d0d; box-shadow: var(--accent-top); padding: 22px 24px; }
  .dash-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
  .dash-card-head h2 { font-size: 17px; font-weight: 600; color: #fff; }
  .dash-viewall { font-size: 13px; color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.2s ease; }
  .dash-viewall:hover { color: #fff; }

  .dash-table { width: 100%; border-collapse: collapse; }
  .dash-table th {
    text-align: left; padding: 12px; font-size: 12px; font-weight: 500;
    color: rgba(255, 255, 255, 0.4); border-bottom: 1px solid #1a1a1a;
  }
  .dash-table th.ta-r { text-align: right; }
  .dash-table td { padding: 15px 12px; border-bottom: 1px solid #111113; }
  .dash-table tbody tr:last-child td { border-bottom: none; }
  .dash-table tbody tr { transition: background 0.16s ease; }
  .dash-table tbody tr:hover { background: rgba(255, 255, 255, 0.015); }
  .o-id { font-size: 14px; font-weight: 600; color: #fff; }
  .o-date { font-size: 13px; color: rgba(255, 255, 255, 0.4); }
  .o-price { font-size: 14px; font-weight: 600; color: #fff; text-align: right; }
  .o-status { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 7px; font-size: 12px; font-weight: 600; line-height: 1; }
  .o-status.completed { color: #05df72; background: #091f14; }
  .o-status.refunded { color: #f0a83a; background: rgba(240, 168, 58, 0.1); }

  @media (max-width: 760px) {
    .dash { padding: 110px 18px 80px; }
    .dash-stats { grid-template-columns: 1fr; }
    .dash-table th:nth-child(2), .dash-table td:nth-child(2) { display: none; }
  }

  .status {
    position: relative; z-index: 1; padding: 128px 24px 110px; min-height: 100vh; overflow: hidden;
    background:
      radial-gradient(90% 55% at 50% 102%, rgba(125, 14, 14, 0.18), transparent 66%),
      radial-gradient(60% 45% at 88% 3%, rgba(85, 10, 10, 0.12), transparent 60%),
      radial-gradient(55% 40% at 8% 40%, rgba(70, 8, 8, 0.08), transparent 62%),
      #000;
  }
  .status-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }

  .status-head { margin-bottom: 24px; }
  .status-head h1 { font-size: 42px; font-weight: 600; color: #fff; letter-spacing: -0.02em; line-height: 1.05; }

  .status-filter {
    padding: 16px 18px; margin-bottom: 22px;
    border: none; border-radius: 12px; background: #0d0d0d;
    box-shadow: var(--accent-top);
  }
  .status-filter-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
  .status-filter-label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }
  .status-search { position: relative; display: flex; align-items: center; width: 240px; max-width: 100%; }
  .status-search svg { position: absolute; left: 12px; width: 15px; height: 15px; color: var(--text-faint); pointer-events: none; }
  .status-search input {
    width: 100%; height: 38px; padding: 0 14px 0 36px;
    border-radius: 9px; border: none;
    background: #050506;
    box-shadow: var(--input-bevel), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    color: #fff; font-family: inherit; font-size: 13.5px; outline: none;
    transition: box-shadow 0.18s ease;
  }
  .status-search input::placeholder { color: var(--text-faint); }
  .status-search input:focus { box-shadow: var(--input-bevel), inset 0 0 0 1px rgba(255, 255, 255, 0.16); }
  .status-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .status-chip {
    height: 36px; padding: 0 16px; border-radius: 9px;
    border: none; background: var(--nested-bg); box-shadow: var(--nested-bevel);
    font-family: inherit; font-size: 13.5px; font-weight: 500; color: var(--text-dim);
    cursor: pointer; transition: background 0.16s ease, color 0.16s ease;
  }
  .status-chip:hover { color: #fff; background: #17171a; }
  .status-chip.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); }

  .status-grid { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }
  .status-card {
    position: relative; display: block; text-decoration: none;
    flex: 0 0 calc((100% - 48px) / 4); max-width: calc((100% - 48px) / 4);
    height: 200px; border-radius: 13px; overflow: hidden;
    border: none; background: #0d0d0d; box-shadow: var(--accent-top);
    background-size: cover; background-position: center; background-repeat: no-repeat;
    transition: transform 0.2s ease;

    -webkit-backface-visibility: hidden; backface-visibility: hidden;
  }
  .status-card:hover { transform: translate3d(0, -2px, 0); }
  .status-card.is-hidden { display: none; }
  .status-card::after {
    content: ""; position: absolute; inset: 0;

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.72) 74%, rgba(0, 0, 0, 1) 100%);
  }
  .status-card[data-game="dayz"] { background-image: url("assets/dayz_game.jpg"); }
  .status-card[data-game="marathon"] { background-image: url("assets/Marathon%20Game.png"); }
  .status-card[data-game="rust"] { background-image: url("assets/rust_banner.jpeg"); }
  .status-card[data-game="war-thunder"] { background-image: url("assets/War%20Thunder.jpg"); }
  .status-card[data-game="fortnite"] { background-image: url("assets/Fortnite.jpg"); }
  .status-card[data-game="valorant"] { background-image: url("assets/valorant.jpg"); }
  .status-card[data-game="apex"] { background-image: url("assets/rust_banner.jpeg"); }
  .status-card[data-game="cs2"] { background-image: url("assets/Counter_Strike_CS2.jpg"); }
  .status-card-name {
    position: absolute; left: 18px; bottom: 16px; z-index: 2;
    font-size: 20px; font-weight: 600; color: #fff; letter-spacing: -0.01em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  }
  .status-card-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px; border-radius: 7px; font-size: 12px; font-weight: 600; line-height: 1;
  }
  .status-card-badge .d { width: 6px; height: 6px; border-radius: 50%; display: block; }
  .status-card-badge.online { background: #091f14; color: #05df72; }
  .status-card-badge.online .d { background: #05df72; }
  .status-card-badge.maintenance { background: #2c2005; color: #ffc247; }
  .status-card-badge.maintenance .d { background: #ffc247; }
  .status-card-badge.updating { background: #0a1a2e; color: #4aa3ff; }
  .status-card-badge.updating .d { background: #4aa3ff; }
  .status-card-badge.detected { background: #2c0a0a; color: #ff5f5f; }
  .status-card-badge.detected .d { background: #ff5f5f; }

  .status-empty { display: none; padding: 50px 20px; text-align: center; color: var(--text-faint); font-size: 14px; }
  .status-empty.show { display: block; }

  @media (max-width: 1040px) {
    .status-card { flex-basis: calc((100% - 32px) / 3); max-width: calc((100% - 32px) / 3); }
  }
  @media (max-width: 760px) {
    .status { padding: 104px 18px 80px; }
    .status-head h1 { font-size: 34px; }
    .status-filter-top { flex-direction: column; align-items: stretch; gap: 10px; }
    .status-search { width: 100%; }
    .status-card { flex-basis: calc((100% - 16px) / 2); max-width: calc((100% - 16px) / 2); }
  }
  @media (max-width: 460px) {
    .status-card { flex-basis: 100%; max-width: 100%; }
  }

  .wk { padding: 96px 24px 80px; }
  .wk-shell { display: flex; gap: 26px; max-width: 1180px; margin: 0 auto; align-items: flex-start; }

  .wk-side { width: 244px; flex-shrink: 0; position: sticky; top: 88px; }
  .wk-search { position: relative; display: flex; align-items: center; margin-bottom: 20px; }
  .wk-search svg { position: absolute; left: 13px; width: 16px; height: 16px; color: var(--text-faint); pointer-events: none; }
  .wk-search input {
    width: 100%; height: 42px; padding: 0 14px 0 38px;
    border-radius: 11px; border: none; box-shadow: var(--input-bevel);
    background: #0d0d0d; color: #fff; font-family: inherit; font-size: 14px; outline: none;
    transition: box-shadow 0.18s ease;
  }
  .wk-search input::placeholder { color: var(--text-faint); }
  .wk-search input:focus { border-color: var(--panel-border-hover); background: #0b0b0d; }

  .wk-cat { margin-bottom: 4px; }
  .wk-cat-btn {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    width: 100%; padding: 8px 10px; border: 0; background: none; cursor: pointer;
    font-family: inherit; font-size: 11px; font-weight: 600; letter-spacing: 0.09em;
    text-transform: uppercase; color: var(--text-faint);
    transition: color 0.15s ease;
  }
  .wk-cat-btn:hover { color: var(--text-dim); }
  .wk-cat-chev { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.22s ease; }
  .wk-cat:not([data-open]) .wk-cat-chev { transform: rotate(-90deg); }
  .wk-cat-items {
    display: grid; grid-template-rows: 1fr; overflow: hidden;
    transition: grid-template-rows 0.24s ease;
  }
  .wk-cat:not([data-open]) .wk-cat-items { grid-template-rows: 0fr; }
  .wk-cat-items-inner { min-height: 0; padding: 2px 0 6px; }

  .wk-navlink {
    display: block; position: relative; padding: 8px 12px; margin: 1px 0; border-radius: 9px;
    font-size: 14px; font-weight: 500; color: var(--text-dim); text-decoration: none; cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .wk-navlink:hover { color: #fff; background: rgba(255, 255, 255, 0.035); }

  .wk-navlink.active { color: #fff; background: rgba(255, 255, 255, 0.055); }
  .wk-nav-empty { padding: 8px 12px; font-size: 13px; color: var(--text-faint); }

  .wk-content {
    position: relative; flex: 1; min-width: 0;
    border: none; border-radius: 18px; overflow: hidden;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.022), transparent 42%),
      linear-gradient(180deg, #0d0d10 0%, #0a0a0c 45%, #070709 100%);
    box-shadow: var(--accent-top);
  }
  .wk-content::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 150px 150px; opacity: 0.03;
    animation: wkGrain 1.6s steps(4) infinite;
  }
  @keyframes wkGrain {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-6px, 4px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-4px, -3px); }
    100% { transform: translate(0, 0); }
  }
  .wk-content-inner { position: relative; z-index: 1; padding: 44px 48px; max-width: 760px; }

  .wk-doc { animation: wkFade 0.24s ease; }
  @keyframes wkFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  .wk-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
  .wk-doc h1 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: #fff; }
  .wk-lead { margin-top: 14px; padding-bottom: 22px; border-bottom: 1px solid var(--panel-border); font-size: 16px; line-height: 1.6; color: var(--text-dim); }
  .wk-doc h2 { margin: 30px 0 12px; font-size: 18px; font-weight: 600; color: rgba(255, 255, 255, 0.82); letter-spacing: -0.01em; }
  .wk-doc p { margin-top: 12px; font-size: 15px; line-height: 1.75; color: var(--text-dim); }
  .wk-doc b { color: #fff; font-weight: 600; }
  .wk-doc ul, .wk-doc ol { margin: 14px 0 0; padding-left: 22px; }
  .wk-doc li { margin: 8px 0; font-size: 15px; line-height: 1.7; color: var(--text-dim); }
  .wk-doc ul li::marker { color: var(--text-faint); }
  .wk-doc ol li::marker { color: var(--red); font-weight: 700; }
  .wk-callout { margin-top: 22px; padding: 14px 17px; border-radius: 10px; border: 1px solid var(--panel-border-soft); border-left: 2.5px solid var(--red); background: rgba(var(--red-rgb), 0.04); font-size: 14px; line-height: 1.65; color: var(--text-dim); }
  .wk-code { margin-top: 12px; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--panel-border-soft); background: rgba(255, 255, 255, 0.03); font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 13.5px; color: #fff; overflow-x: auto; }
  .wk-table { width: 100%; margin-top: 16px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--panel-border-soft); border-radius: 10px; overflow: hidden; font-size: 14px; }
  .wk-table th { text-align: left; padding: 11px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); background: rgba(255, 255, 255, 0.02); border-bottom: 1px solid var(--panel-border-soft); }
  .wk-table td { padding: 12px 14px; color: var(--text-dim); border-bottom: 1px solid var(--panel-border); }
  .wk-table tr:last-child td { border-bottom: none; }

  @media (max-width: 820px) {
    .wk-shell { flex-direction: column; }
    .wk-side { width: 100%; position: static; }
    .wk-nav { display: flex; flex-wrap: wrap; gap: 6px; }
    .wk-nav-group { width: 100%; }
    .wk-content-inner { padding: 30px 24px; }
  }

  .legal { position: relative; z-index: 1; background: #000; padding: 128px 24px 104px; min-height: 100vh; }
  .legal-inner { max-width: 760px; margin: 0 auto; }
  .legal-crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint); margin-bottom: 26px; }
  .legal-crumb a { color: var(--text-dim); text-decoration: none; }
  .legal-crumb a:hover { color: #fff; }
  .legal-crumb .sep { color: rgba(255, 255, 255, 0.22); }
  .legal-head { padding-bottom: 26px; border-bottom: 1px solid var(--panel-border); }
  .legal-head h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: #fff; }
  .legal-updated { margin-top: 14px; font-size: 13.5px; color: var(--text-faint); }
  .legal-body h2 { margin: 42px 0 12px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: #fff; }
  .legal-body p { margin-top: 12px; font-size: 15.5px; line-height: 1.8; color: var(--text-dim); }
  .legal-body ul { margin: 14px 0 0; padding-left: 22px; }
  .legal-body li { margin: 8px 0; font-size: 15.5px; line-height: 1.75; color: var(--text-dim); }
  .legal-body ul li::marker { color: var(--text-faint); }
  .legal-body b { color: #fff; font-weight: 600; }

.auth-modal .modal-dialog { max-width: 420px; margin: auto; min-height: 100%; display: flex; align-items: center; }
.auth-modal .modal-content.auth-modal-card {
  position: relative;
  background: #0d0d0d;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  box-shadow: var(--accent-top), 0 30px 80px rgba(0, 0, 0, 0.6);
  padding: 34px 30px 30px;
  color: #fff;
  overflow: visible;
}
.modal-backdrop.show { opacity: 0.72; background: #000; }
.auth-modal .auth-verify { margin-top: 26px; }

.game-head { background-size: cover; background-position: center; background-repeat: no-repeat; }
.status-card { background-size: cover; background-position: center; background-repeat: no-repeat; }

.sa-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600; line-height: 1; white-space: nowrap;
  box-shadow: var(--nested-bevel);
}
.sa-badge-dot { width: 7px; height: 7px; border-radius: 50%; position: relative; flex: none; }
.sa-badge-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: inherit; animation: sa-pulse 1.8s ease-out infinite;
}
@keyframes sa-pulse { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }

.status-card .sa-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.store-card .sa-badge { box-shadow: none; }

.hero-sub { margin-top: 16px; }
.hero-actions { margin-top: 22px; }

.product-desc, .product-desc * { white-space: normal !important; }
.product-desc p { margin: 0 0 8px; }
.product-desc p:last-child, .product-desc :last-child { margin-bottom: 0; }
.product-divider { margin: 16px 0; }

.product-info .sa-badge { font-size: 13.5px; padding: 7px 13px; border-radius: 8px; gap: 7px; }
.product-info .sa-badge .sa-badge-dot { width: 7px; height: 7px; }

.plan.out-of-stock { opacity: 0.5; cursor: not-allowed; }

.product-tagline { font-size: 16px; line-height: 1.6; color: var(--text-dim); margin: 0; }
.product-tagline b { color: #fff; font-weight: 600; }

.product-tagline-block { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.product-tagline-block .ptl-text { font-size: 16px; line-height: 1.55; color: var(--text-dim); }
.product-tagline-block .ptl-text + .ptl-bullet { margin-top: 3px; }
.product-tagline-block .ptl-bullet {
  position: relative; padding-left: 22px;
  font-size: 16px; line-height: 1.5; color: var(--text-dim);
}
.product-tagline-block .ptl-bullet::before {
  content: ""; position: absolute; left: 7px; top: 10px;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.product-tagline-block b, .feature-list b { color: #fff; font-weight: 600; }

.tab-panel.tab-list { padding: 24px 30px; min-height: 0; }
.tab-list .feature-list { gap: 7px; }
.tab-list .feature-list li { padding-left: 16px; }
.tab-list .feature-list li::before { top: 8px; }

.tab-lead ul, .product-desc ul, .editor ul, .post-body ul {
  list-style: none; margin: 14px 0; padding: 0; display: flex; flex-direction: column; gap: 10px;
}
.tab-lead ul li, .product-desc ul li, .editor ul li, .post-body ul li {
  position: relative; padding-left: 18px; line-height: 1.55;
}
.tab-lead ul li::before, .product-desc ul li::before, .editor ul li::before, .post-body ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.35);
}

.prod-extra { margin-top: 46px; }
.prod-extra-title { font-size: 20px; font-weight: 700; color: #fff; margin: 0 0 18px; letter-spacing: -0.01em; }
.bundle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.bundle-card { background: #0d0d0d; border-radius: 14px; box-shadow: var(--accent-top); padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.bundle-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bundle-name { font-size: 15px; font-weight: 600; color: #fff; }
.bundle-save { font-size: 12px; font-weight: 600; color: var(--red); background: rgba(var(--red-rgb, 229,45,45), 0.12); padding: 4px 9px; border-radius: 7px; flex: 0 0 auto; }
.bundle-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bundle-items li { display: flex; align-items: center; gap: 11px; }
.bundle-item-thumb { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 8px; overflow: hidden; background: var(--nested-bg); box-shadow: var(--nested-bevel); }
.bundle-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bundle-item-name { flex: 1; min-width: 0; font-size: 13.5px; color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bundle-item-tag { font-size: 11.5px; color: var(--text-faint); flex: 0 0 auto; }
.bundle-add { margin-top: 2px; height: 44px; border: none; border-radius: 11px; background: var(--red); color: #fff; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; box-shadow: var(--btn-bevel-red); transition: filter 0.2s ease; }
.bundle-add:hover { filter: brightness(1.12); }

.upsell-list { display: flex; flex-direction: column; gap: 12px; }

#page-loader {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  background: #050505; transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-loader.pl-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.pl-logo { width: 54px; height: 54px; object-fit: contain; animation: pl-pulse 1.4s ease-in-out infinite; }
.pl-bar { width: 150px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.pl-bar::after { content: ""; display: block; width: 40%; height: 100%; border-radius: 3px; background: var(--red); animation: pl-slide 1.1s ease-in-out infinite; }
@keyframes pl-pulse { 0%, 100% { opacity: 0.55; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1); } }
@keyframes pl-slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(275%); } }
@media (prefers-reduced-motion: reduce) { .pl-logo, .pl-bar::after { animation: none; } }

.cartp { padding: 40px 0 90px; }
.cartp-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.cartp-title { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin: 10px 0 26px; display: flex; align-items: center; gap: 12px; }
.cartp-count { font-size: 14px; font-weight: 600; color: var(--text-dim); background: var(--nested-bg); box-shadow: var(--nested-bevel); padding: 3px 11px; border-radius: 999px; }
.cartp-alert { background: #2c2005; color: #ffc247; border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; font-size: 13.5px; }
.cartp-alert p { margin: 0; }
.cartp-grid { display: grid; grid-template-columns: 1fr 360px; gap: 22px; align-items: start; }

.cartp-items { display: flex; flex-direction: column; }
.cartp-list { display: flex; flex-direction: column; gap: 12px; }
.cartp-item { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 14px; background: #0d0d0d; box-shadow: var(--accent-top); }
.cartp-item-img { flex: 0 0 96px; width: 96px; height: 66px; border-radius: 10px; overflow: hidden; background: var(--nested-bg); box-shadow: var(--nested-bevel); display: block; }
.cartp-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cartp-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.cartp-item-name { font-size: 15.5px; font-weight: 600; color: #fff; text-decoration: none; }
.cartp-item-name:hover { color: var(--red); }
.cartp-item-plan { font-size: 13px; color: var(--text-faint); }
.cartp-deal { font-size: 12px; color: var(--red); margin-top: 3px; }
.cartp-item-controls { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.cartp-item-price { font-size: 15px; font-weight: 700; color: #fff; min-width: 74px; text-align: right; }

.cartp-summary { position: sticky; top: 88px; background: #0d0d0d; border-radius: 16px; box-shadow: var(--accent-top); padding: 22px; }
.cartp-summary-title { font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 16px; }
.cartp-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--text-dim); margin-bottom: 9px; }
.cartp-row-discount { color: var(--red); font-size: 13px; }
.cartp-total { display: flex; align-items: baseline; justify-content: space-between; margin: 14px 0 4px; padding-top: 14px; border-top: 1px solid #1a1a1a; }
.cartp-total span:first-child { font-size: 15px; font-weight: 600; color: #fff; }
.cartp-total-amount { font-size: 24px; font-weight: 800; color: #fff; }
.cartp-error { color: #ff6b6b; font-size: 13px; margin: 10px 0 0; }
.cartp-checkout { width: 100%; height: 52px; margin-top: 16px; border: none; border-radius: 12px; background: var(--red); color: #fff; font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; box-shadow: var(--btn-bevel-red); transition: filter 0.2s ease; }
.cartp-checkout:hover:not(:disabled) { filter: brightness(1.12); }
.cartp-checkout:disabled { opacity: 0.6; cursor: not-allowed; }
.cartp-reassure { display: flex; justify-content: center; gap: 20px; margin-top: 14px; font-size: 12px; color: var(--text-faint); }
.cartp-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; min-height: 220px; color: var(--text-faint); text-align: center; background: #0d0d0d; border-radius: 14px; box-shadow: var(--accent-top); }

@media (max-width: 900px) {
  .cartp-grid { grid-template-columns: 1fr; }
  .cartp-summary { position: static; }
}
@media (max-width: 560px) {
  .cartp-item { flex-wrap: wrap; }
  .cartp-item-controls { width: 100%; justify-content: space-between; gap: 10px; }
}


.showcase {
  position: relative;
  z-index: 1;
  background: #000;
  padding: 10px 24px 46px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase.sc-off { display: none; }
.showcase.sc-on { opacity: 1; transform: none; }
.showcase-card {
  display: block;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: var(--accent-top), 0 22px 55px -32px rgba(0, 0, 0, 0.85);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--accent-top), 0 34px 66px -30px rgba(0, 0, 0, 0.95);
}
.showcase-media { display: block; width: 100%; height: auto; }
.showcase-note {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 6px;
  pointer-events: none;
}
@media (max-width: 700px) {
  .showcase { padding: 6px 16px 34px; }
  .showcase-card { border-radius: 11px; }
}