/* ==========================================================================
   LOADED.COM 1000-GAME STEAM STOREFRONT - COMPLETE MASTER STYLESHEET
   ========================================================================== */

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

:root {
  /* GAMEVAULTX Cyber Red Palette */
  --bg-page: #09090b;
  --bg-page-dark: #050507;
  --bg-header: #0f0c10;
  --bg-topbar: #0a0709;
  --bg-card: #130f14;
  --bg-card-hover: #1f131a;
  --bg-banner: linear-gradient(90deg, #1f070e 0%, #3b0d18 50%, #15050a 100%);
  --bg-input: #ffffff;
  --bg-pill: #1f1016;
  --bg-badge: rgba(0, 0, 0, 0.8);

  --border-color: #2d141d;
  --border-card: #251119;
  --border-subtle: rgba(239, 68, 68, 0.15);

  --accent-red: #ef4444;
  --accent-red-bright: #ff3344;
  --accent-green: #10b981;
  --accent-toggle: #ef4444;
  --accent-cyan: #ef4444;
  --accent-yellow: #f59e0b;
  --accent-blue: #ef4444;

  --text-white: #ffffff;
  --text-gray: #a1a1aa;
  --text-muted: #71717a;
  --text-dim: #52525b;

  --font-logo: 'Rajdhani', 'Montserrat', sans-serif;
  --font-sans: 'Inter', 'Montserrat', -apple-system, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.6);
  --shadow-card-hover: 0 12px 30px rgba(0, 0, 0, 0.85), 0 0 25px rgba(239, 68, 68, 0.4);
  --shadow-dropdown: 0 14px 40px rgba(0, 0, 0, 0.95);

  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background: var(--bg-page);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.4;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; outline: none; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-page-dark); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

/* ==========================================================================
   1. TOP TRUST & UTILITY BAR
   ========================================================================== */
.top-trust-bar {
  background: var(--bg-topbar);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 12px;
}
.top-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-col-left, .trust-col-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon-box {
  color: #f87171;
  font-size: 20px;
}
.trust-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-title-bold {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}
.trust-sub-muted {
  font-size: 11px;
  color: var(--text-muted);
}

.trustpilot-center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.trustpilot-status-bold {
  font-weight: 800;
  color: #ffffff;
}
.tp-stars-container {
  display: flex;
  gap: 2px;
}
.tp-star-box {
  background: var(--accent-green);
  color: #fff;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 2px;
}
.tp-reviews-count {
  color: var(--text-gray);
  text-decoration: underline;
  cursor: pointer;
}
.tp-brand-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  color: #fff;
}
.tp-brand-logo i { color: var(--accent-green); }

/* ==========================================================================
   2. MAIN NAVIGATION HEADER
   ========================================================================== */
.main-header-row {
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.header-flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-wordmark {
  font-family: var(--font-logo);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}
.brand-tagline {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-gray);
  text-transform: uppercase;
  border-left: 1.5px solid var(--border-color);
  padding-left: 14px;
  white-space: nowrap;
}

.header-center-search {
  flex: 1 1 500px;
  max-width: 620px;
  min-width: 280px;
  position: relative;
}
.search-pill-container {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}
.search-pill-container:focus-within {
  border-color: #ef4444;
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.45);
}
.search-pill-container i {
  color: #1e293b;
  font-size: 15px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}
.search-pill-container:focus-within i {
  color: #ef4444;
  transform: scale(1.1);
}
.search-pill-field {
  width: 100%;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
.search-pill-field::placeholder { color: #64748b; font-weight: 500; }
.clear-search-icon {
  background: none;
  border: none;
  color: #2563eb;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  margin-left: 6px;
  transition: all 0.2s ease;
}
.clear-search-icon:hover {
  color: #ef4444;
  transform: scale(1.2);
}

/* Enhanced Large Search Autocomplete Dropdown */
.search-autocomplete-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  min-width: 480px;
  max-width: 640px;
  background: #130f14 !important;
  border: 2px solid #ef4444 !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.98), 0 0 35px rgba(239, 68, 68, 0.4) !important;
  z-index: 99999 !important;
  max-height: 500px !important;
  overflow-y: auto !important;
  display: none;
  backdrop-filter: blur(16px);
  animation: modalZoomIn 0.2s ease-out;
}
.search-autocomplete-box.active { display: block !important; }

.search-row-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 12px 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  cursor: pointer !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}
.search-row-item:hover {
  background: rgba(239, 68, 68, 0.16) !important;
  border-left: 4px solid #ef4444 !important;
  padding-left: 20px !important;
}
.search-thumb-large {
  width: 58px !important;
  min-width: 58px !important;
  height: 80px !important;
  border-radius: 6px !important;
  object-fit: cover !important;
  border: 1.5px solid #2d141e !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}
.search-info-stack {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}
.search-title-bold {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  white-space: normal !important;
  word-break: break-word !important;
}
.search-meta-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
}
.search-steam-tag {
  color: #ef4444 !important;
  font-weight: 800 !important;
}
.search-genre-tag {
  color: #94a3b8 !important;
  font-weight: 600 !important;
}
.search-disc-tag {
  background: rgba(239, 68, 68, 0.2) !important;
  color: #fca5a5 !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
}
.search-price-col {
  text-align: right !important;
  flex-shrink: 0 !important;
  margin-left: 12px !important;
}
.search-price-val {
  font-size: 17px !important;
  font-weight: 900 !important;
  color: #10b981 !important;
  white-space: nowrap !important;
}
.search-old-price {
  font-size: 11px !important;
  color: #64748b !important;
  text-decoration: line-through !important;
  font-weight: 600 !important;
}
.search-footer-btn {
  padding: 12px 18px;
  background: #180e18;
  color: #fca5a5;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-top: 1px solid #2d141e;
  transition: all 0.2s ease;
}
.search-footer-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

.header-right-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-select-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
}
.header-select-item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  padding-right: 2px;
}
.header-select-item select::-ms-expand { display: none; }
.header-select-item select option { background: var(--bg-header); color: #fff; }
.icon-action-btn {
  color: #ffffff;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}
.cart-circle-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Auth Header Button & User Profile Pill */
.btn-auth-header {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #f87171;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-auth-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.6);
}

.user-profile-btn {
  background: #180e18;
  border: 1.5px solid #ef4444;
  border-radius: 8px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}
.user-profile-btn:hover {
  border-color: #f87171;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}
.user-avatar-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-weight: 900;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. CATEGORY NAVIGATION BAR
   ========================================================================== */
.secondary-nav-bar {
  background: #151a30;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 990;
  overflow: visible;
}
.sec-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  overflow: visible;
  position: static;
}
.nav-left-platforms, .nav-right-promos {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.nav-plat-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-plat-link:hover, .nav-plat-link.active { color: #ffffff; }
.nav-plat-link i { font-size: 10px; opacity: 0.8; }
.nav-right-promos a {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.nav-right-promos a:hover { color: #ffffff; }
.admin-link-btn {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171 !important;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px !important;
}

/* ==========================================================================
   4. HERO BANNER SECTION
   ========================================================================== */
.hero-banner-section { padding: 24px 0 16px 0; }
.hero-banner-box {
  background: var(--bg-banner);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.hero-characters-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1200&q=80') center right / cover no-repeat;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0) 100%);
  opacity: 0.85;
  pointer-events: none;
}
.hero-banner-content { position: relative; z-index: 2; }
.hero-breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}
.hero-breadcrumb-trail a { color: #cbd5e1; }
.hero-breadcrumb-trail .current-crumb { color: #ffffff; font-weight: 700; }
.hero-main-h1 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
}
.hero-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
  margin-top: 8px;
}

/* ==========================================================================
   5. CONTROLS TOOLBAR & QUICK CHIPS
   ========================================================================== */
.catalog-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.toolbar-left-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ctrl-pill-btn {
  background: var(--bg-pill);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.ctrl-pill-btn:hover { background: #28335c; border-color: #3b487a; }
.ctrl-pill-btn select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  padding-right: 2px;
}
.ctrl-pill-btn select::-ms-expand { display: none; }
.ctrl-pill-btn select option { background: var(--bg-header); color: #fff; }

.region-toggle-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  font-weight: 600;
}
.toggle-switch-ui {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 28px;
}
.toggle-switch-ui input { opacity: 0; width: 0; height: 0; }
.toggle-slider-round {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #0f172a;
  border: 1px solid var(--border-color);
  transition: .3s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
}
.toggle-slider-round:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}
input:checked + .toggle-slider-round {
  background-color: var(--accent-toggle);
  border-color: var(--accent-toggle);
}
input:checked + .toggle-slider-round:before { transform: translateX(29px); }

/* Quick Category Pills */
.category-chips-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.cat-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-gray);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.cat-chip:hover, .cat-chip.active {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}

/* ==========================================================================
   6. 5-COLUMN PORTRAIT GAME CARDS GRID
   ========================================================================== */
.portrait-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.portrait-game-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 8px;
}
.portrait-game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: #ef4444;
}

.card-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 900;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.card-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.portrait-game-card:hover .card-poster-img { transform: scale(1.04); }

.card-steam-logo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--bg-badge);
  backdrop-filter: blur(4px);
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.card-discount-red-pill {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--accent-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(255, 51, 75, 0.6);
  text-transform: uppercase;
}

.card-details-box {
  padding: 10px 4px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-game-h3 {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 34px;
}
.card-game-h3:hover { color: #f87171; }
.card-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.price-strike-old {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-new-large {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
}

/* ==========================================================================
   7. PAGINATION CONTROLS (LARGE & PROMINENT)
   ========================================================================== */
.pagination-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px auto 60px auto;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: #100a12;
  border: 1.5px solid #2d141e;
  border-radius: 14px;
  max-width: max-content;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(239, 68, 68, 0.15);
}
.pg-num-btn, .pg-arrow-btn, .pg-button {
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: #1c0e18;
  border: 1.5px solid #3b1725;
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pg-num-btn:hover:not(:disabled), .pg-arrow-btn:hover:not(:disabled), .pg-button:hover:not(:disabled) {
  background: #ef4444;
  border-color: #ff4d5a;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5);
}
.pg-num-btn.active, .pg-button.active {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-color: #ff4d5a;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.7);
}
.pg-arrow-btn:disabled, .pg-num-btn:disabled, .pg-button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.pg-dots-span {
  font-size: 20px;
  font-weight: 900;
  color: #ef4444;
  padding: 0 8px;
  letter-spacing: 2px;
}

/* ==========================================================================
   REVIEWS & RATINGS SECTION
   ========================================================================== */
.reviews-section-wrapper {
  margin: 70px 0 30px 0;
  padding: 35px;
  background: linear-gradient(180deg, #120a12 0%, #0a060a 100%);
  border: 1.5px solid #2d141e;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(239, 68, 68, 0.15);
}
.reviews-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(239, 68, 68, 0.15);
  padding-bottom: 20px;
}
.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.review-card-item {
  background: #180e18;
  border: 1px solid #331522;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.25s ease;
}
.review-card-item:hover {
  transform: translateY(-4px);
  border-color: #ef4444;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(239, 68, 68, 0.25);
}

/* ==========================================================================
   8. GAME DETAIL MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-backdrop.active { opacity: 1; visibility: visible; }
.modal-box-card {
  background: #151b33;
  border: 1px solid #28355e;
  border-radius: 16px;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
}
.modal-close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-close-icon:hover {
  background: #ff334b;
  border-color: #ff334b;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(255, 51, 75, 0.7);
}

/* ==========================================================================
   9. CART DRAWER & TOAST NOTIFICATIONS
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-header);
  border-left: 1px solid var(--border-color);
  z-index: 5001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer-panel.active { right: 0; }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-topbar);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast-card {
  background: var(--bg-header);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-green);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-dropdown);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(120%);
  transition: transform 0.25s ease;
}
.toast-card.active { transform: translateX(0); }

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS (PERFECT MOBILE & TABLET UX)
   ========================================================================== */
@media (max-width: 1280px) {
  .portrait-games-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .portrait-games-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-tagline { display: none; }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px !important;
  }

  /* Top trust bar */
  .top-trust-bar {
    padding: 6px 0;
  }
  .trust-col-left, .trust-col-right {
    display: none;
  }
  .live-deal-ticker {
    width: 100%;
    justify-content: center;
    font-size: 10px;
  }

  /* Header mobile layout */
  .header-flex-wrapper {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 4px;
  }
  .brand-identity img {
    width: 38px;
    height: 38px;
  }
  .brand-wordmark {
    font-size: 20px !important;
  }
  .header-center-search {
    order: 3;
    width: 100%;
    max-width: 100%;
    display: block !important;
    margin-top: 6px;
  }
  .search-pill-container {
    padding: 8px 14px !important;
    background: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
  }
  .search-pill-field {
    font-size: 14px !important;
    color: #0f172a !important;
  }
  .search-autocomplete-box {
    position: fixed !important;
    top: 125px !important;
    left: 8px !important;
    right: 8px !important;
    min-width: unset !important;
    width: auto !important;
    max-height: 75vh !important;
    border-radius: 14px !important;
    z-index: 99999 !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.98), 0 0 40px rgba(239, 68, 68, 0.45) !important;
  }
  .search-thumb-large {
    width: 52px !important;
    min-width: 52px !important;
    height: 74px !important;
  }
  .search-title-bold {
    font-size: 14px !important;
    font-weight: 800 !important;
  }
  .search-price-val {
    font-size: 16px !important;
  }
  .header-right-menu {
    gap: 12px;
  }

  /* Secondary Category Nav (Horizontal Mobile Scroll Strip) */
  .secondary-nav-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0;
  }
  .sec-nav-inner {
    padding: 0 12px;
  }
  .nav-left-platforms {
    gap: 8px;
    padding-bottom: 2px;
  }
  .nav-plat-link {
    font-size: 11px !important;
    padding: 5px 12px !important;
    background: #180e18 !important;
    border: 1px solid #2d141e !important;
    border-radius: 20px !important;
  }
  .nav-right-promos {
    display: none !important;
  }
  .mega-menu-panel {
    display: none !important;
  }

  /* Hero banner on mobile */
  .hero-banner-section {
    padding: 12px 0 8px 0;
  }
  .hero-banner-box {
    padding: 16px 14px;
    min-height: auto;
  }
  .hero-main-h1 {
    font-size: 22px;
  }
  .hero-characters-art {
    display: none;
  }

  /* 273+ Mega Vault Spotlight on Mobile */
  .mega-bundle-spotlight {
    flex-direction: column;
    padding: 16px 14px;
    gap: 16px;
    text-align: center;
  }
  .bundle-h2-title {
    font-size: 18px;
  }
  .bundle-sub-desc {
    font-size: 12px;
  }
  .bundle-pricing-right {
    align-items: center;
    width: 100%;
  }
  .bundle-big-price {
    font-size: 30px;
  }
  .bundle-pricing-right > div {
    width: 100%;
    justify-content: center;
  }
  .bundle-btn-cta {
    width: 100%;
    justify-content: center;
  }

  /* Catalog Grid on Phone (2 Columns - Clean and readable) */
  .portrait-games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .card-poster-wrapper {
    aspect-ratio: 600 / 850;
  }
  .card-title-text {
    font-size: 12px;
  }
  .card-price-primary {
    font-size: 13px;
  }
  .card-price-secondary {
    font-size: 10px;
  }
  .btn-buy-card {
    padding: 6px 8px;
    font-size: 11px;
  }

  /* Controls & Pagination on Phone */
  .catalog-toolbar-row {
    padding: 10px 0;
    gap: 10px;
  }
  .pagination-row {
    gap: 4px;
  }
  .pg-num-btn, .pg-arrow-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 12px !important;
  }

  /* Modals & Drawers on Phone */
  .modal-box-card {
    max-width: 95% !important;
    width: 95% !important;
    padding: 16px !important;
  }
  .cart-drawer-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Floating WhatsApp icon compact */
  .floating-whatsapp-vip {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    gap: 8px;
  }
  .wa-text-col {
    display: flex !important;
  }
  .wa-label-top {
    font-size: 8px;
  }
  .wa-label-sub {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .portrait-games-grid { grid-template-columns: 1fr !important; }
}
/* ==========================================================================
   MEGA BUNDLE SPOTLIGHT SHOWCASE BANNER
   ========================================================================== */
.mega-bundle-spotlight {
  background: linear-gradient(135deg, #2d0f17 0%, #1e293b 40%, #0f172a 100%);
  border: 2px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin: 16px 0 24px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.25), inset 0 0 30px rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mega-bundle-spotlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.bundle-info-left {
  position: relative;
  z-index: 2;
  flex: 1;
}
.bundle-hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}
.bundle-h2-title {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.bundle-sub-desc {
  font-size: 13px;
  color: #cbd5e1;
  max-width: 650px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.bundle-games-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #94a3b8;
}
.bundle-preview-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  color: #f1f5f9;
  font-weight: 700;
}

.bundle-pricing-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 220px;
}
.bundle-strike-val {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.bundle-big-price {
  font-size: 36px;
  font-weight: 900;
  color: #10b981;
  line-height: 1;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}
.bundle-btn-cta {
  background: linear-gradient(90deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.5);
  transition: var(--transition);
}
.bundle-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.7);
}

@media (max-width: 768px) {
  .mega-bundle-spotlight { flex-direction: column; align-items: flex-start; padding: 20px; }
  .bundle-pricing-right { align-items: flex-start; width: 100%; }
}
/* ==========================================================================
   COMING SOON & LIVE STATUS BADGES IN NAVBAR
   ========================================================================== */
.soon-badge {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
}
.live-badge {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 2px;
  display: inline-flex;
  align-items: center;
}
.nav-plat-link.disabled-soon {
  opacity: 0.75;
  cursor: pointer;
}
.nav-plat-link.disabled-soon:hover {
  opacity: 1;
  color: #fbbf24;
}
/* ==========================================================================
   LOADED.COM PIXEL-PERFECT MEGA MENU DROPDOWN ANIMATION
   ========================================================================== */
.nav-item-dropdown {
  position: relative;
}
.nav-plat-link.has-dropdown {
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-item-dropdown:hover .nav-plat-link.has-dropdown,
.nav-item-dropdown.active .nav-plat-link.has-dropdown {
  background: #2d3768;
  color: #ffffff;
}

/* Mega Menu Dropdown Container - Exact Loaded.com Full Width */
.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #14192e;
  border: 1px solid #263156;
  border-top: 1px solid #1a223f;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  z-index: 2500;
  display: grid;
  grid-template-columns: 220px 1fr 340px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.22s ease;
  pointer-events: none;
}

/* Open on hover with seamless mouse tracking */
.nav-item-dropdown:hover .mega-menu-panel,
.nav-item-dropdown.active .mega-menu-panel,
.mega-menu-panel:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-plat-link.has-dropdown {
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  transition: all 0.2s ease;
}
.nav-item-dropdown:hover .nav-plat-link.has-dropdown,
.nav-item-dropdown.active .nav-plat-link.has-dropdown,
.nav-plat-link.active-pill {
  background: #39457a !important;
  color: #ffffff !important;
}

/* 1. Left Nav Column */
.mega-left-links {
  background: #120a0e;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--border-color);
}
.mega-link-item {
  font-size: 14px;
  font-weight: 700;
  color: #cbd5e1;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.mega-link-item:hover {
  color: #f87171;
  transform: translateX(4px);
}
.mega-link-viewall {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: underline;
  margin-top: auto;
  padding-top: 16px;
  transition: var(--transition);
}
.mega-link-viewall:hover {
  color: #f87171;
}

/* 2. Center Featured Column */
.mega-center-featured {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}
.mega-section-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 18px;
}
.mega-featured-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.mega-card-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.mega-card-item:hover {
  transform: translateY(-4px);
}
.mega-card-img-wrap {
  width: 100%;
  aspect-ratio: 600 / 900;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  background: #120a0e;
}
.mega-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mega-card-item:hover .mega-card-img {
  transform: scale(1.06);
}
.mega-card-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 3. Right Promo Artwork Column */
.mega-right-art {
  padding: 20px;
  display: flex;
  align-items: stretch;
}
.mega-art-banner {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=800&q=80') center center / cover no-repeat;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
}
.mega-art-btn {
  background: rgba(224, 231, 255, 0.9);
  color: #2d0f17;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  cursor: pointer;
}
.mega-art-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
  .mega-menu-panel {
    display: none !important;
  }
  .mega-right-art { display: none; }
}
/* ==========================================================================
   INTERACTIVE PAYMENT GATEWAY & CHECKOUT MODAL
   ========================================================================== */
.checkout-modal-panel {
  background: #13182e;
  border: 1px solid #28355e;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
}
.checkout-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.checkout-step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
}
.checkout-step-item.active {
  color: #f87171;
}
.checkout-step-item.completed {
  color: var(--accent-green);
}
.step-number-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-pill);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.checkout-step-item.active .step-number-circle {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}
.checkout-step-item.completed .step-number-circle {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #000;
}

/* Payment Method Cards */
.pay-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.pay-method-card {
  background: #1f0f15;
  border: 1.5px solid #28355e;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.pay-method-card:hover, .pay-method-card.active {
  background: #2d1017;
  border-color: #ef4444;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}
.pay-method-icon {
  font-size: 22px;
  color: #f87171;
}
.pay-method-label {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.pay-method-sub {
  font-size: 10px;
  color: var(--text-muted);
}

/* UPI QR Section */
.upi-qr-box {
  background: #120a0e;
  border: 1px solid #263156;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-image-frame {
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: inline-block;
}
.qr-image-frame img {
  width: 190px;
  height: 190px;
  display: block;
}
.upi-id-pill {
  background: #1f0f15;
  border: 1px solid #ef4444;
  color: #fca5a5;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.upi-id-pill:hover {
  background: #ef4444;
  color: #fff;
}

.utr-input-group {
  margin-top: 14px;
  text-align: left;
  width: 100%;
}
.utr-input-field {
  width: 100%;
  background: #1f0f15;
  border: 1.5px solid #ef4444;
  color: #fff;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}
.utr-input-field:focus {
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.4);
}

.whatsapp-notify-btn {
  background: #25d366;
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}
.whatsapp-notify-btn:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
/* ==========================================================================
   FORM INPUT STYLES (CRISP VISIBILITY FIX)
   ========================================================================== */
.form-input, .utr-input-field, input.form-input, textarea.form-input {
  width: 100% !important;
  background: #1f0f15 !important;
  border: 1.5px solid #2d3b66 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}
.form-input::placeholder, .utr-input-field::placeholder {
  color: #64748b !important;
  font-weight: 500 !important;
}
.form-input:focus, .utr-input-field:focus {
  border-color: #ef4444 !important;
  background: #2d1017 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.4) !important;
}

/* ==========================================================================
   AUTH MODAL & USER PROFILE STYLES
   ========================================================================== */
.btn-auth-header {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
  transition: var(--transition);
}
.btn-auth-header:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.5);
}

.user-profile-btn {
  background: #1f0f15;
  border: 1.5px solid #ef4444;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.user-avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

.google-auth-btn {
  background: #ffffff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
  margin-bottom: 16px;
}
.google-auth-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   LIVE AUTO-SWIPING GAMES MARQUEE REEL
   ========================================================================== */
.live-swipe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}
.live-pulsing-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: livePulse 1.5s infinite;
  display: inline-block;
}
@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.live-games-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.live-games-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: continuousReelSwipe 35s linear infinite;
}
.live-games-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes continuousReelSwipe {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
.live-mini-card {
  width: 140px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111827;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.live-mini-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #ef4444;
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5);
  z-index: 10;
}
.live-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.live-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px;
}
.live-card-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #dc2626;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
}
.live-card-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.live-card-price {
  font-size: 12px;
  font-weight: 900;
  color: #10b981;
}


/* ==========================================================================
   LIVE AUTO-SWIPING GAMES MARQUEE REEL (ENHANCED PREMIUM CARDS)
   ========================================================================== */
.live-swipe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}
.live-pulsing-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: livePulse 1.5s infinite;
  display: inline-block;
}
@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.live-games-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.live-games-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: continuousReelSwipe 35s linear infinite;
}
.live-games-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes continuousReelSwipe {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}
.live-mini-card {
  width: 160px;
  height: 245px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1.5px solid #232c4a;
  background: #11162a;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
.live-mini-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: #ef4444;
  box-shadow: 0 14px 35px rgba(239, 68, 68, 0.45);
  z-index: 10;
}
.live-mini-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}
.live-card-top-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.live-badge-discount {
  background: #ef4444;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
}
.live-badge-steam {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #f87171;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.live-card-bottom-bar {
  flex: 1;
  background: #10162a;
  border-top: 1px solid #1f2742;
  padding: 8px 10px 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.live-card-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}
.live-card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.live-card-old-price {
  font-size: 10px;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600;
}
.live-card-deal-price {
  font-size: 14px;
  font-weight: 900;
  color: #10b981;
  letter-spacing: 0.3px;
}


/* ==========================================================================
   LIVE AUTO-SWIPING GAMES MARQUEE REEL (CLEAN SHOWCASE - NO PRICES)
   ========================================================================== */
.live-swipe-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding: 0 4px;
}
.live-pulsing-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: livePulse 1.5s infinite;
  display: inline-block;
}
@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.live-games-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.live-games-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: continuousReelSwipe 35s linear infinite;
}
.live-games-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes continuousReelSwipe {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}
.live-mini-card {
  width: 155px;
  height: 235px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1.5px solid #232c4a;
  background: #11162a;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}
.live-mini-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: #ef4444;
  box-shadow: 0 14px 35px rgba(239, 68, 68, 0.45);
  z-index: 10;
}
.live-mini-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.live-card-top-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.live-badge-included {
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.live-badge-steam {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #f87171;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.live-card-bottom-bar {
  flex: 1;
  background: #10162a;
  border-top: 1px solid #1f2742;
  padding: 8px 10px 6px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.live-card-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.live-card-sub {
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   HOTFIXES & COOL CYBER GAMING ENHANCEMENTS
   ========================================================================== */

/* Top Trust Bar Live Deal Ticker */
.live-deal-ticker {
  background: #180e15;
  border: 1px solid #ef4444;
  color: #fca5a5;
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
  transition: all 0.25s ease;
  animation: pulseNeonGlow 2.5s infinite ease-in-out;
}
.live-deal-ticker:hover {
  background: #ef4444;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}

/* Floating VIP WhatsApp Support Widget (Vibrant WhatsApp Green Highlight) */
.floating-whatsapp-vip {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55), 0 0 25px rgba(37, 211, 102, 0.35) !important;
  border: 2px solid #25d366 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatWidget 3s ease-in-out infinite, waGlowPulse 2.5s infinite alternate;
}
.floating-whatsapp-vip:hover {
  transform: translateY(-5px) scale(1.06);
  background: linear-gradient(135deg, #28e06d 0%, #169c8c 100%) !important;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.75), 0 0 35px rgba(37, 211, 102, 0.5) !important;
}
.wa-icon-glow {
  font-size: 26px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}
.wa-pulsing-badge {
  position: absolute;
  top: 6px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: waPulse 1.8s infinite;
}
.wa-text-col {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.wa-label-top {
  font-size: 10px;
  font-weight: 900;
  color: #d1fae5;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.wa-label-sub {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Animations */
@keyframes pulseNeonGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.25);
    border-color: #ef4444;
  }
  50% {
    box-shadow: 0 0 22px rgba(239, 68, 68, 0.6);
    border-color: #ff4d5a;
  }
}

@keyframes floatWidget {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes waPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

/* Card Hover Lift & Cyber Overlay */
.portrait-game-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.portrait-game-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: #ef4444 !important;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(239, 68, 68, 0.4) !important;
}
.portrait-game-card:hover .card-poster-img {
  transform: scale(1.05);
}
.card-poster-img {
  transition: transform 0.4s ease;
}

/* Button Shimmer / Light-Sweep Animation */
.bundle-btn-cta, .btn-buy-card, .btn-add-to-cart {
  position: relative;
  overflow: hidden;
}
.bundle-btn-cta::after, .btn-buy-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  animation: btnShimmerSweep 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@keyframes btnShimmerSweep {
  0% { left: -60%; }
  30%, 100% { left: 140%; }
}

/* Animated Spotlight Banner Glow */
.mega-bundle-spotlight {
  animation: bundleBorderPulse 4s infinite ease-in-out;
}
@keyframes bundleBorderPulse {
  0%, 100% {
    border-color: #ef4444;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25), inset 0 0 20px rgba(239, 68, 68, 0.1);
  }
  50% {
    border-color: #f59e0b;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4), inset 0 0 30px rgba(245, 158, 11, 0.2);
  }
}

/* Modal Smooth Zoom-In */
@keyframes modalZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-box-card {
  animation: modalZoomIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   19. VIP PAYMENT ENHANCEMENTS & LIVE FOMO POPUPS
   ========================================================================== */
/* Live Social Proof Toast */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(18, 12, 18, 0.95);
  border: 1.5px solid #ef4444;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(239, 68, 68, 0.25);
  backdrop-filter: blur(12px);
  z-index: 9999;
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: auto;
}
.social-proof-toast.active {
  transform: translateY(0);
  opacity: 1;
}
.sp-avatar-pulse {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}
.sp-content {
  flex: 1;
}
.sp-title {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}
.sp-sub {
  font-size: 11px;
  color: #a1a1aa;
}
.sp-badge {
  color: #34d399;
  font-weight: 800;
  font-size: 10px;
}
.sp-close {
  color: #71717a;
  background: transparent;
  border: none;
  font-size: 12px;
  cursor: pointer;
  padding: 2px;
}
.sp-close:hover { color: #fff; }

/* Promo Coupon Box */
.coupon-box-row {
  display: flex;
  gap: 8px;
  background: #150e15;
  border: 1.5px solid #2d141e;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 14px;
}
.coupon-input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
}
.coupon-btn {
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.coupon-btn:hover {
  transform: scale(1.03);
}

/* 12-Digit Real-Time UTR Counter */
.utr-field-wrap {
  position: relative;
  margin-bottom: 16px;
}
.utr-counter-badge {
  position: absolute;
  right: 12px;
  top: 36px;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  background: #271018;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}
.utr-counter-badge.valid {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-color: #10b981;
}

/* VIP Gamer Pass Holographic Ticket */
.vip-pass-card {
  background: linear-gradient(135deg, #180d15 0%, #0d070c 100%);
  border: 2px solid #ef4444;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(239, 68, 68, 0.25);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}
.vip-pass-card::before {
  content: 'STEAM VERIFIED';
  position: absolute;
  right: -20px;
  bottom: 20px;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 4px;
  transform: rotate(-15deg);
  pointer-events: none;
}
.vip-pass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px dashed rgba(239, 68, 68, 0.3);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.vip-barcode {
  font-family: monospace;
  font-size: 18px;
  letter-spacing: 5px;
  color: #71717a;
  text-align: center;
  margin: 10px 0;
  user-select: none;
}

/* ==========================================================================
   20. GAMER SOUND FX, LUCKY SPIN WHEEL & MOBILE BOTTOM VIP NAV
   ========================================================================== */
/* Audio FX Toggle */
.fx-audio-toggle {
  position: relative;
  transition: all 0.2s ease;
}
.fx-audio-toggle.active {
  color: #10b981 !important;
  border-color: #10b981 !important;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Mobile Bottom VIP Navigation Bar */
.mobile-bottom-nav-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: rgba(15, 8, 13, 0.96);
  border-top: 1.5px solid #2d141e;
  backdrop-filter: blur(16px);
  z-index: 9995;
  justify-content: space-around;
  align-items: center;
  padding: 0 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
}
.mb-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #a1a1aa;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex: 1;
  text-align: center;
}
.mb-nav-item i {
  font-size: 16px;
}
.mb-nav-item:hover, .mb-nav-item.active {
  color: #ef4444;
}
.mb-nav-item.highlight-bundle {
  color: #f59e0b;
}
.mb-nav-item.highlight-bundle i {
  animation: bundleFirePulse 2s infinite ease;
}
@keyframes bundleFirePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px #f59e0b); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 8px #ef4444); }
}

@media (max-width: 768px) {
  .mobile-bottom-nav-bar {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .floating-whatsapp-vip {
    bottom: 74px !important;
    right: 14px !important;
  }
  .social-proof-toast {
    bottom: 130px !important;
    left: 14px !important;
    max-width: 90% !important;
  }
}

/* ==========================================================================
   21. HIGH-SECURITY CYBERPUNK PAYMENT TERMINAL & QR SCANNER
   ========================================================================== */
.pay-tab-btn {
  background: transparent;
  color: #a1a1aa;
  transition: all 0.2s ease;
}
.pay-tab-btn.active {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.payment-terminal-box.active-glow {
  border-color: #ef4444;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.25);
}

/* QR Laser Scanline Animation */
.qr-scan-wrapper {
  position: relative;
  display: inline-block;
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.35);
  overflow: hidden;
  margin: 6px auto 10px auto;
}
.qr-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ef4444, #f59e0b, transparent);
  box-shadow: 0 0 10px #ef4444, 0 0 18px #f59e0b;
  animation: qrScanSweep 2.8s infinite ease-in-out;
  pointer-events: none;
}
@keyframes qrScanSweep {
  0% { top: 0%; opacity: 0.8; }
  50% { top: 96%; opacity: 1; }
  100% { top: 0%; opacity: 0.8; }
}

/* Luxury 1-Click UPI Launchers */
.upi-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0 10px 0;
}
.upi-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  color: #ffffff !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.upi-app-btn span, .upi-app-btn i {
  color: #ffffff !important;
}
.upi-app-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}
.upi-btn-phonepe {
  background: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%) !important;
  border: 1.5px solid #d8b4fe !important;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.45) !important;
}
.upi-btn-gpay {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
  border: 1.5px solid #93c5fd !important;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.45) !important;
}
.upi-btn-paytm {
  background: linear-gradient(135deg, #0369a1 0%, #06b6d4 100%) !important;
  border: 1.5px solid #67e8f9 !important;
  box-shadow: 0 4px 18px rgba(6, 182, 212, 0.45) !important;
}
.upi-btn-bhim {
  background: linear-gradient(135deg, #047857 0%, #10b981 100%) !important;
  border: 1.5px solid #6ee7b7 !important;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.45) !important;
}


/* Security Terminal Input Groups */
.sec-input-wrap {
  position: relative;
  margin-bottom: 12px;
}
.sec-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-size: 13px;
  pointer-events: none;
}
.sec-input-field {
  width: 100%;
  background: #140b12 !important;
  border: 1.5px solid #2d141e !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px 10px 36px !important;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
}
.sec-input-field:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.3) !important;
}

/* High-Impact CTA Button */
.btn-confirm-payment {
  width: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.45) !important;
  position: relative !important;
  overflow: hidden !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: transform 0.15s ease !important;
}
.btn-confirm-payment span, .btn-confirm-payment i {
  color: #ffffff !important;
}
/* ==========================================================================
   22. MOBILE-FIRST VIP RESPONSIVE DESIGN SUITE
   ========================================================================== */
@media (max-width: 640px) {
  /* Catalog Grid: Perfect 2-Column on Mobile Phones */
  .portrait-games-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }
  .portrait-game-card {
    border-radius: 8px !important;
  }
  .card-body-content {
    padding: 8px !important;
  }
  .card-title-text {
    font-size: 12px !important;
    line-height: 1.3 !important;
    height: 32px !important;
  }
  .card-price-row {
    margin-top: 4px !important;
  }
  .card-price-val {
    font-size: 13px !important;
  }
  .btn-buy-card {
    padding: 6px 8px !important;
    font-size: 11px !important;
  }

  /* Payment Modal on Mobile */
  .modal-box-card {
    max-width: 96% !important;
    width: 96% !important;
    padding: 16px 12px !important;
    margin: 10px auto !important;
    border-radius: 12px !important;
  }

  /* 1-Tap UPI Apps: 2x2 Large Thumb-Friendly Grid */
  .upi-app-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .upi-app-btn {
    padding: 12px 10px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }
  .upi-app-btn i {
    font-size: 18px !important;
  }

  /* Payment Form Inputs on Mobile */
  .sec-input-field {
    font-size: 14px !important;
    padding: 11px 12px 11px 36px !important;
    border-radius: 6px !important;
  }
  .btn-confirm-payment {
    padding: 14px 16px !important;
    font-size: 13px !important;
  }

  /* Mega Banner Mobile Tuning */
  .mega-bundle-spotlight {
    padding: 16px 12px !important;
    flex-direction: column !important;
    text-align: center !important;
  }
  .spotlight-left-col {
    margin-bottom: 12px !important;
  }
  .spotlight-title-huge {
    font-size: 22px !important;
  }

  /* Cart Drawer Fullscreen on Mobile */
  .cart-drawer-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Category Chips Scrollbar */
  .category-chips-scroll {
    padding: 8px 0 !important;
    gap: 6px !important;
  }
  .cat-chip {
    padding: 6px 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  /* Quick Acronyms */
  .quick-acronyms-strip {
    padding: 6px 0 !important;
  }

  /* Reviews Grid Mobile */
  .reviews-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* Google Translate Silent Mode */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon, 
.goog-te-gadget-simple, 
.goog-te-menu-value,
.goog-te-menu-frame {
  display: none !important;
}
body {
  top: 0px !important;
  position: static !important;
}
#google_translate_element {
  display: none !important;
}
.goog-tooltip, 
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
font {
  background: transparent !important;
  box-shadow: none !important;
}





