/* ATG STORE - Black, dark matter, purple, white & gold */
/* Flying image + cart bump (atgxstore reference) */
.flying-img {
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  border: 2px solid #00ff88;
  box-shadow: 0 0 15px #00ff88;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px !important;
  height: 50px !important;
  object-fit: cover;
}
@keyframes shakeCart {
  0% { transform: scale(1); }
  25% { transform: scale(1.2) rotate(10deg); }
  50% { transform: scale(1.2) rotate(-10deg); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.cart-bump {
  animation: shakeCart 0.4s ease-out;
  color: #00ff88 !important;
}
.cart-bump .cart-icon-gaming,
.cart-bump svg {
  color: #00ff88 !important;
}

:root {
  --black: #000000;
  --dark-matter: #0a0a0c;
  --dark-matter-2: #0e0e12;
  --dark-matter-3: #141418;
  --bg-dark: #000000;
  --bg-card: #0a0a0c;
  --bg-nav: #0a0a0c;
  --bg-top-bar: #0a0a0c;
  --bg-search-bar: #0e0e12;
  --accent: #a855f7;
  --accent-hover: #c084fc;
  --accent-bright: #e9d5ff;
  --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dark: #b8962e;
  --gold-gradient: linear-gradient(135deg, #b8962e 0%, #d4af37 50%, #e8c547 100%);
  --text: #ffffff;
  --text-muted: #a1a1aa;
  --border: #1c1c22;
  --success: #a855f7;
  /* Purple + gold LED glow */
  --led-accent: #a855f7;
  --led-white: rgba(255, 255, 255, 0.95);
  --led-gold: rgba(212, 175, 55, 0.6);
  --led-glow: rgba(168, 85, 247, 0.45);
  --led-glow-soft: rgba(168, 85, 247, 0.22);
  --led-glow-gold: rgba(212, 175, 55, 0.25);
  /* Unic (unicorn) LED colors */
  --unic-cyan: #00d4aa;
  --unic-purple: #a855f7;
  --unic-pink: #f472b6;
  --unic-cyan-rgb: 0, 212, 170;
  --unic-purple-rgb: 168, 85, 247;
  --unic-pink-rgb: 244, 114, 182;
  /* UI polish */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.5);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(168, 85, 247, 0.08), transparent 50%),
              radial-gradient(ellipse 50% 40% at 80% 100%, rgba(212, 175, 55, 0.06), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

/* Focus visible for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.9);
  outline-offset: 2px;
}

input:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.6);
  outline-offset: 0;
}

/* ========== NEW MINIMAL MENU BAR ========== */
.store-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #171717;
  border-bottom: 1px solid #262626;
  box-sizing: border-box;
}

.store-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.5rem;
  max-width: 100%;
  min-height: 56px;
}

.store-nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.store-nav-logo:hover {
  color: #fafafa;
}

.store-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.store-nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.store-nav-link:hover {
  color: #fff;
  background: #262626;
}

.store-nav-links .store-nav-link.category-pill.active {
  color: #fff;
  background: #262626;
}

.store-nav-deals {
  color: #eab308 !important;
}

.store-nav-deals:hover {
  background: rgba(234, 179, 8, 0.1) !important;
  color: #facc15 !important;
}

.store-nav-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.store-nav-search {
  width: 140px;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
}

.store-nav-search::placeholder {
  color: #737373;
}

.store-nav-search:focus {
  border-color: #525252;
}

.store-nav-currency {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e5e5;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.store-nav-currency:hover {
  background: #333;
  border-color: #525252;
}

.store-nav-currency .chevron {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

.store-nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e5e5;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.store-nav-cart:hover {
  background: #333;
  border-color: #525252;
}

.store-nav-cart i {
  font-size: 0.9rem;
  opacity: 0.9;
}

.store-nav-cart-count {
  min-width: 1.2rem;
  padding: 0.1rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #171717;
  background: #eab308;
  border-radius: 999px;
}

.store-nav-cart-total {
  color: #a3a3a3;
  font-size: 0.8125rem;
}

.store-nav-account {
  position: relative;
}

.store-nav-auth {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.15s;
}

.store-nav-login:hover {
  color: #fff;
}

.store-nav-register {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: #eab308;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.store-nav-register:hover {
  background: #facc15;
  color: #171717;
}

.store-nav-account-btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e5e5e5;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.store-nav-account-btn:hover {
  background: #333;
  border-color: #525252;
}

.store-nav .profile-menu {
  top: calc(100% + 6px);
  right: 0;
  left: auto;
  min-width: 200px;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.store-nav .currency-menu {
  background: #262626;
  border: 1px solid #404040;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ========== TWO-TIER GAMING MENU (image style) — same color for All, PC, Xbox, PSN, Nintendo, Points ========== */
.game-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #050508;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  box-sizing: border-box;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.game-header-top {
  background: linear-gradient(90deg, #050508 0%, #08060c 25%, #050508 50%, #08060c 75%, #050508 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 1px 0 rgba(0, 240, 255, 0.06);
}

.game-top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  flex-wrap: wrap;
  transform: translateX(-70px);
}

.game-top-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.game-top-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.game-top-active {
  color: #00ff88 !important;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
}

.game-top-cta {
  color: #ffb020 !important;
}

.game-top-cta:hover {
  color: #ffc040 !important;
}

.game-top-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.7);
  flex-shrink: 0;
}

.game-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  min-height: 46px;
  max-width: 100%;
  width: 100%;
  background: #050508;
  border-top: 1px solid rgba(0, 240, 255, 0.12);
}

.game-header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 0;
  overflow: visible;
}

.game-logo {
  font-size: 1.35rem;
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  color: #b794f6;
  transition: transform 0.2s ease, color 0.2s ease;
}

.game-logo:hover {
  transform: scale(1.05);
  color: #c4b5fd;
}

.game-logo i {
  font-size: 1.75rem;
}

/* Electric flicker — very subtle, single soft pulse per cycle */
@keyframes electric-flicker {
  0%, 85%, 100% { filter: brightness(1); }
  90% { filter: brightness(1.04); }
  92% { filter: brightness(0.99); }
  95%, 100% { filter: brightness(1); }
}

/* Water wave text — single animation for both ATG & STORE */
@keyframes water-wave-gradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 50% 25%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 75%; }
}

/* Shimmer — premium sweep, smooth fade in/out */
@keyframes loading-shimmer {
  0% { opacity: 0; transform: translateX(-80%) skewX(-10deg); }
  8% { opacity: 0.85; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  92% { opacity: 0.85; }
  100% { opacity: 0; transform: translateX(180%) skewX(-10deg); }
}

.game-site-name {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-style: italic;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transform: translateX(-90px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: electric-flicker 5s ease-in-out infinite;
}

/* Shimmer — refined gradient band, smooth easing */
.game-site-name::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 40%;
  height: 140%;
  background: linear-gradient(100deg, transparent 0%, transparent 28%, rgba(255, 255, 255, 0.14) 48%, rgba(255, 255, 255, 0.22) 52%, transparent 72%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  animation: loading-shimmer 4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

/* ATG — water wave inside text (white → soft lavender flow) */
.game-site-atg {
  background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 25%, #ede9fe 50%, #e9d5ff 75%, #f5f3ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  margin-right: -0.08em;
  animation: water-wave-gradient 4.5s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)) drop-shadow(1px 1px 0 rgba(0,0,0,0.38)) drop-shadow(2px 2px 0 rgba(0,0,0,0.3)) drop-shadow(3px 3px 8px rgba(0,0,0,0.4));
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* STORE — water wave inside text (purple flow, synced with ATG) */
.game-site-store {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 25%, #8b5cf6 50%, #7c3aed 75%, #a78bfa 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  margin-left: -0.08em;
  animation: water-wave-gradient 4.5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.3)) drop-shadow(0 0 12px rgba(139, 92, 246, 0.12)) drop-shadow(1px 1px 0 rgba(0,0,0,0.38)) drop-shadow(2px 2px 0 rgba(0,0,0,0.3)) drop-shadow(3px 3px 8px rgba(0,0,0,0.4));
  transform: translateZ(0);
  backface-visibility: hidden;
}

.game-pill {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #12101a 0%, #0e0c14 50%, #100e18 100%);
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: 999px;
  padding: 0.5rem 0.4rem 0.5rem 0.75rem;
  min-height: 38px;
  flex: 0 0 auto;
  width: max-content;
  max-width: 720px;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.06);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), flex 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.2s ease, box-shadow 0.2s ease, padding 0.4s ease;
}

.game-pill:focus-within {
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.25), 0 0 20px rgba(139, 92, 246, 0.08);
}

.game-pill-segments {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  min-width: 0;
}

.game-segment {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.game-segment i {
  font-size: 0.95rem;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.game-segment:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.game-segment:hover i {
  transform: scale(1.05);
}

.game-segment:active {
  transform: translateY(0);
}

/* Hover: LED only (no background fill) */
.game-segment.category-pill:hover {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 12px rgba(196, 181, 253, 0.5), 0 1px 0 rgba(0, 0, 0, 0.2);
  background: transparent;
  border: 2px solid rgba(233, 213, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.35), 0 0 12px rgba(167, 139, 250, 0.55), 0 0 28px rgba(139, 92, 246, 0.35), 0 0 44px rgba(124, 58, 237, 0.2);
  transform: translateY(-1px);
  transition: box-shadow 0.3s cubic-bezier(0.34, 1.25, 0.64, 1), border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.game-segment.category-pill:hover i {
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 0 6px rgba(196, 181, 253, 0.5));
  transition: filter 0.2s ease-out;
}

/* Active/selected: rich dark purple with clear glow */
.game-segment.category-pill.active {
  color: #fff;
  text-shadow: 0 0 10px rgba(196, 181, 253, 0.3), 0 1px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #7c3aed 0%, #6d28d9 35%, #5b21b6 75%, #4c1d95 100%);
  border: 1px solid rgba(196, 181, 253, 0.5);
  border-radius: 999px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(139, 92, 246, 0.25), 0 0 20px rgba(109, 40, 217, 0.4), 0 4px 18px rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease-out, box-shadow 0.3s cubic-bezier(0.34, 1.25, 0.64, 1), border-color 0.2s ease;
}

/* Active + hover: LED only (keep active background, add LED glow) */
.game-segment.category-pill.active:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(196, 181, 253, 0.5), 0 1px 0 rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(233, 213, 255, 0.9);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(139, 92, 246, 0.35), 0 0 12px rgba(167, 139, 250, 0.55), 0 0 28px rgba(139, 92, 246, 0.35), 0 0 44px rgba(124, 58, 237, 0.2), 0 4px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

/* Search icon inside list like Points – same row, same look as segments */
.game-pill-search-icon {
  padding: 0.45rem 0.4rem;
  min-width: auto;
  width: auto;
  height: auto;
  min-height: auto;
  border-radius: 999px;
}

.game-pill-search-icon i {
  font-size: 0.95rem;
  opacity: 0.9;
}

.game-pill-search-icon:hover {
  color: #e9d5ff;
  background: rgba(255, 255, 255, 0.08);
}

/* Search mode: hide segments + search icon, show search bar inside same pill */
.game-pill-search-wrap {
  display: none;
  align-items: center;
  flex: 1;
  min-width: 0;
  width: 100%;
  gap: 0.6rem;
  padding: 0;
}

.game-pill.search-open {
  flex: 1;
  width: 100%;
  max-width: 720px;
  padding: 0.6rem 0.5rem 0.6rem 0.85rem;
  min-height: 44px;
  animation: thunderPillGlow 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes thunderPillGlow {
  0%, 8%, 20%, 32%, 50% { border-color: rgba(167, 139, 250, 0.2); box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(139, 92, 246, 0.08); }
  5%  { border-color: rgba(200, 220, 255, 0.95); box-shadow: 0 0 0 2px rgba(255,255,255,0.7), 0 0 24px rgba(147, 197, 253, 0.8), 0 0 48px rgba(96, 165, 250, 0.4), 0 4px 20px rgba(0,0,0,0.3); }
  14% { border-color: rgba(167, 139, 250, 0.5); box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.3), 0 0 16px rgba(167, 139, 250, 0.25), 0 4px 20px rgba(0,0,0,0.35); }
  26% { border-color: rgba(200, 220, 255, 0.85); box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 0 20px rgba(147, 197, 253, 0.6), 0 0 40px rgba(96, 165, 250, 0.25), 0 4px 20px rgba(0,0,0,0.3); }
  38%, 70%, 100% { border-color: rgba(167, 139, 250, 0.35); box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(139, 92, 246, 0.2), 0 0 18px rgba(139, 92, 246, 0.12); }
}

.game-pill.search-open .game-pill-segments {
  display: none;
}

/* Search bar: purple gaming LED electric glow */
.game-pill.search-open .game-pill-search-wrap {
  display: flex;
  width: 100%;
  min-height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(196, 181, 253, 0.6);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(139, 92, 246, 0.35), 0 0 14px rgba(167, 139, 250, 0.5), 0 0 28px rgba(139, 92, 246, 0.35), 0 0 44px rgba(124, 58, 237, 0.2);
  animation: searchBarRevealGaming 2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             purpleLedPulse 2.5s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes purpleLedPulse {
  0%, 100% {
    border-color: rgba(196, 181, 253, 0.6);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(139, 92, 246, 0.35), 0 0 14px rgba(167, 139, 250, 0.5), 0 0 28px rgba(139, 92, 246, 0.35), 0 0 44px rgba(124, 58, 237, 0.2);
  }
  50% {
    border-color: rgba(233, 213, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 0 2px rgba(167, 139, 250, 0.6), 0 0 20px rgba(167, 139, 250, 0.7), 0 0 40px rgba(139, 92, 246, 0.45), 0 0 60px rgba(124, 58, 237, 0.25), 0 0 80px rgba(124, 58, 237, 0.12);
  }
}

@keyframes searchBarRevealGaming {
  from {
    opacity: 0;
    transform: translateX(-24px) scaleX(0.96);
    filter: blur(2px) brightness(0.75);
  }
  4% {
    opacity: 0.5;
    filter: blur(1px) brightness(2.1) contrast(1.12);
  }
  8%, 18% {
    filter: blur(0) brightness(1);
  }
  24% {
    filter: blur(0) brightness(1.85) contrast(1.06);
  }
  30%, 60% {
    opacity: 0.85;
    filter: blur(0) brightness(1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
    filter: blur(0) brightness(1);
  }
}

.game-pill-search-wrap .game-search-input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.85rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
}

.game-pill-search-wrap .game-search-input:focus {
  color: #fff;
}

/* Purple gaming LED stronger when search input focused (electric) */
.game-pill.search-open .game-pill-search-wrap:focus-within {
  border-color: rgba(233, 213, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 0 2px rgba(167, 139, 250, 0.8), 0 0 22px rgba(167, 139, 250, 0.75), 0 0 44px rgba(139, 92, 246, 0.5), 0 0 70px rgba(124, 58, 237, 0.35), 0 0 100px rgba(124, 58, 237, 0.18);
  animation: searchBarRevealGaming 2s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             purpleLedPulse 2.5s ease-in-out infinite;
}

.game-pill-search-wrap .game-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.game-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.game-search-close i {
  font-size: 0.9rem;
}

.game-search-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Currency next to search pill (in center) */
.game-currency-by-search {
  flex-shrink: 0;
  margin-left: calc(0.5rem + 65px);
}

.game-header-center .game-wishlist-btn {
  flex-shrink: 0;
  margin-left: 0.5rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.game-header-center .game-wishlist-btn:hover {
  background: rgba(244, 114, 182, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f472b6;
}

.game-header-center .game-cart-btn {
  flex-shrink: 0;
  margin-left: 0.5rem;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.game-header-center .game-cart-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.game-header-center .game-cart-btn.game-cart-has-items:hover {
  color: #00ff88;
}

.game-header-center .game-profile-wrap {
  flex-shrink: 0;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-header-center .game-auth-guest {
  display: none;
}

.game-header-center .game-auth-guest[hidden] {
  display: none;
}

.game-header-center .game-login-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  min-height: 38px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.game-header-center .game-login-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.game-header-center .game-signup-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  min-height: 38px;
  box-sizing: border-box;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(139, 92, 246, 0.5);
}

.game-header-center .game-profile-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: #c4b5fd;
  box-shadow: none;
}

.game-header-center .game-profile-btn:hover {
  background: rgba(167, 139, 250, 0.15);
  border-color: rgba(167, 139, 250, 0.4);
  color: #e9d5ff;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

.game-header-center .game-currency {
  padding: 0.45rem 0.7rem;
  min-height: 38px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.game-header-center .game-currency:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.game-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  min-width: 0;
}

.game-currency {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.game-currency:hover {
  color: #fff;
}

.game-currency .chevron {
  font-size: 0.6rem;
  opacity: 0.8;
}

.game-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

button.game-icon-btn {
  padding: 0;
}

.game-icon-btn:hover {
  color: #f472b6;
  background: rgba(244, 114, 182, 0.12);
  transform: scale(1.05);
}

.game-icon-btn[aria-label="Search"]:hover {
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.15);
}

.game-wishlist-btn:hover {
  transform: scale(1.05);
}

.game-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.game-cart-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: scale(1.05);
}

.game-cart-btn.game-cart-has-items:hover {
  color: #00ff88;
}

.game-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 22px;
  height: 22px;
  font-size: 0.8rem;
  padding: 0 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0a0a0c;
  background: #00ff88;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.25);
  animation: cart-badge-glow 2s ease-in-out infinite;
}

@keyframes cart-badge-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.25); }
  50% { box-shadow: 0 0 16px rgba(0, 255, 136, 0.8), 0 0 28px rgba(0, 255, 136, 0.35); }
}

.game-cart-btn:not(.game-cart-has-items) .game-cart-badge {
  display: none;
}

.game-cart-total-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.game-profile-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-auth-guest {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-login-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.game-login-link:hover {
  color: #fff;
}

.game-signup-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0a0a0c;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
}

.game-signup-link:hover {
  opacity: 0.95;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.game-profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-profile-btn:hover {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  transform: scale(1.05);
}

.game-profile-btn:active {
  transform: scale(0.98);
}

.game-profile-btn i {
  font-size: 1rem;
}

.game-header .profile-menu {
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  min-width: 200px;
  z-index: 300;
  background: rgba(26, 25, 31, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.game-header .currency-menu {
  background: rgba(26, 25, 31, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .game-pill {
    max-width: 100%;
  }
  .game-pill-segments {
    flex-wrap: wrap;
  }
  .game-segment span {
    display: none;
  }
  .game-segment {
    padding: 0.5rem;
  }
}

@media (max-width: 640px) {
  .game-top-links {
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
  }
  .game-top-link {
    font-size: 0.7rem;
  }
  .game-header-main {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }
  .game-logo {
    font-size: 1.15rem;
  }
  .game-header-center {
    justify-content: center;
    gap: 0.5rem;
  }
  .game-site-name {
    transform: translateX(-50px);
  }
  .game-pill {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    order: 2;
    margin: 0;
  }
  .game-currency-by-search {
    margin-left: 0.5rem;
    order: 3;
  }
  .game-header-center .game-wishlist-btn {
    margin-left: 0.5rem;
    order: 4;
  }
  .game-header-center .game-cart-btn {
    margin-left: 0.5rem;
    order: 5;
  }
  .game-header-center .game-profile-wrap {
    margin-left: 0.5rem;
    order: 6;
  }
}

.top-menu-bar {
  display: none;
}

.top-menu-bar.top-bar-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.center-menu-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.center-menu-center {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.center-menu-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
  min-width: 0;
  overflow: visible;
}

.center-menu-right-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: visible;
  flex-shrink: 0;
}

/* ATG-style: minimal currency/cart/welcome - no heavy glow */
.center-menu-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.center-menu-icon-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.language-dropdown {
  position: relative;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  min-width: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.35rem;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.language-menu button:hover {
  background: rgba(255,255,255,0.08);
}

.center-menu-search-wrap {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 15, 18, 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1rem;
  min-width: 200px;
}

/* When search is open: hide everything except search bar (like before) */
.center-menu-bar.search-open .center-menu-left {
  display: none;
}

.center-menu-bar.search-open .center-menu-right {
  display: none;
}

.center-menu-bar.search-open .search-categories-wrap {
  flex: 1 1 100%;
  max-width: none;
  justify-content: center;
}

.center-menu-bar.search-open .center-menu-nav {
  flex: 1;
  width: 100%;
  justify-content: center;
}

.center-menu-nav.search-open .category-pill,
.center-menu-nav.search-open .menu-item-gifts,
.center-menu-nav.search-open .menu-item-points,
.center-menu-nav.search-open .search-btn-main {
  display: none;
}

/* Search bar: smooth slide-in when you press search icon */
.center-menu-nav.search-open .center-menu-search-wrap {
  display: flex;
  flex: 0 1 auto;
  width: 100%;
  min-width: 280px;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  transform-origin: center;
  animation: searchBarSlide 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes searchBarSlide {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.center-menu-search-wrap input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.center-menu-search-wrap input::placeholder {
  color: var(--text-muted);
}

.center-menu-search-wrap input:focus {
  outline: none;
}

.search-close-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
}

.search-close-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.center-menu-search-icon svg {
  display: block;
}

/* Search - ATG-style: minimal, same as other nav (atgxstore.com) */
.center-menu-nav .search-btn-main {
  width: 36px;
  height: 36px;
  margin-left: 0.5rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

.center-menu-nav .search-btn-main:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.center-menu-nav .search-btn-main svg {
  display: block;
  width: 18px;
  height: 18px;
}

.center-menu-logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  font-style: italic;
  margin-right: 1rem;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.center-menu-logo:hover {
  opacity: 0.9;
}

.center-menu-logo .logo-atg {
  color: #fff;
  margin-right: 0.25rem;
}

.center-menu-logo .logo-store {
  color: #e2e8f0;
  font-weight: 700;
}

.center-menu-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

/* Platform pills - ATG-style: text-only with dot separators (atgxstore.com) */
.center-menu-bar .category-pill {
  padding: 0.4rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 0;
  transition: color 0.2s ease;
  color: var(--text-muted);
  background: transparent;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Dot separator between pills (ATG style) */
.center-menu-bar .category-pill:not(:last-child)::after {
  content: '';
  display: inline-block;
  margin-left: 0.6rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.6;
  vertical-align: middle;
}

.center-menu-bar .category-pill:hover {
  color: #fff;
  background: transparent;
}

.center-menu-bar .category-pill.active {
  color: #fff;
  background: transparent;
}

.center-menu-bar .category-pill.active::after,
.center-menu-bar .category-pill:hover::after {
  background: currentColor;
  opacity: 0.7;
}

/* Hide icons in main bar - ATG uses text only */
.center-menu-bar .cat-icon {
  display: none;
}

.center-menu-nav .menu-sep {
  color: rgba(148, 163, 184, 0.4);
  font-weight: 300;
  padding: 0 0.35rem;
  user-select: none;
}

/* Main nav bar - logo, search/categories, currency, icons, profile */
.main-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.logo-atg {
  color: #fff;
  margin-right: 0.2rem;
}

.logo-store {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Categories + search container */
.search-categories-wrap {
  flex: 1;
  min-width: 200px;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  gap: 0.35rem;
}

.search-categories-wrap:focus-within {
  border: none;
  box-shadow: none;
}

.category-pills {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.category-pill:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.category-pill.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.cat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.search-categories-wrap .search-btn {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.search-categories-wrap .search-btn:hover {
  background: var(--border);
}

/* Right side: currency, wishlist, cart, profile - always visible on first row */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.currency-dropdown {
  position: relative;
}

.currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.currency-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}

.currency-btn .chevron {
  opacity: 0.7;
  transition: transform 0.2s;
}

.currency-dropdown.open .currency-btn .chevron {
  transform: rotate(180deg);
}

.currency-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.35rem;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.currency-menu[hidden] {
  display: none;
}

.currency-menu button {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
}

.currency-menu button:hover {
  background: rgba(255,255,255,0.08);
}

/* ATG-style: minimal icon buttons (cart etc.) */
.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.nav-icon-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

/* Anchor targets for top bar links (no visible layout) */
.anchor-scroll {
  display: block;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}

/* ATG-style: Current Loot label + cart (atgxstore.com) */
.menu-cart-wrap.atg-cart-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.menu-cart-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.menu-cart-wrap:hover .menu-cart-label {
  color: var(--text);
}

.cart-btn-wrap {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  font-size: 0.8rem;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 0 12px var(--led-glow-gold);
}

.profile-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

/* ATG-style: Welcome + icon (atgxstore.com) */
.profile-btn.profile-btn-welcome {
  width: auto;
  min-width: 40px;
  padding: 0.4rem 0.75rem;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.profile-btn .menu-welcome-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.profile-btn .profile-btn-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.profile-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Profile dropdown */
.profile-dropdown-wrap {
  position: relative;
}

.profile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(168, 85, 247, 0.12);
  z-index: 200;
  backdrop-filter: blur(8px);
}

.profile-menu[hidden] {
  display: none;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.profile-menu-item:hover {
  background: rgba(255,255,255,0.06);
}

.profile-menu-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}

.profile-menu-item-wallet {
  cursor: default;
  justify-content: space-between;
}

.profile-menu-item-wallet:hover {
  background: none;
}

.wallet-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #00a88a 100%);
  color: #0a0e17;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.link-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.link-btn:hover {
  color: var(--accent-hover);
}

.admin-link-wrap {
  text-align: center;
  padding: 0.5rem;
  background: var(--bg-dark);
  position: relative;
  z-index: 1;
}

.admin-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.admin-link:hover {
  color: var(--accent);
}

.support-modal-content {
  max-width: 420px;
}

.support-user-messages {
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  padding: 0.8rem;
  background: var(--bg-dark);
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.support-msg {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.support-msg.admin .support-sender {
  color: var(--accent);
}

.support-sender {
  font-weight: 600;
  margin-right: 0.3rem;
}

.empty-support {
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem;
}

#support-form {
  display: flex;
  gap: 0.5rem;
}

#support-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-dark);
  color: var(--text);
  font-family: inherit;
}

#support-form button {
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00a88a 100%);
  color: #0a0e17;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(168, 85, 247, 0.2);
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-hover), 0 0 40px rgba(168, 85, 247, 0.1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-content h2 {
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-weight: 700;
}

.modal-content input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.modal-content input:focus {
  border-color: var(--accent);
}

.modal-content button[type="submit"] {
  width: 100%;
  padding: 0.7rem;
  background: linear-gradient(135deg, var(--accent) 0%, #00a88a 100%);
  color: #0a0e17;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.5rem;
}

.modal-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Cart sidebar — atgxstore gaming cart styles (from line 682+) */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100%;
  background: rgba(11, 12, 21, 0.95);
  border-left: 1px solid rgba(168, 85, 247, 0.3);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.cart-sidebar[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-header h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-header .cart-items-badge {
  background: rgba(168, 85, 247, 0.5);
  color: white;
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.cart-close:hover {
  color: white;
}

/* Scrollable cart items — cart-scroll-container */
.cart-scroll-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 320px;
  padding: 1rem;
}

.cart-scroll-container::-webkit-scrollbar {
  width: 5px;
}

.cart-scroll-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

.cart-scroll-container::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #8b5cf6, #d946ef);
  border-radius: 10px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Gaming cart item — atgxstore style */
.gaming-cart-item,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.gaming-cart-item:hover,
.cart-item:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateX(5px);
}

.cart-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

/* Cart image wrapper — atgxstore */
.cart-img-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.cart-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info,
.cart-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  color: white;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.cart-item-price .currency {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #ef4444;
}

.cart-footer {
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.3);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-total-row .label {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

.cart-total-row .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.cart-total {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
}

/* Gaming checkout button — atgxstore */
.btn-gaming-checkout,
.btn-checkout {
  width: 100%;
  padding: 10px;
  background: linear-gradient(90deg, #7c3aed, #db2777);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-gaming-checkout:hover,
.btn-checkout:hover {
  box-shadow: 0 0 20px rgba(219, 39, 119, 0.5);
  color: white;
  transform: translateY(-2px);
}

.empty-cart {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  margin: 0;
}

.btn-checkout:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 0 24px var(--led-glow-gold);
}

/* Content: product layout same as before; bigger space under header */
.content {
  flex: 1;
  padding: 4rem 2.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: content-fade 0.4s ease-out;
  box-sizing: border-box;
}

@keyframes content-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.content:has(#pc-platform-wallpaper:not([hidden])),
.content:has(#ea-app-platform-wallpaper:not([hidden])),
.content:has(#epic-platform-wallpaper:not([hidden])),
.content:has(#rockstar-platform-wallpaper:not([hidden])),
.content:has(#gog-platform-wallpaper:not([hidden])),
.content:has(#battlenet-platform-wallpaper:not([hidden])),
.content:has(#ubisoft-platform-wallpaper:not([hidden])),
.content:has(#xbox-platform-wallpaper:not([hidden])),
.content:has(#psn-platform-wallpaper:not([hidden])),
.content:has(#nintendo-platform-wallpaper:not([hidden])),
.content:has(#gifts-platform-wallpaper:not([hidden])) {
  max-width: 1780px;
  padding: 4.5rem 2.5rem 5rem;
}

/* PC (Steam) and EA App sections: ensure content is visible when section is shown */
#pc-platform-wallpaper:not([hidden]) .trending-games-section,
#pc-platform-wallpaper:not([hidden]) .best-selling-section,
#pc-platform-wallpaper:not([hidden]) .popular-section,
#pc-platform-wallpaper:not([hidden]) .flash-section,
#pc-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#ea-app-platform-wallpaper:not([hidden]) .trending-games-section,
#ea-app-platform-wallpaper:not([hidden]) .best-selling-section,
#ea-app-platform-wallpaper:not([hidden]) .popular-section,
#ea-app-platform-wallpaper:not([hidden]) .flash-section,
#ea-app-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#epic-platform-wallpaper:not([hidden]) .trending-games-section,
#epic-platform-wallpaper:not([hidden]) .best-selling-section,
#epic-platform-wallpaper:not([hidden]) .popular-section,
#epic-platform-wallpaper:not([hidden]) .flash-section,
#epic-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#rockstar-platform-wallpaper:not([hidden]) .trending-games-section,
#rockstar-platform-wallpaper:not([hidden]) .best-selling-section,
#rockstar-platform-wallpaper:not([hidden]) .popular-section,
#rockstar-platform-wallpaper:not([hidden]) .flash-section,
#rockstar-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#gog-platform-wallpaper:not([hidden]) .trending-games-section,
#gog-platform-wallpaper:not([hidden]) .best-selling-section,
#gog-platform-wallpaper:not([hidden]) .popular-section,
#gog-platform-wallpaper:not([hidden]) .flash-section,
#gog-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#battlenet-platform-wallpaper:not([hidden]) .trending-games-section,
#battlenet-platform-wallpaper:not([hidden]) .best-selling-section,
#battlenet-platform-wallpaper:not([hidden]) .popular-section,
#battlenet-platform-wallpaper:not([hidden]) .flash-section,
#battlenet-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#ubisoft-platform-wallpaper:not([hidden]) .trending-games-section,
#ubisoft-platform-wallpaper:not([hidden]) .best-selling-section,
#ubisoft-platform-wallpaper:not([hidden]) .popular-section,
#ubisoft-platform-wallpaper:not([hidden]) .flash-section,
#ubisoft-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#xbox-platform-wallpaper:not([hidden]) .trending-games-section,
#xbox-platform-wallpaper:not([hidden]) .best-selling-section,
#xbox-platform-wallpaper:not([hidden]) .popular-section,
#xbox-platform-wallpaper:not([hidden]) .flash-section,
#xbox-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#psn-platform-wallpaper:not([hidden]) .trending-games-section,
#psn-platform-wallpaper:not([hidden]) .best-selling-section,
#psn-platform-wallpaper:not([hidden]) .popular-section,
#psn-platform-wallpaper:not([hidden]) .flash-section,
#psn-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#nintendo-platform-wallpaper:not([hidden]) .trending-games-section,
#nintendo-platform-wallpaper:not([hidden]) .best-selling-section,
#nintendo-platform-wallpaper:not([hidden]) .popular-section,
#nintendo-platform-wallpaper:not([hidden]) .flash-section,
#nintendo-platform-wallpaper:not([hidden]) .cyber-banner-frame,
#gifts-platform-wallpaper:not([hidden]) .cyber-banner-frame {
  display: block !important;
}
#pc-platform-wallpaper:not([hidden]) .cyber-section,
#ea-app-platform-wallpaper:not([hidden]) .cyber-section,
#epic-platform-wallpaper:not([hidden]) .cyber-section,
#rockstar-platform-wallpaper:not([hidden]) .cyber-section,
#gog-platform-wallpaper:not([hidden]) .cyber-section,
#battlenet-platform-wallpaper:not([hidden]) .cyber-section,
#ubisoft-platform-wallpaper:not([hidden]) .cyber-section,
#xbox-platform-wallpaper:not([hidden]) .cyber-section,
#psn-platform-wallpaper:not([hidden]) .cyber-section,
#nintendo-platform-wallpaper:not([hidden]) .cyber-section {
  display: block !important;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
}

.hero p {
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.products h2 {
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  color: var(--text);
  text-shadow: 0 0 24px var(--led-glow-soft);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
}

.products h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.6), rgba(168, 85, 247, 0.1) 70%, transparent);
  border-radius: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0.25rem 0;
}

/* atgxstore-style: TRENDING & Best Selling */
.text-purple { color: #a855f7; text-shadow: 0 0 10px rgba(168, 85, 247, 0.4); }

.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Game card (TRENDING) - atgxstore */
.game-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.game-card:hover {
  transform: translateY(-8px);
  border-color: #a855f7;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}
.game-image-container {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-image { transform: scale(1.1); filter: brightness(0.8); }
.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dc3545;
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}
.platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.game-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin: 0;
  transition: 0.3s;
}
.game-card:hover .game-title { color: #a855f7; }
.dot-online {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  box-shadow: 0 0 5px #00ff88;
}
.price-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.current-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
.currency { font-size: 0.8rem; color: #999; }
.game-card:hover .current-price { color: #00ff88; }
.icon-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}
.game-card:hover .icon-arrow { background: #a855f7; transform: rotate(-45deg); }
.btn-gaming-primary {
  background: linear-gradient(90deg, #7c3aed, #db2777);
  color: white;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  transition: 0.3s;
}
.game-card:hover .btn-gaming-primary { box-shadow: 0 0 15px rgba(219, 39, 119, 0.4); }
.fav-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.2);
  color: #ccc;
}
.fav-btn:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
  color: #ff0000;
}

/* Gaming card (Best Selling) - atgxstore */
.gaming-card {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.gaming-card:hover {
  transform: translateY(-10px);
  border-color: #a855f7;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2), inset 0 0 20px rgba(168, 85, 247, 0.05);
}
.card-img-wrapper {
  height: 250px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gaming-card:hover .card-img { transform: scale(1.1); }
.platform-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #ccc;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: white;
  margin: 0;
}
.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: 0.3s;
}
.gaming-card:hover .btn-icon {
  background: #a855f7;
  transform: rotate(-45deg);
}

/* Best Selling scroll buttons */
.best-selling-section .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-selling-section .scroll-btn:hover {
  background: #a855f7;
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}
.best-selling-section .scroll-btn-left { left: 0; }
.best-selling-section .scroll-btn-right { right: 0; }

.btn-gaming-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 24px;
  transition: 0.3s;
}
.btn-gaming-outline:hover {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
  transform: translateY(-3px);
  color: white;
}

/* Best Selling scroll layout */
.best-selling-section .scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.best-selling-section .scroll-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.best-selling-section .scroll-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
}
@media (max-width: 1200px) { .best-selling-section .scroll-item { flex: 0 0 calc(25% - 15px); } }
@media (max-width: 768px) { .best-selling-section .scroll-item { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 500px) { .best-selling-section .scroll-item { flex: 0 0 85%; } }

/* PC platform page: atgxstore-style cyber/tech design */
.pc-platform-section {
  padding: 2.5rem 2.5rem 5rem;
  position: relative;
  z-index: 1;
  max-width: 1780px;
  margin: 0 auto;
  background-color: #050505;
  overflow: hidden;
}

/* Tech grid background */
.tech-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

/* PC GAMES section: full-width background; bigger under header */
.browse-by-platform-block {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 7rem !important;
  padding-bottom: 5.5rem !important;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.browse-by-platform-block .container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* ========== PC PAGE: gaming UI background (neon grid + cyan/magenta) ========== */
.pc-platform-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -150px;
  padding-top: 70px;
  box-sizing: border-box;
  background-color: #050508 !important;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cdefs%3E%3ClinearGradient id='cy' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%2300f0ff'/%3E%3Cstop offset='100%25' stop-color='%238b5cf6'/%3E%3C/linearGradient%3E%3ClinearGradient id='mg' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23ff00ff'/%3E%3Cstop offset='100%25' stop-color='%238b5cf6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke='url(%23cy)' stroke-width='0.35' fill='none' opacity='0.5'%3E%3Cline x1='0' y1='60' x2='600' y2='60'/%3E%3Cline x1='0' y1='120' x2='600' y2='120'/%3E%3Cline x1='0' y1='180' x2='600' y2='180'/%3E%3Cline x1='0' y1='240' x2='600' y2='240'/%3E%3Cline x1='0' y1='300' x2='600' y2='300'/%3E%3Cline x1='0' y1='360' x2='600' y2='360'/%3E%3Cline x1='0' y1='420' x2='600' y2='420'/%3E%3Cline x1='0' y1='480' x2='600' y2='480'/%3E%3Cline x1='0' y1='540' x2='600' y2='540'/%3E%3C/g%3E%3Cg stroke='url(%23mg)' stroke-width='0.35' fill='none' opacity='0.45'%3E%3Cline x1='60' y1='0' x2='60' y2='600'/%3E%3Cline x1='120' y1='0' x2='120' y2='600'/%3E%3Cline x1='180' y1='0' x2='180' y2='600'/%3E%3Cline x1='240' y1='0' x2='240' y2='600'/%3E%3Cline x1='300' y1='0' x2='300' y2='600'/%3E%3Cline x1='360' y1='0' x2='360' y2='600'/%3E%3Cline x1='420' y1='0' x2='420' y2='600'/%3E%3Cline x1='480' y1='0' x2='480' y2='600'/%3E%3Cline x1='540' y1='0' x2='540' y2='600'/%3E%3C/g%3E%3Cg stroke='%2300f0ff' stroke-width='0.4' fill='none' opacity='0.35'%3E%3Cline x1='0' y1='0' x2='600' y2='600'/%3E%3Cline x1='0' y1='300' x2='600' y2='0'/%3E%3Cline x1='300' y1='0' x2='600' y2='300'/%3E%3Cline x1='0' y1='600' x2='600' y2='0'/%3E%3C/g%3E%3Ccircle cx='300' cy='300' r='4' fill='%2300f0ff' opacity='0.8'/%3E%3C/svg%3E");
  background-size: 100% 100%, 600px 600px;
  background-position: 0 0, center;
  background-repeat: no-repeat, repeat;
  background-attachment: scroll, fixed;
  min-height: 100vh;
  position: relative;
}
.pc-platform-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.4) 0%, transparent 25%, transparent 75%, rgba(5, 5, 8, 0.5) 100%);
}
.pc-platform-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 120px rgba(0, 240, 255, 0.03);
}

/* PC page sections: base (all stay dark, position relative) */
.pc-platform-section > section,
.pc-platform-section > section:first-of-type,
.pc-platform-section .trending-games-section,
.pc-platform-section .best-selling-section,
.pc-platform-section .popular-section,
.pc-platform-section [id="popular-games-section"],
.pc-platform-section .flash-section,
.pc-platform-section .cyber-section,
.pc-platform-section .game-section,
.pc-platform-section .cyber-category-wrapper {
  background-color: #050508 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  position: relative;
}

/* TRENDING GAMES: full adaptation to PC — no own background; inherit PC grid + gradient only */
.pc-platform-section .trending-games-section {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  margin-top: 0 !important;
}
.pc-platform-section .best-selling-section {
  background-image: linear-gradient(180deg, rgba(0, 240, 255, 0.06) 0%, transparent 30%, transparent 70%, rgba(0, 240, 255, 0.04) 100%) !important;
}
.pc-platform-section .popular-section,
.pc-platform-section [id="popular-games-section"] {
  background-image: linear-gradient(180deg, rgba(236, 72, 153, 0.07) 0%, transparent 25%, transparent 75%, rgba(255, 0, 255, 0.03) 100%) !important;
}
.pc-platform-section .flash-section {
  background-image: linear-gradient(180deg, rgba(249, 115, 22, 0.07) 0%, transparent 25%, transparent 75%, rgba(251, 146, 60, 0.03) 100%) !important;
}
/* TOP SHOOTER */
.pc-platform-section .cyber-section[data-glow="red"] {
  background-image: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, transparent 25%, transparent 75%, rgba(239, 68, 68, 0.03) 100%) !important;
}
/* ACTION GAMES */
.pc-platform-section .cyber-section[data-glow="cyan"] {
  background-image: linear-gradient(180deg, rgba(0, 240, 255, 0.06) 0%, transparent 25%, transparent 75%, rgba(0, 240, 255, 0.03) 100%) !important;
}
/* RPG WORLD */
.pc-platform-section .cyber-section[data-glow="purple"] {
  background-image: linear-gradient(180deg, rgba(168, 85, 247, 0.07) 0%, transparent 25%, transparent 75%, rgba(139, 92, 246, 0.03) 100%) !important;
}
/* PURE HORROR */
.pc-platform-section .cyber-section[data-glow="green"] {
  background-image: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, transparent 25%, transparent 75%, rgba(34, 197, 94, 0.02) 100%) !important;
}
/* RACING THRILLS */
.pc-platform-section .cyber-section[data-glow="orange"] {
  background-image: linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, transparent 25%, transparent 75%, rgba(251, 146, 60, 0.03) 100%) !important;
}
/* REAL SIMULATION */
.pc-platform-section .cyber-section[data-glow="pink"] {
  background-image: linear-gradient(180deg, rgba(236, 72, 153, 0.06) 0%, transparent 25%, transparent 75%, rgba(244, 114, 182, 0.03) 100%) !important;
}

/* First section (PC GAMES hero): no background behind title */
.pc-platform-section > section:first-of-type {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* TRENDING top line: same as other PC sections (single subtle cyan) */
.pc-platform-section .trending-games-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .best-selling-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.35), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .popular-section::before,
.pc-platform-section [id="popular-games-section"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.35), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .flash-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .cyber-section[data-glow="red"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.35), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .cyber-section[data-glow="cyan"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.35), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .cyber-section[data-glow="cyan"] .d-flex.align-items-center.justify-content-between {
  align-items: flex-start;
}
.pc-platform-section .cyber-section[data-glow="cyan"] .cyber-title {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .pc-platform-section .cyber-section[data-glow="cyan"] .cyber-title {
    white-space: normal;
  }
}
.pc-platform-section .cyber-section[data-glow="purple"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.4), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .cyber-section[data-glow="green"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.35), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .cyber-section[data-glow="orange"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
  pointer-events: none; z-index: 1;
}
.pc-platform-section .cyber-section[data-glow="pink"]::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.35), transparent);
  pointer-events: none; z-index: 1;
}

.pc-platform-section .tech-grid-bg,
.pc-platform-section .glow-spot-center,
.pc-platform-section .glow-orb,
.pc-platform-section .grid-lines,
.pc-platform-section .fire-glow,
.pc-platform-section .section-glow,
.pc-platform-section [class*="glow-"] {
  display: none !important;
}

.pc-platform-section > section:first-of-type {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 0 !important;
  padding-bottom: 0.5rem !important;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.pc-platform-section > section:first-of-type .container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* PC hero: banner frame — a bit smaller, narrower width */
.pc-platform-section > section:first-of-type .cyber-banner-frame {
  height: 320px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid rgba(0, 240, 255, 0.55);
  border-radius: 0;
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.25), inset 0 0 80px rgba(0, 0, 0, 0.4);
  position: relative;
  margin-bottom: 0.25rem;
}
.pc-platform-section > section:first-of-type .cyber-banner-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255, 0, 255, 0.4);
  pointer-events: none;
  z-index: 3;
}
.pc-platform-section > section:first-of-type .cyber-banner-img {
  border-radius: 0;
}
.pc-platform-section > section:first-of-type .scanlines {
  opacity: 0.35;
  background-size: 100% 3px, 4px 100%;
}
.pc-platform-section > section:first-of-type .corner-accents span {
  width: 24px;
  height: 24px;
  border-width: 2px;
  border-color: rgba(0, 240, 255, 0.9);
  border-radius: 0;
}
.pc-platform-section > section:first-of-type .cyber-banner-frame:hover .corner-accents span {
  border-color: #ff00ff;
  box-shadow: 0 0 14px rgba(255, 0, 255, 0.8);
  width: 30px;
  height: 30px;
}
.pc-platform-section > section:first-of-type .cyber-banner-frame:hover {
  border-color: rgba(0, 240, 255, 0.95);
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.4), inset 0 0 80px rgba(0, 0, 0, 0.4);
}

/* PC tab: all section backgrounds full width and bigger (more padding) */
.pc-platform-section > section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.pc-platform-section .trending-games-section {
  padding-top: 6rem !important;
  padding-bottom: 7rem !important;
}
/* TRENDING title line on PC: match other section lines (cyan tint) */
.pc-platform-section .trending-games-section .trending-title-line {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.15), rgba(255, 255, 255, 0.06) 25%, rgba(255, 255, 255, 0.04) 75%, transparent) !important;
}

.pc-platform-section .best-selling-section {
  padding-top: 6rem !important;
  padding-bottom: 7rem !important;
}

.pc-platform-section .popular-section,
.pc-platform-section [id="popular-games-section"] {
  padding-top: 6rem !important;
  padding-bottom: 7rem !important;
}

.pc-platform-section .flash-section,
.pc-platform-section .cyber-section,
.pc-platform-section .game-section {
  padding-top: 6rem !important;
  padding-bottom: 7rem !important;
}

.pc-platform-section > section .container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.pc-platform-inner {
  position: relative;
  z-index: 2;
}

.pc-platform-header {
  text-align: center;
  margin-bottom: 2rem;
}

/* PC page: section titles — Arial, not bold */
.pc-platform-section .section-title,
.pc-platform-section h2.section-title,
.pc-platform-section .trending-games-section .section-title,
.pc-platform-section .best-selling-section .section-title,
.pc-platform-section .popular-section .section-title,
.pc-platform-section .trending-games-title-row .text-white,
.pc-platform-section .popular-title-row .section-title,
.pc-platform-section .d-flex.align-items-center.mb-5 h2 {
  font-family: Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: normal !important;
  letter-spacing: 0.15em;
  color: #e2e8f0;
  margin-bottom: 0;
  text-transform: uppercase;
  position: relative;
  padding-left: 0;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
}
.pc-platform-section .cyber-title {
  font-family: Arial, sans-serif !important;
  font-weight: normal !important;
}
.pc-platform-section .section-title .text-purple,
.pc-platform-section .section-title .text-neon-pink,
.pc-platform-section .section-title .text-gradient-purple,
.pc-platform-section .section-title .text-gradient-orange,
.pc-platform-section h2 .text-purple,
.pc-platform-section h2 .text-neon-pink {
  text-shadow: 0 0 24px rgba(255, 0, 255, 0.6), 0 0 40px rgba(139, 92, 246, 0.3);
}
.pc-platform-section .section-subtitle,
.pc-platform-section .section-desc {
  color: rgba(0, 240, 255, 0.7);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
  max-width: 42ch;
}

/* PC page: GAMING cards — angular, neon border + glow on hover */
.pc-platform-section .game-card,
.pc-platform-section .product-card,
.pc-platform-section .gaming-card,
.pc-platform-section .pop-card,
.pc-platform-section .mini-flash-card {
  background: rgba(8, 10, 18, 0.9);
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
  position: relative;
}
.pc-platform-section .game-card::before,
.pc-platform-section .product-card::before,
.pc-platform-section .gaming-card::before,
.pc-platform-section .pop-card::before,
.pc-platform-section .mini-flash-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f0ff, #ff00ff, transparent);
  opacity: 0.6;
  z-index: 1;
}
.pc-platform-section .game-card:hover,
.pc-platform-section .product-card:hover,
.pc-platform-section .gaming-card:hover,
.pc-platform-section .pop-card:hover,
.pc-platform-section .mini-flash-card:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.35), 0 0 50px rgba(255, 0, 255, 0.15);
  transform: translateY(-3px);
}
.pc-platform-section .game-card:hover::before,
.pc-platform-section .product-card:hover::before,
.pc-platform-section .gaming-card:hover::before,
.pc-platform-section .pop-card:hover::before,
.pc-platform-section .mini-flash-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

/* PC page: section dividers — neon line */
.pc-platform-section > section {
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.pc-platform-section > section:last-of-type {
  border-bottom: none;
}

/* PC page: buttons — neon gaming style */
.pc-platform-section .btn-gaming-outline,
.pc-platform-section .btn-gaming-outline.hover-glow,
.pc-platform-section #btn-show-more,
.pc-platform-section #btn-browse-all {
  border: 2px solid rgba(0, 240, 255, 0.5);
  color: #00f0ff;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}
.pc-platform-section .btn-gaming-outline:hover,
.pc-platform-section .btn-gaming-outline.hover-glow:hover,
.pc-platform-section #btn-show-more:hover,
.pc-platform-section #btn-browse-all:hover {
  border-color: #00f0ff;
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.9);
}


/* Animated divider (atgxstore style) */
.animated-divider {
  width: 100px;
  height: 3px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
  animation: expandWidth 3s infinite alternate;
}

@keyframes expandWidth {
  0% { width: 50px; opacity: 0.5; }
  100% { width: 150px; opacity: 1; }
}

/* PC page: main hero title — smaller, compact */
.pc-platform-section .text-neon-cyan,
.pc-platform-section h1 .text-neon-cyan {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #00f0ff;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.9), 0 0 60px rgba(0, 240, 255, 0.4);
  text-transform: uppercase;
}

.pc-platform-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #00f0ff;
  margin: 0;
  text-align: center;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.9), 0 0 60px rgba(0, 240, 255, 0.4);
  text-transform: uppercase;
}

.browse-by-heading {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(0, 240, 255, 0.7);
  margin: 0.75rem 0 0 0;
  text-align: center;
}
.pc-platform-section > section:first-of-type .text-center p.text-secondary.fs-6 {
  font-size: 0.9rem !important;
}

.pc-platform-section > section:first-of-type .animated-divider {
  width: 60px;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, #00f0ff, #ff00ff, transparent);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

/* PC first block: tighter spacing */
.pc-platform-section > section:first-of-type .text-center.mb-5 {
  margin-bottom: 1.25rem !important;
  margin-top: 0.5rem !important;
}
.pc-platform-section > section:first-of-type .text-center .mt-2 { margin-top: 0.5rem !important; }
.pc-platform-section > section:first-of-type .text-center .mt-3 { margin-top: 0.4rem !important; }
.pc-platform-section > section:first-of-type #pc-platform-buttons {
  margin-bottom: 3rem !important;
  gap: 0.75rem;
}

.pc-platform-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

/* PC platform tabs — same size as before (not smaller) */
.pc-platform-tab {
  padding: 12px 26px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 240, 255, 0.25);
  color: #94a3b8;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
  text-align: center;
  position: relative;
}

.pc-platform-tab:hover {
  color: #00f0ff;
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

.pc-platform-tab:active {
  transform: scale(0.98);
}

.pc-platform-tab.active {
  background: rgba(0, 240, 255, 0.08);
  border-color: #00f0ff;
  color: #00f0ff;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.06);
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.8);
}

/* --- Cyber Banner Frame (atgxstore exact) --- */
.cyber-banner-frame {
  position: relative;
  height: 350px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-bottom: 3.5rem;
}

.cyber-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('assets/explore-wallpaper.png') center/cover no-repeat;
  background-color: var(--bg-card, #0a0a0f);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  transition: transform 5s ease, opacity 0.3s;
}
/* Product pic: fit wallpaper and adapt to it (cover + center, fills frame) */
#pc-wallpaper-hero .cyber-banner-img,
#pc-wallpaper-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #0a0a0f !important;
}
#product-wallpaper-section .wallpaper-bg,
.product-wallpaper-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #0a0a0f !important;
}

.cyber-banner-frame:hover .cyber-banner-img {
  transform: scale(1.05);
  opacity: 1;
}

/* Home "BROWSE BY CATEGORY & PLATFORM" banner default background */
.browse-banner-bg {
  background-image: url('assets/explore-wallpaper.png'), linear-gradient(135deg, #0a0a0f 0%, #0f172a 50%, #0a0a0f 100%);
  background-size: cover, cover;
  background-position: center, center;
}

/* Scanlines (atgxstore exact) */
.scanlines {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 1;
}

/* Corner accents - 4 L-shaped corners (atgxstore style) */
.corner-accents span {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #06b6d4;
  z-index: 2;
  pointer-events: none;
  transition: 0.3s;
}

.corner-accents span:nth-child(1) {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.corner-accents span:nth-child(2) {
  top: 10px;
  right: 10px;
  border-left: 0;
  border-bottom: 0;
}

.corner-accents span:nth-child(3) {
  bottom: 10px;
  left: 10px;
  border-right: 0;
  border-top: 0;
}

.corner-accents span:nth-child(4) {
  bottom: 10px;
  right: 10px;
  border-left: 0;
  border-top: 0;
}

.cyber-banner-frame:hover .corner-accents span {
  width: 30px;
  height: 30px;
  border-color: #fff;
}

.pc-wallpaper-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.2) 75%,
    transparent 100%
  );
  pointer-events: none;
}

@media (max-width: 768px) {
  .cyber-banner-frame { height: 200px; }
}

/* Banner content (atgxstore style) - bottom left with cyan border */
.banner-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  padding: 18px 28px;
  background: rgba(0, 0, 0, 0.7);
  border-left: 5px solid #06b6d4;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* PC tab: banner content — a bit smaller */
#pc-wallpaper-hero .banner-content {
  padding: 20px 28px;
  border-left-width: 5px;
  gap: 0.5rem;
  bottom: 24px;
  left: 24px;
}

#pc-wallpaper-hero .banner-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

#pc-wallpaper-hero .banner-content .text-cyan.small {
  font-size: 0.95rem;
}

.pc-wallpaper-explore {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.pc-wallpaper-subtitle {
  font-size: 1rem;
  color: #06b6d4;
  letter-spacing: 0.08em;
  margin: 0;
}

.pc-wallpaper-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #c41e3a 0%, #e02545 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5);
}

.pc-wallpaper-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 1.25rem 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.pc-wallpaper-cta-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.pc-wallpaper-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px var(--led-glow-gold);
}

.pc-wallpaper-cta {
  padding: 0.9rem 2rem;
  background: #06b6d4;
  border: none;
  border-radius: 6px;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pc-wallpaper-cta:hover {
  background: #22d3ee;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
  transform: translateY(-1px);
}

/* TRENDING GAMES section: clear black with subtle LED edge */
.trending-games-section {
  margin-top: 0;
  padding: 4rem 0 5rem;
  background-color: #0a0a0c;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-top: 1px solid rgba(196, 181, 253, 0.2);
  border-bottom: 1px solid rgba(196, 181, 253, 0.15);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.06), 0 0 24px rgba(139, 92, 246, 0.04), 0 2px 16px rgba(0, 0, 0, 0.25);
}

.trending-games-section .tech-grid-bg {
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.trending-games-section .glow-spot-center {
  z-index: 1;
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
}

.trending-games-section .container {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.glow-spot-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.text-gradient-purple {
  background: linear-gradient(90deg, #7c3aed, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-neon-green {
  color: #00ff88;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.trending-games-title-row {
  gap: 1rem;
}

.trending-games-section .trending-title-line {
  height: 2px;
  min-height: 2px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.2), rgba(255, 255, 255, 0.06) 20%, rgba(255, 255, 255, 0.04) 80%, transparent);
  border-radius: 1px;
}

.trending-games-title-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.trending-games-title {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  flex-shrink: 0;
}

.trending-led-line {
  flex: 1;
  height: 2px;
  min-height: 2px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.animated-line {
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
  animation: slideLine 4s infinite linear;
}

@keyframes slideLine {
  0% { left: -100px; }
  100% { left: 100%; }
}

.trending-games-title {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
}

.trending-games-title .trending-word {
  color: #ffffff;
}

.trending-games-title .games-word {
  color: #a855f7;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

/* Trending grid — 3 columns (atgxstore game-card) */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1000px) {
  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 600px) {
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Game card (atgxstore TRENDING style) */
.game-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: #a855f7;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.game-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.game-image-container {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card .card-content {
  padding: 1.25rem 1.5rem;
}

.game-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin: 0 0 0.5rem 0;
  transition: 0.3s;
}

.game-card:hover .game-title {
  color: #a855f7;
}

.dot-online {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
  box-shadow: 0 0 5px #00ff88;
}

.text-secondary {
  color: #94a3b8;
}

.game-card .price-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.game-card .current-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}

.game-card .currency {
  font-size: 0.8rem;
  color: #999;
}

.game-card:hover .current-price {
  color: #00ff88;
}

.game-card .d-flex {
  display: flex;
}

.game-card .justify-content-between {
  justify-content: space-between;
}

.game-card .align-items-center {
  align-items: center;
}

.game-card .gap-2 {
  gap: 0.5rem;
}

.game-card .icon-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.game-card:hover .icon-arrow {
  background: #a855f7;
  transform: rotate(-45deg);
}

.btn-gaming-primary {
  background: linear-gradient(90deg, #7c3aed, #db2777);
  color: white;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
  flex: 1;
}

.game-card:hover .btn-gaming-primary {
  box-shadow: 0 0 15px rgba(219, 39, 119, 0.4);
}

.fav-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.fav-btn:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: #ff0000;
  color: #ff0000;
}

.small {
  font-size: 0.875rem;
}

.btn-view-details {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.25rem;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-view-details:hover {
  background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.45);
}

/* Heart — small dark gray, right of VIEW DETAILS */
.btn-wishlist {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-wishlist:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f472b6;
  border-color: rgba(244, 114, 182, 0.3);
}

/* Best Selling section — gaming-card carousel */
.best-selling-section {
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

/* Gaming card (Best Selling atgxstore style) */
.gaming-card {
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gaming-card:hover {
  transform: translateY(-10px);
  border-color: #a855f7;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2), inset 0 0 20px rgba(168, 85, 247, 0.05);
}

.gaming-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.best-selling-card .card-img-wrapper {
  height: 180px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.best-selling-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gaming-card:hover .card-img {
  transform: scale(1.1);
}

.platform-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #ccc;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.best-selling-card .card-content {
  padding: 1rem;
}

.best-selling-card .card-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin: 0 0 0.5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.best-selling-card .price-block .text-neon-green {
  font-size: 1.1rem;
}

.best-selling-card .btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: 0.3s;
}

.gaming-card:hover .btn-icon {
  background: #a855f7;
  transform: rotate(-45deg);
}

.fw-bold {
  font-weight: 700;
}

.d-flex {
  display: flex;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.best-selling-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.best-selling-title .text-gradient-purple {
  -webkit-text-fill-color: initial;
}

.best-selling-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(168, 85, 247, 0.2);
  color: #fff;
  border-color: rgba(168, 85, 247, 0.4);
}

.best-selling-carousel {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.best-selling-carousel::-webkit-scrollbar {
  display: none;
}

.best-selling-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.best-selling-card {
  flex-shrink: 0;
  width: 280px;
}

.btn-browse-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-browse-all:hover {
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
}

/* Show more — dark gray background, white border */
.btn-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.5rem auto 0;
  padding: 1rem 2.5rem;
  background: #1a1a1e;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-show-more svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-show-more:hover {
  background: #252529;
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
}

/* PC product grid — landscape cards (default/All view) */
.pc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.25rem;
}

.pc-product-grid .product-card {
  aspect-ratio: 16 / 9;
  min-height: 200px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(100, 130, 160, 0.2);
  transition: all var(--transition-smooth);
}

.pc-product-grid .product-card:hover {
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: var(--shadow-hover), 0 0 24px rgba(125, 211, 252, 0.2);
}

/* Featured strip cards & product cards — images fill entire area */
.featured-card-bg,
.product-card-image,
.pc-wallpaper-bg,
.wallpaper-preview-bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.featured-card {
  position: relative;
  overflow: hidden;
}

.featured-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-bg-image);
  background-color: var(--bg-card);
}

/* Product card: full-bleed image, title overlay, CTA */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  min-height: 300px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover), 0 0 40px var(--led-glow-soft), 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(168, 85, 247, 0.35);
}

.product-card-image {
  position: absolute;
  inset: 0;
  background: var(--card-bg-image, var(--bg-card)) center/cover no-repeat;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.5) 35%, transparent 65%);
  padding: 1.5rem;
  transition: background 0.35s ease;
}

.product-card:hover .product-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.45) 40%, transparent 60%);
}

.product-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-card .price {
  color: var(--gold);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
}

.product-card .btn-add {
  width: 100%;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, #c41e3a 0%, #e02545 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.product-card .btn-add:hover {
  background: linear-gradient(135deg, #e02545 0%, #ff2d55 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.45);
}

.product-card .btn-add:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.cart-icon-gaming {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.main-footer p {
  letter-spacing: 0.03em;
}

/* ===== Category sections (Popular, Flash, Top Shooter, etc.) ===== */
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient-purple {
  background: linear-gradient(to right, #d946ef, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(to right, #fbbf24, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Popular Games - atgxstore scroll carousel */
.popular-section .popular-title-row,
.flash-section .flash-title-row {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.popular-section-title,
.flash-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.popular-title-line,
.flash-title-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.glow-spot-pink {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 30px;
  pointer-events: none;
  z-index: 0;
}

.fire-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.animated-line-pink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #e879f9, transparent);
  animation: slideLinePink 4s infinite linear;
}

.animated-line-orange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  animation: slideLinePink 3s infinite linear;
}

.flash-icon {
  margin-right: 0.5rem;
  animation: pulse 1s infinite;
}

@keyframes slideLinePink {
  0% { left: -100px; }
  100% { left: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Scroll container (Popular Games) */
.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-inner {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
}

@media (max-width: 1200px) { .scroll-item { flex: 0 0 calc(25% - 15px); } }
@media (max-width: 992px) { .scroll-item { flex: 0 0 calc(33.33% - 14px); } }
@media (max-width: 768px) { .scroll-item { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 500px) { .scroll-item { flex: 0 0 85%; } }

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(232, 121, 249, 0.3);
  color: #e879f9;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.scroll-btn:hover {
  background: #e879f9;
  color: #000;
  box-shadow: 0 0 15px rgba(232, 121, 249, 0.5);
}

.scroll-btn-left {
  left: 0;
}

.scroll-btn-right {
  right: 0;
}

.popular-scroll-wrap {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.z-2 { z-index: 2; }
.d-block { display: block; }
.h-100 { height: 100%; }
.text-decoration-none { text-decoration: none; }
.position-relative { position: relative; }
.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.border-top { border-top: 1px solid rgba(255,255,255,0.1); }
.border-secondary { border-color: rgba(255,255,255,0.1); }
.p-3 { padding: 1rem; }
.text-white-50 { color: rgba(255,255,255,0.5); }
.fs-5 { font-size: 1.1rem; }
.fs-6 { font-size: 0.9rem; }
.fw-bold { font-weight: 700; }

.pop-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

.pop-card:hover {
  transform: translateY(-8px);
  border-color: #e879f9;
  box-shadow: 0 10px 30px rgba(232, 121, 249, 0.15);
}

.rank-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #e879f9;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 5px 12px;
  border-bottom-right-radius: 12px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(232, 121, 249, 0.5);
}

.pop-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pop-img-wrapper img,
.pop-img-wrapper .pop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pop-card:hover .pop-img-wrapper img,
.pop-card:hover .pop-img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.pop-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: 0.3s;
}

.pop-card:hover .pop-overlay {
  opacity: 1;
}

.pop-card .btn-icon-only {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
}

.pop-card .btn-icon-only:hover {
  background: #e879f9;
  color: #fff;
  transform: scale(1.1);
}

.pop-card-content,
.pop-card .card-body {
  padding: 1rem;
}

.pop-card .platform-tag,
.pop-card .mb-2 {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.pop-card .pop-price,
.pop-card .text-neon-pink {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #e879f9 !important;
  text-shadow: 0 0 10px rgba(232, 121, 249, 0.4);
  font-size: 1.1rem;
}

/* Flash Deals - mini cards (atgxstore style) */
.flash-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.mini-flash-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  cursor: pointer;
}

.mini-flash-card:hover {
  border-color: #f59e0b;
  transform: translateY(-5px);
}

.mini-img-wrapper {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.mini-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-discount {
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ef4444;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.mini-flash-content {
  padding: 0.75rem;
}

.mini-flash-title {
  margin: 0 0 0.4rem 0;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.flash-price {
  color: #f59e0b;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-mini-arrow {
  width: 30px;
  height: 30px;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.mini-flash-card:hover .btn-mini-arrow {
  background: #f59e0b;
  color: #000;
}

/* Cyber category sections (Top Shooter, Action, RPG, etc.) */
.game-section {
  background-color: #121212;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.glow-red { background: radial-gradient(circle at 0% 50%, rgba(239, 68, 68, 0.15), transparent 70%); }
.glow-cyan { background: radial-gradient(circle at 100% 50%, rgba(6, 182, 212, 0.15), transparent 70%); }
.glow-purple { background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.15), transparent 70%); }
.glow-green { background: radial-gradient(circle at 0% 100%, rgba(34, 197, 94, 0.1), transparent 70%); }
.glow-orange { background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15), transparent 70%); }
.glow-pink { background: radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.15), transparent 70%); }

.category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cyber-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.title-bar {
  height: 3px;
  width: 80px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.bar-red { background: linear-gradient(90deg, #ef4444, transparent); }
.bar-cyan { background: linear-gradient(90deg, #06b6d4, transparent); }
.bar-purple { background: linear-gradient(90deg, #a855f7, transparent); }
.bar-green { background: linear-gradient(90deg, #22c55e, transparent); }
.bar-orange { background: linear-gradient(90deg, #f97316, transparent); }
.bar-pink { background: linear-gradient(90deg, #ec4899, transparent); }

.section-title {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
}

.tracking-wide {
  letter-spacing: 3px;
}

.category-subtitle {
  color: #9ca3af;
  font-size: 0.9rem;
  margin: 0.5rem 0 0 0;
}

.text-neon-red { color: #ef4444; text-shadow: 0 0 10px rgba(239, 68, 68, 0.5); }
.text-neon-cyan { color: #06b6d4; text-shadow: 0 0 10px rgba(6, 182, 212, 0.5); }
.text-neon-purple { color: #a855f7; text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); }
.text-neon-horror { color: #22c55e; text-shadow: 0 0 10px rgba(34, 197, 94, 0.5); }
.text-neon-orange { color: #f97316; text-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
.text-neon-pink { color: #ec4899; text-shadow: 0 0 10px rgba(236, 72, 153, 0.5); }

/* Banner text readability (atgxstore) */
.text-shadow {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.nav-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cyber-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cyber-nav-btn:hover {
  background: rgba(168, 85, 247, 0.25);
  color: #fff;
  border-color: rgba(168, 85, 247, 0.4);
}

/* Category sliders */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* cyber-category-wrapper (atgxstore match) */
.cyber-category-wrapper .cyber-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 0.5rem 0;
}
.pc-platform-section .cyber-category-wrapper .cyber-title {
  font-family: Arial, sans-serif !important;
  font-weight: normal !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  color: #e2e8f0;
}
.pc-platform-section .cyber-category-wrapper .cyber-title .text-neon-cyan,
.pc-platform-section .cyber-category-wrapper .cyber-title .text-neon-red,
.pc-platform-section .cyber-category-wrapper .cyber-title .text-neon-purple,
.pc-platform-section .cyber-category-wrapper .cyber-title .text-neon-horror,
.pc-platform-section .cyber-category-wrapper .cyber-title .text-neon-orange,
.pc-platform-section .cyber-category-wrapper .cyber-title .text-neon-pink {
  font-family: Arial, sans-serif !important;
  font-weight: normal !important;
}

.cyber-category-wrapper .title-bar {
  height: 3px;
  width: 100px;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.cyber-category-wrapper .nav-controls {
  display: flex;
  gap: 10px;
}

.cyber-category-wrapper .cyber-nav-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.cyber-category-wrapper .cyber-nav-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cyber-category-wrapper .slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.cyber-category-wrapper .slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cyber-category-wrapper .slider-item {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
}

@media (max-width: 1400px) {
  .cyber-category-wrapper .slider-item { flex: 0 0 calc(25% - 15px); }
}
@media (max-width: 1200px) {
  .cyber-category-wrapper .slider-item { flex: 0 0 calc(33.33% - 14px); }
}
@media (max-width: 768px) {
  .cyber-category-wrapper .slider-item { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 500px) {
  .cyber-category-wrapper .slider-item { flex: 0 0 85%; }
}

.slider-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s ease-out;
}

.slider-item {
  flex: 0 0 calc(20% - 10px);
  min-width: 200px;
}

@media (max-width: 1200px) { .slider-item { flex: 0 0 calc(25% - 10px); } }
@media (max-width: 900px) { .slider-item { flex: 0 0 calc(33.33% - 10px); } }
@media (max-width: 600px) { .slider-item { flex: 0 0 calc(50% - 8px); min-width: 160px; } }

.cyber-section .game-card {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  transition: transform 0.3s ease;
}

.cyber-section .game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.cyber-section .game-card .card-image {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.cyber-section .game-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cyber-section .game-card .card-content {
  padding: 1rem;
}

.cyber-section .game-card .game-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cyber-section .game-card .game-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.cyber-section .game-card .game-title a:hover {
  color: #a855f7;
}

.cyber-section .game-card .platform-row {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.cyber-section .game-card .current-price {
  color: #fff;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
}

.cyber-section .game-card .region-tag {
  color: #a855f7;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cyber-section .game-card .card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s;
}

.cyber-section .game-card:hover .card-border {
  border-color: #a855f7;
}

.cyber-section .game-card .card-image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, #1a1a1a, transparent);
}

.cyber-section .game-card .platform-row .icon {
  font-size: 0.8rem;
  color: #888;
}

.cyber-section .game-card .btn-add-cat,
.cyber-section .game-card .btn-primary {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.cyber-section .game-card .btn-add-cat:hover,
.cyber-section .game-card .btn-primary:hover {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  transform: translateY(-1px);
}
