/* ═══════════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --neon:      #a2ff00;
  --neon-dim:  rgba(162,255,0,0.45);
  --neon-glow: rgba(162,255,0,0.3);
  --dark:      #080a05;
  --dark2:     #0f120a;
  --white:     #ffffff;
}

body {
  background: #000;
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.55) 100%);
  border-bottom: 1px solid rgba(162,255,0,0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(6,8,3,0.97);
  border-bottom-color: rgba(162,255,0,0.22);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
}

/* Logo */
.nav__logo { display: flex; align-items: center; cursor: pointer; }
.nav__logo-img {
  height: 46px; width: auto;
  object-fit: contain;
  transition: filter 0.3s, transform 0.3s;
}
.nav__logo-img:hover {
  filter: drop-shadow(0 0 8px var(--neon-dim));
  transform: scale(1.05);
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__item { position: relative; }

.nav__link {
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 8px 13px;
  display: flex; align-items: center; gap: 4px;
  position: relative;
  transition: color 0.25s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px;
  width: 0; height: 2px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  transition: width 0.3s ease;
}

.nav__item:hover > .nav__link,
.nav__link.active 
{ 
  color: var(--neon); 
}

.nav__item:hover > .nav__link::after,
.nav__link.active::after 
{ 
  width: calc(100% - 26px); 
}

.nav__arrow
 { 
  font-size: 9px; 
  transition: transform 0.3s; 
  display: inline-flex; 
  align-items: center; 
}
.nav__arrow i 
{ 
  font-size: 9px; 
  line-height: 1; 
  transition: transform 0.3s; 
}
.nav__item:hover > .nav__link .nav__arrow i 
{ 
  transform: rotate(180deg); 
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  background: rgba(6,9,3,0.97);
  border: 1px solid rgba(162,255,0,0.16);
  border-left: 3px solid var(--neon);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  min-width: 210px;
  padding: 10px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 300;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 20px rgba(162,255,0,0.04);
}

.nav__item--drop:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown__link {
  display: block;
  padding: 9px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  text-transform: uppercase;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s, background 0.2s;
}

.dropdown__link:hover {
  color: var(--neon);
  border-left-color: var(--neon);
  padding-left: 28px;
  background: rgba(162,255,0,0.05);
}

/* Right side */
.nav__right { display: flex; align-items: center; gap: 14px; position: relative; z-index: 10; }

.nav__cart {
  position: relative;
  background: transparent; border: none;
  cursor: pointer; color: rgba(255,255,255,0.7);
  padding: 6px;
  display: flex; align-items: center;
  transition: color 0.2s;
  font-size: 20px;
}
.nav__cart:hover { color: var(--neon); }

.nav__cart-badge {
  position: absolute; top: 0; right: 0;
  width: 16px; height: 16px;
  background: var(--neon); color: #060d00;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav__cta-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #060d00;
  background: var(--neon);
  border: 2px solid var(--neon);
  cursor: pointer;
  padding: 0 24px;
  height: 38px;
  width: auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  transition: color 0.25s ease, box-shadow 0.3s ease;
  z-index: 0;
}


.nav__cta-btn .btn-label {
  position: relative;
  z-index: 2;
  color: inherit;
  pointer-events: none;
}

.nav__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1;
  pointer-events: none;
}

.nav__cta-btn:hover::before 
{ 
  transform: translateX(0%); 
}

.nav__cta-btn:hover 
{
  color: var(--neon);
  box-shadow: 0 0 18px rgba(184,255,0,0.65), 0 0 40px rgba(184,255,0,0.2);
}

.nav__cta-btn:active 
{ 
  box-shadow: 0 0 30px rgba(184,255,0,0.9); 
}


.nav__hamburger {
  display: flex; 
  flex-direction: column; 
  gap: 5px;
  background: transparent; 
  border: none; 
  cursor: pointer; 
  padding: 4px;
  position: relative; 
  z-index: 5;
}
.nav__hamburger span {
  display: block; 
  width: 24px; 
  height: 2px; 
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}


.nav__hamburger:hover span:nth-child(1),
.nav__hamburger:hover span:nth-child(2),
.nav__hamburger:hover span:nth-child(3) { background: var(--neon); }

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--neon); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--neon); }

/* OFF-CANVAS SIDEBAR */
.offcanvas {
  position: fixed;
  top: 0; right: -420px;
  width: 380px; height: 100vh;
  background: rgba(6,9,3,0.98);
  border-left: 1px solid rgba(162,255,0,0.18);
  z-index: 500;
  padding: 40px 32px;
  overflow-y: auto;
  transition: right 0.45s cubic-bezier(0.77,0,0.18,1);
  box-shadow: -10px 0 60px rgba(0,0,0,0.8);
}

.offcanvas.open { right: 0; }

.offcanvas__close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent; 
  border: 1px solid rgba(162,255,0,0.3);
  color: rgba(255,255,255,0.7); 
  font-size: 18px;
  width: 36px; 
  height: 36px; 
  border-radius: 4px;
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: color 0.2s, 
  border-color 0.2s, background 0.2s;
  line-height: 1;
}
.offcanvas__close:hover { 
  color: var(--neon); border-color: var(--neon); background: rgba(162,255,0,0.06); 
}

.offcanvas__logo { margin-bottom: 20px; }
.offcanvas__logo-img { height: 44px; width: auto; object-fit: contain; }

.offcanvas__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(162,255,0,0.1);
}


.offcanvas__contact { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  margin-bottom: 32px; }

.offcanvas__contact-item {
  display: flex; 
  gap: 14px; 
  align-items: flex-start;
}

.offcanvas__contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(162,255,0,0.08);
  border: 1px solid rgba(162,255,0,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--neon);
  font-size: 16px;
}

.offcanvas__contact-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon); text-transform: uppercase;
  margin-bottom: 4px;
}

.offcanvas__contact-value {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 12.5px; color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Social links */
.offcanvas__social {
  padding-top: 24px;
  border-top: 1px solid rgba(162,255,0,0.1);
}

.offcanvas__social-label {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--neon);
  text-transform: uppercase; margin-bottom: 16px;
}

.offcanvas__social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.social-btn:hover {
  color: var(--neon); border-color: var(--neon);
  background: rgba(162,255,0,0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(162,255,0,0.2);
}

/* Overlay */
.offcanvas__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 490;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.offcanvas__overlay.open { opacity: 1; visibility: visible; }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 620px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Slides */
.slides-wrapper { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.slide[data-slide="0"] { background-image: url('IMAGE/1.jpg'); }
.slide[data-slide="1"] { background-image: url('IMAGE/2.jpg'); }
.slide[data-slide="2"] { background-image: url('IMAGE/3.jpg'); }

.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 1; pointer-events: none;
}

/* Big BG number */
.hero__bg-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 900;
  color: rgba(162,255,0,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 2;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.hud { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.hud * { pointer-events: none !important; }

.hud-tr {
  position: absolute; top: 12%; right: 8%; width: 260px; height: 60px;
  animation: hudSlideIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s both, hudPulse 4s ease-in-out 1.2s infinite;
}
.hud-tr svg { width: 100%; height: 100%; }

.hud-circle {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 120px; height: 80px;
  animation: hudFadeIn 0.8s ease 0.5s both, hudSpin 12s linear 1.3s infinite;
}
.hud-circle svg { width: 100%; height: 100%; }

.hud-bar-left {
  position: absolute; top: 68%; left: 12%; width: 340px; height: 20px;
  animation: hudWipeLeft 1s cubic-bezier(0.22,1,0.36,1) 0.6s both, hudPulse 3.5s ease-in-out 1.6s infinite;
}
.hud-bar-left svg { width: 100%; height: 100%; }

.hud-bar-right {
  position: absolute; top: 68%; right: 6%; width: 380px; height: 20px;
  animation: hudWipeRight 1s cubic-bezier(0.22,1,0.36,1) 0.7s both, hudPulse 3.5s ease-in-out 2s infinite;
}
.hud-bar-right svg { width: 100%; height: 100%; }

/* Scroll label */
.scroll-label {
  position: absolute; left: 28px; bottom: 38%;
  display: flex; align-items: center; gap: 10px;
  z-index: 10; cursor: pointer;
  animation: fadeUp 0.8s ease 1.1s both;
}
.scroll-label__arrow {
  width: 14px; height: 14px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg); flex-shrink: 0;
  animation: arrowBounce 1.8s ease-in-out infinite;
}
.scroll-label__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; color: #fff;
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg); text-transform: uppercase; opacity: 0.9;
}

/* Page numbers */
.page-nums {
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px;
  z-index: 50; align-items: center;
  animation: fadeUp 0.8s ease 1.2s both;
}
.page-nums span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
  cursor: pointer; padding: 6px 10px;
  transition: color 0.3s, text-shadow 0.3s;
  pointer-events: all;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.page-nums span.active { color: var(--neon); text-shadow: 0 0 12px var(--neon-dim); }
.page-nums span:not(.active):hover { color: rgba(255,255,255,0.8); }
.page-nums .dot {
  width: 2px; height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%; pointer-events: none;
}


#particleCanvas { position: absolute; inset: 0; z-index: 4; pointer-events: none; }


.hero__content {
  position: relative; z-index: 10;
  text-align: center; padding: 72px 20px 0;
}

.hero__sub {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.hero__sub-line {
  width: 40px; height: 1.5px;
  background: var(--neon); box-shadow: 0 0 8px var(--neon);
}
.hero__sub-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.35em; color: var(--neon); text-transform: uppercase;
}

.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: 0.02em; color: #fff;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}

.hero__desc {
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.7; color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}

.btn-group {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.75s both;
}

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 36px; height: 52px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border: none; outline: none; overflow: hidden;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 40px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  clip-path: polygon(
    14px 0%,
    100% 0%,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0% 100%,
    0% 14px
  );
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: box-shadow 0.3s ease, color 0.25s ease;
}

.btn--primary {
  background: #b8ff00;
  color: #060d00;
  border: 2px solid #b8ff00;
  box-shadow:
    0 0 10px rgba(184,255,0,0.35),
    0 0 0 1px #b8ff00;
  transition: box-shadow 0.3s ease, color 0.25s ease;
}

.btn--primary .btn__bg {
  position: absolute;
  inset: 0;
  background: #000000;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
  z-index: 0;
}

.btn--primary:hover .btn__bg {
  transform: translateX(0%);
}

.btn--primary:hover {
  color: #b8ff00;
  box-shadow:
    0 0 22px rgba(184,255,0,0.65),
    0 0 50px rgba(184,255,0,0.2),
    0 0 0 1px #b8ff00;
}

.btn--primary:active {
  box-shadow: 0 0 35px rgba(184,255,0,0.9), 0 0 0 1px #b8ff00;
}

.btn--primary .btn__text { position: relative; z-index: 3; font-weight: 800; }
.btn--primary .btn__icon { position: relative; z-index: 3; }
.btn--primary .btn__icon svg { stroke: #060d00; transition: stroke 0.25s; }
.btn--primary:hover .btn__icon svg { stroke: #b8ff00; }

.btn--secondary {
  background: #080c05;
  color: #ffffff;
  border: 2px solid #b8ff00;
  box-shadow:
    0 0 8px rgba(184,255,0,0.2),
    0 0 0 1px #b8ff00;
  transition: box-shadow 0.3s ease, color 0.25s ease;
}

.btn--secondary .btn__fill {
  position: absolute;
  inset: 0;
  background: #b8ff00;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
  z-index: 0;
}

.btn--secondary:hover .btn__fill {
  transform: translateX(0%);
}

.btn--secondary:hover {
  color: #060d00;
  box-shadow:
    0 0 22px rgba(184,255,0,0.65),
    0 0 50px rgba(184,255,0,0.2),
    0 0 0 1px #b8ff00;
}

.btn--secondary:active {
  box-shadow: 0 0 35px rgba(184,255,0,0.9), 0 0 0 1px #b8ff00;
}

.btn--secondary .btn__text { position: relative; z-index: 3; }
.btn--secondary .btn__icon { position: relative; z-index: 3; }
.btn--secondary .btn__icon svg { stroke: #fff; transition: stroke 0.25s; }
.btn--secondary:hover .btn__icon svg { stroke: #060d00; }

.btn__icon { display: flex; align-items: center; flex-shrink: 0; transition: transform 0.3s ease; font-size: 15px; line-height: 1; }
.btn:hover .btn__icon { transform: translateX(4px); }
.btn__text { position: relative; z-index: 1; }

/* KEYFRAMES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes contentSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hudSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hudFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes hudWipeLeft {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to   { opacity: 1; clip-path: inset(0 0% 0 0); }
}
@keyframes hudWipeRight {
  from { opacity: 0; clip-path: inset(0 0 0 100%); }
  to   { opacity: 1; clip-path: inset(0 0 0 0%); }
}
@keyframes hudPulse {
  0%,100% { opacity: 1; filter: drop-shadow(0 0 4px rgba(162,255,0,0.4)); }
  50%      { opacity: 0.45; filter: none; }
}
@keyframes hudSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
@keyframes arrowBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(5px); }
}
@keyframes rippleOut {
  from { transform: scale(0); opacity: 0.8; }
  to   { transform: scale(5); opacity: 0; }
}

/* GAMING BUTTON — FILL EFFECT,*/
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap');

.game-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 190px;
  height: 52px;
  font-family: 'Rajdhani', 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #92ce02;
  background: transparent;
  border: 2px solid #92ce02;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition:
    color 0.25s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
  z-index: 0;
}

.game-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #92ce02;
  transform: translateX(-101%);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

.game-btn:hover::before {
  transform: translateX(0);
}

.game-btn:hover {
  color: #050800;
  box-shadow:
    0 0 18px rgba(146,206,2,0.65),
    0 0 40px rgba(146,206,2,0.25),
    0 6px 20px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.game-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 0 30px rgba(146,206,2,0.8);
}

/* SECTION 2 */
.s2 {
  position: relative;
  width: 100%;
  background: #080b07;
  padding: 50px 0 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Right-side green glow */
.s2__right-glow {
  position: absolute;
  top: -10%; right: -8%;
  width: 55%; height: 120%;
  background: radial-gradient(
    ellipse at right center,
    rgba(60, 130, 10, 0.45) 0%,
    rgba(40, 100,  8, 0.20) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.s2__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.s2__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.s2__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
}

.s2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.s2__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #b8ff00;
  text-transform: uppercase;
}

.s2__eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: #b8ff00;
  box-shadow: 0 0 8px rgba(184,255,0,0.7);
}

.s2__eyebrow-sq {
  display: inline-block;
  width: 10px; height: 10px;
  border: 2px solid #b8ff00;
  box-shadow: 0 0 8px rgba(184,255,0,0.5);
}

.s2__headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6.2vw, 92px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.s2__line {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.s2__hl {
  color: #b8ff00;
  font-style: normal;
}

.s2__hl2 {
  color: rgba(140, 220, 40, 0.75);
  font-style: normal;
}

.s2__thumb-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: clamp(55px, 5.5vw, 85px);
  height: clamp(36px, 3.8vw, 58px);
  z-index: 1;
}

.s2__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  display: block;
  position: relative;
  z-index: 1;
}

.s2__icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  flex-shrink: 0;
}

.s2__icon svg {
  width: clamp(36px, 3.5vw, 58px);
  height: auto;
  filter: drop-shadow(0 0 6px rgba(184,255,0,0.7));
  animation: s2IconPulse 2.2s ease-in-out infinite;
}

@keyframes s2IconPulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(184,255,0,0.7)); transform: translateX(0); }
  50%       { filter: drop-shadow(0 0 16px rgba(184,255,0,1)); transform: translateX(5px); }
}

/* ── Sub paragraph ── */
.s2__para {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.85;
  color: rgba(255,255,255,0.38);
  max-width: 620px;
  letter-spacing: 0.02em;
}

/* SECTION 3 */
.s3 {
  position: relative;
  width: 100%;
  background: #080b07;
  height: 160px;
  display: flex;
  align-items: center;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

/* Noise overlay */
.s3__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.s3__glow { display: none; }

/* Marquee track */
.s3__track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.s3__marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: s3Scroll 28s linear infinite;
  will-change: transform;
}

@keyframes s3Scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.s3__text {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2a2a2a;
  white-space: nowrap;
  line-height: 1;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-right: 20px;
}

.s3__sentence {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  cursor: default;
  padding: 0 4px;
}

.s3__sentence:hover .s3__word {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.3);
}

.s3__word {
  display: inline-block;
  color: #2a2a2a;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  cursor: default;
  letter-spacing: 0.04em;
}

.s3__icon-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #2a2a2a;
  margin: 0 6px;
  transition: color 0.08s ease, filter 0.08s ease;
  cursor: default;
  flex-shrink: 0;
}

.s3__icon-wrap img {
  display: block;
  transition: filter 0.2s ease, transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
  filter: brightness(0) invert(0.15);
}

.s3__icon-wrap:hover img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(70%) saturate(480%) hue-rotate(40deg) brightness(0.95) drop-shadow(0 0 6px rgba(184,255,0,0.65));
  transform: rotate(180deg) scale(1.15);
}

.s3__marquee:hover { animation-play-state: paused; }


/* SECTION 2 — STATS PANEL */
.s2__layout {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.s2__left {
  flex: 0 0 auto;
  max-width: 52%;
}

.s2__stats {
  flex: 1;
  padding-top: 48px;
}

.s2__stats-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.s2__stats-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #b8ff00;
  box-shadow: 0 0 10px #b8ff00;
  animation: statsDotPulse 1.5s ease-in-out infinite;
}

@keyframes statsDotPulse {
  0%,100% { box-shadow: 0 0 6px #b8ff00; }
  50%      { box-shadow: 0 0 18px #b8ff00, 0 0 35px rgba(184,255,0,0.4); }
}

.s2__stats-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.s2__stat-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s2__stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,255,0,0.08);
  border-left: 2px solid rgba(184,255,0,0.35);
  padding: 12px 16px;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.s2__stat-card:hover {
  background: rgba(184,255,0,0.06);
  border-color: rgba(184,255,0,0.6);
  border-left-color: #b8ff00;
  transform: translateX(4px);
}

.s2__stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,255,0,0.06), transparent);
  transition: left 0.5s ease;
}
.s2__stat-card:hover::before { left: 150%; }

.s2__stat-icon {
  font-size: 18px;
  color: #b8ff00;
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,255,0,0.08);
  border-radius: 4px;
}

.s2__stat-info {
  flex: 1;
  min-width: 0;
}

.s2__stat-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.s2__stat-rank-badge {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #b8ff00;
  letter-spacing: 0.15em;
  text-shadow: 0 0 12px rgba(184,255,0,0.5);
  margin-bottom: 2px;
}

.s2__stat-name {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s2__stat-bar {
  width: 56px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.s2__stat-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8ff00, rgba(184,255,0,0.6));
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 6px rgba(184,255,0,0.5);
}


.s2__stat-fill.animated {
  width: var(--w);
}

/* SECTION 4 — PRODUCT GRID */
.s4 {
  position: relative;
  background: #080b07;
  padding: 50px 0 50px;
  overflow: hidden;
}

.s4__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

.s4__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.s4__header {
  text-align: center;
  margin-bottom: 40px;
}

.s4__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.s4__eyebrow-deco {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.s4__eyebrow-sq {
  display: inline-block;
  width: 8px; height: 8px;
  border: 2px solid #bfff00;
  box-shadow: 0 0 6px rgba(191,255,0,0.6);
}

.s4__eyebrow-line {
  display: inline-block;
  width: 44px; height: 2px;
  background: #bfff00;
  box-shadow: 0 0 6px rgba(191,255,0,0.5);
}

.s4__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em;
  color: #bfff00;
  text-transform: uppercase;
}

.s4__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.s4__filter-bar {
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
  padding: 0;
  background: rgba(255,255,255,0.02);
}

.s4__filter-inner {
  display: flex;
  align-items: stretch;
  height: 60px;
}

.s4__filter-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.s4__select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 240px;
}

.s4__select {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 40px 0 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.s4__select option { background: #111; color: #fff; }

.s4__select-arrow {
  position: absolute;
  right: 14px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  pointer-events: none;
}

.s4__search {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.s4__search::placeholder { color: rgba(255,255,255,0.35); }

.s4__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  background: #bfff00;
  color: #000;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid #bfff00;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: color 0.25s ease, box-shadow 0.3s ease;
}

.s4__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-101%);
  transition: transform 0.38s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
  pointer-events: none;
}

.s4__submit:hover::before { transform: translateX(0%); }

.s4__submit:hover {
  color: #bfff00;
  box-shadow: 0 0 18px rgba(191,255,0,0.65), 0 0 40px rgba(191,255,0,0.2);
}

.s4__submit-deco {
  display: inline-block;
  width: 6px; height: 6px;
  border: 2px solid currentColor;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.s4__submit span.btn-label,
.s4__submit-text {
  position: relative;
  z-index: 1;
}

.s4__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.s4__card {
  position: relative;
  overflow: hidden;
  background: #131613;
  padding: 24px 20px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s4__card:hover {
  border-color: rgba(191,255,0,0.3);
  box-shadow: 0 0 30px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(191,255,0,0.08);
  z-index: 2;
}

.s4__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #bfff00;
  color: #000;
  padding: 4px 12px;
  line-height: 1.5;
}

.s4__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  transform: scale(1);
  background: #0e110e;
}

.s4__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.s4__card:hover .s4__img {
  transform: scale(1.05);
}

.s4__actions {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.s4__card:hover .s4__actions {
  opacity: 1;
  transform: translateY(0);
}

.s4__btn {
  width: 44px; height: 44px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  background: #bfff00;
  color: #000;
}

.s4__btn:not(.s4__btn--primary) {
  background: #1e221e;
  color: #bfff00;
  border: 1px solid rgba(191,255,0,0.2);
}

.s4__btn:not(.s4__btn--primary):hover {
  background: #bfff00;
  color: #000;
  border-color: #bfff00;
}

.s4__text-block {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.s4__card:hover .s4__text-block {
  transform: translateY(-12px);
}

.s4__brand-wrap {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}

.s4__tri {
  display: inline-block;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #bfff00;
}

.s4__tri--down {
  border-bottom: none;
  border-top: 10px solid #bfff00;
}

.s4__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.s4__price {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.s4__select:focus,
.s4__select:hover {
  outline: none;
  color: #fff;
}

.s4__select-wrap:focus-within {
  background: rgba(191,255,0,0.04);
  outline: 1px solid rgba(191,255,0,0.35);
}

.s4__search:focus {
  outline: none;
  background: rgba(191,255,0,0.04);
  box-shadow: inset 0 0 0 1px rgba(191,255,0,0.35);
  color: #fff;
}

.s4__filter-bar:focus-within {
  border-color: rgba(191,255,0,0.25);
}

.s4__dropdown {
  position: relative;
  flex: 0 0 240px;
  height: 100%;
}

.s4__drop-btn {
  width: 100%; height: 100%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  gap: 10px;
}

.s4__drop-btn:hover,
.s4__dropdown.open .s4__drop-btn {
  color: #fff;
}

.s4__drop-val { flex: 1; text-align: left; }

.s4__drop-arrow {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  transition: transform 0.25s ease, color 0.2s;
  flex-shrink: 0;
}

.s4__dropdown.open .s4__drop-arrow {
  transform: rotate(180deg);
  color: #bfff00;
}

.s4__drop-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: -1px;
  min-width: calc(100% + 2px);
  background: rgba(10,13,8,0.98);
  border: 1px solid rgba(191,255,0,0.3);
  border-top: none;
  border-left: 3px solid #bfff00;
  list-style: none;
  padding: 6px 0;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.7);
}

.s4__dropdown.open .s4__drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.s4__drop-item {
  padding: 10px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  text-transform: uppercase;
  border-left: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s, padding-left 0.15s;
}

.s4__drop-item:hover {
  color: #bfff00;
  background: rgba(191,255,0,0.06);
  border-left-color: #bfff00;
  padding-left: 24px;
}

.s4__drop-item--active {
  color: #bfff00;
  font-weight: 700;
}

.s4__select-wrap { display: none; }

.s4__grid {
  gap: 16px !important;
  margin-top: 40px !important;
}
.s4__img-wrap {
  aspect-ratio: 4 / 3 !important;
}
.s4__img {
  object-fit: cover !important;
  padding: 0 !important;
}
.s4__name {
  font-size: 26px !important;
}
.s4__price {
  font-size: 14px !important;
}
.s4__btn {
  width: 44px !important;
  height: 44px !important;
  font-size: 18px !important;
}
.s4__badge {
  font-size: 13px !important;
  padding: 4px 12px !important;
}
.s4__tri {
  border-left-width: 6px !important;
  border-right-width: 6px !important;
  border-bottom-width: 10px !important;
}
.s4__tri--down {
  border-top-width: 10px !important;
  border-bottom-width: 0 !important;
}
.s4__card {
  padding: 0 0 22px !important;
}
.s4__text-block {
  padding: 0 18px !important;
}

.s4__card {
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
}

.s4__card:hover {
  border-color: rgba(191,255,0,0.4) !important;
}

.s4__grid {
  gap: 14px !important;
}

.s4__filter-bar {
  border: none !important;
  background: transparent !important;
  display: flex !important;
  gap: 14px !important;
  padding: 0 !important;
}

.s4__filter-inner {
  display: flex !important;
  gap: 14px !important;
  width: 100% !important;
  height: auto !important;
}

.s4__filter-divider {
  display: none !important;
}

.s4__dropdown {
  flex: 1 !important;
  height: 56px !important;
  background: #1a1d18 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.s4__dropdown:hover,
.s4__dropdown.open {
  border-color: rgba(191,255,0,0.4) !important;
}

.s4__search {
  flex: 2 !important;
  height: 56px !important;
  background: #1a1d18 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  padding: 0 20px !important;
}

.s4__search:focus {
  border-color: rgba(191,255,0,0.4) !important;
  outline: none !important;
}

.s4__submit {
  height: 56px !important;
  flex-shrink: 0 !important;
}

.s4__submit {
  box-shadow: none !important;
}
.s4__submit:hover {
  box-shadow: none !important;
  color: #bfff00 !important;
}
.s4__submit:hover .s4__submit-deco {
  border-color: #bfff00 !important;
}

.s4__submit span {
  color: inherit !important;
}

.s4__submit,
.s4__submit span,
.s4__submit:not(:hover),
.s4__submit:not(:hover) span {
  color: #000000 !important;
}

.s4__submit:hover,
.s4__submit:hover span,
.s4__submit:hover .s4__submit-deco {
  color: #bfff00 !important;
  border-color: #bfff00 !important;
}

.s4__submit > span:not(.s4__submit-deco) {
  color: #000 !important;
  font-weight: 900 !important;
  letter-spacing: 0.2em !important;
  position: relative !important;
  z-index: 2 !important;
}

.s4__submit-text {
  position: relative !important;
  z-index: 3 !important;
  color: #000 !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  transition: color 0.25s ease !important;
}

.s4__submit:hover .s4__submit-text {
  color: #bfff00 !important;
}

.s4__submit-deco {
  position: relative !important;
  z-index: 3 !important;
}

.s4__grid {
  align-items: stretch !important;
}

.s4__card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.s4__img-wrap {
  flex-shrink: 0 !important;
  aspect-ratio: 1 / 1 !important;
  width: 100% !important;
}

.s4__text-block {
  flex: 1 !important;
  padding: 16px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.s4__brand-wrap {
  margin-bottom: 10px !important;
}

.s4__name {
  font-size: 28px !important;
  margin-bottom: 8px !important;
}

.s4__price {
  font-size: 15px !important;
  color: rgba(255,255,255,0.5) !important;
}

.s4__tri {
  border-left-width: 7px !important;
  border-right-width: 7px !important;
  border-bottom-width: 11px !important;
}

.s4__tri--down {
  border-top-width: 11px !important;
  border-bottom: none !important;
}

.s4__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.s4 { position: relative !important; }

.s4__canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.s4__noise { z-index: 0 !important; }

.s4__container {
  position: relative !important;
  z-index: 1 !important;
}

/*  SECTION 5 — GAME SHOWCASE HERO */
.s5 {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.s5__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.s5__bg--next {
  opacity: 0;
  z-index: 1;
}
.s5__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.60) 55%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 2;
}

.s5__layout {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── LEFT ── */
.s5__left {
  flex: 1;
  max-width: 560px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.s5__left.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.s5__match {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bfff00;
  border: 1px solid rgba(191,255,0,0.4);
  background: rgba(191,255,0,0.08);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.s5__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.s5__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}
.s5__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.s5__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 460px;
}

.s5__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.s5__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 52px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: color 0.3s ease, box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.s5__btn-sweep {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.s5__btn:hover .s5__btn-sweep { transform: scaleX(1); }

.s5__btn-label,
.s5__btn-arr,
.s5__btn-icon { position: relative; z-index: 1; }

.s5__btn-arr {
  display: flex; align-items: center;
  transition: transform 0.3s ease;
}
.s5__btn:hover .s5__btn-arr { transform: translateX(4px); }

.s5__btn--primary {
  background: #bfff00;
  color: #000;
  box-shadow: 0 0 10px rgba(191,255,0,0.3);
}
.s5__btn--primary .s5__btn-sweep { background: #000; }
.s5__btn--primary:hover { color: #bfff00; box-shadow: 0 0 20px rgba(191,255,0,0.5); }
.s5__btn--primary .s5__btn-icon {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

.s5__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #bfff00;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
}
.s5__btn--secondary .s5__btn-sweep { background: #bfff00; }
.s5__btn--secondary:hover { color: #000; box-shadow: 0 0 20px rgba(191,255,0,0.4); }

.s5__right {
  flex-shrink: 0;
}
.s5__thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s5__thumb {
  position: relative;
  width: 200px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.s5__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
  transition: filter 0.3s ease;
}
.s5__thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}
.s5__thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
.s5__thumb:hover img { filter: brightness(0.8); }
.s5__thumb:hover .s5__thumb-overlay { background: rgba(0,0,0,0.1); }

.s5__thumb.active {
  border-color: #bfff00;
  box-shadow: 0 0 18px rgba(191,255,0,0.5);
}
.s5__thumb.active img { filter: brightness(1); }
.s5__thumb.active .s5__thumb-overlay { background: rgba(0,0,0,0); }

.s5__btn {
  clip-path: none !important;
  border-radius: 0 !important;
  height: 56px !important;
  padding: 0 32px !important;
  gap: 14px !important;
}

.s5__btn--primary {
  background: #bfff00 !important;
  color: #000 !important;
  border: 2px solid #bfff00 !important;
}

.s5__btn--primary .s5__btn-icon {
  width: 26px !important;
  height: 26px !important;
  background: rgba(0,0,0,0.22) !important;
  border-radius: 2px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
}

.s5__btn--primary .s5__btn-sweep {
  background: #000 !important;
}

.s5__btn--primary:hover {
  color: #bfff00 !important;
  box-shadow: none !important;
}

.s5__btn--secondary {
  background: #0a0a0a !important;
  color: #fff !important;
  border: 2px solid #bfff00 !important;
  clip-path: none !important;
}

.s5__btn--secondary .s5__btn-sweep {
  background: #bfff00 !important;
}

.s5__btn--secondary:hover {
  color: #000 !important;
  box-shadow: none !important;
}

/*  SECTION 6 — EXPERTS  */
.s6 {
  background: #080b07;
  padding: 50px 0px 50px;
  overflow: hidden;
  position: relative;
}
.s6__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 70px;
  align-items: center;
}

.s6__left {
  position: relative;
  height: 580px;
  cursor: default;
}

.s6__since {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.18);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.s6__imgs {
  position: absolute;
  inset: 0;
  left: 52px;
}

/* One animation */
@keyframes float-sync {
  0%   { transform: translateY(-10px); } 
  50%  { transform: translateY(10px); }  
  100% { transform: translateY(-10px); }
}

.s6__img-base {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;

  animation: float-sync 6s ease-in-out infinite;
}

.s6__img-fore {
  position: absolute;
  left: 0;
  top: 5%;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;

  animation: float-sync 6s ease-in-out infinite;
  animation-delay: -3s; 

  transition: transform 0.12s ease-out;
  will-change: transform;
  box-shadow: -6px 10px 40px rgba(0,0,0,0.8);
}

.s6__year {
  position: absolute;
  bottom: -60px;
  left: 305px;
  right: 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(60px, 8vw, 108px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.10);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.s6__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

/* Eyebrow */
.s6__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.s6__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ccff00;
  box-shadow: 0 0 8px rgba(204,255,0,0.8);
  flex-shrink: 0;
}
.s6__eyebrow-line {
  width: 36px; height: 2px;
  background: #ccff00;
  flex-shrink: 0;
}
.s6__eyebrow-sq {
  width: 8px; height: 8px;
  border: 2px solid #ccff00;
  flex-shrink: 0;
}
.s6__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em;
  color: #ccff00;
  text-transform: uppercase;
}

.s6__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 3.8vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.s6__desc {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}

.s6__features {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;           
  column-gap: 60px;                 
}

.s6__feature {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 220px;
}

.s6__feature-icon {
  font-size: 60px;
  color: #ccff00;
  line-height: 1;
  margin-bottom: 6px;
}
.s6__feature-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.s6__feature-desc {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.s6__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s6__list-item {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.4;
}

.s6__list-item::before {
  content: '✳';
  color: #ccff00;
  font-size: 16px;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(204,255,0,0.7);
}

.s6__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.s5__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 52px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: color 0.3s ease, box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.s5__btn-sweep {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.s5__btn:hover .s5__btn-sweep { transform: scaleX(1); }

.s5__btn-label,
.s5__btn-arr,
.s5__btn-icon { position: relative; z-index: 1; }

.s5__btn-arr {
  display: flex; align-items: center;
  transition: transform 0.3s ease;
}
.s5__btn:hover .s5__btn-arr { transform: translateX(4px); }

.s5__btn--primary {
  background: #bfff00;
  color: #000;
  box-shadow: 0 0 10px rgba(191,255,0,0.3);
}
.s5__btn--primary .s5__btn-sweep { background: #000; }
.s5__btn--primary:hover { color: #bfff00; box-shadow: 0 0 20px rgba(191,255,0,0.5); }
.s5__btn--primary .s5__btn-icon {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

/*  SECTION 7 — TESTIMONIAL SLIDER */
.s7 {
  position: relative;
  background: #080b07;
  padding: 50px 0 50px;
  overflow: hidden;
}
 
.s7__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0;
}

.s7__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
  padding: 0 20px;
}
 
.s7__header-center {
  text-align: center;
  flex: 1;
}

.s7__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.s7__eyebrow-sq {
  width: 7px; height: 7px;
  border: 2px solid #ccff00;
  flex-shrink: 0;
}
.s7__eyebrow-line {
  width: 40px; height: 2px;
  background: #ccff00;
  box-shadow: 0 0 6px rgba(204,255,0,0.6);
  flex-shrink: 0;
}
.s7__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em;
  color: #ccff00;
  text-transform: uppercase;
}

.s7__heading {
  font-family: 'chakra petch', sans-serif;
  font-size: clamp(14px, 5vw, 50px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.s7__nav {
  width: 64px; height: 64px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
 
.s7__nav:hover {
  background: #ccff00;
  color: #000;
  border-color: #ccff00;
}

.s7__slider-wrap {
  overflow: hidden;
  width: 100%;
}
 
.s7__track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
  padding: 0 20px;
}

.s7__card {
  flex: 0 0 calc((100% - 20px - 20px) / 3);
  background: #0e110e;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.3s ease;
  cursor: default;
}
 
.s7__card:hover {
  border-color: rgba(204,255,0,0.25);
}

.s7__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
 
.s7__avatar {
  width: 100px; height: 100px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.s7__quote {
  font-family: Georgia, serif;
  font-size: 150px;
  line-height: 0.8;
  color: #ccff00;
  letter-spacing: -0.1em;
  opacity: 1;
  transition: opacity 0.3s ease;
  user-select: none;
  margin-top: 4px;
}
 
.s7__card:hover .s7__quote {
  opacity: 0;
}

.s7__identity {
  margin-bottom: 16px;
}
 
.s7__name {
  font-family: 'Chakra Ptach', sans-serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 6px;
}
 
.s7__role {
  display: flex;
  align-items: center;
  gap: 8px;
}
 
.s7__role-text {
  font-family: 'Sora', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
 
.s7__role-line {
  width: 28px; height: 1.5px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
 
.s7__role-sq {
  width: 6px; height: 6px;
  border: 1.5px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.s7__sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 20px;
}

.bi-arrow-up-left::before{
  transform: rotateZ(-45deg);
}

.bi-arrow-up-right::before{
  transform: rotateZ(45deg);
}

.s7__text {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
 
/*  SECTION 8 — FAQ ACCORDION */
.s8 {
  position: relative;
  background: #080b07;
  padding: 50px 0 50px;
  overflow: hidden;
}
 
.s8__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 80px;
  align-items: start;
}
 
.s8__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.s8__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.s8__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em;
  color: #ccff00;
  text-transform: uppercase;
}
.s8__eyebrow-line {
  width: 32px; height: 2px;
  background: #ccff00;
  flex-shrink: 0;
}
.s8__eyebrow-sq {
  width: 7px; height: 7px;
  border: 2px solid #ccff00;
  flex-shrink: 0;
}

.s8__heading {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 0.01em;
}

.s8__desc {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 360px;
}
 
.s5__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  height: 52px;
  font-family: 'Orbitron', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  overflow: hidden;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  transition: color 0.3s ease, box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.s5__btn-sweep {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.s5__btn:hover .s5__btn-sweep { transform: scaleX(1); }

.s5__btn-label,
.s5__btn-arr,
.s5__btn-icon { position: relative; z-index: 1; }

.s5__btn-arr {
  display: flex; align-items: center;
  transition: transform 0.3s ease;
}
.s5__btn:hover .s5__btn-arr { transform: translateX(4px); }

.s5__btn--primary {
  background: #bfff00;
  color: #000;
  box-shadow: 0 0 10px rgba(191,255,0,0.3);
}
.s5__btn--primary .s5__btn-sweep { background: #000; }
.s5__btn--primary:hover { color: #bfff00; box-shadow: 0 0 20px rgba(191,255,0,0.5); }
.s5__btn--primary .s5__btn-icon {
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}

.s8__right { width: 100%; }
 
.s8__accordion {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.08);
}

.s8__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.s8__item:last-child { border-bottom: none; }

.s8__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
 
.s8__q:hover { background: rgba(255,255,255,0.02); }
 
.s8__q-text {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  line-height: 1.25;
  transition: color 0.2s ease;
  text-align: left;
}

.s8__q-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.s8__q:hover .s8__q-text { color: #ccff00; }
.s8__q:hover .s8__q-icon {
  color: #ccff00;
  border-color: rgba(204,255,0,0.4);
  background: rgba(204,255,0,0.06);
}

.s8__item--open .s8__q-text { color: #ccff00; }
.s8__item--open .s8__q-icon {
  color: #ccff00;
  background: rgba(204,255,0,0.08);
  border-color: rgba(204,255,0,0.5);
}

.s8__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
  overflow: hidden;
}
.s8__item--open .s8__a {
  grid-template-rows: 1fr;
}
 
.s8__a-inner {
  overflow: hidden;
  min-height: 0;
}
 
.s8__a-inner p {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  padding: 0 28px 28px;
}
 
/*  SECTION 9 — BLOG GRID */
.s9 {
  position: relative;
  background: #080b07;
  padding: 50px 0 50px;
  overflow: hidden;
}
 
.s9__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
 
.s9__header {
  text-align: center;
  margin-bottom: 56px;
}
 
.s9__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.s9__eyebrow-sq {
  width: 7px; height: 7px;
  border: 2px solid #ccff00;
  flex-shrink: 0;
}
.s9__eyebrow-line {
  width: 38px; height: 2px;
  background: #ccff00;
  box-shadow: 0 0 6px rgba(204,255,0,0.5);
  flex-shrink: 0;
}
.s9__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em;
  color: #ccff00;
  text-transform: uppercase;
}
 
.s9__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.s9__grid {
  display: grid;
  grid-template-columns: repeat(3, 460px); 
  gap: 28px;
  justify-content: center; 
}

.s9__card {
  width: 460px;          
  height: 680px;         
  display: flex;
  flex-direction: column;
  background: #0e110e;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
}
 
.s9__card:hover {
  border-color: rgba(204,255,0,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.s9__img-wrap {
  position: relative;
  width: 100%;
  height: 500px;        
  overflow: hidden;
  
}
 
.s9__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(80%);
  transform: scale(1);
  transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
}
 
.s9__card:hover .s9__img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(100%);
}

.s9__date {
  position: absolute;
  top: 16px; right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ccff00;
  padding: 5px 12px 5px 14px;
  z-index: 2;
}
 
.s9__date-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}
 
.s9__date-sq {
  width: 6px; height: 6px;
  background: #000;
  flex-shrink: 0;
}
 
.s9__date-line {
  width: 20px; height: 2px;
  background: #000;
  flex-shrink: 0;
}

.s9__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  gap: 12px;
  flex: 1;

}

.s9__title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(25px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.15;
  transition: color 0.3s ease;
}
 
.s9__card:hover .s9__title { color: #ccff00; }

.s9__excerpt {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  flex: 1;
}
 
.s5__btn {
  width: fit-content;        
  align-self: flex-start;    

  padding: 0 15px;
  height: 30px;
  font-size: 10px;

  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  background: #ccff00;
  color: #000;

  border: none;
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 0 20px rgba(204,255,0,0.35);
  transition: box-shadow 0.3s ease;
}

.s5__btn:hover {
  box-shadow: 0 0 30px rgba(204,255,0,0.6);
}

.s5__btn-arr {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.s5__btn:hover .s5__btn-arr {
  transform: translateX(4px);
}
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --neon: #CCFF00;
      --neon-lime: #CCFF00;
      --dark: #000000;
      --white: #ffffff;
      --gray-400: #888888;
      --gray-500: #666666;
    }

    body {
      background: #080b07;
      color: #fff;
      font-family: 'Barlow', sans-serif;
      margin: 0;
      padding: 0;
    }


/* FOOTER MAIN STYLES */
    .s10 {
      background-color: #080b07;
      position: relative;
      overflow: hidden;
      font-family: 'Space Grotesk', sans-serif;
      width: 100%;
    }

    .s10__marquee {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(255, 255, 255, 0.01);
      position: relative;
      z-index: 10;
    }

    .s10__marquee-inner {
      display: flex;
      width: 100%;
      align-items: center;
    }

    .s10__marquee-item {
      opacity: 0.5;
      transition: opacity 0.3s ease, filter 0.3s ease, background 0.3s ease;
      filter: grayscale(1) brightness(2);
      padding: 40px 0;
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .s10__marquee-item:last-child {
      border-right: none;
    }

    .s10__marquee-item:hover {
      opacity: 1;
      filter: grayscale(0) brightness(1);
      background: rgba(255, 255, 255, 0.02);
    }

    .s10__marquee-item img {
      height: 44px;
      width: auto;
    }

    .s10__main {
      padding: 80px 0;
      position: relative;
      z-index: 10;
    }

    .s10__container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .s10__grid {
      display: grid;
      grid-template-columns: 4fr repeat(3, 2fr);
      gap: 48px;
    }

    .s10__brand-col {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .s10__logo-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .s10__logo-icon {
      width: 44px;
      height: 24px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .s10__logo-icon::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border: 2px solid var(--neon-lime);
      clip-path: polygon(0 0, 100% 0, 100% 30%, 70% 30%, 70% 70%, 100% 70%, 100% 100%, 0 100%, 0 70%, 30% 70%, 30% 30%, 0 30%);
    }

    .s10__logo-icon::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 2px;
      background: var(--neon-lime);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .s10__logo-text {
     font-family: 'Orbitron', sans-serif; 
      font-size: 38px;
      font-weight: 900;
      letter-spacing: -2px;
      color: #fff;
      font-style: italic;
    }

    .s10__description {
      font-size: 15px;
      color: var(--gray-400);
      line-height: 1.6;
      max-width: 380px;
    }

    .s10__app-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    .s10__app-btn {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 10px 18px;
      border-radius: 4px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 150px;
      transition: all 0.3s ease;
    }

    .s10__app-btn:hover {
      border-color: var(--neon-lime);
      background: rgba(255, 255, 255, 0.05);
    }

    .s10__app-icon {
      font-size: 24px;
      color: #fff;
    }

    .s10__app-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .s10__app-label {
      font-size: 10px;
      text-transform: uppercase;
      color: var(--gray-500);
      font-weight: 700;
      margin-bottom: 4px;
    }

    .s10__app-name {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .s10__nav-col {
      display: flex;
      flex-direction: column;
    }

    .s10__title {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.1em;
      color: #ffffff;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

    .s10__link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .s10__link {
      color: var(--gray-400);
      font-size: 16px;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.2s ease;
      display: inline-block;
    }

    .s10__link:hover {
      color: var(--neon-lime);
      transform: translateX(3px);
    }

    .s10__bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 30px 0;
      position: relative;
      z-index: 10;
    }

    .s10__bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .s10__legal {
     font-family: 'Chakra Petch', sans-serif;
      display: flex;
      gap: 32px;
      align-items: center;
      font-size: 16px;
    }

    .s10__legal-link {
      color: var(--gray-500);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .s10__legal-link:hover {
      color: #CCFF00;
    }

    .s10__legal-sep {
      width: 1px;
      height: 12px;
      background: rgba(255, 255, 255, 0.1);
    }

    .s10__copyright {
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 11px;
      font-weight: 700;
      color: var(--gray-500);
    }

    .s10__social-group {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .s10__social-btn {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-400);
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .s10__social-btn:hover {
      border-color: var(--neon-lime);
      color: var(--neon-lime);
      background: rgba(204, 255, 0, 0.05);
      box-shadow: 0 0 10px rgba(204, 255, 0, 0.2);
    }

    .s10__logo-img {
      height: 80px;
      width: auto;
      filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.3));
      transition: transform 0.3s ease;
    }

    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --neon:#ccff00;
  --neon-dim:rgba(204,255,0,0.18);
  --card-bg:#0e110e;
  --border:rgba(255,255,255,0.08);
  --ease:cubic-bezier(0.4,0,0.2,1);
}
html{
  scroll-behavior:smooth
}
body{
  background:#060806;
  font-family:'Barlow',sans-serif;
  color:#fff;
  overflow-x:hidden;
  min-height:100vh}

@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

.s__header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 50px;
}

.s__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.s__eyebrow-deco {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.s__eyebrow-sq {
  display: inline-block;
  width: 8px; height: 8px;
  border: 2px solid #bfff00;
  box-shadow: 0 0 6px rgba(191,255,0,0.6);
}

.s__eyebrow-line {
  display: inline-block;
  width: 44px; height: 2px;
  background: #bfff00;
  box-shadow: 0 0 6px rgba(191,255,0,0.5);
}

.s__eyebrow-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em;
  color: #bfff00;
  text-transform: uppercase;
}

.s__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

/*  MARKETPLACE */

.mp {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0px 50px;
  
}

.mp__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 50;
  animation: fadeUp .6s var(--ease) .55s both;
}

.mp__filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.mp__filter {
  position: relative;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition:
    color .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .25s var(--ease);
}

.mp__filter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  z-index: 0;
}

.mp__filter > *,
.mp__filter-text {
  position: relative;
  z-index: 1;
}

.mp__filter:hover::before,
.mp__filter.active::before {
  transform: scaleX(1);
}

.mp__filter:hover,
.mp__filter.active {
  color: #000;
  border-color: var(--neon);
  box-shadow: 0 0 14px var(--neon-dim);
}

/* click ripple */
.mp__filter .ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: rgba(0, 0, 0, .2);
  transform: scale(0);
  animation: rippleAnim .45s ease-out forwards;
}

@keyframes rippleAnim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.mp__sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mp__sort-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
}

.mp__sort-custom {
  position: relative;
  z-index: 1000;
}

.mp__sort-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: border-color .2s var(--ease);
  white-space: nowrap;
  min-width: 165px;
  justify-content: space-between;
}

.mp__sort-btn:hover {
  border-color: rgba(204, 255, 0, .45);
}

.mp__sort-btn i {
  font-size: 10px;
  color: rgba(255, 255, 255, .32);
  transition: transform .25s var(--ease);
}

.mp__sort-custom.open .mp__sort-btn i {
  transform: rotate(180deg);
}

.mp__sort-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 100%;
  background: rgba(8, 11, 8, .99);
  border: 1px solid rgba(204, 255, 0, .22);
  border-top: none;
  border-left: 3px solid var(--neon);
  list-style: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity .22s var(--ease),
    transform .22s var(--ease),
    visibility .22s;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .75);
}

.mp__sort-custom.open .mp__sort-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mp__sort-item {
  padding: 10px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  border-left: 2px solid transparent;
  transition:
    color .15s,
    background .15s,
    border-color .15s,
    padding-left .15s;
}

.mp__sort-item:hover {
  color: var(--neon);
  background: rgba(204, 255, 0, .04);
  border-left-color: var(--neon);
  padding-left: 22px;
}

.mp__sort-item.active {
  color: var(--neon);
  font-weight: 600;
}

.mp__active-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .32);
}

.mp__badge-count {
  background: var(--neon);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 900;
  padding: 2px 9px;
  border-radius: 2px;
  display: inline-block;
}

@keyframes badgePop {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

.mp__badge-count.pop {
  animation: badgePop .3s var(--ease);
}


/* CARD GRID */

.mp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mp__card {
  background: #080b07;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  filter: grayscale(1) brightness(.78);
  transition:
    filter .38s var(--ease),
    border-color .3s var(--ease),
    box-shadow .3s var(--ease),
    opacity .5s var(--ease),
    transform .5s var(--ease);
}

.mp__card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.mp__card:hover {
  filter: grayscale(0) brightness(1);
  border-color: rgba(204, 255, 0, .32);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .55);
}

.mp__card:active {
  filter: grayscale(0) brightness(1);
}

.mp__card.hidden {
  display: none !important;
}

.mp__card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.mp__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .45s var(--ease);
}

.mp__card:hover .mp__card-img {
  transform: scale(1.06);
}

.mp__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .32s var(--ease);
}

.mp__card:hover .mp__card-overlay {
  opacity: 1;
}

.mp__overlay-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--neon);
  text-align: center;
  padding: 0 12px;
}

.mp__overlay-tag {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mp__overlay-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  font-size: 17px;
  margin-top: 4px;
  transition:
    background .2s var(--ease),
    color .2s var(--ease);
}

.mp__overlay-icon:hover {
  background: var(--neon);
  color: #000;
}

.mp__genre-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .75);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .8);
  padding: 3px 8px;
  z-index: 2;
  overflow: hidden;
}

.mp__genre-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transition: left .4s var(--ease);
}

.mp__card:hover .mp__genre-badge::after {
  left: 140%;
}

.mp__price-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 900;
  background: var(--neon);
  color: #000;
  padding: 2px 8px;
  z-index: 2;
}

.mp__card-body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mp__card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.15;
  transition: color .25s var(--ease);
}

.mp__card:hover .mp__card-title {
  color: var(--neon);
}

.mp__stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mp__star {
  font-size: 12px;
  color: rgba(255, 255, 255, .18);
}

.mp__star.filled {
  color: var(--neon);
}

.mp__star.half {
  color: var(--neon);
  opacity: .55;
}

.mp__rating-num {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-left: 4px;
}

.mp__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.mp__card-year {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.mp__card-pop {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
}

.mp__card-pop i {
  font-size: 12px;
  color: var(--neon);
}

.mp__card-btn {
  margin-top: 8px;
  width: 100%;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(204, 255, 0, .28);
  color: var(--neon);
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    color .3s var(--ease),
    border-color .3s var(--ease);
}

.mp__card-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
  z-index: 0;
}

.mp__card-btn:hover::before {
  transform: scaleX(1);
}

.mp__card-btn:hover {
  color: #000;
  border-color: var(--neon);
}

.mp__card-btn span {
  position: relative;
  z-index: 1;
}

.mp__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.mp__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  height: 56px;
  background: var(--neon);
  color: #000;
  border: none;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    color .3s var(--ease),
    box-shadow .3s var(--ease);
}

.mp__more-sweep {
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
  z-index: 0;
}

.mp__more-btn:hover .mp__more-sweep {
  transform: scaleX(1);
}

.mp__more-btn:hover {
  color: var(--neon);
  box-shadow: 0 0 24px var(--neon-dim);
}

.mp__more-label,
.mp__more-btn i {
  position: relative;
  z-index: 1;
}

.mp__more-btn i {
  font-size: 16px;
  transition: transform .3s var(--ease);
}

.mp__more-btn.less i {
  transform: rotate(180deg);
}

.mp__no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  color: rgba(255, 255, 255, .18);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mp__no-results i {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
  color: rgba(204, 255, 0, .08);
}


/* MODAL */

.gm-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; 
}

.gm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  transition:
    background .4s var(--ease),
    backdrop-filter .4s var(--ease);
}

.gm-modal.open {
  pointer-events: all;
}

.gm-modal.open .gm-modal__backdrop {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(8px);
  cursor: pointer; /* click backdrop to close */
}

.gm-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 90vw);
  max-height: 88vh;
  display: flex;
  overflow: hidden;
  background: #0a0d0a;
  border: 1px solid rgba(204, 255, 0, .16);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .9);
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity .45s var(--ease),
    transform .45s var(--ease);
}

.gm-modal.open .gm-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gm-modal__img-col {
  flex: 0 0 55%;
  overflow: hidden;
  position: relative;
}

.gm-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  opacity: 0;
  transition:
    transform .6s var(--ease) .12s,
    opacity .5s var(--ease) .12s;
}

.gm-modal.open .gm-modal__img {
  transform: scale(1);
  opacity: 1;
}

.gm-modal__genre-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--neon);
}

.gm-modal__info-col {
  flex: 1;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, .07);
  overflow-y: auto;
  transform: translateX(24px);
  opacity: 0;
  transition:
    transform .5s var(--ease) .22s,
    opacity .5s var(--ease) .22s;
}

.gm-modal.open .gm-modal__info-col {
  transform: translateX(0);
  opacity: 1;
}

.gm-modal__num {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.gm-modal__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 10px;
}

.gm-modal__tag {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  border: 1px solid rgba(204, 255, 0, .38);
  padding: 4px 12px;
  margin-bottom: 18px;
}

.gm-modal__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.gm-modal__star {
  font-size: 14px;
  color: rgba(255, 255, 255, .14);
}

.gm-modal__star.filled {
  color: var(--neon);
}

.gm-modal__star.half {
  color: var(--neon);
  opacity: .55;
}

.gm-modal__rating-num {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  margin-left: 5px;
}

.gm-modal__divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin-bottom: 18px;
}

.gm-modal__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.gm-modal__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gm-modal__meta-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
}

.gm-modal__meta-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}

.gm-modal__meta-val.neon {
  color: var(--neon);
}

.gm-modal__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.78;
  color: rgba(255, 255, 255, .4);
  flex: 1;
  margin-bottom: 22px;
}

.gm-modal__cta {
  width: 100%;
  height: 46px;
  background: var(--neon);
  color: #000;
  border: none;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    color .3s var(--ease),
    box-shadow .3s var(--ease);
}

.gm-modal__cta-sweep {
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .38s var(--ease);
  z-index: 0;
}

.gm-modal__cta:hover .gm-modal__cta-sweep {
  transform: scaleX(1);
}

.gm-modal__cta:hover {
  color: var(--neon);
  box-shadow: 0 0 20px var(--neon-dim);
}

.gm-modal__cta span {
  position: relative;
  z-index: 1;
}

.gm-modal__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.gm-modal__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .5);
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
}

.gm-modal__nav-btn:hover {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}

.gm-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(204, 255, 0, .06);
  border: 1px solid rgba(204, 255, 0, .25);
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition:
    background .2s var(--ease),
    color .2s var(--ease),
    border-color .2s var(--ease);
}

.gm-modal__close:hover {
  background: var(--neon);
  color: #000;
  border-color: var(--neon);
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
  flex-shrink: 0;
}