/*
 * WARZONE AUTH — Complete Theme CSS
 * Blue/cyan #C2F5FF palette, constellation background, full-bleed hero
 */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;600;700;900&display=swap');

/* ===== TOKENS ===== */
:root {
  --c-blue:       #C2F5FF;
  --c-blue-mid:   #7ecfea;
  --c-blue-dark:  #0ea5d4;
  --c-bg:         #04060d;
  --c-card:       rgba(8,12,24,0.94);
  --c-border:     rgba(194,245,255,0.13);
  --c-border-hi:  rgba(194,245,255,0.44);
  --c-text:       #e8eaf8;
  --c-text-dim:   rgba(232,234,248,0.55);
}

/* ===== BASE BACKGROUND — clean professional dark ===== */
.warzone-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0,60,120,0.18) 0%, transparent 65%),
    linear-gradient(180deg, #05080f 0%, #030508 60%, #04060c 100%);
}

/* ===== HEADER — Row 1 ===== */
.hdr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: transparent;
  border-bottom: 1px solid rgba(194,245,255,0.08);
  backdrop-filter: blur(0px);
  position: relative;
  z-index: 200;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hdr-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.hdr-logo img { max-height:34px; border-radius:4px; }
.hdr-logo-name {
  font-family:'Orbitron',sans-serif; font-size:1.05rem; font-weight:700; color:#fff; letter-spacing:.5px;
}
.hdr-stats { display:flex; align-items:center; gap:28px; }
.hdr-stat { text-align:center; }
.hdr-stat-num {
  font-family:'Orbitron',sans-serif; font-size:1.2rem; font-weight:700;
  color:var(--c-blue); line-height:1; text-shadow:0 0 12px rgba(194,245,255,.5);
}
.hdr-stat-label {
  font-family:'Rajdhani',sans-serif; font-size:.65rem; letter-spacing:3px;
  text-transform:uppercase; color:rgba(194,245,255,.45); margin-top:2px;
}
.hdr-controls { display:flex; align-items:center; gap:10px; position:relative; z-index:300; }

/* ===== HEADER — Row 2 nav ===== */
.hdr-nav {
  display:flex; align-items:center; justify-content:space-between;
  padding:0 40px; background: transparent;
  border-bottom:1px solid rgba(194,245,255,0.06); backdrop-filter:blur(0px);
  position:relative; z-index:100;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hdr-nav-links {
  display:flex; align-items:center; gap:4px;
  overflow-x:auto; scrollbar-width:none; padding:8px 0;
}
.hdr-nav-links::-webkit-scrollbar { display:none; }
.nav-link {
  padding:7px 18px; white-space:nowrap;
  font-family:'Rajdhani',sans-serif; font-size:.9rem; font-weight:600;
  letter-spacing:.5px; text-transform:uppercase; text-decoration:none;
  border-radius:6px; border:1px solid rgba(255,255,255,.07);
  color:rgba(232,234,248,.75); background:transparent; transition:all .2s;
}
.nav-link:hover { border-color:var(--c-border-hi); color:var(--c-blue); background:rgba(194,245,255,.06); }
.nav-link.active {
  border-color:rgba(194,245,255,.5); color:var(--c-blue);
  background:rgba(194,245,255,.08); text-shadow:0 0 10px rgba(194,245,255,.4);
}
.hdr-cart {
  position:relative; padding:8px 10px; border:1px solid var(--c-border);
  border-radius:6px; color:rgba(194,245,255,.7); background:rgba(194,245,255,.04);
  text-decoration:none; display:flex; align-items:center; transition:all .2s;
}
.hdr-cart:hover { border-color:var(--c-border-hi); color:var(--c-blue); background:rgba(194,245,255,.1); }
.hdr-cart-badge {
  position:absolute; top:-7px; right:-7px; background:var(--c-blue); color:#000;
  font-size:10px; font-weight:700; width:18px; height:18px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.hdr-login {
  padding:8px 20px; font-family:'Orbitron',sans-serif; font-size:10px;
  font-weight:700; letter-spacing:2px; text-transform:uppercase; text-decoration:none;
  border:1px solid var(--c-border-hi); color:var(--c-blue);
  background:rgba(194,245,255,.07); border-radius:6px; cursor:pointer; transition:all .25s;
}
.hdr-login:hover { background:rgba(194,245,255,.15); box-shadow:0 0 20px rgba(194,245,255,.2); }
.hdr-currency {
  position: relative;
  z-index: 400;
}
.hdr-currency select {
  background:rgba(10,14,24,.9); border:1px solid var(--c-border); border-radius:6px;
  color:rgba(194,245,255,.7); height:36px; width:80px;
  font-family:'Rajdhani',sans-serif; font-size:.85rem; padding:0 8px; cursor:pointer;
}

/* ===== FULL-WIDTH TICKER ===== */
.ticker-full-wrap {
  position:relative;
  width:100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow:hidden;
  background:rgba(0,18,45,0.65);
  border-top:1px solid rgba(194,245,255,.2);
  border-bottom:1px solid rgba(194,245,255,.2);
  padding:10px 0; backdrop-filter:blur(8px);
  z-index:10;
}
.ticker-track { display:flex; width:max-content; animation:ticker-loop 40s linear infinite; }
@keyframes ticker-loop { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-family:'Orbitron',sans-serif; font-size:10px; letter-spacing:4px;
  text-transform:uppercase; color:var(--c-blue); white-space:nowrap;
  padding:0 32px; display:inline-flex; align-items:center; gap:16px;
  opacity:.85; text-shadow:0 0 10px rgba(194,245,255,.4);
}
.ticker-dot {
  width:4px; height:4px; border-radius:50%;
  background:rgba(194,245,255,.5); display:inline-block; box-shadow:0 0 6px rgba(194,245,255,.4);
}

/* ===== SOCIAL CARDS ===== */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: rgba(8,12,24,0.92);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  text-decoration: none;
  transition: all .3s cubic-bezier(.23,1,.32,1);
  cursor: pointer;
}
.social-card:hover {
  border-color: var(--c-border-hi);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(194,245,255,.1), 0 0 0 1px rgba(194,245,255,.15);
  background: rgba(12,18,36,0.96);
}
.social-icon {
  width: 64px;
  height: 64px;
  color: var(--c-blue);
  margin-bottom: 20px;
}
.social-icon svg { width: 100%; height: 100%; }
.social-name {
  font-family: 'Orbitron', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}
.social-handle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(194,245,255,0.5);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.social-btn {
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid rgba(194,245,255,0.35);
  border-radius: 6px;
  color: var(--c-blue);
  background: rgba(194,245,255,0.07);
  transition: all .25s;
}
.social-card:hover .social-btn {
  background: rgba(194,245,255,0.15);
  border-color: rgba(194,245,255,0.6);
  box-shadow: 0 0 20px rgba(194,245,255,0.2);
}

/* ===== PAGE CONTENT WRAPPER (non-hero pages) ===== */
.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: min(62vw, 96vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  width: 100vw;
  /* Pull hero up behind header only — ticker lives inside hero now */
  margin-top: -100px;
  padding-top: 100px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* bottom space for the stat bar inside the hero */
  padding-bottom: 88px;
}

/* Ticker strip — flush with the bottom edge of the header */
.hero-ticker-wrap {
  position: absolute;
  top: 0; /* hero top is already visually at header-bottom due to margin-top:-100px + padding-top:100px */
  left: 0;
  right: 0;
  z-index: 210; /* above header z-index:200 so it's flush */
  overflow: hidden;
  background: rgba(3,6,18,0.88);
  border-bottom: 1px solid rgba(194,245,255,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
}

/* ===== HERO BG IMAGE WRAPPER — full width so all characters show ===== */
.hero-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* ===== HERO OPERATORS IMAGE ===== */
.hero-ops-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  /* Blend left (fade to bg) + top (fade to bg behind header) + bottom (subtle) */
  -webkit-mask-image:
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0,0,0,0.15) 20%,
      rgba(0,0,0,0.7) 26%,
      black 32%,
      black 80%,
      rgba(0,0,0,0.4) 100%
    ),
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,0.1) 18%,
      rgba(0,0,0,0.55) 28%,
      black 40%,
      black 100%
    );
  -webkit-mask-composite: multiply;
  mask-image:
    linear-gradient(to bottom,
      transparent 0%,
      rgba(0,0,0,0.15) 20%,
      rgba(0,0,0,0.7) 26%,
      black 32%,
      black 80%,
      rgba(0,0,0,0.4) 100%
    ),
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,0.1) 18%,
      rgba(0,0,0,0.55) 28%,
      black 40%,
      black 100%
    );
  mask-composite: intersect;
  filter: brightness(0.88) saturate(1.1) hue-rotate(-5deg);
  animation: ops-float 8s ease-in-out infinite;
  transform-origin: center right;
}

@keyframes ops-float {
  0%,100% { transform: translateY(0px) scale(1.00); }
  50%      { transform: translateY(-8px)  scale(1.01); }
}

/* Subtle top/bottom vignette inside the image panel */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,6,13,0.85) 0%,
      rgba(4,6,13,0.35) 14%,
      transparent 28%,
      transparent 72%,
      rgba(4,6,13,0.55) 100%
    ),
    linear-gradient(to right,
      rgba(4,6,13,0.92) 0%,
      rgba(4,6,13,0.45) 30%,
      transparent 55%
    );
  pointer-events: none;
}

@keyframes bg-breathe {
  0%,100% { transform: scale(1.00); }
  50%      { transform: scale(1.012); }
}

/* ===== HERO CONTENT (text, above bg) ===== */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 50%;
  padding-left: 80px;
  padding-right: 20px;
  margin-top: 44px; /* push content below the ticker strip (~40px tall) */
}

/* ===== HERO LABEL ===== */
.hero-label {
  display:inline-flex; align-items:center; gap:10px; padding:7px 18px;
  background:rgba(194,245,255,.07); border:1px solid rgba(194,245,255,.3);
  border-radius:4px; font-family:'Orbitron',sans-serif; font-size:10px;
  letter-spacing:3px; text-transform:uppercase; color:var(--c-blue);
  margin-bottom:20px; position:relative; overflow:hidden;
}
.hero-label::before {
  content:''; position:absolute; left:-100%; top:0; width:100%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(194,245,255,.1),transparent);
  animation:shimmer-label 3.5s infinite;
}
@keyframes shimmer-label { 0%{left:-100%} 60%,100%{left:100%} }
.hero-blink {
  width:7px; height:7px; border-radius:50%; background:#22c55e;
  box-shadow:0 0 8px #22c55e; animation:blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(1.4)} }

/* ===== HERO TITLES — clean mixed-weight like OSC ===== */
.hero-title {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 4px;
  text-transform: none;
}
.hero-title-outline {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: none;
  -webkit-text-stroke: 0;
  letter-spacing: -0.3px;
}

/* glitch removed */

.hero-subtitle {
  font-family:'Rajdhani',sans-serif; font-size:1.15rem; font-weight:500;
  color:rgba(232,234,248,.65); letter-spacing:2px; text-transform:uppercase;
  margin-bottom:36px; max-width:460px;
}

/* ===== STATUS BADGE ===== */
.status-badge {
  display:inline-flex; align-items:center; gap:8px; padding:6px 14px;
  border-radius:4px; font-family:'Orbitron',sans-serif; font-size:10px;
  letter-spacing:2px; text-transform:uppercase;
}
.status-badge.green { background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.35); color:#4ade80; }
.status-badge .dot {
  width:6px; height:6px; border-radius:50%; background:currentColor;
  box-shadow:0 0 8px currentColor; animation:blink 1.6s infinite;
}

/* ===== CTA BUTTONS ===== */
.btn-primary {
  display:inline-flex; align-items:center; gap:12px; padding:16px 36px;
  background:linear-gradient(135deg,var(--c-blue) 0%,#7ecfea 100%);
  color:#020408; font-family:'Orbitron',sans-serif; font-size:12px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; text-decoration:none;
  border:none; border-radius:6px; cursor:pointer; transition:all .3s;
  box-shadow:0 0 28px rgba(194,245,255,.35), inset 0 1px 0 rgba(255,255,255,.3);
  position:relative; overflow:hidden;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.2),transparent 50%);
  opacity:0; transition:opacity .3s;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 0 50px rgba(194,245,255,.55), 0 12px 30px rgba(0,0,0,.3); }
.btn-primary:hover::before { opacity:1; }
.btn-secondary {
  display:inline-flex; align-items:center; gap:12px; padding:15px 36px;
  background:transparent; color:#fff; font-family:'Orbitron',sans-serif; font-size:12px;
  font-weight:700; letter-spacing:2px; text-transform:uppercase; text-decoration:none;
  border:1px solid rgba(194,245,255,.4); border-radius:6px; cursor:pointer; transition:all .3s;
}
.btn-secondary:hover {
  border-color:var(--c-blue); color:var(--c-blue);
  background:rgba(194,245,255,.07); box-shadow:0 0 20px rgba(194,245,255,.15); transform:translateY(-2px);
}

/* ===== STAT BAR ===== */
.stat-bar {
  display:flex; margin-top:48px; border:1px solid var(--c-border);
  background:rgba(4,6,14,.85); backdrop-filter:blur(20px);
  border-radius:6px; max-width:480px; overflow:hidden;
}
.stat-item { flex:1; padding:18px 20px; text-align:center; border-right:1px solid var(--c-border); position:relative; }
.stat-item:last-child { border-right:none; }
.stat-item::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--c-blue),transparent);
  transform:scaleX(0); transition:transform .4s;
}
.stat-item:hover::before { transform:scaleX(1); }
.stat-num {
  font-family:'Orbitron',sans-serif; font-size:1.6rem; font-weight:700;
  color:var(--c-blue); line-height:1; margin-bottom:4px;
  text-shadow:0 0 14px rgba(194,245,255,.5);
}
.stat-label {
  font-family:'Rajdhani',sans-serif; font-size:.65rem; letter-spacing:3px;
  text-transform:uppercase; color:rgba(194,245,255,.4);
}

/* ===== CORNER DECO ===== */
.corner-tl {
  position:absolute; top:20px; left:20px; width:22px; height:22px;
  border-top:2px solid rgba(194,245,255,.5); border-left:2px solid rgba(194,245,255,.5); z-index:6;
}
.corner-br {
  position:absolute; bottom:20px; right:20px; width:22px; height:22px;
  border-bottom:2px solid rgba(194,245,255,.5); border-right:2px solid rgba(194,245,255,.5); z-index:6;
}

/* ===== PARTICLES ===== */
.particles-wrap { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:3; }
.particle {
  position:absolute; width:2px; height:2px; border-radius:50%;
  background:var(--c-blue); opacity:0;
  animation:particle-rise var(--dur,8s) var(--delay,0s) infinite ease-in;
}
@keyframes particle-rise {
  0%   { opacity:0; transform:translateY(0) translateX(0); }
  10%  { opacity:.5; }
  90%  { opacity:.15; }
  100% { opacity:0; transform:translateY(-75vh) translateX(var(--drift,25px)); }
}

/* ===== SECTION TITLES ===== */
.section-eyebrow {
  font-family:'Orbitron',sans-serif; font-size:10px; letter-spacing:5px;
  text-transform:uppercase; color:var(--c-blue); margin-bottom:10px;
  display:flex; align-items:center; gap:12px;
}
.section-eyebrow::before,.section-eyebrow::after {
  content:''; flex:1; max-width:36px; height:1px; background:var(--c-blue); opacity:.45;
}
.section-title {
  font-family:'Orbitron',sans-serif; font-size:clamp(1.8rem,3.5vw,2.8rem);
  font-weight:900; text-transform:uppercase; letter-spacing:-.5px; color:#fff; margin-bottom:14px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  padding: 28px 24px;
  background: rgba(8,12,22,0.92);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
}
.feature-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:100%;
  background:linear-gradient(135deg,rgba(194,245,255,.04) 0%,transparent 60%);
  opacity:0; transition:opacity .4s;
}
.feature-card:hover {
  border-color: var(--c-border-hi);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(194,245,255,.08), 0 0 0 1px rgba(194,245,255,.12);
}
.feature-card:hover::before { opacity:1; }

/* Icon wrapper — fixed size box, never bleeds out */
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--c-blue);
  filter: drop-shadow(0 0 8px rgba(194,245,255,.35));
  flex-shrink: 0;
}
.feature-icon-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-title {
  font-family:'Orbitron',sans-serif; font-size:.82rem; font-weight:700;
  letter-spacing:1px; text-transform:uppercase; color:#fff; margin-bottom:8px;
}
.feature-desc {
  font-family:'Rajdhani',sans-serif; font-size:1rem;
  color:rgba(232,234,248,.5); line-height:1.6;
}

/* ===== DIVIDER ===== */
.tac-divider {
  display:flex; align-items:center; gap:14px; margin:60px 0;
  position: relative; z-index: 10;
}
.tac-divider::before,.tac-divider::after {
  content:''; flex:1; height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,245,255,.25),transparent);
}
.tac-divider-icon { color:var(--c-blue); opacity:.5; }

/* ===== PRODUCT CARDS ===== */
.product-card {
  transition:all .4s cubic-bezier(.23,1,.32,1) !important;
  border-color:rgba(194,245,255,.12) !important; border-radius:8px !important;
  position: relative; z-index: 10;
}
.product-card:hover {
  transform:translateY(-6px) !important;
  box-shadow:0 20px 50px rgba(194,245,255,.12), 0 0 0 1px rgba(194,245,255,.25) !important;
  border-color:rgba(194,245,255,.35) !important;
}

/* ===== FOOTER ===== */
footer.component, footer {
  border-top:1px solid var(--c-border) !important;
  background:rgba(4,6,14,.98) !important;
  position: relative; z-index: 10;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:rgba(4,6,14,.8); }
::-webkit-scrollbar-thumb { background:rgba(194,245,255,.2); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:rgba(194,245,255,.4); }

/* ===== MOBILE ===== */
/* =====================================================
   TABLET  (max 1024px)
   ===================================================== */
@media (max-width:1024px) {
  /* Header */
  .hdr-top    { padding:10px 24px; }
  .hdr-nav    { padding:0 24px; }
  .hdr-stats  { gap:16px; }
  .hdr-stat-num { font-size:1rem; }

  /* Hero */
  .hero-content { max-width:60%; padding-left:40px; }
  .hero-title   { font-size:clamp(2.4rem,5vw,4rem); }
  .hero-title-outline { font-size:clamp(1.3rem,3vw,2.4rem); }
  .stat-bar     { max-width:100%; }
  .features-grid { grid-template-columns:1fr 1fr; }
}

/* =====================================================
   MOBILE  (max 768px)
   ===================================================== */
@media (max-width:768px) {

  /* ----- Header row 1 ----- */
  .hdr-top {
    padding:10px 16px;
    flex-wrap:wrap;
    gap:8px;
  }
  /* Hide sales/buyers/rating stats on mobile — too cramped */
  .hdr-stats { display:none; }
  .hdr-controls { gap:8px; }
  .hdr-login { padding:7px 14px; font-size:9px; }

  /* ----- Header row 2 nav ----- */
  .hdr-nav { padding:0 12px; }
  .nav-link { padding:6px 12px; font-size:.8rem; }

  /* ----- Hero section ----- */
  .hero-section {
    min-height:100svh;
    /* Stack content on top, operators become a background */
    display:flex;
    align-items:flex-end;
    padding-bottom:32px;
  }
  .hero-content {
    max-width:100%;
    padding-left:20px;
    padding-right:20px;
    /* Push content to bottom so operators show above */
    position:relative;
    z-index:6;
  }
  /* On mobile: expand image wrapper to full width, fade heavily */
  .hero-bg-image {
    width: 100%;
    opacity: 0.3;
  }
  .hero-ops-img {
    object-fit: contain;
    object-position: center center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 100%);
  }
  /* Darken overlay left side heavily so text is always legible */
  .hero-bg-overlay {
    background: linear-gradient(to right,
      rgba(4,6,13,.98) 0%,
      rgba(4,6,13,.92) 60%,
      rgba(4,6,13,.7) 100%) !important;
  }

  /* Hero text sizes */
  .hero-title         { font-size:clamp(2rem,9vw,3rem); }
  .hero-title-outline { font-size:clamp(1rem,5vw,1.8rem); }
  .hero-subtitle      { font-size:1rem; letter-spacing:1px; margin-bottom:24px; }
  .hero-label         { font-size:9px; padding:6px 14px; }

  /* CTA buttons — stack on mobile */
  .hero-cta {
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:flex-start;
  }
  .btn-primary,
  .btn-secondary {
    width:100%;
    max-width:280px;
    justify-content:center;
    padding:14px 24px;
    font-size:11px;
  }

  /* Stat bar — 2 per row */
  .stat-bar {
    max-width:100%;
    flex-wrap:wrap;
  }
  .stat-item {
    flex:1 1 45%;
    padding:14px 12px;
    border-right:1px solid var(--c-border);
    border-bottom:1px solid var(--c-border);
  }
  .stat-item:nth-child(even) { border-right:none; }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom:none; }
  .stat-num { font-size:1.3rem; }

  /* Features grid */
  .features-grid { grid-template-columns:1fr 1fr; gap:12px; }

  /* Ticker — slightly smaller */
  .ticker-item { font-size:9px; letter-spacing:3px; }
}

/* =====================================================
   SMALL MOBILE  (max 480px)
   ===================================================== */
@media (max-width:480px) {
  /* Header */
  .hdr-logo-name { font-size:.85rem; }
  .hdr-logo img  { max-height:28px; }

  /* Hero */
  .hero-title         { font-size:clamp(1.8rem,8vw,2.6rem); }
  .hero-title-outline { font-size:clamp(.9rem,4.5vw,1.4rem); }
  .hero-subtitle      { font-size:.9rem; }

  /* Features: single column */
  .features-grid { grid-template-columns:1fr; }

  /* Stat bar — all stack */
  .stat-item { flex:1 1 100%; border-right:none; }
  .stat-item { border-bottom:1px solid var(--c-border); }
  .stat-item:last-child { border-bottom:none; }
}

/* ===== SHOP NAME GRADIENT ===== */
.shop-name-gradient {
  background: linear-gradient(90deg, #c2f5ff 0%, #4fc3e8 50%, #2e9fc9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

/* ===== PRODUCT CARD CURRENCY CODE ===== */
.product-currency-code {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.65rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(194, 245, 255, 0.45);
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ===== CHOICES.JS CURRENCY DROPDOWN RESKIN ===== */
.currency-selector .choices {
  margin: 0;
}

/* The trigger button */
.currency-selector .choices__inner {
  background: rgba(10, 14, 24, 0.92) !important;
  border: 1px solid rgba(194, 245, 255, 0.18) !important;
  border-radius: 8px !important;
  padding: 4px 10px !important;
  min-height: unset !important;
  height: 34px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: border-color .2s, box-shadow .2s !important;
  min-width: 80px !important;
}
.currency-selector .choices.is-open .choices__inner,
.currency-selector .choices__inner:hover {
  border-color: rgba(194, 245, 255, 0.42) !important;
  box-shadow: 0 0 10px rgba(194, 245, 255, 0.08) !important;
}

/* Selected value text */
.currency-selector .choices__list--single {
  padding: 0 !important;
}
.currency-selector .choices__list--single .choices__item {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  color: rgba(194, 245, 255, 0.85) !important;
  padding: 0 !important;
}

/* Arrow icon */
.currency-selector .choices__arrow,
.currency-selector .choices[data-type*="select-one"]:after {
  border-color: rgba(194, 245, 255, 0.5) transparent transparent !important;
  right: 10px !important;
  top: 50% !important;
  margin-top: -3px !important;
}
.currency-selector .choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent rgba(194, 245, 255, 0.85) !important;
  margin-top: -7px !important;
}

/* Dropdown container */
.currency-selector .choices__list--dropdown,
.currency-selector .choices__list[aria-expanded] {
  background: rgba(8, 11, 22, 0.98) !important;
  border: 1px solid rgba(194, 245, 255, 0.18) !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(194, 245, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  overflow: hidden !important;
  margin-top: 4px !important;
  min-width: 160px !important;
  max-height: 260px !important;
  z-index: 99999 !important;
  position: absolute !important;
}

/* Search box */
.currency-selector .choices__list--dropdown .choices__input,
.currency-selector .choices__list[aria-expanded] .choices__input {
  background: rgba(194, 245, 255, 0.05) !important;
  border: none !important;
  border-bottom: 1px solid rgba(194, 245, 255, 0.1) !important;
  border-radius: 0 !important;
  color: rgba(194, 245, 255, 0.7) !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 1px !important;
  padding: 10px 14px !important;
  outline: none !important;
}
.currency-selector .choices__list--dropdown .choices__input::placeholder,
.currency-selector .choices__list[aria-expanded] .choices__input::placeholder {
  color: rgba(194, 245, 255, 0.3) !important;
  font-style: italic !important;
}

/* Scrollable list */
.currency-selector .choices__list--dropdown .choices__list,
.currency-selector .choices__list[aria-expanded] .choices__list {
  max-height: 210px !important;
  overflow-y: auto !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(194, 245, 255, 0.2) transparent !important;
}
.currency-selector .choices__list--dropdown .choices__list::-webkit-scrollbar { width: 4px; }
.currency-selector .choices__list--dropdown .choices__list::-webkit-scrollbar-track { background: transparent; }
.currency-selector .choices__list--dropdown .choices__list::-webkit-scrollbar-thumb {
  background: rgba(194, 245, 255, 0.2); border-radius: 2px;
}

/* Dropdown items */
.currency-selector .choices__list--dropdown .choices__item,
.currency-selector .choices__list[aria-expanded] .choices__item {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 1px !important;
  color: rgba(194, 245, 255, 0.6) !important;
  padding: 9px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: background .12s, color .12s !important;
  border-bottom: 1px solid rgba(194, 245, 255, 0.04) !important;
}
.currency-selector .choices__list--dropdown .choices__item:last-child,
.currency-selector .choices__list[aria-expanded] .choices__item:last-child {
  border-bottom: none !important;
}

/* Hover state */
.currency-selector .choices__list--dropdown .choices__item--selectable.is-highlighted,
.currency-selector .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: rgba(194, 245, 255, 0.08) !important;
  color: rgba(194, 245, 255, 0.9) !important;
}

/* Selected (active) item */
.currency-selector .choices__list--dropdown .choices__item.is-selected,
.currency-selector .choices__list[aria-expanded] .choices__item.is-selected {
  color: #c2f5ff !important;
  font-weight: 700 !important;
  background: rgba(194, 245, 255, 0.06) !important;
}
/* "Default" badge on selected */
.currency-selector .choices__list--dropdown .choices__item.is-selected::after,
.currency-selector .choices__list[aria-expanded] .choices__item.is-selected::after {
  content: 'Default';
  margin-left: auto !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 0.55rem !important;
  letter-spacing: 1px !important;
  color: rgba(194, 245, 255, 0.4) !important;
  background: rgba(194, 245, 255, 0.08) !important;
  border: 1px solid rgba(194, 245, 255, 0.15) !important;
  border-radius: 3px !important;
  padding: 2px 5px !important;
}

/* =====================================================
   ROTATING REVIEWS CAROUSEL
   ===================================================== */
.reviews-ticker-section {
  position: relative;
  z-index: 10;
  margin: 80px 0;
}

.reviews-carousel-wrap {
  overflow: hidden;
  position: relative;
  /* Break out of .page-content container to go full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-row {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-bottom: 4px;
}

.reviews-row--ltr {
  animation: scroll-ltr 55s linear infinite;
}
.reviews-row--rtl {
  animation: scroll-rtl 55s linear infinite;
}

@keyframes scroll-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scroll-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.reviews-carousel-wrap:hover .reviews-row {
  animation-play-state: paused;
}

.review-card {
  width: 290px;
  flex-shrink: 0;
  padding: 20px 22px;
  background: rgba(8,12,22,0.92);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  transition: border-color .25s, box-shadow .25s;
  cursor: default;
}
.review-card:hover {
  border-color: rgba(194,245,255,.28);
  box-shadow: 0 0 20px rgba(194,245,255,.04);
}
.review-stars {
  color: var(--c-blue);
  font-size: .95rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(194,245,255,.35);
}
.review-msg {
  font-family: 'Rajdhani', sans-serif;
  font-size: .97rem;
  color: rgba(232,234,248,.72);
  line-height: 1.55;
  margin: 0 0 14px 0;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.review-handle {
  font-family: 'Orbitron', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--c-blue);
  opacity: .65;
}
.review-time {
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem;
  color: rgba(194,245,255,.28);
}

/* =====================================================
   FROM CHECKOUT TO IN-GAME — 3 STEPS
   ===================================================== */
.steps-section {
  position: relative;
  z-index: 10;
  margin: 60px 0 80px;
  padding: 60px 0;
  border-top: 1px solid var(--c-border);
}
.steps-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.steps-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.5px;
  margin: 14px 0 0;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
}
.step-item:first-child { border-top: 1px solid var(--c-border); }
.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-blue);
  opacity: .45;
  min-width: 26px;
  padding-top: 3px;
}
.step-title {
  font-family: 'Orbitron', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.step-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: .97rem;
  color: rgba(232,234,248,.45);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-inner  { grid-template-columns: 1fr; gap: 40px; }
  .steps-heading { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .review-card  { width: 260px; }
}
@media (max-width: 480px) {
  .review-card  { width: 230px; padding: 16px 16px; }
  .reviews-ticker-section { margin: 50px 0; }
}

/* ===== HERO LABEL — crown badge style ===== */
.hero-crown {
  font-size: 13px;
  filter: drop-shadow(0 0 6px rgba(255,200,50,.5));
}

/* ===== DISCORD BUTTON ===== */
.btn-discord {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px;
  background: rgba(88,101,242,.15); color: #fff;
  font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(88,101,242,.55); border-radius: 6px;
  cursor: pointer; transition: all .3s;
}
.btn-discord:hover {
  background: rgba(88,101,242,.28); border-color: rgba(88,101,242,.9);
  box-shadow: 0 0 22px rgba(88,101,242,.3); transform: translateY(-2px);
}
.btn-discord svg { opacity: .9; }

/* ===== FULL-WIDTH STAT BAR (below hero) ===== */
.stat-bar-full {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: transparent;
  border-top: none;
  z-index: 20;
  width: 100%;
}
.stat-bar-inner {
  max-width: 100%; margin: 0 auto;
  display: flex; align-items: stretch;
  padding: 0;
}
.stat-item-full {
  flex: 1; padding: 22px 20px; text-align: center;
  border-right: none; position: relative;
}
.stat-item-full:last-child { border-right: none; }
.stat-item-full::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-blue), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.stat-item-full:hover::before { transform: scaleX(1); }
.stat-num-full {
  font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--c-blue); line-height: 1; margin-bottom: 6px;
  text-shadow: 0 0 18px rgba(194,245,255,.5);
}
.stat-label-full {
  font-family: 'Rajdhani', sans-serif; font-size: .7rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(194,245,255,.4);
}

@media (max-width: 900px) {
  .stat-bar-inner { flex-wrap: wrap; padding: 0 20px; }
  .stat-item-full { flex: 1 1 33%; border-bottom: 1px solid var(--c-border); }
  .stat-item-full:nth-child(3) { border-right: none; }
  .stat-item-full:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num-full { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .stat-item-full { flex: 1 1 50%; }
  .stat-item-full:nth-child(2n) { border-right: none; }
  .stat-item-full:last-child { flex: 1 1 100%; border-bottom: none; }
}

/* ===== SITE HEADER WRAP — floats over the hero ===== */
.site-header-wrap {
  position: relative;
  z-index: 200;
}

/* On the shop/home page, the header floats absolute over the hero */
body[data-template="shop"] .site-header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
}
body[data-template="shop"] .site-header-wrap * {
  pointer-events: auto;
}
body[data-template="shop"] .hdr-top {
  background: linear-gradient(180deg, rgba(4,6,14,0.82) 0%, rgba(4,6,14,0.4) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194,245,255,0.07);
}
body[data-template="shop"] .hdr-nav {
  background: linear-gradient(180deg, rgba(4,6,14,0.55) 0%, rgba(4,6,14,0.15) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: none; /* ticker strip provides the flush bottom line */
}

/* Non-hero pages keep opaque header */
body:not([data-template="shop"]) .hdr-top {
  background: rgba(4,6,14,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
}
body:not([data-template="shop"]) .hdr-nav {
  background: rgba(4,6,14,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}

/* Ticker (inside hero) — handled by .hero-ticker-wrap above */


/* ============================================================
   OSC HEADER — matches Image 1 (One Stop Cheats layout)
   ============================================================ */

/* Announcement bar — teal strip */
.osc-announcement {
  background: var(--c-blue-dark);
  color: #fff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 500;
}
.osc-ann-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
}

/* Single-row header */
.osc-header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 400;
  background: #0a0d14;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.osc-hdr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 62px;
  gap: 24px;
}

/* Logo */
.osc-hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.osc-hdr-logo img {
  max-height: 36px;
  border-radius: 4px;
}
.osc-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
/* .osc-logo-accent unused — logo now uses .shop-name-gradient directly */

/* Nav */
.osc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.osc-nav::-webkit-scrollbar { display: none; }
.osc-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(232,234,248,0.65);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s;
}
.osc-nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.osc-nav-link.active {
  background: rgba(194,245,255,0.1);
  border-color: rgba(194,245,255,0.25);
  color: var(--c-blue);
  border-radius: 8px;
}

/* Right controls */
.osc-hdr-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Online badge */
.osc-online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(194,245,255,0.18);
  background: rgba(194,245,255,0.05);
  color: var(--c-blue);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}
.osc-online-num { font-weight: 700; }
.osc-online-label { color: rgba(194,245,255,0.6); }

/* Icon buttons (search) */
.osc-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(232,234,248,0.6);
  cursor: pointer;
  transition: all 0.18s;
}
.osc-icon-btn:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

/* Cart button */
.osc-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(232,234,248,0.65);
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  transition: all 0.18s;
}
.osc-cart-btn:hover, .osc-cart-btn.active {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.osc-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--c-blue);
  color: #020408;
  font-size: 9px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* My Keys CTA */
.osc-mykeys-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--c-blue-dark);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.osc-mykeys-btn:hover {
  background: var(--c-blue-dark);
  box-shadow: 0 0 20px rgba(14,165,212,0.4);
  transform: translateY(-1px);
}

/* ============================================================
   OSC HERO — matches Image 3 (One Stop Cheats hero style)
   ============================================================ */

.osc-hero {
  position: relative;
  min-height: min(55vw, 88vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 80px;
  background: #05080f;
}

.osc-hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  /* Wider + shifted left so both characters are visible */
  width: 68%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.osc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Pull content slightly left within the container */
  object-position: 35% top;
  pointer-events: none;
  -webkit-mask-image:
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,0.2) 8%,
      rgba(0,0,0,0.7) 22%,
      black 35%,
      black 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.2) 0%,
      black 12%,
      black 85%,
      rgba(0,0,0,0.3) 100%
    );
  -webkit-mask-composite: multiply;
  mask-image:
    linear-gradient(to right,
      transparent 0%,
      rgba(0,0,0,0.2) 8%,
      rgba(0,0,0,0.7) 22%,
      black 35%,
      black 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.2) 0%,
      black 12%,
      black 85%,
      rgba(0,0,0,0.3) 100%
    );
  mask-composite: intersect;
  filter: brightness(0.82) saturate(0.92);
}

.osc-hero-overlay {
  position: absolute;
  inset: 0;
  /* Overlay fade ends earlier so it stops masking the left character */
  background: linear-gradient(to right,
    #05080f 0%,
    rgba(5,8,15,0.75) 22%,
    rgba(5,8,15,0.05) 46%,
    transparent 100%
  );
  pointer-events: none;
}

.osc-hero-content {
  position: relative;
  z-index: 5;
  max-width: 52%;
  padding-left: 80px;
  padding-right: 20px;
}

.osc-hero-title {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-transform: none;
}

.osc-hero-accent {
  color: var(--c-blue);
}

.osc-hero-sub {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(232,234,248,0.5);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
  text-transform: none;
  letter-spacing: 0;
}

.osc-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.osc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--c-blue-dark);
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 4px 20px rgba(14,165,212,0.35);
}
.osc-btn-primary:hover {
  background: var(--c-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(14,165,212,0.5);
}

.osc-btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.22s;
}
.osc-btn-discord:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* Override old site-header-wrap stacking for the new single-row header */
body[data-template="shop"] .site-header-wrap {
  position: relative;
  z-index: 400;
}
body[data-template="shop"] .osc-hdr-row * {
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .osc-hdr-row { padding: 0 20px; gap: 12px; }
  .osc-hero-content { max-width: 70%; padding-left: 36px; }
  .osc-hero-title { font-size: clamp(1.9rem, 6vw, 3rem); }
}
@media (max-width: 640px) {
  .osc-logo-text { display: none; }
  .osc-online-badge { display: none; }
  .osc-cart-label { display: none; }
  .osc-hero-content { max-width: 100%; padding: 40px 24px; }
  .osc-hero-bg { width: 100%; opacity: 0.35; }
  .osc-hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
}

/* ============================================================
   BEST SELLERS SECTION (Image 2 style)
   ============================================================ */
.bs-section {
  position: relative;
  z-index: 10;
  margin: 60px 0 0;
}
.bs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.bs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(194,245,255,0.08);
  border: 1px solid rgba(194,245,255,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-blue);
  margin-bottom: 18px;
}
.bs-heading {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.bs-heading-dim {
  color: rgba(255,255,255,0.35);
}
.bs-subtext {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: rgba(232,234,248,0.45);
  margin: 0;
}
.bs-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
  align-self: center;
}
.bs-view-all:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateX(2px);
}

/* Override product cards inside best sellers to match Image 2 style */
.bs-section .bg-card,
.bs-section a.block {
  background: rgba(5,14,26,0.92) !important;
  border: 1px solid rgba(0,200,180,0.15) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(.23,1,.32,1) !important;
  position: relative;
}
.bs-section a.block:hover {
  border-color: rgba(0,200,180,0.4) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0,180,160,0.18), 0 0 0 1px rgba(0,200,180,0.2) !important;
}
/* Teal background tinge on image area */
.bs-section .relative.overflow-hidden {
  background: linear-gradient(135deg, rgba(0,120,110,0.55) 0%, rgba(0,80,90,0.4) 50%, rgba(5,20,35,0.6) 100%) !important;
  border-bottom: 1px solid rgba(0,200,180,0.12) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.bs-section img {
  border-radius: 0 !important;
}
/* UNDETECTED badge */
.bs-section .badges {
  top: 10px !important;
  right: 10px !important;
}
.bs-section .badges > div {
  background: rgba(0,0,0,0.55) !important;
  border: 1px solid rgba(34,197,94,0.7) !important;
  color: #4ade80 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  border-radius: 4px !important;
  padding: 3px 9px !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}
.bs-section .badges > div::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}
/* Product name in best sellers */
.bs-section h3 {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 4px !important;
}
/* Price in best sellers */
.bs-section .text-accent-500 {
  color: #fff !important;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-size: 0.95rem !important;
}
/* Arrow button on each card — add via CSS pseudo on hover */
.bs-section .px-5.pb-4 {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 20px !important;
}

/* ============================================================
   FEATURES 4-CARD SECTION (Image 4 style)
   ============================================================ */
.feats4-section {
  position: relative;
  z-index: 10;
  margin: 60px 0;
}
.feats4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feats4-card {
  padding: 36px 28px;
  background: rgba(8,15,30,0.9);
  border: 1px solid rgba(70,130,200,0.2);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
}
.feats4-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(70,130,200,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.feats4-card:hover {
  border-color: rgba(100,170,255,0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(70,130,200,0.15), 0 0 0 1px rgba(100,170,255,0.18);
}
.feats4-card:hover::before { opacity: 1; }
.feats4-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  background: rgba(70,130,200,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
}
.feats4-icon-wrap svg {
  width: 26px;
  height: 26px;
}
.feats4-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.feats4-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.97rem;
  color: rgba(232,234,248,0.5);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .feats4-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feats4-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME FAQ SECTION (updated to match Image 5 exactly)
   ============================================================ */
.home-faq-section {
  position: relative;
  z-index: 10;
  margin: 80px 0;
}
.home-faq-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.home-faq-heading {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 10px 0 0;
  letter-spacing: -0.5px;
}
.home-faq-heading-dim {
  color: rgba(255,255,255,0.35);
}
.btn-discord-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 14px;
}
.btn-discord-outline:hover {
  background: rgba(88,101,242,0.18);
  border-color: rgba(88,101,242,0.5);
}
.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hfaq-item {
  background: rgba(22, 32, 58, 0.95);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hfaq-item:hover {
  border-color: rgba(194,245,255,0.22);
  box-shadow: 0 4px 28px rgba(0,0,0,0.6), 0 0 0 1px rgba(194,245,255,0.08);
}
.hfaq-item.hfaq-open {
  border-color: rgba(194,245,255,0.35);
  box-shadow: 0 4px 32px rgba(0,0,0,0.65), 0 0 0 1px rgba(194,245,255,0.12);
}
.hfaq-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
}
.hfaq-trigger:hover { background: rgba(194,245,255,0.025); }
.hfaq-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--c-blue);
  opacity: 0.6;
  width: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
/* bullet dot */
.hfaq-num::before {
  content: '•';
  color: var(--c-blue);
  margin-right: 6px;
  font-size: 10px;
}
.hfaq-q {
  flex: 1;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.1px;
}
.hfaq-icon {
  color: rgba(194,245,255,0.5);
  flex-shrink: 0;
}
.hfaq-body {
  padding: 0 24px 22px 64px;
}
.hfaq-body p {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 0.92rem;
  color: rgba(232,234,248,0.55);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   VIDEO GALLERY SECTION (Image 6 style)
   ============================================================ */
.vgallery-section {
  position: relative;
  z-index: 10;
  margin: 80px 0;
}
.vgallery-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(194,245,255,0.5);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.vgallery-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.vgallery-heading-box {
  background: rgba(194,245,255,0.12);
  border: 2px solid rgba(194,245,255,0.45);
  border-radius: 8px;
  padding: 4px 18px;
  color: var(--c-blue);
}
.vgallery-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(194,245,255,0.4);
  letter-spacing: 1px;
  margin: 0;
}
.vgallery-grid {
  position: relative;
}
.vgallery-placeholder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vgallery-placeholder-card {
  aspect-ratio: 16/9;
  background: rgba(8,15,30,0.85);
  border: 1px solid rgba(194,245,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.vgallery-placeholder-card:hover {
  border-color: rgba(194,245,255,0.3);
  background: rgba(12,22,45,0.9);
}
.vgallery-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.vgallery-placeholder-card:hover .vgallery-play-btn {
  background: rgba(0,0,0,0.8);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
/* Style embedded video-gallery components inside vgallery */
.vgallery-section .component {
  padding: 0 !important;
}
/* Hide non-video-gallery components (e.g. products) inside vgallery section */
.vgallery-section .component:not(.is-video-gallery) {
  display: none !important;
}
.vgallery-section .component .py-6,
.vgallery-section .component .py-8,
.vgallery-section .component [class*="py-"] {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.vgallery-section lite-youtube {
  border-radius: 12px !important;
}

/* ============================================================
   FOOTER SOCIAL ICON BUTTONS (top-right of footer bar)
   ============================================================ */
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(194,245,255,0.07);
  border: 1px solid rgba(194,245,255,0.15);
  color: rgba(194,245,255,0.6);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: rgba(194,245,255,0.14);
  border-color: rgba(194,245,255,0.35);
  color: #C2F5FF;
}

/* ============================================================
   SOCIALS SECTION (Image 7 style)
   ============================================================ */
.socials-section {
  position: relative;
  z-index: 10;
  margin: 80px 0;
  /* Starfield effect via CSS */
  padding: 70px 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,20,60,0.4) 0%, transparent 70%);
}
.socials-inner {
  text-align: center;
}
.socials-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(194,245,255,0.07);
  border: 1px solid rgba(194,245,255,0.2);
  border-radius: 999px;
  padding: 6px 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(194,245,255,0.7);
  margin-bottom: 22px;
}
.socials-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 14px;
}
.socials-heading-bracket {
  color: var(--c-blue);
}
.socials-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(194,245,255,0.45);
  letter-spacing: 0.5px;
  margin: 0 0 48px;
}
.socials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.socials-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  background: rgba(8,14,28,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(.23,1,.32,1);
  cursor: pointer;
}
.socials-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: rgba(12,20,40,0.95);
}
.socials-icon-wrap {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials-icon-wrap svg {
  width: 100%;
  height: 100%;
}
.socials-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
}
.socials-handle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: rgba(194,245,255,0.45);
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .socials-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ============================================================
   WHY SYNDICATE SECTION (Image 8 style)
   ============================================================ */
.why-synd-section {
  position: relative;
  z-index: 10;
  margin: 40px 0 80px;
  padding: 60px 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,15,40,0.5) 0%, transparent 70%);
}
.why-synd-inner {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Frosted card behind the body text — matches Image 2 reference */
.why-synd-card {
  background: rgba(8, 14, 30, 0.72);
  border: 1px solid rgba(194, 245, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 36px 44px;
  margin-top: 0;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(194, 245, 255, 0.06);
}
.why-synd-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 20px 0 10px;
}
.why-synd-bracket {
  background: rgba(194,245,255,0.1);
  border: 2px solid rgba(194,245,255,0.4);
  border-radius: 6px;
  padding: 2px 14px;
  color: var(--c-blue);
}
.why-synd-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(194,245,255,0.45);
  letter-spacing: 1px;
  margin: 0 0 24px;
}
.why-synd-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-synd-body p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  color: rgba(232,234,248,0.72);
  line-height: 1.7;
  margin: 0 0 18px;
  text-align: center;
  letter-spacing: 0.2px;
}

/* ============================================================
   PRODUCT CARD ARROW BUTTON
   ============================================================ */
.pc-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(194,245,255,0.08);
  border: 1px solid rgba(194,245,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  flex-shrink: 0;
  transition: all 0.2s;
}
a.block:hover .pc-arrow-btn {
  background: rgba(194,245,255,0.16);
  border-color: rgba(194,245,255,0.45);
  transform: translateX(3px);
}

/* ============================================================
   ALTERNATING SECTION BACKGROUNDS
   Applies to every page EXCEPT the homepage (data-template="shop").
   Uses the full-viewport bleed technique already established
   in this theme (.reviews-carousel-wrap pattern).
   ============================================================ */

/* Give each component a stacking context so the pseudo-element
   can sit behind its content without affecting sibling z-index */
body:not([data-template="shop"]) .components > .component {
  position: relative;
  isolation: isolate;
}

/* Even-numbered components get the alternate background —
   a full-width deep-blue panel that contrasts with the base #04060d */
body:not([data-template="shop"]) .components > .component:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(180deg, #060f1d 0%, #050c18 100%);
  border-top: 1px solid rgba(194, 245, 255, 0.06);
  border-bottom: 1px solid rgba(194, 245, 255, 0.06);
  z-index: -1;
}

/* Subtle ambient glow on alternating sections to keep the
   cyan accent feeling alive */
body:not([data-template="shop"]) .components > .component:nth-child(even)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 30, 70, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   ALTERNATING SECTION BACKGROUNDS — SHOP PAGE BELOW-HERO ONLY
   Hero (.osc-hero) and ticker (.ticker-full-wrap) are untouched.
   Pattern: odd sections stay on base #04060d transparent;
            even sections get a deep-navy full-bleed panel.
   ============================================================ */

/* ── Shared: every below-hero section needs a stacking context ── */
.page-content .bs-section,
.page-content .feats4-section,
.page-content .reviews-ticker-section,
.page-content .home-faq-section,
.page-content .vgallery-section,
.page-content .socials-section,
.page-content .why-synd-section {
  position: relative;
  isolation: isolate;
}

/* ── Full-bleed helper: punch the pseudo-element out to viewport width ── */
/* ODD sections (1st, 3rd, 5th, 7th) — base dark, no extra panel needed */
/* We still give them a very faint separator line so edges feel crisp     */
.page-content .bs-section::before,
.page-content .reviews-ticker-section::before,
.page-content .vgallery-section::before,
.page-content .why-synd-section::before {
  content: '';
  position: absolute;
  inset: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  /* Ultra-subtle top edge */
  border-top: 1px solid rgba(194, 245, 255, 0.045);
  z-index: -1;
  pointer-events: none;
}

/* ── EVEN sections (2nd, 4th, 6th) — full-bleed deep-navy alternating panel ── */
.page-content .feats4-section::before,
.page-content .home-faq-section::before,
.page-content .socials-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  /* Deep blue-navy — clearly different from #04060d without being jarring */
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(0, 18, 48, 0.35) 0%, transparent 75%),
    linear-gradient(180deg, #071220 0%, #060e1a 50%, #071220 100%);
  border-top:    1px solid rgba(194, 245, 255, 0.075);
  border-bottom: 1px solid rgba(194, 245, 255, 0.075);
  z-index: -1;
  pointer-events: none;
}

/* ── Remove the old per-section radial backgrounds that now conflict ── */
/* Socials section had its own radial — neutralized, the ::before handles it */
.page-content .socials-section {
  background: transparent;
}

/* Why Syndicate had its own radial — keep subtle glow but make transparent */
.page-content .why-synd-section {
  background: transparent;
}

/* ── Ambient glow on even sections (behind cards) ── */
.page-content .feats4-section::after,
.page-content .home-faq-section::after,
.page-content .socials-section::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0, 30, 80, 0.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ── Ensure feats4-section cards sit above the pseudo-element ── */
.page-content .feats4-section .feats4-grid,
.page-content .home-faq-section .home-faq-header,
.page-content .home-faq-section .home-faq-list,
.page-content .socials-section .socials-inner {
  position: relative;
  z-index: 1;
}

/* ── Padding boost on even sections so the bg band is visually present ── */
.page-content .feats4-section {
  padding: 70px 0;
  margin: 0;
}
.page-content .home-faq-section {
  padding: 70px 0;
  margin: 0;
}
.page-content .socials-section {
  padding: 70px 0;
  margin: 80px 0 0;
}

/* ── Tighten odd-section margins so alternating rhythm flows cleanly ── */
.page-content .bs-section       { margin: 60px 0 0; padding-bottom: 70px; }
.page-content .reviews-ticker-section { margin: 0; padding: 80px 0; }
.page-content .vgallery-section { margin: 0; padding: 80px 0; }
.page-content .why-synd-section { margin: 0; padding: 70px 0 90px; }

/* ── Responsive — pseudo-elements are viewport-relative, no change needed ── */
@media (max-width: 768px) {
  .page-content .feats4-section,
  .page-content .home-faq-section,
  .page-content .socials-section {
    padding: 50px 0;
  }
  .page-content .bs-section,
  .page-content .reviews-ticker-section,
  .page-content .vgallery-section,
  .page-content .why-synd-section {
    padding: 50px 0;
  }
}

/* ============================================================
   PRODUCT CARD — Reference style (Images 2-4)
   ============================================================ */

.ss-pc {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(12, 20, 38, 0.95);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 6px 30px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.ss-pc:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  border-color: rgba(194,245,255,0.2);
}

/* Image wrapper */
.ss-pc-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.ss-pc-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.ss-pc:hover .ss-pc-img {
  transform: scale(1.03);
}
.ss-pc-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,30,60,0.6);
  color: rgba(194,245,255,0.25);
  width: 100%;
}

/* Badges */
.ss-pc-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: space-between;
}
.ss-pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  color: #fff;
}

/* Info section */
.ss-pc-info {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category label */
.ss-pc-cat {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 6px;
  opacity: 0.85;
}

/* Product name */
.ss-pc-name {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
}

/* Bottom row */
.ss-pc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

/* Price */
.ss-pc-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ss-pc-from {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(194,245,255,0.45);
  text-transform: uppercase;
}
.ss-pc-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.ss-pc-slash {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

/* Get it button */
.ss-pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-blue, #00d4f0);
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, box-shadow 0.18s ease;
  flex-shrink: 0;
}
.ss-pc-btn:hover,
.ss-pc:hover .ss-pc-btn {
  background: #fff;
  box-shadow: 0 0 16px rgba(0,212,240,0.4);
}

/* Responsive: smaller padding on mobile */
@media (max-width: 640px) {
  .ss-pc-info { padding: 12px 14px 14px; }
  .ss-pc-name { font-size: 0.95rem; }
  .ss-pc-price { font-size: 1.05rem; }
}

/* ============================================================
   STORE PRODUCTS PAGE — Full redesign matching Image 2
   All classes prefixed ssp- (syndicate store page)
   ============================================================ */

/* ── Hero header ── */
.ssp-hero {
  padding: 48px 0 0;
  border-bottom: 1px solid rgba(194,245,255,0.08);
  margin-bottom: 48px;
}
.ssp-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ssp-hero-eyebrow {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 10px;
}
.ssp-hero-title {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}
.ssp-hero-sub {
  color: rgba(255,255,255,0.45);
  font-weight: 800;
}
.ssp-hero-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: rgba(194,245,255,0.45);
  margin: 0;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Search + best sellers row */
.ssp-hero-search-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ssp-search-form {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
}
.ssp-search-icon {
  position: absolute;
  left: 14px;
  color: rgba(194,245,255,0.35);
  pointer-events: none;
  flex-shrink: 0;
}
.ssp-search-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 16px 10px 42px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  outline: none;
  transition: border-color 0.2s;
  font-family: system-ui, sans-serif;
}
.ssp-search-input::placeholder { color: rgba(255,255,255,0.25); }
.ssp-search-input:focus { border-color: rgba(194,245,255,0.3); }

.ssp-best-sellers-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(194,245,255,0.7);
  border: 1px solid rgba(194,245,255,0.15);
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ssp-best-sellers-btn:hover {
  color: var(--c-blue);
  border-color: rgba(194,245,255,0.35);
  background: rgba(194,245,255,0.04);
}

/* Category pill tabs */
.ssp-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 20px;
}
.ssp-cat-tab {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1.4;
}
.ssp-cat-tab:hover {
  color: var(--c-blue);
  border-color: rgba(194,245,255,0.25);
  background: rgba(194,245,255,0.04);
}
.ssp-cat-tab--active {
  color: #000 !important;
  background: var(--c-blue) !important;
  border-color: var(--c-blue) !important;
}

/* ── Body / grid area ── */
.ssp-body {
  padding-bottom: 80px;
}

/* Category block */
.ssp-cat-block {
  margin-bottom: 52px;
}
.ssp-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(194,245,255,0.08);
}
.ssp-cat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--c-blue);
}

/* Product grid — 3 columns matching Image 2 */
.ssp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .ssp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ssp-grid { grid-template-columns: 1fr; }
}

/* Empty state */
.ssp-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,0.3);
}
.ssp-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.3;
}

/* ── Product card overrides for full-image style ── */
/* The ss-pc card already has good bones — just make image taller */
.ssp-grid .ss-pc-img-wrap {
  aspect-ratio: 4/3;
}
.ssp-grid .ss-pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ssp-grid .ss-pc-img-placeholder {
  aspect-ratio: 4/3;
  width: 100%;
}

/* ================================================================
   PRODUCT PAGE — Full Redesign (pp-*)
   ================================================================ */

/* ── Breadcrumb ── */
.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}
.pp-breadcrumb a {
  color: rgba(194,245,255,0.45);
  text-decoration: none;
  transition: color .2s;
}
.pp-breadcrumb a:hover { color: var(--c-blue); }
.pp-bc-sep { color: rgba(194,245,255,0.2); }
.pp-bc-current { color: rgba(194,245,255,0.75); }

/* ── Image ── */
.pp-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
}
/* Product page image — constrained so it matches the panel height naturally */
.pp-img-wrap--product {
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.pp-img-wrap--product .pp-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.pp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── System Requirements ── */
.pp-sysreq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pp-sysreq-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  border-right: none;
}
.pp-sysreq-item:nth-child(even) { padding-left: 28px; }
.pp-sysreq-item:nth-last-child(-n+2) { border-bottom: none; }
.pp-sysreq-icon {
  width: 20px;
  height: 20px;
  color: var(--c-blue-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.pp-sysreq-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(194,245,255,0.35);
  margin-bottom: 4px;
}
.pp-sysreq-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}
@media (max-width: 640px) {
  .pp-sysreq-grid { grid-template-columns: 1fr; }
  .pp-sysreq-item { border-right: none; padding-left: 0 !important; }
  .pp-sysreq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-border); }
  .pp-sysreq-item:last-child { border-bottom: none; }
}

/* ── Showcase ── */
.pp-showcase-header { }
.pp-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(194,245,255,0.55);
  text-decoration: none;
  transition: color .2s;
}
.pp-watch-video:hover { color: var(--c-blue); }
.pp-showcase-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  padding: 20px;
}
.pp-showcase-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--c-border);
  aspect-ratio: 16/9;
  transition: border-color .2s;
}
.pp-showcase-img:hover { border-color: rgba(194,245,255,0.3); }

/* ── Features two-column grid ── */
.pp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.pp-features-grid .pp-accord-item {
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-card);
}
.pp-features-grid .pp-accord-item:last-child:nth-child(odd) {
  grid-column: span 2;
}
@media (max-width: 640px) {
  .pp-features-grid { grid-template-columns: 1fr; }
  .pp-features-grid .pp-accord-item:last-child:nth-child(odd) { grid-column: span 1; }
}
.pp-thumb-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pp-thumb-btn {
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
  width: 64px;
  height: 64px;
  background: var(--c-card);
}
.pp-thumb-btn:hover { border-color: var(--c-blue-dark); }
.pp-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Right Panel ── */
.pp-cat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-blue-dark);
}
.pp-product-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 768px) { .pp-product-name { font-size: 1.5rem; } }

/* ── Badges ── */
.pp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pp-status-badge, .pp-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.pp-status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

/* ── Short description ── */
.pp-short-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: var(--c-text-dim);
  line-height: 1.6;
}

/* ── Section label ── */
.pp-section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(194,245,255,0.4);
  margin-bottom: 10px;
}

/* ── Plan Grid ── */
.pp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 480px) { .pp-plan-grid { grid-template-columns: repeat(2, 1fr); } }

.pp-plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 14px 10px;
  border-radius: 10px;
  border: 1px solid var(--c-border);
  background: rgba(194,245,255,0.03);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.pp-plan-card:hover:not([disabled]) {
  border-color: rgba(194,245,255,0.35);
  background: rgba(194,245,255,0.06);
}
.pp-plan-active {
  border-color: var(--c-blue-dark) !important;
  background: rgba(14,165,212,0.12) !important;
  box-shadow: 0 0 0 1px rgba(14,165,212,0.3);
}
.pp-plan-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.pp-plan-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  color: var(--c-text-dim);
  font-weight: 500;
}
.pp-plan-oos { opacity: 0.4; cursor: not-allowed; }
.pp-plan-oos-label {
  font-size: 0.65rem;
  color: #f87171;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}

/* ── Quantity ── */
.pp-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pp-qty-inner {
  display: flex;
  align-items: center;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}
.pp-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(194,245,255,0.04);
  color: var(--c-text);
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.pp-qty-btn:hover:not(:disabled) { background: rgba(14,165,212,0.2); color: var(--c-blue); }
.pp-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pp-qty-input {
  width: 52px;
  text-align: center;
  background: transparent;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  border: none;
  outline: none;
  padding: 0 4px;
  height: 36px;
}
.pp-qty-input::-webkit-inner-spin-button, .pp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.pp-stock-info {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}
.pp-in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
}
.pp-stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 6px #4ade8088;
}
.pp-out-stock { color: #f87171; }

/* ── CTA Block ── */
.pp-cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pp-selected-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pp-sel-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(194,245,255,0.4);
}
.pp-sel-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.pp-cta-btn-primary {
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--c-blue-dark);
  color: #fff;
  border: 1px solid var(--c-blue-dark);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-cta-btn-primary:hover:not(:disabled) {
  background: rgba(14,165,212,0.75);
  box-shadow: 0 0 20px rgba(14,165,212,0.35);
}
.pp-cta-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.pp-cta-btn-outline {
  padding: 13px 24px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: transparent;
  color: var(--c-blue);
  border: 1px solid rgba(194,245,255,0.3);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-cta-btn-outline:hover:not(:disabled) {
  background: rgba(194,245,255,0.06);
  border-color: var(--c-blue-mid);
}
.pp-cta-btn-outline:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Trust row ── */
.pp-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
  border-top: 1px solid var(--c-border);
}
.pp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: rgba(194,245,255,0.5);
  font-weight: 600;
}
.pp-trust-item svg { color: var(--c-blue-dark); }

/* ── Live stats ── */
.pp-live-stats { }
.pp-live-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: rgba(194,245,255,0.45);
}
.pp-live-item svg { color: var(--c-blue-dark); flex-shrink: 0; }
.pp-live-item strong { color: var(--c-blue); }

/* ── Below-fold sections ── */
.pp-section {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.pp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px 0;
  border-bottom: none;
}
.pp-section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-blue-dark);
}
.pp-section-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: rgba(194,245,255,0.35);
}

/* ── Accordion ── */
.pp-accordion { }
.pp-accord-item {
  border-bottom: 1px solid var(--c-border);
}
.pp-accord-item:last-child { border-bottom: none; }
.pp-accord-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s, color .2s;
}
.pp-accord-trigger:hover {
  background: rgba(194,245,255,0.03);
  color: var(--c-blue);
}
.pp-accord-arrow {
  width: 18px;
  height: 18px;
  color: rgba(194,245,255,0.4);
  flex-shrink: 0;
  transition: transform .25s;
}
.pp-accord-body {
  padding: 0 24px 20px 24px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}

.pp-sysreq-section .pp-section-header {
  margin-bottom: 0;
  padding-bottom: 0;
}
.pp-sysreq-section .pp-sysreq-grid {
  margin-top: 12px;
}
.pp-sysreq-title {
  grid-column: 1 / -1;
  padding-bottom: 4px;
}

.pp-showcase-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.pp-showcase-tab {
  padding: 5px 16px;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pp-showcase-tab--active {
  background: var(--c-blue-dark);
  border-color: var(--c-blue-dark);
  color: #fff;
}
.pp-showcase-tab:not(.pp-showcase-tab--active):hover {
  border-color: var(--c-blue-dark);
  color: var(--c-text-primary);
}
.pp-showcase-panel {
  width: 100%;
}
.pp-showcase-preview-img {
  width: 100%;
  max-width: 640px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--c-border);
}
.pp-showcase-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  border: 1px solid var(--c-border);
}

/* ── Feature list inside accordions ── */
.pp-feat-list {
  list-style: none;
  margin: 0;
  padding: 0 0 4px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pp-feat-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.6;
  padding: 1px 0;
}
.pp-feat-list li::before {
  content: '✓';
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--c-blue-dark);
  line-height: 1;
}

/* ── Description tabs ── */
.pp-tab-btn {
  padding: 5px 14px;
  border-radius: 6px;
  border: 1px solid var(--c-border);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(194,245,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.pp-tab-btn:hover { color: var(--c-blue); border-color: rgba(194,245,255,0.3); }
.pp-tab-active {
  background: rgba(14,165,212,0.12) !important;
  color: var(--c-blue-dark) !important;
  border-color: rgba(14,165,212,0.4) !important;
}
.pp-desc-body {
  padding: 0;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}
.pp-desc-body h1,.pp-desc-body h2,.pp-desc-body h3 {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}
.pp-desc-body strong { color: var(--c-blue); }
.pp-desc-body a { color: var(--c-blue-dark); }

/* ── Trust badges (under product name) ── */
.pp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: background .2s;
}
.pp-trust-badge--delivery {
  border-color: rgba(14,165,212,0.35);
  color: var(--c-blue-dark);
  background: rgba(14,165,212,0.08);
}
.pp-trust-badge--support {
  border-color: rgba(194,245,255,0.18);
  color: rgba(194,245,255,0.55);
  background: rgba(194,245,255,0.03);
}
.pp-trust-badge--secure {
  border-color: rgba(194,245,255,0.18);
  color: rgba(194,245,255,0.55);
  background: rgba(194,245,255,0.03);
}

/* ── CTA price row ── */
.pp-cta-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Plan card popular badge ── */
.pp-plan-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-blue-dark);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.pp-plan-card {
  position: relative;
}

/* ── Tighten right panel gap on desktop ── */
@media (min-width: 1024px) {
  .pp-right-panel {
    gap: 16px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════════════════════ */

/* Hero header */
.cp-hero {
  text-align: center;
  margin-bottom: 40px;
}
.cp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid var(--c-blue-dark);
  border-radius: 999px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue-dark);
  margin-bottom: 14px;
}
.cp-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-primary);
  line-height: 1;
}

/* Empty state */
.cp-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 24px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  min-height: 180px;
}
.cp-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-blue-dark);
  color: #fff;
}
.cp-empty-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: var(--c-text-dim);
}
.cp-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--c-blue-dark);
  color: #fff;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cp-empty-btn:hover { opacity: 0.85; }

/* Order Summary panel */
.cp-order-summary {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 24px;
  color: var(--c-text-primary);
}
.cp-order-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text-primary);
  margin-bottom: 20px;
}
.cp-order-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.cp-order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cp-order-row-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--c-text-dim);
}
.cp-order-row-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--c-text-dim);
}
.cp-order-row-discount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: var(--c-blue-dark);
}
.cp-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid var(--c-border);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blue-dark);
}
.cp-order-divider {
  border-top: 1px solid var(--c-border);
  margin: 16px 0;
}

/* Checkout button */
.cp-checkout-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--c-blue-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 4px;
}
.cp-checkout-btn:hover:not(:disabled) { opacity: 0.85; }
.cp-checkout-btn:disabled { opacity: 0.45; pointer-events: none; }

/* Trust row under checkout */
.cp-trust-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}
.cp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.cp-trust-item svg { color: var(--c-blue-dark); }

/* Cart page wrapper — generous vertical space so it never looks squished */
.cp-root .cp-page-wrap {
  min-height: calc(100vh - 200px);
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
}

/* ══════════════════════════════════════════════════════════
   STATUS PAGE
   ══════════════════════════════════════════════════════════ */

.sp-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

/* Hero */
.sp-hero {
  margin-bottom: 48px;
}
.sp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue-dark);
  margin-bottom: 14px;
}
.sp-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text-primary);
  margin-bottom: 24px;
}
.sp-hero-title-dim {
  color: rgba(232,234,248,0.35);
}

/* Status summary pills */
.sp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid transparent;
}
/* Total — outlined, no fill */
.sp-pill--total {
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  background: transparent;
}
.sp-pill--total .sp-pill-num {
  font-weight: 800;
}
/* Undetected — green tint */
.sp-pill--undetected {
  background: rgba(0,200,100,0.12);
  border-color: rgba(0,200,100,0.25);
  color: #4fffaa;
}
.sp-pill--undetected .sp-pill-dot { background: #00e676; }
/* Working/own risk — yellow tint */
.sp-pill--working {
  background: rgba(180,130,0,0.15);
  border-color: rgba(210,160,0,0.3);
  color: #d4a017;
}
.sp-pill--working .sp-pill-dot { background: #ffc107; }
/* Updating — orange tint */
.sp-pill--updating {
  background: rgba(180,80,0,0.15);
  border-color: rgba(220,110,0,0.3);
  color: #e07020;
}
.sp-pill--updating .sp-pill-dot { background: #ff9800; }
/* Detected — red tint */
.sp-pill--detected {
  background: rgba(180,20,20,0.15);
  border-color: rgba(220,50,50,0.3);
  color: #e05050;
}
.sp-pill--detected .sp-pill-dot { background: #f44336; }
/* Shared dot style */
.sp-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-pill-num {
  font-weight: 800;
}

/* Groups */
.sp-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.sp-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sp-group-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue-dark);
}
.sp-group-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}
.sp-group-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--c-blue-dark);
  padding-left: 0;
}

/* Status card */
.sp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-left: none;
  margin-bottom: 1px;
  color: var(--c-text-primary);
  text-decoration: none;
  transition: background 0.15s;
}
.sp-card:first-child { border-radius: 0 8px 0 0; }
.sp-card:last-child  { border-radius: 0 0 8px 0; margin-bottom: 0; }
.sp-card:only-child  { border-radius: 0 8px 8px 0; }
.sp-card:hover { background: rgba(0,188,212,0.06); }

.sp-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.sp-card-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
}
.sp-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,188,212,0.08);
  color: var(--c-blue-dark);
}
.sp-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-card-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sp-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.3);
}
.sp-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sp-card-arrow {
  width: 16px;
  height: 16px;
  color: var(--c-text-dim);
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}
.sp-card:hover .sp-card-arrow {
  color: var(--c-blue-dark);
  transform: translateX(3px);
}

/* Empty */
.sp-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: var(--c-card);
  color: var(--c-text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
}
.sp-empty svg { margin: 0 auto 16px; color: var(--c-blue-dark); opacity: 0.4; }

@media (max-width: 640px) {
  .sp-pills { gap: 6px; }
  .sp-pill { font-size: 0.75rem; padding: 4px 10px; }
  .sp-card-name { font-size: 0.9rem; }
  .sp-card-img { width: 38px; height: 38px; }
}

/* ── Status page search bar ── */
.sp-search-wrap {
  position: relative;
  margin-bottom: 32px;
}
.sp-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  pointer-events: none;
}
.sp-search-input {
  width: 100%;
  background: var(--c-card, rgba(255,255,255,0.04));
  border: 1px solid var(--c-border, rgba(255,255,255,0.08));
  border-radius: 10px;
  padding: 12px 16px 12px 44px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.sp-search-input::placeholder { color: rgba(255,255,255,0.25); }
.sp-search-input:focus { border-color: rgba(194,245,255,0.3); }