/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
 * Copyright: https://theme.mysellauth.com/
*/

/* Fixed header (announcement + single-row navbar): keep page content below it */
:root {
  /* Breathing room under the browser chrome — pushes fixed header down */
  --sa-header-inset-top: clamp(0.5rem, 1.2vw, 0.85rem);
  /* Announcement + navbar + top inset */
  --sa-fixed-header: calc(clamp(88px, 11vh, 118px) + var(--sa-header-inset-top));
}

@media (max-width: 991.98px) {
  :root {
    --sa-header-inset-top: clamp(0.45rem, 1vw, 0.7rem);
    --sa-fixed-header: calc(clamp(92px, 9vh, 138px) + var(--sa-header-inset-top));
  }
}

/* Drop fixed header slightly from the top of the viewport */
header.fixed-top {
  padding-top: var(--sa-header-inset-top);
  box-sizing: border-box;
}

/* See-through header stack: rgba tint only — no backdrop blur */
.announcement {
  padding: 0.3rem 0.75rem !important;
  font-size: 0.8rem !important;
  line-height: 1.35;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    rgba(var(--cl-accent-rgb), 0.04),
    rgba(var(--cl-background-primary-rgb), 0.22) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/*
 * pro.css sets `.navbar { background: var(--bs-body-bg); }` — opaque.
 * Keep the bar transparent-tinted so the page shows through (no blur).
 */
.navbar-component.navbar-component .navbar {
  background: transparent !important;
  border-bottom-color: transparent !important;
}

.navbar-component nav.navbar.navbar-single {
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.015) 100%
    ),
    rgba(var(--cl-accent-rgb), 0.055),
    rgba(var(--cl-background-primary-rgb), 0.17) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.navbar-component .currency-dropdown,
.navbar-component .navbar-collapse {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.navbar-component .nav-divider {
  display: none !important;
}

.announcement a svg {
  width: 1rem !important;
  height: 1rem !important;
}

html {
  scroll-padding-top: var(--sa-fixed-header);
}

.site-content {
  padding-top: var(--sa-fixed-header);
}

/* Hero still fills the viewport from the top; inner copy stays below the header */
.site-content > .components > .hero-section:first-child {
  margin-top: calc(-1 * var(--sa-fixed-header));
  padding: calc(var(--sa-fixed-header) + clamp(2.25rem, 4.5vh, 3.75rem)) 1.25rem 4rem;
  min-height: calc(100vh + var(--sa-fixed-header));
  min-height: calc(100svh + var(--sa-fixed-header));
}

/* Policy pages: header offset is handled by .site-content; avoid double huge top gap */
.policy-section-liquid {
  padding-top: clamp(2.5rem, 6vh, 4rem) !important;
}

@media (max-width: 991.98px) {
  .policy-section-liquid {
    padding-top: clamp(2rem, 5vh, 3.5rem) !important;
  }
}

@media (max-width: 575.98px) {
  .policy-section-liquid {
    padding-top: clamp(1.75rem, 4vh, 3rem) !important;
  }
}

.py-5-nav {
  padding-top: calc(var(--sa-fixed-header) + 4.25rem) !important;
  padding-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .py-5-nav {
    padding-top: calc(var(--sa-fixed-header) + 3.5rem) !important;
  }
}

@media (max-width: 575.98px) {
  .py-5-nav {
    padding-top: calc(var(--sa-fixed-header) + 3rem) !important;
  }
}

.global-header-liquid {
    text-align: center;
    margin-bottom: 5rem;
  }

  .global-header-liquid h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 950;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 1rem;
  }

  .global-header-liquid p {
    color: var(--cl-accent);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 800;
    font-size: 0.85rem;
  }

.liquid-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px 10px 50px 10px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none !important;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}

.liquid-product-image-wrapper {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 1/1;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}

.liquid-product-card:hover {
  border-radius: 10px 50px 10px 50px;
  background: rgba(var(--cl-accent-rgb), 0.05);
  border-color: rgba(var(--cl-accent-rgb), 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.liquid-product-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(35deg);
  transition: all 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

.liquid-product-card:hover::after {
  left: 200%;
}

.liquid-product-image-wrapper {
  position: relative;
  border-radius: 40px 8px 40px 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: var(--product-card-image-aspect-ratio);
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.6s ease;
}

.liquid-product-card:hover .liquid-product-image-wrapper {
  border-radius: 8px 40px 8px 40px;
}

.liquid-product-image {
  width: 100%;
  height: 100%;
  object-fit: var(--product-image-fit);
  transition: transform 0.6s ease;
}

.liquid-product-card:hover .liquid-product-image {
  transform: scale(1.1);
}

.liquid-product-badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  z-index: 10;
  pointer-events: none;
}

.liquid-product-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.liquid-product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.liquid-product-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.liquid-product-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.liquid-product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cl-accent);
}

.liquid-product-price-slash {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.liquid-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.liquid-product-stock {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.liquid-product-stock i {
  font-size: 0.8rem;
  color: var(--cl-accent);
}

.liquid-product-btn {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
}

.liquid-product-card:hover .liquid-product-btn {
  background: var(--cl-accent);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(var(--cl-accent-rgb), 0.3);
  transform: translateY(-2px);
}

/* Shared Liquid Header Style - https://theme.mysellauth.com/ */
.liquid-header {
  text-align: left;
  margin-bottom: 5rem;
  border-left: 5px solid var(--cl-accent);
  padding-left: 2rem;
}

.liquid-header h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 0;
}

.liquid-header h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.9;
  letter-spacing: -3px;
}

.liquid-header p {
  color: var(--cl-accent);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .liquid-header {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
}

.policy-section-liquid {
  padding-bottom: 5rem;
}

/* Liquid Footer Styling - https://theme.mysellauth.com/ */
.liquid-footer {
  position: relative;
  background: rgba(var(--cl-background-secondary-rgb), 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 0 0;
  overflow: hidden;
}

.liquid-footer-glow {
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(var(--cl-accent-rgb), 0.18) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px); /* بلور أقوى لتنعيم الحواف تماماً */
  border-radius: 50%; /* تحويل الشكل لدائرة لمنع ظهور أي زوايا */
  opacity: 0.8;
}

.liquid-footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.visitor-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.visitor-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 10px #22c55e;
}

.visitor-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 50%;
  animation: visitor-pulse 2s infinite;
}

@keyframes visitor-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.visitor-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.visitor-count {
  color: var(--cl-accent);
}

/* Product Page Liquid Styling - https://theme.mysellauth.com/ */
.liquid-product-container {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}

.liquid-product-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.liquid-variant-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 15px !important;
  padding: 1.25rem !important;
  transition: all 0.4s ease !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.liquid-variant-card.active {
  background: rgba(var(--cl-accent-rgb), 0.1) !important;
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 20px rgba(var(--cl-accent-rgb), 0.2);
}

.liquid-variant-card:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.liquid-price-tag {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cl-accent);
  text-shadow: 0 0 20px rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-tab-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 0.8rem 1.5rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.3s ease !important;
}

.liquid-tab-btn.active {
  background: var(--cl-accent) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 20px rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-image-main {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.liquid-thumb {
  border-radius: 12px !important;
  overflow: hidden;
  border: 2px solid transparent !important;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.liquid-thumb.active {
  border-color: var(--cl-accent) !important;
  opacity: 1;
  transform: translateY(-3px);
}

.liquid-stats-item {
  background: rgba(var(--cl-accent-rgb), 0.05);
  border-left: 3px solid var(--cl-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 12px 12px 0;
  font-weight: 600;
}

/* Status Page Liquid - https://theme.mysellauth.com/ */
.liquid-status-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 1rem;
}

.liquid-status-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(10px);
  border-color: rgba(var(--cl-accent-rgb), 0.3);
}

.liquid-status-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.liquid-status-group-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 3rem 0 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--cl-accent);
}

@media (max-width: 991px) {
  .liquid-product-container { padding: 1.5rem; border-radius: 20px; }
}

.liquid-footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  position: relative;
}

.liquid-footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--cl-accent);
}

.liquid-footer .nav-link {
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 500;
  padding: 0.5rem 0 !important;
  transition: all 0.3s ease;
  display: inline-block;
}

.liquid-footer .nav-link:hover {
  color: var(--cl-accent) !important;
}

.liquid-footer .nav-link i {
  transition: all 0.3s ease;
}

.liquid-footer .nav-link.discord:hover i { color: #5865F2 !important; filter: drop-shadow(0 0 8px #5865F2); }
.liquid-footer .nav-link.telegram:hover i { color: #26A5E4 !important; filter: drop-shadow(0 0 8px #26A5E4); }
.liquid-footer .nav-link.instagram:hover i { color: #E4405F !important; filter: drop-shadow(0 0 8px #E4405F); }
.liquid-footer .nav-link.tiktok:hover i { color: #00f2ea !important; filter: drop-shadow(0 0 8px #00f2ea); }
.liquid-footer .nav-link.youtube:hover i { color: #FF0000 !important; filter: drop-shadow(0 0 8px #FF0000); }

.liquid-footer-bottom {
  margin-top: 4rem;
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.liquid-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.liquid-footer-copyright a {
  color: var(--cl-accent);
  text-decoration: none;
  font-weight: 600;
}

.card.p-4 {
  background: rgba(var(--cl-background-secondary-rgb), 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

button.w-100.mt-4.btn.btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
}

/* ========= Blended full-viewport hero (matches theme accent + backgrounds) ========= */
@keyframes hero-slide-down {
  to {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hero-slide-up {
  to {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.components {
  background-color: var(--cl-background-primary, #0d0d0d);
}

.hero-section {
  --hero-trust-text: #7bf1a8;
  --hero-trust-text-bright: #bbf7d0;
  --hero-trust-bg: rgba(6, 52, 36, 0.62);
  --hero-trust-border: rgba(74, 222, 128, 0.42);
  --hero-trust-glow: rgba(34, 197, 94, 0.22);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding: clamp(5.5rem, 9vh, 7rem) 1.25rem 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--cl-background-primary, #0d0d0d);
  background-image: linear-gradient(
      to bottom,
      rgba(var(--cl-background-primary-rgb), 0) 0%,
      rgba(var(--cl-background-primary-rgb), 0) 48%,
      rgba(var(--cl-background-primary-rgb), 0.82) 78%,
      var(--cl-background-primary, #0d0d0d) 100%
    ),
    radial-gradient(
      ellipse 130% 85% at 50% -25%,
      rgba(var(--cl-accent-rgb), 0.32) 0%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(var(--cl-background-primary-rgb), 0.9) 0%,
      rgba(var(--cl-background-primary-rgb), 0.62) 38%,
      rgba(var(--cl-background-primary-rgb), 0.88) 100%
    ),
    var(--hero-image, none);
  background-repeat: no-repeat;
  background-position: center, center top, center, center;
  background-size: cover, cover, cover, cover;
}

/* Purple “god ray” wash — inspired by theme-220284 hero aurora */
.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 125% 95% at 50% -18%,
    #000 0%,
    #000 22%,
    rgba(0, 0, 0, 0.55) 48%,
    rgba(0, 0, 0, 0.18) 68%,
    transparent 85%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 125% 95% at 50% -18%,
    #000 0%,
    #000 22%,
    rgba(0, 0, 0, 0.55) 48%,
    rgba(0, 0, 0, 0.18) 68%,
    transparent 85%
  );
}

/* Slow pan + drift so beams feel alive (transform here, gradients on child) */
.hero-aurora-motion {
  position: absolute;
  inset: -14% -14% -10% -14%;
  pointer-events: none;
  transform: translateZ(0);
  animation: hero-aurora-sway 19s ease-in-out infinite;
  will-change: transform;
}

.hero-aurora-beams {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  filter: blur(14px);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: background-position;
  background-image: repeating-linear-gradient(
      100deg,
      rgba(6, 4, 12, 0.96) 0%,
      rgba(6, 4, 12, 0.96) 7%,
      transparent 10%,
      transparent 12%,
      rgba(6, 4, 12, 0.96) 16%
    ),
    repeating-linear-gradient(
      100deg,
      rgba(var(--cl-accent-rgb), 0) 6%,
      rgba(var(--cl-accent-rgb), 0.35) 12%,
      rgba(var(--cl-accent-rgb), 0.78) 17%,
      rgba(var(--cl-accent-rgb), 0.42) 23%,
      rgba(var(--cl-accent-rgb), 0.65) 30%
    );
  background-size: 240% 100%, 120% 100%;
  background-position: 0% 0%, 0% 0%;
  animation: hero-aurora-shift 20s linear infinite, hero-aurora-fade 2.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-aurora-beams::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
  background-image: repeating-linear-gradient(
      100deg,
      rgba(6, 4, 12, 0.96) 0%,
      rgba(6, 4, 12, 0.96) 7%,
      transparent 10%,
      transparent 12%,
      rgba(6, 4, 12, 0.96) 16%
    ),
    repeating-linear-gradient(
      100deg,
      rgba(var(--cl-accent-rgb), 0) 8%,
      rgba(var(--cl-accent-rgb), 0.4) 14%,
      rgba(var(--cl-accent-rgb), 0.72) 19%,
      rgba(var(--cl-accent-rgb), 0.38) 25%,
      rgba(var(--cl-accent-rgb), 0.62) 32%
    );
  background-size: 100% 100%, 65% 100%;
  background-position: 0% 0%, 0% 0%;
  animation: hero-aurora-shift-after 26s linear infinite reverse;
}

@keyframes hero-aurora-sway {
  0%,
  100% {
    transform: translate3d(-2.5%, 0.4%, 0) rotate(-0.45deg) scale(1.02);
  }
  33% {
    transform: translate3d(2.2%, -0.9%, 0) rotate(0.4deg) scale(1.06);
  }
  66% {
    transform: translate3d(1.4%, 1.1%, 0) rotate(0.15deg) scale(1.04);
  }
}

@keyframes hero-aurora-shift {
  0% {
    background-position: 0% 0%, 0% 8%;
  }
  100% {
    background-position: -240% 0%, -150% -10%;
  }
}

@keyframes hero-aurora-shift-after {
  0% {
    background-position: 0% 0%, 0% 0%;
  }
  100% {
    background-position: -110% 6%, -200% 14%;
  }
}

@keyframes hero-aurora-fade {
  from {
    opacity: 0;
    filter: blur(28px);
  }
  to {
    opacity: 0.48;
    filter: blur(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora-motion {
    animation: none;
  }

  .hero-aurora-beams,
  .hero-aurora-beams::after {
    animation: none;
  }

  .scroll-indicator-motion {
    animation: none !important;
  }
}

.hero-section .center-div {
  position: relative;
  z-index: 2;
}

.center-div {
  width: min(52rem, 94vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin-top: 0;
}

.hero-section h1 {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-40px);
  animation: hero-slide-down 1s ease-out forwards;
  font-weight: 800;
  font-size: clamp(2.85rem, 8.8vw, 5.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: center;
  color: transparent;
  background-image: linear-gradient(
    105deg,
    #ede9fe 0%,
    #ddd6fe 12%,
    #c4b5fd 28%,
    #a78bfa 42%,
    #c084fc 58%,
    #e879f9 78%,
    #f5d0fe 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .hero-heading-line2 {
  display: inline-block;
  margin-top: 0.12em;
  letter-spacing: -0.045em;
}

.hero-section .hero-subtitle {
  color: rgba(212, 212, 216, 0.78);
  font-weight: 400;
  font-size: clamp(0.94rem, 2.1vw, 1.08rem);
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 1.1rem;
  max-width: 38rem;
  line-height: 1.65;
  transform: translateY(36px);
  opacity: 0;
  animation: hero-slide-up 1s ease-out forwards 0.25s;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
  transform: translateY(40px);
  opacity: 0;
  animation: hero-slide-up 1s ease-out forwards 0.45s;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease, color 0.2s ease;
}

.hero-cta--primary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fafafa;
  background-image: linear-gradient(
    135deg,
    rgba(var(--cl-accent-rgb), 0.92) 0%,
    var(--cl-accent, #9900ff) 50%,
    #3b0764 100%
  );
  box-shadow: 0 0 0 1px rgba(var(--cl-accent-rgb), 0.25),
    0 12px 40px -8px rgba(var(--cl-accent-rgb), 0.45);
}

.hero-cta--primary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 1px rgba(var(--cl-accent-rgb), 0.35),
    0 16px 48px -6px rgba(var(--cl-accent-rgb), 0.55);
  transform: translateY(-1px);
}

.hero-cta--secondary {
  background-color: rgba(255, 255, 255, 0.06);
  color: #f4f4f5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-cta--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hero-cta--discord {
  background-color: rgba(88, 101, 242, 0.12);
  color: #e0e7ff;
  border: 1px solid rgba(88, 101, 242, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-cta--discord:hover {
  background-color: rgba(88, 101, 242, 0.22);
  color: #fff;
  border-color: rgba(88, 101, 242, 0.65);
  transform: translateY(-1px);
}

.trust-badge-container {
  z-index: 1;
  display: flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  opacity: 0;
  animation: hero-slide-down 1s ease-out forwards 0.35s;
}

.hero-section .trust-badge {
  border-radius: 9999px;
  border: 1px solid var(--hero-trust-border);
  background: linear-gradient(
    180deg,
    rgba(16, 90, 58, 0.55) 0%,
    var(--hero-trust-bg) 100%
  );
  font-size: 0.875rem;
  color: var(--hero-trust-text);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 32px var(--hero-trust-glow),
    0 10px 28px -10px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.hero-section .trust-badge:hover {
  border-color: rgba(134, 239, 172, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 40px rgba(74, 222, 128, 0.28),
    0 12px 32px -10px rgba(0, 0, 0, 0.55);
}

.hero-section .trust-badge-text {
  margin: 0;
  max-width: 28rem;
  color: var(--hero-trust-text);
  -webkit-text-fill-color: var(--hero-trust-text);
  animation: none;
  background: none;
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  filter: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem 0.45rem 0.95rem;
  transition: color 0.2s ease;
}

.hero-section .trust-badge-text:hover {
  color: var(--hero-trust-text-bright);
  -webkit-text-fill-color: var(--hero-trust-text-bright);
}

.hero-section .trust-badge-content {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
}

.hero-section .trust-badge-icon svg {
  display: block;
  color: var(--hero-trust-text-bright);
  filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.45));
}

.hero-section .trust-badge .arrow-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--hero-trust-text);
  stroke: currentColor;
  transition: transform 0.3s ease-in-out, color 0.2s ease;
}

.hero-section .trust-badge:hover .arrow-icon {
  color: var(--hero-trust-text-bright);
  transform: translateX(0.2rem);
}

.scroll-indicator {
  position: relative;
  z-index: 20;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(1.35rem, 3.5vh, 2.75rem);
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transform: translateY(28px);
  text-decoration: none !important;
  animation: hero-slide-up 1s ease-out forwards 0.65s;
}

.scroll-indicator-motion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: hero-bounce 1s infinite 1.2s;
}

.scroll-indicator:hover {
  color: var(--cl-accent, #9900ff);
}

.mouse-icon,
.chevron-down-icon {
  display: block;
}

/* ========= Product cards: storefront “group box” (accent border, banner image, footer CTA) ========= */
.liquid-product-card {
  --liquid-card-radius: clamp(18px, 2.2vw, 26px);
  position: relative;
  background: #0a0a0a;
  border: 2px solid var(--cl-accent);
  border-radius: var(--liquid-card-radius);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  box-shadow:
    0 0 0 1px rgba(var(--cl-accent-rgb), 0.25),
    0 22px 50px -18px rgba(0, 0, 0, 0.85),
    0 0 40px -20px rgba(var(--cl-accent-rgb), 0.35);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.liquid-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--cl-accent);
  box-shadow:
    0 0 0 1px rgba(var(--cl-accent-rgb), 0.45),
    0 28px 60px -20px rgba(0, 0, 0, 0.9),
    0 0 55px -18px rgba(var(--cl-accent-rgb), 0.5);
}

.liquid-product-card::after {
  opacity: 0.55;
}

.liquid-product-image-wrapper {
  border-radius: 0;
  margin-bottom: 0;
  aspect-ratio: var(--product-card-image-aspect-ratio);
  background: linear-gradient(
    145deg,
    rgba(24, 12, 40, 0.95) 0%,
    rgba(6, 6, 10, 0.98) 55%,
    rgba(8, 12, 28, 0.98) 100%
  );
  border-bottom: 1px solid rgba(var(--cl-accent-rgb), 0.2);
}

.liquid-product-card:hover .liquid-product-image-wrapper {
  border-radius: 0;
}

.liquid-product-card:hover .liquid-product-image {
  transform: scale(1.04);
}

.liquid-product-info {
  padding: 1.25rem 1.35rem 1.35rem;
  gap: 0;
}

.liquid-product-name {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.liquid-product-card--group .liquid-product-meta--group {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  justify-content: flex-start;
}

.liquid-product-card--group .liquid-product-stock {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.liquid-product-card--group .liquid-product-stock i {
  color: rgba(255, 255, 255, 0.4);
}

.liquid-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}

.liquid-product-btn--group {
  margin-top: 0;
  width: auto;
  flex: 0 0 auto;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.liquid-product-btn--group i {
  font-size: 0.85rem;
  opacity: 0.95;
}

.liquid-product-card:hover .liquid-product-btn--group {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  transform: none;
}

.liquid-product-price-from {
  text-align: right;
  margin-left: auto;
  min-width: 0;
}

.liquid-product-from-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.2rem;
}

.liquid-product-card--group .liquid-product-price-from .liquid-product-price-row {
  margin-bottom: 0;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.liquid-product-card--group .liquid-product-price-from .liquid-product-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--cl-accent);
  text-shadow: 0 0 22px rgba(var(--cl-accent-rgb), 0.35);
}

.liquid-product-card--group .liquid-product-price-from .liquid-product-price-slash {
  width: 100%;
  text-align: right;
  margin-top: 0.15rem;
}

/* Non-group cards: keep readable body layout inside the same shell */
.liquid-product-card:not(.liquid-product-card--group) .liquid-product-price-row {
  margin-bottom: 0.85rem;
}

.liquid-product-card:not(.liquid-product-card--group) .liquid-product-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
}

.liquid-product-card:not(.liquid-product-card--group) .liquid-product-btn {
  margin-top: 1rem;
}

/* Products page: grouped narrow catalog look */
.products-page-shell {
  padding-inline: clamp(1rem, 3vw, 2.75rem);
}

.products-page-liquid {
  max-width: 1320px;
  margin-inline: auto;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.products-page-liquid.py-5-nav {
  padding-top: 0.75rem !important;
}

.products-page-stack {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.products-page-liquid .liquid-header p {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.products-page-liquid .liquid-header h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-top: 0.12rem;
}

.products-page-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products-page-block-title {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.products-page-grid {
  margin-top: 0;
  max-width: 1180px;
}

.products-page-item {
  display: flex;
}


@media (max-width: 991.98px) {
  .products-page-liquid.py-5-nav {
    padding-top: 0.6rem !important;
  }
}

@media (max-width: 767.98px) {
  .products-page-stack {
    gap: 1.6rem;
  }

  .products-page-block-title {
    font-size: 1.06rem;
  }

  .products-page-liquid.py-5-nav {
    padding-top: 0.45rem !important;
  }
}

/* Products section: light grid + glow (does not change template paths) */
.products-section-liquid {
  position: relative;
  scroll-margin-top: var(--sa-fixed-header);
}

.products-section-liquid .global-header-liquid {
  margin-bottom: 2.25rem;
}

.products-section-liquid .global-header-liquid p {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0 0 0.75rem;
  padding: 0.26rem 0.65rem;
  border-radius: 6px;
  color: #9de8cb;
  background: rgba(16, 82, 62, 0.35);
  border: 1px solid rgba(67, 189, 146, 0.22);
  letter-spacing: 0.01em;
  text-transform: none;
  font-size: 0.76rem;
  font-weight: 700;
}

.products-section-liquid .global-header-liquid p::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.66rem;
}

.products-section-liquid .global-header-liquid h2 {
  margin: 0 0 0.52rem;
  font-size: clamp(2.05rem, 4.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.products-section-liquid::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: -4rem -2rem auto;
  height: min(520px, 70vh);
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(var(--cl-accent-rgb), 0.2) 0, transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(168, 85, 247, 0.12) 0, transparent 38%),
    radial-gradient(circle at 70% 60%, rgba(var(--cl-accent-rgb), 0.1) 0, transparent 45%),
    linear-gradient(
        115deg,
        rgba(255, 255, 255, 0.04) 1px,
        transparent 1px
      )
      0 0 / 22px 22px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
}

.products-section-liquid .container {
  position: relative;
  z-index: 1;
}

.products-section-grid .products-section-card {
  opacity: 0;
  animation: products-section-card-in 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/*
 * Best Seller / homepage product cards only (#products in components/products.njk).
 * /products uses .products-page-shell — do not share these fixed dimensions.
 */
#products.products-section-liquid .products-section-grid .products-section-card .sa-card {
  max-width: 340px;
  margin-inline: auto;
}

#products.products-section-liquid .products-section-grid .products-section-card .sa-card__image-wrap {
  height: 178px;
}

#products.products-section-liquid .products-section-grid .products-section-card .sa-card__body {
  padding: 9px 8px 8px;
  gap: 5px;
}

#products.products-section-liquid .products-section-grid .products-section-card .sa-card__title {
  font-size: 14px;
}

#products.products-section-liquid .products-section-grid .products-section-card .sa-card__price {
  font-size: 13px;
}

#products.products-section-liquid .products-section-grid .products-section-card .sa-card__stock {
  font-size: 9px;
}

/* /products: full column width; image fills tile (cover — no letterboxing) */
.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card {
  max-width: none;
  width: 100%;
  margin-inline: 0;
}

/* product-card.njk ships .sa-card__image-wrap { height:200px; display:flex; … } — must reset or layout breaks */
.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__image-wrap {
  position: relative;
  display: block;
  height: auto;
  min-height: 0;
  /* Ultrawide tile: products listing only (.products-page-shell is only on templates/products) */
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 75% at 50% 35%, rgba(var(--cl-accent-rgb), 0.18) 0%, transparent 62%),
    rgb(var(--cl-background-primary-rgb));
}

.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__body {
  padding: 0.85rem 1rem 0.95rem;
  gap: 0.35rem;
}

.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__title {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__price {
  font-size: 0.92rem;
}

.products-page-shell .products-section-liquid .products-section-grid .products-section-card .sa-card__stock {
  font-size: 0.7rem;
}

.products-section-grid .products-section-card:nth-child(1) {
  animation-delay: 0.04s;
}

.products-section-grid .products-section-card:nth-child(2) {
  animation-delay: 0.12s;
}

.products-section-grid .products-section-card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes products-section-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.products-view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.products-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.48rem 1.05rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(var(--cl-accent-rgb), 0.45);
  background: linear-gradient(
    135deg,
    rgba(var(--cl-accent-rgb), 0.35) 0%,
    rgba(88, 28, 135, 0.5) 50%,
    rgba(var(--cl-accent-rgb), 0.22) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.products-view-all-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(var(--cl-accent-rgb), 0.75);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 16px 40px rgba(0, 0, 0, 0.45);
}

/* Homepage game collection cards */
.games-collection-section {
  position: relative;
  padding: clamp(3.75rem, 8vw, 6rem) 0 0.8rem;
}

.games-collection-header {
  text-align: center;
  margin-bottom: 1.05rem;
}

.games-collection-subtitle {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(var(--cl-accent-rgb), 0.85);
}

.games-collection-title {
  margin: 0.3rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.games-collection-description {
  margin: 0.38rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.games-collection-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.games-collection-track {
  display: flex;
  gap: 0.95rem;
  width: max-content;
  animation: games-collection-scroll 32s linear infinite;
}

.games-collection-marquee:hover .games-collection-track {
  animation-play-state: paused;
}

.games-collection-card {
  position: relative;
  flex: 0 0 218px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 14, 0.88);
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.75);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.games-collection-card:hover {
  border-color: rgba(var(--cl-accent-rgb), 0.62);
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px -18px rgba(0, 0, 0, 0.85),
    0 0 32px -18px rgba(var(--cl-accent-rgb), 0.45);
}

.games-collection-media {
  position: relative;
  aspect-ratio: 14 / 19;
  background: linear-gradient(160deg, rgba(20, 24, 32, 0.9), rgba(8, 9, 12, 0.95));
}

.games-collection-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.games-collection-logo {
  position: absolute;
  left: 50%;
  bottom: 24%;
  transform: translateX(-50%);
  width: min(72%, 136px);
  max-height: 34%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
}

.games-collection-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 700;
}

.games-collection-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  text-align: center;
  padding: 1.8rem 0.62rem 0.72rem;
  background: linear-gradient(
    to top,
    rgba(7, 8, 12, 0.95) 0%,
    rgba(7, 8, 12, 0.72) 48%,
    rgba(7, 8, 12, 0) 100%
  );
}

.games-collection-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.games-collection-overlay p {
  margin: 0.16rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
}

.games-collection-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 0.95rem;
}

.games-collection-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none !important;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.42rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(var(--cl-accent-rgb), 0.35);
  background: linear-gradient(
    130deg,
    rgba(var(--cl-accent-rgb), 0.24) 0%,
    rgba(9, 18, 16, 0.95) 100%
  );
}

.games-collection-cta:hover {
  color: #fff;
  border-color: rgba(var(--cl-accent-rgb), 0.6);
}

@keyframes games-collection-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

/* Product group modals: solid panel matching page bg (no glass / transparency) */
.group-products-modal-wrap .modal-content.group-products-modal {
  background: rgb(var(--cl-background-primary-rgb)) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.group-products-modal-wrap .group-products-modal__head {
  background: rgb(var(--cl-background-primary-rgb)) !important;
  border-bottom: 1px solid rgba(var(--cl-accent-rgb), 0.42) !important;
  padding: 1.15rem 1.35rem !important;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

.group-products-modal-wrap .group-products-modal__title {
  font-family: 'Inter', var(--bs-font-sans-serif), system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0;
}

.group-products-modal-wrap .group-products-modal__body {
  background: rgb(var(--cl-background-primary-rgb)) !important;
  padding: 1.25rem 1.25rem 1.5rem !important;
}

@media (min-width: 992px) {
  .group-products-modal-wrap .group-products-modal__body {
    padding: 1.5rem 1.5rem 1.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-section-grid .products-section-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .products-view-all-btn:hover {
    transform: none;
  }

  .games-collection-track {
    animation: none;
  }
}

/* Floating AI support assistant */
[x-cloak] { display: none !important; }

/* Clears fixed scroll-up button (30px + 50px) + gap; safe-area for notched devices */
.support-assistant {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(30px + 50px + 14px + env(safe-area-inset-bottom));
  z-index: 1200;
  max-width: min(calc(100vw - 1.5rem - env(safe-area-inset-left) - env(safe-area-inset-right)), 22rem);
}

.support-assistant__bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(var(--cl-accent-rgb), 0.35);
  background: rgba(var(--cl-background-primary-rgb), 0.9);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  min-height: 48px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  max-width: 100%;
}

.support-assistant__bubble span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-assistant__panel {
  width: min(92vw, 350px);
  max-width: 100%;
  margin-top: 0.65rem;
  background: rgba(var(--cl-background-primary-rgb), 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.support-assistant__header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-assistant__header small {
  color: rgba(255, 255, 255, 0.72);
}

.support-assistant__messages {
  max-height: min(280px, 42dvh);
  overflow-y: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  -webkit-overflow-scrolling: touch;
}

.support-assistant__message {
  max-width: 88%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  line-height: 1.35;
  font-size: 0.92rem;
}

.support-assistant__message.is-assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
}

.support-assistant__message.is-user {
  align-self: flex-end;
  background: rgba(var(--cl-accent-rgb), 0.24);
}

.support-assistant__message a {
  color: #b18cff;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.support-assistant__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-assistant__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: #fff;
  padding: 0.52rem 0.62rem;
  outline: none;
  min-height: 44px;
  font-size: 16px;
}

.support-assistant__send {
  border: 1px solid rgba(var(--cl-accent-rgb), 0.55);
  background: rgba(var(--cl-accent-rgb), 0.22);
  color: #fff;
  border-radius: 9px;
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  min-width: 4.25rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .support-assistant {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(20px + 45px + 12px + env(safe-area-inset-bottom));
    max-width: min(calc(100vw - 1rem - env(safe-area-inset-left) - env(safe-area-inset-right)), 20rem);
  }

  .support-assistant__panel {
    width: min(calc(100vw - 1rem - env(safe-area-inset-left) - env(safe-area-inset-right)), 360px);
  }

  .support-assistant__bubble {
    padding: 0.65rem 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .support-assistant__messages {
    max-height: min(240px, 38dvh);
  }
}
