/* ==========================================================================
   UNKNOWNCHEATS - PREMIUM CYBERPUNK STOREFRONT STYLESHEET
   1:1 Match with Reference Screenshot
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-main: #08090e;
  --bg-card: #0e101a;
  --bg-card-hover: #131624;
  --bg-glass: rgba(14, 16, 26, 0.85);
  --bg-pill: #151828;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: #1f2438;
  --border-glow: rgba(139, 92, 246, 0.4);

  /* Neon Accents */
  --purple-primary: #8b5cf6;
  --purple-glow: #7c3aed;
  --purple-deep: #6d28d9;
  --purple-gradient: linear-gradient(135deg, #a855f7, #6366f1);
  --purple-pill-bg: rgba(139, 92, 246, 0.12);
  --purple-pill-border: rgba(139, 92, 246, 0.35);

  --cyan-primary: #06b6d4;
  --cyan-glow: #00f0ff;
  --cyan-gradient: linear-gradient(135deg, #00f0ff, #0284c7);

  --green-online: #10b981;
  --green-glow: rgba(16, 185, 129, 0.3);

  --text-main: #ffffff;
  --text-secondary: #94a3b8;
  --text-dim: #64748b;
  --text-accent: #c084fc;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-neon: 0 0 25px rgba(139, 92, 246, 0.35);
  --shadow-cyan-neon: 0 0 25px rgba(6, 182, 212, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-heading);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ==========================================================================
   ANIMATED CYBER VIDEO-LIKE BACKGROUND ENGINE
   ========================================================================== */
.store-animated-bg-wrapper {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #06070b;
}

.store-cyber-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Floating Neon Aurora Orbs */
.store-aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 16s ease-in-out infinite alternate;
}

.orb-purple {
  top: -10%;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 70%);
}

.orb-cyan {
  bottom: 5%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
  animation-delay: -7s;
}

.orb-magenta {
  top: 45%;
  left: 60%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.25) 0%, transparent 70%);
  animation-delay: -11s;
}

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -40px) scale(1.15); }
  100% { transform: translate(-40px, 30px) scale(0.95); }
}

/* 3D Infinite Forward Moving Perspective Cyber Grid */
.store-moving-cyber-grid {
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 48vh;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.16) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(350px) rotateX(60deg);
  transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 15%, transparent 90%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85) 15%, transparent 90%);
  animation: gridFly 14s linear infinite;
  opacity: 0.85;
  z-index: 1;
}

@keyframes gridFly {
  0% { background-position: 0 0; }
  100% { background-position: 0 500px; }
}

/* Vignette & scanline overlay */
.store-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(6, 7, 11, 0.8) 100%),
              linear-gradient(rgba(18, 16, 38, 0) 50%, rgba(0, 0, 0, 0.2) 50%);
  background-size: 100% 100%, 100% 4px;
  pointer-events: none;
  z-index: 2;
}

/* Main Site Elements Layering */
.hero-showcase-section,
.store-main,
.category-filter-bar,
.site-footer,
.modal-overlay {
  position: relative;
  z-index: 2;
}

/* Custom Cyber Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #252a3f;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--purple-primary);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==========================================================================
   TOP TICKER / ANNOUNCEMENT
   ========================================================================== */
.top-ticker {
  background: rgba(10, 12, 20, 0.95);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  padding: 6px 0;
  overflow: hidden;
  font-size: 0.8rem;
  color: #cbd5e1;
  position: relative;
  z-index: 100;
}
.ticker-wrap {
  display: flex;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  animation: ticker-slide 35s linear infinite;
  padding-left: 100%;
}
@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(8, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 0;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.brand-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

/* Center Nav Pills */
.nav-pills-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0e111c;
  padding: 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}
.nav-pill-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.nav-pill-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-pill-item.active {
  background: var(--purple-pill-bg);
  color: #ffffff;
  border-color: var(--purple-pill-border);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Currency Toggle */
.currency-toggle {
  display: flex;
  align-items: center;
  background: #111422;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px;
}
.curr-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}
.curr-btn.active {
  background: var(--purple-primary);
  color: #ffffff;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
}

/* Buttons */
.btn-nav-purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  transition: all 0.25s ease;
}
.btn-nav-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.7);
}

.btn-nav-login {
  background: rgba(139, 92, 246, 0.12);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.35);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.btn-nav-login:hover {
  background: rgba(139, 92, 246, 0.25);
  color: #ffffff;
  border-color: #c084fc;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.btn-nav-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-nav-outline:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

/* Owner Admin Portal Button Next to Support */
.btn-nav-admin {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.18), rgba(185, 28, 28, 0.28));
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.45);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.25);
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
}
.btn-nav-admin:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.35), rgba(220, 38, 38, 0.5));
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 0 22px rgba(239, 68, 68, 0.6);
  transform: translateY(-2px);
}

/* Discreet Staff Portal in Header Corner */
.btn-staff-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #71717a;
  font-size: 0.75rem;
  text-decoration: none;
  opacity: 0.3;
  transition: all 0.25s ease;
  margin-left: 2px;
}
.btn-staff-portal:hover {
  opacity: 0.9;
  color: var(--cyan-primary);
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  transform: scale(1.08);
}

/* ==========================================================================
   FEATURED HERO SHOWCASE CAROUSEL (Matching Reference 2nd Picture 1:1)
   ========================================================================== */
.hero-showcase-section {
  padding: 1.5rem 0 2.2rem;
}

.hero-banner-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(139, 92, 246, 0.25);
  display: flex;
  align-items: flex-end;
  background-color: #07090e;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero-banner-frame:hover {
  border-color: rgba(139, 92, 246, 0.75);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.95), 0 0 35px rgba(139, 92, 246, 0.4);
}

/* Full-bleed background wrapper with smooth sliding track */
.hero-slides-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide-item {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  user-select: none;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  opacity: 1;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide-item.active .hero-slide-bg {
  transform: scale(1);
}

/* Vignette Gradient Overlay matching 2nd picture */
.hero-slide-vignette {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(8, 9, 14, 0.92) 0%, rgba(8, 9, 14, 0.55) 35%, rgba(8, 9, 14, 0.15) 65%, rgba(8, 9, 14, 0.6) 100%),
    linear-gradient(0deg, rgba(8, 9, 14, 0.85) 0%, transparent 45%),
    linear-gradient(180deg, rgba(8, 9, 14, 0.6) 0%, transparent 35%);
  pointer-events: none;
  z-index: 2;
}

/* Left Compact Floating Card (Matching 2nd Reference Screenshot) */
.hero-compact-card {
  position: relative;
  z-index: 10;
  margin-left: 2rem;
  margin-bottom: 2rem;
  width: 290px;
  background: rgba(10, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.hero-slide-item.active .hero-compact-card {
  transform: translateY(0);
  opacity: 1;
}

.hero-slide-item:not(.active) .hero-compact-card {
  transform: translateY(6px);
  opacity: 0.85;
}

.hero-compact-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.25);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.5);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.hero-compact-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.hero-compact-subtitle {
  font-size: 0.68rem;
  color: #94a3b8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.hero-compact-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-compact-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.hero-price-prefix {
  font-size: 0.82rem;
  color: #10b981;
  font-weight: 700;
}

.hero-price-val {
  font-size: 1.18rem;
  font-weight: 900;
  color: #10b981;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
  letter-spacing: 0.5px;
}

.btn-hero-buy-compact {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.45);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-hero-buy-compact:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
  background: linear-gradient(135deg, #c084fc, #7c3aed);
}

/* Minimalist Circular Navigation Arrows (< and >) */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 9, 14, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 15;
  transition: all 0.25s ease;
  line-height: 1;
}

.hero-nav-arrow:hover {
  background: rgba(139, 92, 246, 0.8);
  border-color: #a855f7;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-left { left: 1.2rem; }
.hero-arrow-right { right: 1.2rem; }

/* Long Sleek Indicator Dots Track matching 2nd Reference Screenshot */
.hero-indicators-track {
  position: absolute;
  bottom: 1.4rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 35;
  padding: 6px 12px;
  background: rgba(10, 12, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 15px rgba(168, 85, 247, 0.2);
  pointer-events: auto;
}

.indicator-dot-item {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.indicator-dot-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.15);
}

.indicator-dot-item.active {
  width: 28px;
  height: 7px;
  border-radius: 4px;
  background: linear-gradient(90deg, #c084fc, #a855f7);
  box-shadow: 0 0 10px #a855f7, 0 0 22px rgba(168, 85, 247, 0.85);
}

/* ==========================================================================
   OUR PRODUCTS TITLE & FILTER BAR
   ========================================================================== */
.products-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.our-products-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.our-products-title .gradient-text {
  background: linear-gradient(135deg, #c084fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(192, 132, 252, 0.4));
}

.products-subtitle {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 1.8rem;
}

/* Category Filter Pills (Matching Reference Screenshot) */
.filter-pills-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(14, 17, 28, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 10px;
  max-width: fit-content;
  margin: 0 auto;
}

.filter-pill-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.filter-pill-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.filter-pill-btn.active {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.45);
}

/* ==========================================================================
   CATEGORY GROUP SECTION HEADERS (Matching Reference Screenshot)
   ========================================================================== */
.category-group-block {
  margin-bottom: 3.5rem;
}

.category-group-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.category-badge-btn {
  background: rgba(139, 92, 246, 0.12);
  border: 1.5px solid rgba(139, 92, 246, 0.45);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
  transition: all 0.25s ease;
  text-transform: uppercase;
}
.category-badge-btn:hover {
  border-color: var(--purple-primary);
  background: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.4);
}
.category-badge-btn .chevron-icon {
  font-size: 0.75rem;
  color: var(--purple-primary);
}

/* ==========================================================================
   PRODUCT GRID & CARDS (4-Column Grid Exactly Like Reference Screenshot)
   ========================================================================== */
.product-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Single Product Card */
.product-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(139, 92, 246, 0.2);
}
.product-card:hover::before {
  opacity: 1;
}

/* Card Top Bar (Category Pill + Undetected Status) */
.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.card-category-pill {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-status-pill {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--green-online);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}
.pulse-green-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--green-online);
  box-shadow: 0 0 8px var(--green-online);
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

/* Product Thumbnail Preview */
.card-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #090b14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  margin-bottom: 0.9rem;
}
.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-thumb-img {
  transform: scale(1.05);
}

/* Card Body Content */
.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.2px;
}

/* Feature Chips / Badges */
.card-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 1rem;
  min-height: 48px;
}
.feature-chip {
  font-size: 0.65rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Card Bottom Info (Updated Tag + Price) */
.card-bottom-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 0.85rem;
}
.card-updated-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-online);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.card-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.card-price-prefix {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.card-price-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cyan-primary);
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

/* Card Dual Actions (DETAILS + BUY NOW side by side) */
.card-actions-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
}
.btn-card-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 0;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.btn-card-details:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-card-buy {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border: none;
  color: #ffffff;
  padding: 8px 0;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.btn-card-buy:hover {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.7);
  transform: translateY(-1px);
}

/* ==========================================================================
   MODAL WINDOWS (Details, Checkout, Receipt, Tracking)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-card {
  background: #0d0f1b;
  border: 1.5px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(139, 92, 246, 0.25);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

/* Modal Headers */
.modal-header {
  margin-bottom: 1.5rem;
}
.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-desc {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Package Duration Selector in Details Modal */
.duration-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
  margin: 1.2rem 0;
}
.duration-card {
  background: #121526;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.duration-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: #171b30;
}
.duration-card.selected {
  border-color: var(--purple-primary);
  background: var(--purple-pill-bg);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.35);
}
.duration-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
}
.duration-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 3px;
}
.duration-card.selected .duration-title {
  color: var(--text-accent);
}
.duration-card.selected .duration-price {
  color: var(--cyan-primary);
}

/* Specs checklist */
.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 1rem 0;
  font-size: 0.82rem;
  color: #cbd5e1;
}
.specs-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.specs-list li span.check-icon {
  color: var(--green-online);
}

/* Payment Method Cards in Checkout */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 1rem 0;
}
.payment-card {
  background: #111424;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}
.payment-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.payment-card.selected {
  border-color: var(--purple-primary);
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}
.payment-card-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
}
.payment-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan-primary);
  margin-top: 2px;
}

/* Payment Number Display Box */
.payment-info-box {
  background: #14172a;
  border: 1px dashed rgba(139, 92, 246, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-number-text {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan-primary);
  letter-spacing: 1px;
}
.btn-copy-sm {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-copy-sm:hover {
  background: var(--purple-primary);
}

/* Form Controls */
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  background: #121526;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #ffffff;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}
.form-input:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}
.form-help {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Receipt Discord Claim Modal Styling */
.receipt-discord-modal {
  background: radial-gradient(circle at 50% 0%, rgba(88, 101, 242, 0.18), transparent 70%), #0c0f1c;
  border: 1.5px solid rgba(88, 101, 242, 0.45);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(88, 101, 242, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  max-width: 480px;
}

.receipt-success-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #10b981;
  margin: 0 auto 1.1rem;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.4);
}

.receipt-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.receipt-subtitle {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}

.receipt-order-id-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(88, 101, 242, 0.4);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.4rem;
}

.order-id-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.order-id-val {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--cyan-primary);
  letter-spacing: 1px;
}

.btn-copy-order-id {
  background: rgba(88, 101, 242, 0.2);
  border: 1px solid rgba(88, 101, 242, 0.5);
  color: #c7d2fe;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-copy-order-id:hover {
  background: rgba(88, 101, 242, 0.45);
  color: #ffffff;
}

.receipt-discord-cta-card {
  background: linear-gradient(145deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.05));
  border: 1.5px solid rgba(88, 101, 242, 0.5);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(88, 101, 242, 0.25);
  margin-bottom: 1rem;
}

.discord-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.7rem;
}

.discord-cta-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.4px;
}

.discord-cta-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin-bottom: 1.1rem;
}

.btn-receipt-discord-giant {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #5865F2, #4752c4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  padding: 13px 20px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.6), 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-receipt-discord-giant:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.9), 0 6px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #6c78ff, #5865F2);
}

.receipt-note-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: left;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  background: #06070b;
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.footer-social-btn:hover {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
}
.toast {
  background: #111424;
  border: 1px solid var(--purple-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(139, 92, 246, 0.4);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  animation: toast-slide 0.3s ease;
}
@keyframes toast-slide {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .product-grid-4col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .product-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-banner-frame {
    height: 320px;
  }
  .hero-compact-card {
    margin-left: 1rem;
    margin-bottom: 1rem;
    width: calc(100% - 2rem);
    max-width: 280px;
    padding: 0.9rem 1rem;
  }
  .hero-compact-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .hero-banner-frame {
    height: 300px;
  }
  .hero-compact-card {
    margin-left: 0.8rem;
    margin-bottom: 0.8rem;
    width: calc(100% - 1.6rem);
    max-width: 255px;
    padding: 0.75rem 0.9rem;
  }
  .hero-compact-title {
    font-size: 1.05rem;
  }
  .hero-compact-subtitle {
    font-size: 0.62rem;
    margin-bottom: 0.6rem;
  }
  .hero-nav-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .hero-arrow-left { left: 0.5rem; }
  .hero-arrow-right { right: 0.5rem; }
  .hero-indicators-track {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 3px 6px;
    gap: 4px;
  }
  .product-grid-4col {
    grid-template-columns: 1fr;
  }
  .nav-pills-bar {
    display: none;
  }
  .our-products-title {
    font-size: 1.8rem;
  }
  .filter-pills-wrap {
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
  }
}

/* ==========================================================================
   AUTHENTICATED USER CHIP & LOGOUT BUTTON
   ========================================================================== */
.user-header-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 16, 26, 0.7);
  padding: 4px 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.user-chip-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.user-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-online);
  box-shadow: 0 0 8px var(--green-online);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.btn-nav-logout {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-nav-logout:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
  transform: translateY(-1px);
}

/* ==========================================================================
   CHECKOUT USER & PASSWORD VERIFICATION GUARD
   ========================================================================== */
.checkout-auth-guard-box {
  margin-top: 14px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}

.checkout-auth-guard-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #8b5cf6, #06b6d4);
}

.auth-guard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.auth-guard-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #00f0ff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.auth-guard-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.auth-guard-desc {
  font-size: 0.74rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 6px;
}

.verify-status-alert {
  border-radius: 6px;
  font-size: 0.76rem;
  padding: 7px 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.verify-status-alert.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
  display: block !important;
  animation: shakeAlert 0.4s ease;
}

.verify-status-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #6ee7b7;
  display: block !important;
}

@keyframes shakeAlert {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

.password-toggle-sm:hover {
  color: #ffffff !important;
}

/* ==========================================================================
   3-SCREEN CHECKOUT WORKFLOW STYLES (1:1 Reference Match)
   ========================================================================== */

/* SCREEN 1: DARK THEME (CHECKOUT • INSTANT DELIVERY) */
.checkout-screen-card {
  width: 100%;
  border-radius: 20px;
  position: relative;
  transition: all 0.25s ease;
  animation: fadeInModalScreen 0.25s ease-out forwards;
}

@keyframes fadeInModalScreen {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.screen-dark {
  max-width: 780px !important;
  background: #0a0d14 !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85) !important;
  padding: 1.4rem 1.6rem !important;
}

.screen1-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-tag-pill {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pulse-cyan-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 10px #a855f7, 0 0 20px rgba(168, 85, 247, 0.6);
  animation: pulseDotGlow 1.8s infinite;
}

@keyframes pulseDotGlow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.25); opacity: 1; }
}

.screen1-title-text {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #ffffff;
}

.screen-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.screen-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
  transform: rotate(90deg);
}

.screen1-grid-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .screen1-grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Left Column */
.screen1-left-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
}

.screen1-prod-img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: #000000;
}

.screen1-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #7c3aed;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.5px;
}

.screen1-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.screen1-prod-img-box:hover .screen1-prod-img {
  transform: scale(1.04);
}

.screen1-prod-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  margin: 12px 0 6px;
  letter-spacing: -0.2px;
}

.screen1-antiban-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #10b981;
}

.screen1-antiban-badge .check-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.screen1-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0;
}

.screen1-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.74rem;
  color: #94a3b8;
}

.screen1-features-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.screen1-features-list .feat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a855f7;
  display: inline-block;
}

/* Right Column */
.screen1-right-col {
  display: flex;
  flex-direction: column;
}

.screen1-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.screen1-section-header .sec-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: 0.5px;
}

.screen1-section-header .sec-selected-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c084fc;
  letter-spacing: 0.5px;
}

.duration-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.duration-pill-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.duration-pill-card:hover {
  border-color: rgba(56, 189, 248, 0.6);
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.duration-pill-card.selected {
  border-color: #38bdf8;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(139, 92, 246, 0.2) 100%);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.duration-pill-card .dur-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.duration-pill-card .dur-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.duration-pill-card .dur-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: #38bdf8;
  color: #0f172a;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.duration-pill-card .dur-price-box {
  margin: 5px 0 4px;
}

.duration-pill-card .dur-price-bdt {
  font-size: 1.15rem;
  font-weight: 900;
  color: #38bdf8;
  font-family: var(--font-mono, monospace);
  line-height: 1.2;
}

.duration-pill-card .dur-price-usd {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fbbf24;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.2px;
}

.duration-pill-card .dur-api-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

.duration-pill-card.selected .dur-api-tag {
  color: #a78bfa;
}

.qty-selector-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 9px 14px;
}

.qty-selector-card .qty-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 600;
}

.qty-stepper-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-qty-step {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.btn-qty-step:hover {
  background: #8b5cf6;
  border-color: #8b5cf6;
}

.qty-display-val {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  min-width: 20px;
  text-align: center;
  font-family: var(--font-mono);
}

.total-summary-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 11px 14px;
  margin: 12px 0 14px;
}

.total-summary-card .summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-summary-card .balance-line {
  font-size: 0.76rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.total-summary-card .balance-val {
  color: #e2e8f0;
  font-weight: 600;
}

.total-summary-card .total-line {
  font-size: 0.82rem;
  font-weight: 800;
  color: #cbd5e1;
}

.total-summary-card .total-amount-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: #c084fc;
  font-family: var(--font-mono);
  letter-spacing: -0.5px;
}

.screen1-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-pay-place-order {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.45);
  transition: all 0.2s ease;
}

.btn-pay-place-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.65);
}

.btn-topup-wallet {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border-radius: 12px;
  padding: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-topup-wallet:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}


/* ==========================================================================
   SCREENS 2 & 3: LIGHT UDDOKTAPAY GATEWAY THEME (1:1 Reference Match)
   ========================================================================== */
.screen-light-gateway {
  max-width: 480px !important;
  background: #f8fafc !important;
  border-radius: 20px !important;
  color: #0f172a !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7) !important;
  padding: 18px 22px !important;
  border: 1px solid #e2e8f0 !important;
}

.gateway-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.gateway-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.gateway-nav-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: translateY(-1px);
}

/* Merchant Profile (Screen 2) */
.merchant-profile-box {
  text-align: center;
  margin-bottom: 16px;
}

.merchant-avatar-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 8px;
  border: 2px solid #0284c7;
  padding: 2px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.merchant-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.merchant-brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 5px;
  letter-spacing: -0.2px;
}

.btn-view-details-pill {
  background: #e0f2fe;
  color: #0284c7;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.15s;
}

.btn-view-details-pill:hover {
  background: #bae6fd;
}

.merchant-contact-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-support-circle {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-support-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  border-color: #38bdf8;
}

/* Gateway Tabs */
.gateway-tabs-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.gateway-tab-btn {
  padding: 10px 0;
  border-radius: 8px;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gateway-tab-btn.active {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

/* Provider Selection Cards */
.gateway-providers-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.provider-select-card {
  flex: 1 1 115px;
  max-width: 140px;
  height: 68px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 4px;
}

#gatewayInternationalGrid .provider-select-card {
  max-width: 220px;
}

.provider-select-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
}

.provider-select-card.selected {
  border-color: #0284c7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
  background: #f0fdf4;
}

.btn-gateway-pay {
  width: 100%;
  background: #e0f2fe;
  color: #0369a1;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.15);
}

.btn-gateway-pay:hover {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}


/* ==================== SCREEN 3: PROVIDER PAYMENT DETAILS ==================== */
.provider-summary-banner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.banner-amount-box {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  font-family: var(--font-mono);
}

.advice-notice-bar {
  background: #fef9c3;
  color: #854d0e;
  font-size: 0.74rem;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 12px;
  border: 1px solid #fef08a;
  font-weight: 500;
}

.advice-notice-bar .note-bold {
  font-weight: 800;
  color: #713f12;
}

/* Provider Box Themes */
.provider-payment-box {
  border-radius: 14px;
  padding: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  transition: background 0.3s ease;
}

.provider-payment-box.bkash-theme {
  background: #D12053;
  box-shadow: 0 4px 15px rgba(209, 32, 83, 0.25);
}

.provider-payment-box.nagad-theme {
  background: #E65100;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.25);
}

.provider-payment-box.rocket-theme {
  background: #8C3494;
  box-shadow: 0 4px 15px rgba(140, 52, 148, 0.25);
}

.provider-payment-box.binance-theme {
  background: #181A20;
  border: 1px solid rgba(240, 185, 11, 0.45);
  box-shadow: 0 4px 18px rgba(240, 185, 11, 0.25);
}

.box-heading-text {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.trx-input-wrap {
  margin-bottom: 12px;
}

.trx-white-input {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-mono);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.trx-white-input:focus {
  outline: 2px solid #ffffff;
}

.instructions-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.instructions-header-row .inst-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  opacity: 0.92;
}

.btn-ai-autopay {
  background: #ffffff;
  color: #D12053;
  border: none;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-ai-autopay:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.btn-ai-autopay:active {
  transform: scale(0.96);
}

.inst-checklist {
  font-size: 0.88rem;
  line-height: 1.6;
}

.inst-item {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inst-item:last-child {
  border-bottom: none;
}

.inst-item.phone-row {
  justify-content: space-between;
}

.btn-copy-inline {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s;
}

.btn-copy-inline:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Password Auth Box */
.screen3-pass-auth-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.screen3-pass-auth-box .auth-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  display: block;
  margin-bottom: 4px;
}

.screen3-pass-auth-box .auth-input-rel {
  position: relative;
}

.screen3-pass-auth-box .auth-pass-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 8px 36px 8px 10px;
  font-size: 0.82rem;
  color: #0f172a;
}

.screen3-pass-auth-box .auth-pass-input:focus {
  outline: 2px solid #0284c7;
  background: #ffffff;
}

.screen3-pass-auth-box .auth-eye-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: #64748b;
}

.screen3-alert-msg {
  margin-top: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 4px;
}

.screen3-alert-msg.error {
  background: #fee2e2;
  color: #b91c1c;
  display: block !important;
}

.screen3-alert-msg.success {
  background: #dcfce7;
  color: #15803d;
  display: block !important;
}

.btn-verify-transaction {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #ffffff;
}

.btn-verify-transaction.bkash-btn {
  background: #D12053;
  box-shadow: 0 4px 15px rgba(209, 32, 83, 0.35);
}

.btn-verify-transaction.bkash-btn:hover {
  background: #b51543;
  transform: translateY(-1px);
}

.btn-verify-transaction.nagad-btn {
  background: #E65100;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.35);
}

.btn-verify-transaction.nagad-btn:hover {
  background: #cc4400;
  transform: translateY(-1px);
}

.btn-verify-transaction.rocket-btn {
  background: #8C3494;
  box-shadow: 0 4px 15px rgba(140, 52, 148, 0.35);
}

.btn-verify-transaction.rocket-btn:hover {
  background: #73237b;
  transform: translateY(-1px);
}

.btn-verify-transaction.binance-btn {
  background: #F0B90B;
  color: #181A20;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.35);
}

.btn-verify-transaction.binance-btn:hover {
  background: #d8a407;
  transform: translateY(-1px);
}

/* ==========================================================================
   FEATURE 1: CYBER KERNEL PRELOADER (1:1 Matching Image 1)
   ========================================================================== */
.preloader-portal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #060813;
  background-image: 
    radial-gradient(circle at 50% 35%, rgba(139, 92, 246, 0.18) 0%, transparent 65%),
    radial-gradient(circle at 50% 70%, rgba(0, 240, 255, 0.08) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-portal.fade-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.preloader-center-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

/* Radar Orbital Rings */
.preloader-radar-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-glow-disc {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(0, 240, 255, 0.1) 50%, transparent 70%);
  filter: blur(8px);
  animation: radarPulse 2.4s ease-in-out infinite alternate;
}

.orbit-track-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.45);
  animation: orbitRotate 3.6s linear infinite;
}

.orbit-particle {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 14px #00f0ff, 0 0 24px #00f0ff;
}

.orbit-track-ring-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.25);
  animation: orbitRotateRev 5s linear infinite;
}

.orbit-particle-reverse {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitRotateRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes radarPulse {
  from { opacity: 0.6; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1.08); }
}

.preloader-logo-squircle {
  width: 78px;
  height: 78px;
  background: #0b0e1e;
  border-radius: 20px;
  border: 1.5px solid rgba(168, 85, 247, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 18px rgba(139, 92, 246, 0.35);
  overflow: hidden;
  z-index: 2;
}

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

/* Kernel Pill Badge */
.preloader-kernel-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #94a3b8;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.12);
}

.live-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 1.4s infinite;
}

/* Titles */
.preloader-title {
  font-family: 'Orbitron', var(--font-display, sans-serif);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 0 0 25px rgba(168, 85, 247, 0.65), 0 0 50px rgba(0, 240, 255, 0.35);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-decor {
  color: #a855f7;
  font-size: 1.6rem;
  opacity: 0.85;
}

.preloader-subtitle {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #94a3b8;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Terminal Loading Card */
.preloader-terminal-card {
  width: 100%;
  max-width: 440px;
  background: rgba(13, 17, 38, 0.75);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.04);
}

.terminal-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono, monospace);
  font-size: 0.76rem;
  margin-bottom: 0.7rem;
}

.terminal-prompt {
  color: #c084fc;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.terminal-percent {
  color: #00f0ff;
  font-weight: 800;
}

.terminal-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  position: relative;
}

.terminal-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #8b5cf6, #ec4899);
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.9);
  transition: width 0.12s linear;
}

.terminal-log-row {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: #64748b;
  letter-spacing: 0.5px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badges Row */
.preloader-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.p-badge {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FEATURE 2: FLOATING WHATSAPP BUTTON (1:1 Matching Image 2)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45), 0 0 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  animation: waPulseGlow 2.5s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.65), 0 0 25px rgba(37, 211, 102, 0.5);
}

.floating-wa-svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulseGlow {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@media (max-width: 640px) {
  .floating-whatsapp-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
  .floating-wa-svg {
    width: 28px;
    height: 28px;
  }
  .preloader-title {
    font-size: 1.6rem;
  }
  .preloader-terminal-card {
    padding: 1rem;
  }
}



