/* ============================================================
   BLACK VIPER LABS — Home Page Premium Styles
   ============================================================ */

/* ════════════════════════════════════
   CINEMATIC HERO
════════════════════════════════════ */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020202;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}
.b1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,255,65,.07) 0%, transparent 60%); top: -200px; left: -200px; animation-delay: 0s; }
.b2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,200,50,.05) 0%, transparent 60%); bottom: -100px; right: -100px; animation-delay: -4s; }
.b3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,255,100,.04) 0%, transparent 60%); top: 50%; left: 40%; animation-delay: -8s; }
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-40px) scale(1.1)} 66%{transform:translate(-20px,20px) scale(.95)} }
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,255,65,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,65,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-scanline {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,.6), transparent);
  animation: scanLine 6s linear infinite;
  pointer-events: none;
}
@keyframes scanLine { from { top: -2px; } to { top: 100%; } }

.hero-cinema-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 60px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.hero-cinema-left {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

/* BADGE */
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(0,255,65,.06);
  border: 1px solid rgba(0,255,65,.18);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  color: var(--g);
  letter-spacing: .18em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUpIn .8s ease .3s forwards;
}
.hc-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g); animation: pulse 1.4s ease-in-out infinite; }
.hc-badge-new { background: var(--g); color: #000; padding: 2px 8px; border-radius: 100px; font-size: .65rem; }

/* TITLE */
.hc-title {
  display: flex;
  flex-direction: column;
  line-height: .88;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUpIn .9s ease .45s forwards;
}
.hc-line1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(240,240,240,.7);
  letter-spacing: .06em;
}
.hc-line2 {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  letter-spacing: .03em;
  position: relative;
  display: inline-block;
}
.hc-line3 {
  font-family: var(--font-d);
  font-size: clamp(5rem, 11vw, 9.5rem);
  color: var(--g);
  letter-spacing: .01em;
  line-height: .85;
  text-shadow: 0 0 60px rgba(0,255,65,.5), 0 0 120px rgba(0,255,65,.2);
  animation: titleGlow 3s ease-in-out infinite;
}
@keyframes titleGlow {
  0%,100% { text-shadow: 0 0 60px rgba(0,255,65,.5), 0 0 120px rgba(0,255,65,.2); }
  50% { text-shadow: 0 0 100px rgba(0,255,65,.9), 0 0 200px rgba(0,255,65,.4), 0 0 300px rgba(0,255,65,.15); }
}

/* GLITCH EFFECT */
.glitch-text {
  color: rgba(240,240,240,.85);
  position: relative;
}
.glitch-text::before, .glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
}
.glitch-text::before {
  color: #00ff41;
  animation: glitchTop 4s ease-in-out infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}
.glitch-text::after {
  color: #ff0044;
  animation: glitchBottom 4s ease-in-out infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}
@keyframes glitchTop {
  0%,89%,100% { opacity: 0; transform: translate(0); }
  90% { opacity: .8; transform: translate(-3px, -2px); }
  92% { opacity: 0; transform: translate(3px, 2px); }
  94% { opacity: .6; transform: translate(-2px, 0); }
  96% { opacity: 0; }
}
@keyframes glitchBottom {
  0%,89%,100% { opacity: 0; transform: translate(0); }
  91% { opacity: .6; transform: translate(3px, 2px); }
  93% { opacity: 0; transform: translate(-2px, -1px); }
  95% { opacity: .5; transform: translate(2px, 0); }
  97% { opacity: 0; }
}

/* TYPEWRITER */
.hc-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  min-height: 2.2em;
  opacity: 0;
  animation: fadeUpIn .8s ease .7s forwards;
}
.typewriter-cursor {
  display: inline-block;
  color: var(--g);
  animation: cursorBlink .7s ease-in-out infinite;
  font-weight: 100;
}
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* CATEGORY PILLS — horizontal scroll, fits any screen */
.hc-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUpIn .8s ease .8s forwards;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(163,255,0,.45) transparent;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.hc-pills.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.hc-pills.is-dragging .hc-pill { pointer-events: none; }
.hc-pills::-webkit-scrollbar { height: 4px; }
.hc-pills::-webkit-scrollbar-thumb {
  background: rgba(163,255,0,.4);
  border-radius: 4px;
}
.hc-pill {
  padding: 6px 14px;
  border: 1px solid rgba(0,255,65,.2);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .12em;
  transition: all .25s;
  background: rgba(0,255,65,.04);
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
}
.hc-pill:hover { border-color: var(--g); color: var(--g); background: rgba(0,255,65,.1); transform: translateY(-2px); }

/* CTA */
.hc-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUpIn .8s ease .9s forwards;
}

/* Brand / collection scroller under hero CTA */
.brand-scroller {
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  margin-bottom: 36px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  opacity: 0;
  animation: fadeUpIn .8s ease 1.05s forwards;
}
.brand-scroller-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: brandMarquee var(--brand-duration, 24s) linear infinite;
  animation-play-state: running !important;
  will-change: transform;
}
.brand-scroller:hover .brand-scroller-track { animation-play-state: running !important; }
@keyframes brandMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.brand-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: linear-gradient(135deg, rgba(163,255,0,.08), rgba(0,0,0,.35));
  border: 1px solid rgba(163,255,0,.22);
  border-radius: 999px;
  text-decoration: none;
  color: #e8ffe0;
  white-space: nowrap;
  transition: border-color .2s, transform .2s, background .2s;
}
.brand-chip:hover {
  border-color: var(--g);
  transform: translateY(-2px);
  background: rgba(163,255,0,.12);
}
.brand-chip img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.08);
}
.brand-chip span {
  font-family: var(--font-d), 'Bebas Neue', sans-serif;
  font-size: .95rem;
  letter-spacing: .1em;
}
.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--g);
  color: #000;
  font-family: var(--font-d);
  font-size: 1.1rem;
  letter-spacing: .1em;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .3s, transform .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.hc-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.hc-btn-primary:hover::before { transform: translateX(100%); }
.hc-btn-primary:hover { background: #00e63a; box-shadow: 0 0 50px rgba(0,255,65,.5), 0 0 100px rgba(0,255,65,.2); transform: translateY(-3px); }
.hc-btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-d);
  font-size: 1rem;
  letter-spacing: .08em;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  cursor: pointer;
  transition: all .25s;
}
.hc-btn-video:hover { border-color: rgba(0,255,65,.4); color: var(--g); background: rgba(0,255,65,.05); }
.play-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.hc-btn-video:hover .play-icon { background: var(--g); color: #000; transform: scale(1.1); }

/* STATS */
.hc-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUpIn .8s ease 1.1s forwards;
}
.hc-stat { text-align: center; padding: 0 20px; }
.hc-stat:first-child { padding-left: 0; }
.hc-stat-sep { width: 1px; height: 36px; background: rgba(0,255,65,.15); }
.hc-stat-n { font-family: var(--font-d); font-size: 2rem; color: var(--g); display: inline; line-height: 1; }
.hc-stat-s { font-family: var(--font-d); font-size: 1.2rem; color: var(--g); }
.hc-stat-l { display: block; font-family: var(--font-h); font-size: .64rem; font-weight: 700; color: var(--dim); letter-spacing: .18em; margin-top: 2px; }

@keyframes fadeUpIn { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── PRODUCT SHOWCASE ── */
.hero-cinema-right {
  flex: 0 0 auto;
  width: 500px;
  height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUpIn 1s ease .6s forwards;
}
.product-showcase { position: relative; width: 100%; height: 100%; }
.showcase-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0,255,65,.08);
  animation: srPulse 4s ease-in-out infinite;
}
.sr1 { width: 320px; height: 320px; animation-delay: 0s; }
.sr2 { width: 420px; height: 420px; animation-delay: .6s; }
.sr3 { width: 520px; height: 520px; animation-delay: 1.2s; }
@keyframes srPulse { 0%,100%{opacity:.25;transform:translate(-50%,-50%) scale(1)} 50%{opacity:.7;transform:translate(-50%,-50%) scale(1.03)} }
.showcase-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,255,65,.18) 0%, transparent 65%);
  animation: scGlow 5s ease-in-out infinite;
}
@keyframes scGlow { 0%,100%{opacity:.6;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.15)} }

.showcase-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,255,65,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 30px rgba(0,255,65,.12);
  transition: transform .3s, box-shadow .3s;
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-card .showcase-logo-badge,
.showcase-card .img-logo-stamp {
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(163,255,0,.5));
  animation: logoPulse 3s ease-in-out infinite;
  opacity: .9;
}
.showcase-card:hover { box-shadow: 0 25px 80px rgba(0,0,0,.7), 0 0 50px rgba(0,255,65,.25); }
.sc-main {
  width: 260px; height: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: scFloat 7s ease-in-out infinite;
  z-index: 3;
}
.sc-main .showcase-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
  padding: 20px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
}
.sc-price { color: var(--g); }
@keyframes scFloat { 0%,100%{transform:translate(-50%,-50%) translateY(0)} 50%{transform:translate(-50%,-50%) translateY(-12px)} }
.sc-top {
  width: 120px; height: 120px;
  top: 30px; right: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  animation: scFloat2 8s ease-in-out infinite;
  z-index: 2;
}
.sc-top span, .sc-bottom span {
  position: absolute;
  bottom: 8px;
  font-family: var(--font-d);
  font-size: .72rem;
  color: var(--g);
  letter-spacing: .1em;
  background: rgba(0,0,0,.7);
  padding: 2px 6px;
  border-radius: 4px;
}
.sc-bottom {
  width: 110px; height: 110px;
  bottom: 40px; left: 40px;
  animation: scFloat3 9s ease-in-out infinite;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}
@keyframes scFloat2 { 0%,100%{transform:translateY(0) rotate(3deg)} 50%{transform:translateY(-8px) rotate(3deg)} }
@keyframes scFloat3 { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-10px) rotate(-3deg)} }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(5,5,5,.92);
  border: 1px solid rgba(0,255,65,.25);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  font-size: .75rem;
  z-index: 4;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  white-space: nowrap;
}
.float-badge strong { display: block; font-family: var(--font-h); font-weight: 700; color: var(--text); }
.float-badge small { color: var(--muted); font-size: .65rem; }
.fb-icon { font-size: 1.2rem; flex-shrink: 0; }
.fb1 { top: 20px; left: 20px; animation: fbFloat1 6s ease-in-out infinite; }
.fb2 { top: 50%; right: -10px; transform: translateY(-80px); animation: fbFloat2 7s ease-in-out infinite; }
.fb3 { bottom: 30px; right: 30px; animation: fbFloat3 8s ease-in-out infinite; }
@keyframes fbFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fbFloat2 { 0%,100%{transform:translateY(-80px)} 50%{transform:translateY(-88px)} }
@keyframes fbFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* SCROLL DOWN */
.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeUpIn .8s ease 1.5s forwards;
}
.hero-scroll-down span { font-size: .6rem; color: var(--dim); letter-spacing: .35em; font-family: var(--font-h); font-weight: 700; }
.scroll-arrow-wrap { width: 20px; height: 32px; border: 1px solid rgba(0,255,65,.3); border-radius: 12px; display: flex; align-items: flex-start; justify-content: center; padding: 4px 0; }
.scroll-arrow { width: 4px; height: 8px; background: var(--g); border-radius: 2px; animation: scrollPing 1.5s ease-in-out infinite; }
@keyframes scrollPing { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }

/* ════════════════════════════════════
   CATEGORY V2 - Image Cards
════════════════════════════════════ */
.home-cats-v2 { padding: 100px 0; background: var(--bg); }
.cats-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-v2 {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  height: 380px;
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.cat-v2:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(0,255,65,.15);
  border-color: var(--border2);
}
.cat-v2-img {
  position: absolute;
  inset: 0;
}
.cat-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.45) saturate(.7);
}
.cat-v2:hover .cat-v2-img img {
  transform: scale(1.1);
  filter: brightness(.35) saturate(.5);
}
.cat-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  transition: background .3s;
}
.cat-v2:hover .cat-v2-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.98) 0%, rgba(0,20,10,.6) 60%, rgba(0,10,5,.2) 100%);
}
.cat-v2-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.cat-v2-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  transition: transform .3s;
}
.cat-v2:hover .cat-v2-icon { transform: scale(1.3) rotate(-5deg); }
.cat-v2-content h3 {
  font-family: var(--font-d);
  font-size: 1.8rem;
  letter-spacing: .08em;
  color: var(--g);
  margin-bottom: 6px;
  transition: text-shadow .3s;
}
.cat-v2:hover h3 { text-shadow: 0 0 20px rgba(0,255,65,.5); }
.cat-v2-content p { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 12px; line-height: 1.5; }
.cat-v2-count {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  letter-spacing: .15em;
}
.cat-v2-arrow {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.4rem;
  color: var(--g);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s, transform .3s;
}
.cat-v2:hover .cat-v2-arrow { opacity: 1; transform: translateX(0); }

/* Accent line on left */
.cat-v2::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--cat-color, var(--g));
  border-radius: 3px;
  opacity: 0;
  transform: scaleY(0);
  transition: opacity .3s, transform .4s;
  z-index: 3;
}
.cat-v2:hover::before { opacity: 1; transform: scaleY(1); }

/* ════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════ */
.video-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #030803 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.video-section-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,255,65,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,65,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.video-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.video-feat-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.vf-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); }
.vf-check { width: 20px; height: 20px; background: rgba(0,255,65,.12); border: 1px solid rgba(0,255,65,.3); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--g); flex-shrink: 0; }

/* Video thumbnail */
.video-thumb-wrap { display: flex; flex-direction: column; gap: 12px; }
.video-thumb {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s;
}
.video-thumb:hover { border-color: var(--border2); box-shadow: 0 0 40px rgba(0,255,65,.15); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); transition: filter .3s, transform .4s; }
.video-thumb:hover img { filter: brightness(.4); transform: scale(1.03); }
.video-thumb .showcase-logo-badge {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 20px rgba(163,255,0,.6)) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 4;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.play-btn-big {
  position: relative;
  width: 72px; height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,65,.4);
  animation: playRing 2s ease-in-out infinite;
}
@keyframes playRing { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.12);opacity:1} }
.play-btn-core {
  width: 72px; height: 72px;
  background: var(--g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(0,255,65,.4);
}
.play-btn-big:hover .play-btn-core { transform: scale(1.1); box-shadow: 0 0 50px rgba(0,255,65,.7); }
.video-duration {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .15em;
}
.video-grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.video-grid-small img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--border);
  filter: brightness(.6);
  transition: filter .3s, transform .3s, border-color .3s;
}
.video-grid-small img:hover { filter: brightness(.8); transform: scale(1.03); border-color: var(--border2); }

/* VIDEO MODAL */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.video-modal-overlay.open { opacity: 1; visibility: visible; }
.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  transform: scale(.9);
  transition: transform .3s;
}
.video-modal-overlay.open .video-modal-box { transform: scale(1); }
.video-modal-close {
  position: absolute;
  top: -44px; right: 0;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color .2s;
}
.video-modal-close:hover { color: var(--g); }
.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ════════════════════════════════════
   ATHLETE / PRODUCT STRIP — infinite seamless marquee
════════════════════════════════════ */
.athlete-strip {
  overflow: hidden;
  height: 280px;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(163,255,0,.03), transparent 40%, rgba(163,255,0,.03));
}
/* Soft edge hints only — do not hide incoming photos */
.athlete-strip::before, .athlete-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 20px;
  z-index: 3;
  pointer-events: none;
}
.athlete-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.athlete-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.athlete-strip-track {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.athlete-strip-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 24px 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  animation: none !important;
}

.athlete-card {
  width: 170px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(163,255,0,.18);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
  transform: translateY(0) scale(1) rotate(0deg);
  /* Short transitions — long ones fight the moving strip and feel choppy */
  transition:
    transform .18s ease-out,
    border-color .25s,
    box-shadow .25s,
    filter .25s;
  cursor: pointer;
  filter: brightness(.88);
  text-decoration: none;
  color: inherit;
  display: block;
}
.athlete-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.7) saturate(1.05);
  transition: filter .4s, transform .5s cubic-bezier(.22,.61,.36,1);
}
.athlete-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  opacity: 0;
  transition: opacity .35s;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%);
  pointer-events: none;
}
.athlete-overlay span {
  font-family: var(--font-d);
  font-size: 1.05rem;
  color: var(--g);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(163,255,0,.7);
  transform: translateY(8px);
  transition: transform .35s;
}

/* Manual hover (desktop) */
.athlete-card:hover,
.athlete-card.is-focus {
  border-color: rgba(163,255,0,.6);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 32px rgba(163,255,0,.28);
  filter: brightness(1);
  z-index: 2;
}
.athlete-card:hover img,
.athlete-card.is-focus img {
  filter: brightness(1) saturate(1.25);
  transform: scale(1.12);
}
.athlete-card:hover .athlete-overlay,
.athlete-card.is-focus .athlete-overlay { opacity: 1; }
.athlete-card:hover .athlete-overlay span,
.athlete-card.is-focus .athlete-overlay span { transform: translateY(0); }

/* Auto spotlight — light lift only (heavy scale/rotate made the strip feel choppy) */
.athlete-card.is-focus-side {
  transform: translateY(-6px) scale(1.04);
  z-index: 3;
}
.athlete-card.is-focus-center {
  transform: translateY(-10px) scale(1.08);
  z-index: 4;
  border-color: rgba(163,255,0,.75);
  box-shadow: 0 20px 56px rgba(0,0,0,.6), 0 0 40px rgba(163,255,0,.35);
}
.athlete-card.is-focus-side.ac-left {
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
}
.athlete-card.is-focus-side.ac-right {
  transform: translateY(-6px) scale(1.04) rotate(2deg);
}

/* Hide logo stamps on category weapon cards */
.home-cats-v2 .img-logo-stamp,
.cat-v2-img .img-logo-stamp { display: none !important; }

/* ════════════════════════════════════
   MAGNETIC BUTTON
════════════════════════════════════ */
.magnetic-btn { transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s !important; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:1100px) {
  .hero-cinema-right { width: 400px; height: 440px; }
  .cats-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-v2 { height: 300px; }
  .video-section-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media(max-width:768px) {
  .hero-cinema-inner { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-cinema-right { display: none; }
  .hc-pills { justify-content: flex-start; }
  .hc-cta { justify-content: center; }
  .hc-stats { justify-content: center; flex-wrap: wrap; }
  .hc-stat-sep { display: none; }
  .cats-v2-grid { grid-template-columns: 1fr 1fr; }
  .cat-v2 { height: 240px; }
  .athlete-card { width: 130px; height: 160px; }
  .athlete-strip { height: 230px; }
}
@media(max-width:480px) {
  .cats-v2-grid { grid-template-columns: 1fr; }
  .hc-title .hc-line3 { font-size: clamp(3.5rem, 14vw, 5rem); }
}
