/* ════════════════════════════════════════════════════════════
   PARE4PLAYER · E-Commerce Gaming Storefront (U7BUY Style)
   Palette: Midnight Ink (#0D1020) · Player Cobalt (#465CFF) · Rare Ember (#FF5A36) · Pure White (#FFFFFF)
   Typography: Sora (Headings/Display) · Inter (Body)
   ════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0D1020;
  color: #F2F3F5;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

:root {
  --mouse-x: 50%;
  --mouse-y: 40%;
  --ink: #0D1020;
  --ink-card: #141728;
  --ink-alt: #1A1E34;
  --por: #F2F3F5;
  --muted: #8892A4;
  --ember: #FF5A36;
  --ember-d: #E04520;
  --cobalt: #465CFF;
  --cobalt-l: #6B84FF;
  --green: #25D366;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: #E2E8F0;
  --r: 12px;
  --rsm: 8px;
  --rlg: 20px;
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --nav-h: 70px;
}

/* ─── TICKER (Dark Slate Bar) ─── */
.ticker {
  height: 34px;
  background: #090B16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  padding-left: 100%;
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 500;
}

.ticker-track .sep {
  color: var(--ember);
  opacity: 0.7;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── NAVBAR (Midnight Ink Dark Background) ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 16, 32, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--nav-h);
  transition: all var(--t);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
  background: rgba(9, 11, 22, 0.98);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(3.2) contrast(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.nav-menu a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #CBD5E1;
  border-radius: var(--rsm);
  transition: all var(--t);
}

.nav-menu a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-search-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--rsm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}

.nav-search-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--green);
  border-radius: var(--rsm);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--t);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}

.btn-order {
  padding: 10px 22px;
  background: var(--ember);
  color: #FFFFFF;
  border-radius: var(--rsm);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--t);
  box-shadow: 0 2px 12px rgba(255, 90, 54, 0.35);
}

.btn-order:hover {
  background: var(--ember-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 90, 54, 0.5);
}

/* ─── NAVBAR AUTH BUTTONS ─── */
.nav-auth-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-login-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
  border-radius: var(--rsm);
  transition: all var(--t);
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-login-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav-register-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: var(--rsm);
  transition: all var(--t);
}
.nav-register-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─── NAVBAR USER DROPDOWN ─── */
.nav-user-wrap {
  position: relative;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 10px;
  color: #a5b4fc;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
}
.nav-user-btn:hover {
  background: rgba(99,102,241,0.22);
  border-color: rgba(99,102,241,0.5);
}

.nav-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
}

.nav-user-balance {
  color: #34d399;
  font-weight: 700;
  font-size: 0.82rem;
}

/* Dropdown */
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: rgba(15, 17, 32, 0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.18s ease;
  z-index: 200;
}
.nav-user-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-user-info {
  padding: 8px 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 6px;
}
.nav-user-name {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 2px;
}
.nav-user-email {
  display: block;
  font-size: 0.75rem;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-dd-link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.15s;
  text-decoration: none;
}
.nav-dd-link:hover {
  background: rgba(255,255,255,0.06);
  color: #e2e8f0;
}
.nav-dd-logout {
  color: #f87171 !important;
}
.nav-dd-logout:hover {
  background: rgba(239,68,68,0.1) !important;
}
.nav-dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 0;
}

.hamburger {

  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #F2F3F5;
  border-radius: 2px;
  transition: all var(--t);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Search bar dropdown */
.search-bar {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0D1020;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-bar.open {
  display: block;
}

.search-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 800px;
  margin: 12px auto;
  padding: 0 18px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rsm);
  height: 46px;
}

.search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #F2F3F5;
  font-size: 0.92rem;
}

.search-inner input::placeholder {
  color: #64748B;
}

.search-close {
  color: #94A3B8;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0 6px;
  transition: color var(--t);
}

.search-close:hover {
  color: #FFFFFF;
}

/* ─── BODY NO-SCROLL (When Sidebar is Open) ─── */
body.no-scroll {
  overflow: hidden !important;
}

/* ─── PROFESSIONAL MOBILE SIDEBAR DRAWER ─── */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 14, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 360px);
  height: 100%;
  height: 100dvh;
  background: #0B0E1B;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  overflow: hidden;
}

.sidebar-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

/* Sidebar Header */
.sb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0D1020;
  flex-shrink: 0;
}

.sb-logo {
  display: flex;
  align-items: center;
}

.sb-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(3.2) contrast(1.1);
}

.sb-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
  transition: all var(--t);
}

.sb-close:hover,
.sb-close:active {
  background: rgba(255, 90, 54, 0.2);
  border-color: var(--ember);
  color: #FFFFFF;
  transform: rotate(90deg);
}

/* Sidebar Body */
.sb-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px;
  -webkit-overflow-scrolling: touch;
}

.sb-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  padding: 8px 12px;
  border-radius: var(--rsm);
  margin-bottom: 14px;
}

.sb-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.sb-status-text {
  font-size: 0.76rem;
  color: #94A3B8;
}

.sb-status-text strong {
  color: #25D366;
}

/* Sidebar Search Form */
.sb-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rsm);
  padding: 0 12px;
  height: 42px;
  margin-bottom: 16px;
}

.sb-search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #F2F3F5;
  font-size: 0.85rem;
}

.sb-search-form input::placeholder {
  color: #64748B;
}

/* Sidebar Section Titles */
.sb-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #64748B;
  text-transform: uppercase;
  margin: 14px 4px 8px;
}

/* Sidebar Nav Links */
.sb-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.sb-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--rsm);
  color: #CBD5E1;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--t);
  background: transparent;
  border: 1px solid transparent;
}

.sb-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  flex-shrink: 0;
  transition: all var(--t);
}

.sb-text {
  flex: 1;
}

.sb-badge {
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  line-height: 1;
  position: static;
  margin-left: auto;
}

.sb-badge.sb-hot {
  background: var(--ember);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 90, 54, 0.4);
}

.sb-badge.sb-verified {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
}

.sb-badge.sb-instant {
  background: rgba(70, 92, 255, 0.2);
  border: 1px solid rgba(70, 92, 255, 0.4);
  color: #818CF8;
}

.sb-link:hover,
.sb-link:active {
  background: rgba(255, 90, 54, 0.1);
  border-color: rgba(255, 90, 54, 0.2);
  color: #FFFFFF;
}

.sb-link:hover .sb-icon,
.sb-link:active .sb-icon {
  background: rgba(255, 90, 54, 0.2);
  border-color: var(--ember);
  color: var(--ember);
}

/* Sidebar Footer / CTA */
.sb-footer {
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #090B16;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.sb-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--green);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--rsm);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  transition: all var(--t);
}

.sb-btn-wa:hover,
.sb-btn-wa:active {
  background: #20BA5A;
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.45);
}

.sb-btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  background: linear-gradient(135deg, var(--ember), #FF7B54);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--rsm);
  box-shadow: 0 3px 12px rgba(255, 90, 54, 0.35);
  transition: all var(--t);
}

.sb-btn-order:hover,
.sb-btn-order:active {
  background: var(--ember-d);
  box-shadow: 0 5px 16px rgba(255, 90, 54, 0.5);
}

.sb-brand-tag {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #64748B;
  padding-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   SCROLL-LOCKED VIDEO HERO (THE CITY OPENS / METRO HERO)
   ════════════════════════════════════════════════════════════ */
.metro-hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: #05070d;
  user-select: none;
  z-index: 10;
}

.metro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: opacity 0.4s ease;
}

.metro-canvas.ready {
  opacity: 1;
}

.metro-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.35) 0%, rgba(5, 7, 13, 0) 30%, rgba(5, 7, 13, 0.15) 70%, rgba(5, 7, 13, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.metro-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6%;
  text-align: center;
  pointer-events: none;
  z-index: 2;
  will-change: transform, filter, opacity;
}

.metro-title-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f2f4f8;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  display: inline-block;
  will-change: transform, filter, opacity;
}

.metro-tagline-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  will-change: transform, filter, opacity;
}

.metro-tagline-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f2f4f8;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.metro-hint-wrap {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 6vh, 48px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240, 244, 248, 0.75);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 600;
  letter-spacing: 0.3em;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.metro-hint-icon {
  animation: metro-hero-bounce 1.6s ease-in-out infinite;
}

@keyframes metro-hero-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

/* Thin progress line — fills as the video advances */
.metro-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 4;
}

.metro-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.95));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.metro-signature {
  position: absolute;
  right: clamp(12px, 2.5vw, 24px);
  bottom: clamp(10px, 2vw, 18px);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: 0.01em;
  color: rgba(220, 224, 232, 0.6);
  z-index: 5;
}

.metro-signature a {
  color: rgba(220, 224, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.metro-signature a:hover {
  color: #f2f4f8;
}

/* ─── CATEGORY NAVIGATION (U7BUY Unified Theme) ─── */
.cat-icons {
  padding: 16px 20px 24px;
}

.ci-row {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.ci-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 8px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  transition: all var(--t);
  text-align: center;
  color: #F2F3F5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ci-item:hover {
  background: #1C213B;
  border-color: rgba(255, 90, 54, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 90, 54, 0.12);
  border: 1px solid rgba(255, 90, 54, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
  transition: all var(--t);
}

.ci-item:hover .ci-icon {
  background: var(--ember);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 90, 54, 0.4);
}

.ci-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #E2E8F0;
  white-space: nowrap;
}

/* ─── STORE SECTIONS ─── */
.store-sec {
  padding: 40px 0;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.alt-sec {
  background: #111424;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.alt-sec>* {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.ss-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
  gap: 16px;
}

.ss-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #FFFFFF;
}

.ss-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.ss-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ss-arr {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1A1E34;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}

.ss-arr:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #FFFFFF;
}

.ss-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: #818CF8;
  white-space: nowrap;
  transition: color var(--t);
  margin-left: 4px;
}

.ss-all:hover {
  color: var(--ember);
}

.ss-sub-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 14px;
}

.ss-sub-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ─── HORIZONTAL PRODUCT ROW ─── */
.prow {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.prow::-webkit-scrollbar {
  height: 5px;
}

.prow::-webkit-scrollbar-track {
  background: transparent;
}

.prow::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

/* ─── PRODUCT CARD ─── */
.pcard {
  flex: 0 0 210px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
  scroll-snap-align: start;
  cursor: pointer;
}

.alt-sec .pcard {
  background: #0D1020;
}

.pcard:hover {
  border-color: rgba(255, 90, 54, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.pcard-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #1C2038;
  flex-shrink: 0;
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
  display: block;
}

.pcard:hover .pcard-img img {
  transform: scale(1.06);
}

.badge-hot {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--ember);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.badge-rare {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(70, 92, 255, 0.9);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.badge-verified {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(37, 209, 102, 0.9);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.pcard-game-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gc, #FFFFFF);
}

.pcard-info {
  padding: 12px 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pc-cat {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.pc-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.pc-stars {
  font-size: 0.68rem;
  color: #94A3B8;
  margin-top: 2px;
}

.pc-verify {
  color: #4ADE80;
  font-weight: 700;
}

/* More / Custom Request Card */
.pcard-more:hover {
  border-color: rgba(255, 90, 54, 0.4);
}

.pcard-more-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.1), #1C2038);
}

.more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.more-plus {
  font-size: 2.2rem;
  color: var(--ember);
  font-weight: 300;
  line-height: 1;
}

.more-text {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.35;
}

/* ─── SERVICE CARDS (Account Section) ─── */
.svc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.svc-card {
  background: #0D1020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--t);
}

.svc-card:hover {
  border-color: rgba(70, 92, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.svc-icon-img {
  width: 52px;
  height: 52px;
  border-radius: var(--rsm);
  object-fit: cover;
  flex-shrink: 0;
}

.svc-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.svc-card p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
}

.svc-arrow {
  margin-left: auto;
  color: #818CF8;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--t);
}

.svc-card:hover .svc-arrow {
  transform: translateX(4px);
}

/* ─── VOUCHER SECTION & GAME TABS ─── */
.game-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.game-tabs::-webkit-scrollbar {
  display: none;
}

.gtab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rsm);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--t);
}

.gtab:hover {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.gtab.active {
  background: rgba(255, 90, 54, 0.15);
  border-color: rgba(255, 90, 54, 0.5);
  color: var(--ember);
}

.gtab-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vpanel {
  display: none;
}

.vpanel.active {
  display: block;
  animation: fadein 0.25s ease;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.vgrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.vcard {
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t);
  position: relative;
}

.vcard:hover {
  border-color: rgba(70, 92, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.vcard-top {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: color-mix(in srgb, var(--vc) 18%, #141728);
}

.vcard-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  display: block;
}

.vcard-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
}

.vamt {
  font-family: 'Sora', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.vunit {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.v-hot {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--ember);
  color: #FFFFFF;
  font-family: 'Sora', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}

.vcard-bot {
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vgame {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.vprice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vprice {
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #FFFFFF;
}

.vbuy {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--ember);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 4px;
  transition: background var(--t);
}

.vcard:hover .vbuy {
  background: var(--ember-d);
}

/* ─── PROCESS SECTION ─── */
.process-sec {
  background: linear-gradient(180deg, #0D1020 0%, #141728 100%);
  padding: 64px 20px;
}

.ps-wrap {
  max-width: 1060px;
  margin: 0 auto;
}

.ps-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ps-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ember);
  background: rgba(255, 90, 54, 0.12);
  border: 1px solid rgba(255, 90, 54, 0.3);
  padding: 5px 16px;
  border-radius: 99px;
}

.ps-header h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.ps-header p {
  font-size: 0.95rem;
  color: var(--muted);
}

.ps-steps {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.ps-step {
  flex: 1;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.ps-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ps-step:hover {
  border-color: rgba(70, 92, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ps-step:hover::after {
  transform: scaleX(1);
}

.ps-step-img {
  width: 52px;
  height: 52px;
  border-radius: var(--rsm);
  object-fit: cover;
  margin-bottom: 4px;
}

.ps-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ember);
}

.ps-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.ps-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.ps-connector {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 1.3rem;
  flex-shrink: 0;
  padding-top: 36px;
}

/* ─── TRUST STATS ─── */
.trust-sec {
  padding: 48px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ts-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto 24px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
}

.ts-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ts-stat:last-child {
  border-right: none;
}

.ts-n {
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFFFFF;
  display: inline;
}

.ts-plus {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ember);
  display: inline;
}

.ts-l {
  font-size: 0.76rem;
  color: var(--muted);
  display: block;
}

.ts-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.ts-quote {
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── CTA SECTION ─── */
.cta-sec {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 16, 32, 0.8) 0%, rgba(13, 16, 32, 0.96) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #A5B4FC;
  background: rgba(70, 92, 255, 0.15);
  border: 1px solid rgba(70, 92, 255, 0.35);
  padding: 5px 16px;
  border-radius: 99px;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #FFFFFF;
}

.cta-content p {
  font-size: 0.96rem;
  color: #CBD5E1;
  line-height: 1.7;
}

.cta-hours {
  font-size: 0.84rem;
  color: var(--muted);
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.cta-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--green);
  color: #FFFFFF;
  border-radius: var(--rsm);
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all var(--t);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.cta-wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.cta-email {
  display: flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--rsm);
  font-family: 'Sora', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--t);
}

.cta-email:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

/* ─── FOOTER (Dark Midnight Ink Background) ─── */
.footer {
  background: #090B16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 20px 0;
  color: #94A3B8;
}

.ft-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  max-width: 1260px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;

}

.ft-brand p {
  font-size: 0.88rem;
  color: #8892A4;
  line-height: 1.65;
  margin-bottom: 16px;
}

.ft-brand small {
  font-size: 0.74rem;
  color: #64748B;
}

.ft-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.ft-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-col a {
  font-size: 0.86rem;
  color: #8892A4;
  font-weight: 500;
  transition: color var(--t);
}

.ft-col a:hover {
  color: var(--ember);
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 0;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #64748B;
}

.ft-rare-tag {
  color: var(--ember);
  font-weight: 800;
  font-size: 0.82rem;
}

/* ─── FLOATING WA BUTTON ─── */
.fwa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease, transform var(--t);
  pointer-events: none;
}

.fwa.visible {
  opacity: 1;
  pointer-events: auto;
}

.fwa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.fwa-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: fwaring 2.5s ease-in-out infinite;
}

@keyframes fwaring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ─── RESPONSIVE 1024px ─── */
@media (max-width: 1024px) {
  .ci-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .svc-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .vgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hslide-inner {
    grid-template-columns: 1fr;
    padding: 36px 30px;
    gap: 32px;
  }

  .hslide-visual {
    display: none;
  }

  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .ft-brand {
    grid-column: span 2;
  }

  .ps-steps {
    flex-wrap: wrap;
  }

  .ps-step {
    min-width: 200px;
  }

  .ps-connector {
    display: none;
  }

  .ts-wrap {
    flex-wrap: wrap;
  }

  .ts-div {
    display: none;
  }

  .ts-stat {
    border: none;
    min-width: 140px;
  }
}

/* ─── RESPONSIVE 768px ─── */
@media (max-width: 768px) {
  :root {
    --nav-h: 62px;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-wa span {
    display: none;
  }

  .hero-portal-section {
    min-height: auto;
    padding: 38px 16px 48px;
    width: 100%;
  }

  .video-portal {
    opacity: 0.55;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-badge {
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  .hero-badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .hero-kinetic-title {
    font-size: clamp(2.3rem, 11vw, 4rem);
    margin-bottom: 12px;
    line-height: 0.94;
  }

  .hero-subtitle {
    font-size: 0.84rem;
    margin-bottom: 22px;
    padding: 0 4px;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-actions .btn-mercury,
  .hero-actions .hero-btn-alt {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .hero-trust-bar {
    gap: 8px 12px;
  }

  .hero-trust-item {
    font-size: 0.75rem;
  }

  .hero-trust-dot {
    display: none;
  }

  .ci-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .ci-item {
    padding: 14px 6px;
  }

  .ci-icon {
    width: 38px;
    height: 38px;
  }

  .ci-label {
    font-size: 0.72rem;
  }

  .ss-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-row {
    grid-template-columns: 1fr;
  }

  .vgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pcard {
    flex: 0 0 175px;
  }

  .pcard-img {
    height: 155px;
  }

  .ft-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ft-brand {
    grid-column: auto;
  }

  .ft-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-wa,
  .cta-email {
    justify-content: center;
    width: 100%;
  }

  .fwa {
    bottom: 20px;
    right: 18px;
    width: 48px;
    height: 48px;
  }
}

/* ─── RESPONSIVE 480px ─── */
@media (max-width: 480px) {
  .ci-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .pcard {
    flex: 0 0 155px;
  }

  .pcard-img {
    height: 140px;
  }

  .ts-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: transparent;
    border: none;
  }

  .ts-stat {
    background: #141728;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
    padding: 16px;
  }
}

/* ════════════════════════════════════════════════════════════
   U7BUY DEDICATED CATEGORY MARKETPLACE HUB PAGE (category.html)
   ════════════════════════════════════════════════════════════ */
.u7-page-section {
  padding: 32px 20px 80px;
  min-height: 80vh;
  max-width: 1320px;
  margin: 0 auto;
}

/* Breadcrumb */
.u7-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.84rem;
  color: #94A3B8;
}

.u7-bc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94A3B8;
  font-weight: 500;
  transition: color var(--t);
}

.u7-bc-link:hover {
  color: #FFFFFF;
}

.u7-bc-sep {
  color: #64748B;
  font-size: 0.8rem;
}

.u7-bc-active {
  color: #CBD5E1;
  font-weight: 600;
}

/* Master 2-Column Hub Layout */
.u7-hub-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* Left Sidebar */
.u7-sidebar {
  background: #101326;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px 12px;
  position: sticky;
  top: 90px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.u7-sidebar-header {
  padding: 4px 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
}

.u7-sidebar-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #CBD5E1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.u7-cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.u7-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #94A3B8;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.22s ease;
  cursor: pointer;
  border: 1px solid transparent;
  width: 100%;
  text-align: left;
  background: none;
}

.u7-cat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.u7-cat-item.active {
  background: linear-gradient(90deg, rgba(255, 90, 54, 0.16) 0%, rgba(20, 23, 40, 0.6) 100%);
  border: 1px solid rgba(255, 90, 54, 0.25);
  border-left: 3px solid var(--ember);
  color: #FFFFFF;
  font-weight: 700;
}

.u7-cat-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8892A4;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.u7-cat-item:hover .u7-cat-icon {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.u7-cat-item.active .u7-cat-icon {
  background: rgba(255, 90, 54, 0.2);
  color: var(--ember);
}

.u7-cat-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748B;
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 6px;
}

.u7-cat-item.active .u7-cat-badge {
  color: #FF7A59;
  background: rgba(255, 90, 54, 0.2);
}

/* Right Main Marketplace Area */
.u7-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.u7-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 6px;
}

.u7-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.u7-heading {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.u7-items-count {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 500;
}

/* Filters & Search Row */
.u7-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: #101326;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 16px;
}

.u7-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.u7-filter-btn {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  cursor: pointer;
  transition: all var(--t);
}

.u7-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.u7-filter-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 90, 54, 0.35);
}

.u7-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  width: 220px;
}

.u7-search-box input {
  background: none;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 0.82rem;
  width: 100%;
}

.u7-search-box input::placeholder {
  color: #64748B;
}

/* Cards Grid */
.u7-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 16px;
}

/* Single U7BUY Card */
.u7-card {
  background: #141728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.u7-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 54, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 90, 54, 0.15);
}

.u7-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  background: #090B16;
  overflow: hidden;
}

.u7-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.u7-card:hover .u7-card-img img {
  transform: scale(1.08);
}

.u7-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.u7-card-badge.hot {
  background: linear-gradient(135deg, #FF5A36, #FF9E00);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 90, 54, 0.4);
}

.u7-card-badge.verified {
  background: rgba(37, 211, 102, 0.9);
  color: #FFFFFF;
}

.u7-card-badge.rare {
  background: linear-gradient(135deg, #465CFF, #8A3FFC);
  color: #FFFFFF;
}

.u7-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.u7-card-cat {
  font-size: 0.72rem;
  color: #64748B;
  margin-bottom: 4px;
  font-weight: 600;
}

.u7-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #F2F3F5;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.u7-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94A3B8;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.u7-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #FFB800;
}

.u7-card-reviews {
  color: #64748B;
  font-weight: 500;
}

/* Responsive category layout for tablet / mobile */
@media (max-width: 1024px) {
  .u7-hub-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .u7-sidebar {
    position: static;
    padding: 10px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .u7-sidebar::-webkit-scrollbar {
    display: none;
  }

  .u7-sidebar-header {
    display: none;
  }

  .u7-cat-list {
    flex-direction: row;
    gap: 8px;
    white-space: nowrap;
  }

  .u7-cat-item {
    width: auto;
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .u7-cat-item.active {
    border-left: 1px solid var(--ember);
  }

  .u7-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .u7-page-section {
    padding: 20px 14px 60px;
  }

  .u7-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .u7-card-body {
    padding: 10px 10px 12px;
  }

  .u7-card-title {
    font-size: 0.8rem;
  }

  .u7-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .u7-search-box {
    width: 100%;
  }
}

display: none;
}

.u7-sidebar-header {
  display: none;
}

.u7-cat-list {
  flex-direction: row;
  gap: 8px;
  white-space: nowrap;
}

.u7-cat-item {
  width: auto;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.u7-cat-item.active {
  border-left: 1px solid var(--ember);
}

.u7-cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
}

@media (max-width: 640px) {
  .u7-page-section {
    padding: 20px 14px 60px;
  }

  .u7-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .u7-card-body {
    padding: 10px 10px 12px;
  }

  .u7-card-title {
    font-size: 0.8rem;
  }

  .u7-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .u7-search-box {
    width: 100%;
  }
}
/* Shimmer loading animation for category grid */
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
