/* =========================================================
   VXSKINS DESIGN SYSTEM
   Premium CS2 Skin Ecosystem — Telegram WebApp
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties (Tokens) ── */
:root {
  /* ── Core Background ── */
  --color-bg:            #0A0C10;
  --color-secondary:     #0D1017;
  --color-card:          #111520;
  --color-elevated:      #161B27;
  --color-border:        #1F2535;
  --color-border-subtle: #161C2A;

  /* ── Text ── */
  --color-text-primary:   #F0F4FF;
  --color-text-secondary: #8896B3;
  --color-text-muted:     #4A5568;

  /* ── Primary Accent: Neon Cyan ── */
  --color-accent:         #00D4FF;
  --color-accent-dim:     rgba(0, 212, 255, 0.12);
  --color-accent-glow:    rgba(0, 212, 255, 0.28);

  /* ── Secondary Accent: Neon Purple ── */
  --color-accent2:        #7C3AED;
  --color-accent2-dim:    rgba(124, 58, 237, 0.15);
  --color-accent2-glow:   rgba(124, 58, 237, 0.30);

  /* ── Gold Accent ── */
  --color-gold:           #F59E0B;
  --color-gold-dim:       rgba(245, 158, 11, 0.12);
  --color-gold-glow:      rgba(245, 158, 11, 0.28);

  /* ── Glassmorphism ── */
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-blur:    12px;

  /* ── Rarity Colors (CS2 spec) ── */
  --rarity-consumer:    #9299A5;
  --rarity-industrial:  #5B9FD4;
  --rarity-milspec:     #4A6CF7;
  --rarity-restricted:  #8B4EDB;
  --rarity-classified:  #E84EDB;
  --rarity-covert:      #EB4B4B;
  --rarity-contraband:  #E4AE39;
  --rarity-rare:        #E4AE39;
  --rarity-legendary:   #EB4B4B;
  --rarity-epic:        #8B4EDB;
  --rarity-common:      #9299A5;

  /* ── Rarity Glow ── */
  --glow-consumer:    rgba(146,153,165,0.25);
  --glow-industrial:  rgba(91,159,212,0.28);
  --glow-milspec:     rgba(74,108,247,0.32);
  --glow-restricted:  rgba(139,78,219,0.32);
  --glow-classified:  rgba(232,78,219,0.35);
  --glow-covert:      rgba(235,75,75,0.38);
  --glow-contraband:  rgba(228,174,57,0.35);

  /* ── Spacing (8px system) ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  /* ── Border Radius ── */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-full: 9999px;

  /* ── Typography ── */
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs:    11px;
  --text-sm:    13px;
  --text-base:  14px;
  --text-md:    16px;
  --text-lg:    18px;
  --text-xl:    20px;
  --text-2xl:   24px;
  --text-3xl:   28px;
  --text-4xl:   32px;
  --text-5xl:   40px;

  --weight-normal:    400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;
  --weight-extrabold: 800;
  --weight-black:     900;

  /* ── Transitions ── */
  --transition-fast:   180ms ease;
  --transition-normal: 220ms ease;
  --transition-slow:   350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Shadows ── */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.7);
  --shadow-accent: 0 0 24px var(--color-accent-glow);
  --shadow-card:   0 2px 20px rgba(0,0,0,0.4);

  /* ── Safe area ── */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);

  /* ── Nav height ── */
  --nav-height: 64px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  line-height: 1.5;
  color: var(--color-text-primary);
  background: var(--color-bg);
  /* Subtle radial background glow */
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0,212,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 80% 100%, rgba(124,58,237,0.03) 0%, transparent 60%);
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; }

img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ── App Shell ── */
#app {
  max-width: 480px;
  margin: 0 auto;
  padding-top: var(--safe-top);
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
  min-height: 100vh;
  position: relative;
}

/* ── Page Container ── */
.page {
  display: none;
  padding: 0 var(--space-4);
  animation: page-enter var(--transition-normal) forwards;
}
.page.active { display: block; }

@keyframes page-enter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Typography Utilities ── */
.text-xs     { font-size: var(--text-xs); }
.text-sm     { font-size: var(--text-sm); }
.text-base   { font-size: var(--text-base); }
.text-md     { font-size: var(--text-md); }
.text-lg     { font-size: var(--text-lg); }
.text-xl     { font-size: var(--text-xl); }
.text-2xl    { font-size: var(--text-2xl); }
.text-3xl    { font-size: var(--text-3xl); }
.text-4xl    { font-size: var(--text-4xl); }

.font-normal   { font-weight: var(--weight-normal); }
.font-medium   { font-weight: var(--weight-medium); }
.font-semibold { font-weight: var(--weight-semibold); }
.font-bold     { font-weight: var(--weight-bold); }
.font-extrabold { font-weight: var(--weight-extrabold); }
.font-black    { font-weight: var(--weight-black); }

.text-primary   { color: var(--color-text-primary); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted     { color: var(--color-text-muted); }
.text-accent    { color: var(--color-accent); }

.tracking-wide  { letter-spacing: 0.04em; }
.tracking-wider { letter-spacing: 0.08em; }
.tracking-widest { letter-spacing: 0.12em; }
.uppercase { text-transform: uppercase; }
.tabular    { font-variant-numeric: tabular-nums; }
.truncate   { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Layout Utilities ── */
.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end   { justify-content: flex-end; }
.gap-1  { gap: var(--space-1); }
.gap-2  { gap: var(--space-2); }
.gap-3  { gap: var(--space-3); }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.flex-1 { flex: 1; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.overflow-hidden  { overflow: hidden; }
.overflow-x-auto  { overflow-x: auto; }
.overflow-y-auto  { overflow-y: auto; }

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

/* ── Spacing Utilities ── */
.p-1  { padding: var(--space-1); }
.p-2  { padding: var(--space-2); }
.p-3  { padding: var(--space-3); }
.p-4  { padding: var(--space-4); }
.p-6  { padding: var(--space-6); }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.ml-auto { margin-left: auto; }

/* ── COMPONENT: Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  font-family: var(--font-family);
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  border: none;
}
.btn:active { transform: scale(0.96); }
.btn:disabled { opacity: 0.35; pointer-events: none; cursor: not-allowed; }

.btn-primary {
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  color: #04090F;
  box-shadow: 0 4px 16px rgba(0,212,255,0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #22DDFF 0%, #00B8E0 100%);
  box-shadow: 0 6px 24px rgba(0,212,255,0.38);
}
.btn-primary:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(0,212,255,0.2);
}

.btn-secondary {
  background: var(--color-elevated);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover { background: var(--color-card); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
}
.btn-ghost:hover { color: var(--color-text-primary); }

.btn-danger {
  background: rgba(235, 75, 75, 0.15);
  color: #EB4B4B;
  border: 1px solid rgba(235, 75, 75, 0.2);
}
.btn-danger:hover { background: rgba(235, 75, 75, 0.25); }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px var(--space-4);
  font-size: var(--text-sm);
  border-radius: 10px;
}

.btn-lg {
  padding: 16px var(--space-8);
  font-size: var(--text-md);
  border-radius: var(--radius-md);
}

.btn-full { width: 100%; }

/* ── COMPONENT: Card ── */
.card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
}

.card-elevated {
  background: var(--color-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.card-interactive {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}
.card-interactive:active { transform: scale(0.98); }
.card-interactive:hover  { border-color: var(--color-border); background: var(--color-elevated); }

.card-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

/* ── COMPONENT: Input ── */
.input {
  width: 100%;
  padding: 12px var(--space-4);
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--text-base);
  font-family: var(--font-family);
  font-weight: var(--weight-medium);
  outline: none;
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}
.input::placeholder { color: var(--color-text-muted); }
.input:focus { border-color: var(--color-accent); }

.input-icon-wrap {
  position: relative;
}
.input-icon-wrap .input { padding-left: 40px; }
.input-icon-wrap .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

/* ── COMPONENT: Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-accent   { background: var(--color-accent-dim); color: var(--color-accent); }
.badge-danger   { background: rgba(235,75,75,0.12); color: #EB4B4B; }
.badge-muted    { background: var(--color-elevated); color: var(--color-text-secondary); }
.badge-success  { background: rgba(74,222,128,0.12); color: #4ade80; }
.badge-warning  { background: rgba(251,191,36,0.12); color: #fbbf24; }
.badge-purple   { background: rgba(139,78,219,0.15); color: #a855f7; }
.badge-blue     { background: rgba(74,108,247,0.15); color: #818cf8; }

/* ── COMPONENT: Avatar ── */
.avatar {
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--color-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}
.avatar-sm  { width: 32px; height: 32px; font-size: var(--text-sm); }
.avatar-md  { width: 40px; height: 40px; font-size: var(--text-base); }
.avatar-lg  { width: 56px; height: 56px; font-size: var(--text-xl); }
.avatar-xl  { width: 72px; height: 72px; font-size: var(--text-2xl); }

/* ── COMPONENT: Tabs ── */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 3px;
}
.tab-item {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.tab-item.active {
  background: var(--color-elevated);
  color: var(--color-text-primary);
}

.tab-pills {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: 2px;
}
.tab-pill {
  flex: 0 0 auto;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--color-elevated);
  border: 1px solid var(--color-border-subtle);
  white-space: nowrap;
}
.tab-pill.active {
  background: var(--color-accent);
  color: #08090B;
  border-color: var(--color-accent);
}

/* ── COMPONENT: Bottom Navigation ── */
#bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: calc(var(--nav-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(13, 16, 23, 0.88);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: 8px;
  z-index: 100;
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  box-shadow: 0 -1px 0 rgba(0,212,255,0.06), 0 -8px 32px rgba(0,0,0,0.5);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 16px;
  border-radius: var(--radius-md);
  transition: opacity var(--transition-fast);
  min-width: 56px;
}
.nav-item:active { opacity: 0.7; }

.nav-icon {
  width: 22px;
  height: 22px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}
.nav-label {
  font-size: 10px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-item.active .nav-icon  {
  color: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.6));
}
.nav-item.active .nav-label { color: var(--color-accent); }
.nav-item.active .nav-dot   { opacity: 1; transform: scaleX(1); }

.nav-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-accent);
  box-shadow: 0 0 8px var(--color-accent-glow);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity var(--transition-fast), transform var(--transition-slow);
  margin-top: 1px;
}

/* ── COMPONENT: Toast ── */
#toast-container {
  position: fixed;
  top: calc(var(--safe-top) + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
  width: calc(100% - 32px);
  max-width: 400px;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  animation: toast-in 0.3s var(--transition-slow) forwards;
  pointer-events: all;
}
.toast.out { animation: toast-out 0.25s ease forwards; }

.toast-success { border-left: 3px solid var(--color-accent); }
.toast-error   { border-left: 3px solid #EB4B4B; }
.toast-info    { border-left: 3px solid #818cf8; }
.toast-warning { border-left: 3px solid #fbbf24; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

/* ── COMPONENT: Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, var(--color-elevated) 25%, var(--color-card) 50%, var(--color-elevated) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text  { height: 14px; border-radius: 4px; }
.skeleton-text-sm { height: 11px; border-radius: 4px; }
.skeleton-card  { height: 120px; border-radius: var(--radius-lg); }
.skeleton-avatar { border-radius: var(--radius-full); }
.skeleton-circle { border-radius: 50%; }

/* ── COMPONENT: Bottom Sheet ── */
.bottom-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(4px);
}
.bottom-sheet-overlay.open { opacity: 1; pointer-events: all; }

.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  background: var(--color-card);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid var(--color-border);
  z-index: 201;
  padding: 0 var(--space-4) calc(var(--safe-bottom) + 24px);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 85vh;
  overflow-y: auto;
}
.bottom-sheet.open {
  transform: translateX(-50%) translateY(0);
}

.bottom-sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin: 12px auto 20px;
}

.bottom-sheet-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-6);
}

/* ── COMPONENT: Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--color-card);
  border-radius: 24px 24px 0 0;
  border-top: 1px solid var(--color-border);
  width: 100%;
  max-width: 480px;
  padding: 0 var(--space-4) calc(var(--safe-bottom) + 32px);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s var(--transition-slow);
}
.modal-overlay.open .modal { transform: translateY(0); }

/* ── COMPONENT: Section Header ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}
.section-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}
.section-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  cursor: pointer;
}

/* ── COMPONENT: Page Header ── */
.page-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0 var(--space-4);
  position: sticky;
  top: 0;
  background: var(--color-bg);
  z-index: 50;
}
.page-header-title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  flex: 1;
}

/* ── COMPONENT: VX Skin Card ── */
.skin-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}
.skin-card:active { transform: scale(0.96); }
.skin-card:hover  {
  border-color: var(--color-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* Rarity-based glow on hover */
.skin-card.rarity-covert:hover     { box-shadow: 0 8px 24px var(--glow-covert); border-color: rgba(235,75,75,0.4); }
.skin-card.rarity-classified:hover { box-shadow: 0 8px 24px var(--glow-classified); border-color: rgba(232,78,219,0.4); }
.skin-card.rarity-restricted:hover { box-shadow: 0 8px 24px var(--glow-restricted); border-color: rgba(139,78,219,0.35); }
.skin-card.rarity-milspec:hover    { box-shadow: 0 8px 24px var(--glow-milspec); border-color: rgba(74,108,247,0.35); }
.skin-card.rarity-contraband:hover { box-shadow: 0 8px 24px var(--glow-contraband); border-color: rgba(228,174,57,0.38); }

.skin-card-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--color-secondary), var(--color-card));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.skin-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform var(--transition-normal);
}
.skin-card:hover .skin-card-image img { transform: scale(1.05); }
.skin-card-image .skin-placeholder {
  font-size: 32px;
  opacity: 0.25;
}

/* Rarity top accent bar */
.skin-card-rarity-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.skin-card.rarity-covert .skin-card-rarity-top     { background: var(--rarity-covert); box-shadow: 0 0 10px var(--glow-covert); }
.skin-card.rarity-classified .skin-card-rarity-top { background: var(--rarity-classified); box-shadow: 0 0 10px var(--glow-classified); }
.skin-card.rarity-restricted .skin-card-rarity-top { background: var(--rarity-restricted); box-shadow: 0 0 8px var(--glow-restricted); }
.skin-card.rarity-milspec .skin-card-rarity-top    { background: var(--rarity-milspec); box-shadow: 0 0 8px var(--glow-milspec); }
.skin-card.rarity-contraband .skin-card-rarity-top { background: var(--rarity-contraband); box-shadow: 0 0 10px var(--glow-contraband); }

.skin-card-body {
  padding: var(--space-3);
}
.skin-card-rarity {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.rarity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.skin-card-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  line-height: 1.3;
  margin-bottom: 2px;
}
.skin-card-weapon {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.skin-card-price {
  font-size: var(--text-sm);
  font-weight: var(--weight-extrabold);
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

/* Rarity color coding */
.rarity-consumer    { color: var(--rarity-consumer); }
.rarity-industrial  { color: var(--rarity-industrial); }
.rarity-milspec     { color: var(--rarity-milspec); }
.rarity-restricted  { color: var(--rarity-restricted); }
.rarity-classified  { color: var(--rarity-classified); }
.rarity-covert      { color: var(--rarity-covert); }
.rarity-contraband  { color: var(--rarity-contraband); }
.rarity-rare        { color: var(--rarity-rare); }
.rarity-legendary   { color: var(--rarity-legendary); }
.rarity-epic        { color: var(--rarity-epic); }
.rarity-common      { color: var(--rarity-common); }

.rarity-dot.rarity-consumer    { background: var(--rarity-consumer); }
.rarity-dot.rarity-industrial  { background: var(--rarity-industrial); }
.rarity-dot.rarity-milspec     { background: var(--rarity-milspec); }
.rarity-dot.rarity-restricted  { background: var(--rarity-restricted); }
.rarity-dot.rarity-classified  { background: var(--rarity-classified); }
.rarity-dot.rarity-covert      { background: var(--rarity-covert); }
.rarity-dot.rarity-contraband  { background: var(--rarity-contraband); }
.rarity-dot.rarity-rare        { background: var(--rarity-rare); }
.rarity-dot.rarity-legendary   { background: var(--rarity-legendary); }
.rarity-dot.rarity-epic        { background: var(--rarity-epic); }
.rarity-dot.rarity-common      { background: var(--rarity-common); }

/* ── COMPONENT: Inventory Card ── */
.inv-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}
.inv-card:active { transform: scale(0.97); }
.inv-card:hover  { border-color: var(--color-border); }

.inv-card-image {
  aspect-ratio: 1;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.inv-card-image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.inv-card-rarity-bar {
  height: 2px;
  width: 100%;
}
.inv-card-body {
  padding: 8px;
}
.inv-card-name {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inv-card-price {
  font-size: var(--text-xs);
  font-weight: var(--weight-extrabold);
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}

/* ── COMPONENT: Transaction Row ── */
.tx-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.tx-row:last-child { border-bottom: none; }

.tx-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tx-icon-positive { background: rgba(74,222,128,0.1); }
.tx-icon-negative { background: rgba(235,75,75,0.1); }
.tx-icon-neutral  { background: var(--color-elevated); }

.tx-info { flex: 1; min-width: 0; }
.tx-desc {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tx-date { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }

.tx-amount {
  font-size: var(--text-sm);
  font-weight: var(--weight-extrabold);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.tx-amount.positive { color: var(--color-accent); }
.tx-amount.negative { color: #EB4B4B; }
.tx-amount.neutral  { color: var(--color-text-secondary); }

/* ── COMPONENT: Price Display ── */
.price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.price-vx-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #08090B;
  font-size: 9px;
  font-weight: var(--weight-black);
  flex-shrink: 0;
}

/* ── COMPONENT: XP Bar ── */
.xp-bar-wrap {
  height: 4px;
  background: var(--color-elevated);
  border-radius: 2px;
  overflow: hidden;
}
.xp-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--color-accent);
  transition: width 0.6s ease;
}

/* ── COMPONENT: Progress Bar ── */
.progress-bar {
  height: 6px;
  background: var(--color-elevated);
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--color-accent);
  transition: width 0.5s ease;
}

/* ── COMPONENT: Divider ── */
.divider {
  height: 1px;
  background: var(--color-border-subtle);
  margin: var(--space-4) 0;
}

/* ── COMPONENT: Empty State ── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
  text-align: center;
  gap: var(--space-3);
}
.empty-state-icon {
  font-size: 48px;
  margin-bottom: var(--space-2);
  opacity: 0.4;
}
.empty-state-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
}
.empty-state-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 260px;
  line-height: 1.6;
}

/* ── COMPONENT: Error State ── */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-8) var(--space-4);
  text-align: center;
  gap: var(--space-3);
}

/* ── COMPONENT: Notification Badge ── */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #EB4B4B;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  font-size: 9px;
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SPLASH SCREEN ── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #0A0C10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Canvas sits behind everything */
#splash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Centered content over canvas */
.splash-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* Glowing ring around logo */
.splash-vx-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(0,212,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: splash-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), vx-ring-pulse 2.5s 0.6s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(0,212,255,0.3), inset 0 0 30px rgba(0,212,255,0.05);
}
.splash-vx-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  animation: vx-ring-orbit 3s linear infinite;
}
.splash-vx-inner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes vx-ring-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0,212,255,0.3), inset 0 0 30px rgba(0,212,255,0.05); }
  50%       { box-shadow: 0 0 50px rgba(0,212,255,0.5), inset 0 0 40px rgba(0,212,255,0.1); }
}
@keyframes vx-ring-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Shimmer wordmark */
.splash-wordmark {
  font-size: 22px;
  font-weight: var(--weight-black);
  letter-spacing: 6px;
  background: linear-gradient(90deg, #8896B3 0%, #F0F4FF 30%, #00D4FF 50%, #F0F4FF 70%, #8896B3 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: splash-fade 0.5s 0.15s ease both, shimmer-slide 2.5s 0.7s linear infinite;
}
.splash-tagline {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: splash-fade 0.5s 0.25s ease both;
}
.splash-bar {
  width: 56px;
  height: 2px;
  background: var(--color-elevated);
  border-radius: 1px;
  overflow: hidden;
  margin-top: var(--space-3);
  animation: splash-fade 0.5s 0.3s ease both;
}
.splash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00D4FF, #7C3AED);
  border-radius: 1px;
  animation: splash-load 1.2s 0.4s ease forwards;
  width: 0;
}
@keyframes splash-pop {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes splash-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes splash-load { to { width: 100%; } }

/* ── COMPONENT: Horizontal Scroll Track ── */
.h-scroll {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

/* ── COMPONENT: Live Ticker ── */
.ticker-container {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: var(--space-3);
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  background: var(--color-elevated);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-subtle);
  white-space: nowrap;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── HOME: Hero Banner ── */
.hero-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
  background: var(--color-elevated);
  margin-bottom: var(--space-6);
}
.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1a0a 0%, #0d1521 50%, #120d1a 100%);
}
.hero-banner-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.hero-banner-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.hero-title {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  line-height: 1.1;
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

/* ── HOME: Quick Actions ── */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.quick-action:active { transform: scale(0.94); }
.quick-action-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-elevated);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.quick-action:hover .quick-action-icon {
  background: var(--color-card);
  border-color: var(--color-accent-glow);
}
.quick-action-label {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  text-align: center;
}

/* ── PROFILE: Header ── */
.profile-header {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
}
.profile-header-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--color-accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

/* ── WALLET: Balance Card ── */
.wallet-balance-card {
  background: var(--color-elevated);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.wallet-balance-amount {
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
  margin: var(--space-2) 0;
  line-height: 1;
}
.wallet-balance-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── KEYS: Open Animation ── */
.key-open-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.key-open-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.reel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 120px;
}
.reel-pointer {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent);
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 12px 3px var(--color-accent-glow);
}
.reel-pointer::before,
.reel-pointer::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
}
.reel-pointer::before {
  top: 0;
  border-top-color: var(--color-accent);
  border-bottom: none;
}
.reel-pointer::after {
  bottom: 0;
  border-bottom-color: var(--color-accent);
  border-top: none;
}
#reelTrack {
  display: flex;
  transition: transform 4s cubic-bezier(0.08, 0.82, 0.17, 1);
  will-change: transform;
}
.reel-item {
  flex: 0 0 104px;
  height: 104px;
  margin: 0 6px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-elevated);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  font-size: 32px;
}
.reel-item.won {
  border-color: var(--color-accent);
  background: var(--color-accent-dim);
  box-shadow: 0 0 20px var(--color-accent-glow);
}

/* ── PLAY: Game Card ── */
.play-card {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}
.play-card:active { transform: scale(0.98); }
.play-card:hover  { border-color: var(--color-border); }
.play-card-accent-line {
  height: 3px;
  width: 100%;
}
.play-card-body {
  padding: var(--space-4);
}
.play-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-3);
}
.play-card-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  margin-bottom: 4px;
}
.play-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.play-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-subtle);
}

/* ── ACHIEVEMENT Card ── */
.achievement-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
}
.achievement-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.achievement-icon.locked { opacity: 0.3; filter: grayscale(1); }
.achievement-name { font-size: var(--text-sm); font-weight: var(--weight-bold); }
.achievement-desc { font-size: var(--text-xs); color: var(--color-text-secondary); margin-top: 2px; }

/* ── MENU Row ── */
.menu-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-border-subtle);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.menu-row:last-child { border-bottom: none; }
.menu-row:active { background: var(--color-elevated); transform: scale(0.99); }
.menu-row:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.menu-row:last-child  { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.menu-row:only-child  { border-radius: var(--radius-lg); }
.menu-row-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}
.menu-row:hover .menu-row-icon { background: var(--color-border); }
.menu-row-label { flex: 1; font-size: var(--text-base); font-weight: var(--weight-semibold); }
.menu-row-arrow { color: var(--color-text-muted); transition: transform var(--transition-fast); }
.menu-row:hover .menu-row-arrow { transform: translateX(3px); }
.menu-row-badge {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, #00D4FF, #0099CC);
  color: #04090F;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* ── Profile Menu Card ── */
.profile-menu-card {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-fast);
}
.profile-menu-card:hover { border-color: rgba(255,255,255,0.1); }

/* ── FILTER: Checkbox / Toggle ── */
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  cursor: pointer;
}
.filter-row:last-child { border-bottom: none; }
.filter-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}

.toggle {
  width: 44px;
  height: 24px;
  background: var(--color-elevated);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.toggle.on {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.toggle-knob {
  width: 18px;
  height: 18px;
  background: #08090B;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: transform var(--transition-fast);
}
.toggle.on .toggle-knob { transform: translateX(20px); background: #08090B; }

/* ── STATS Row ── */
.stats-row {
  display: flex;
  gap: var(--space-3);
}
.stat-item {
  flex: 1;
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid var(--color-border-subtle);
  text-align: center;
}
.stat-value {
  font-size: var(--text-xl);
  font-weight: var(--weight-black);
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ── Day Reward (Horizontal Scrollable) ── */
.day-strip-scroll {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding: var(--space-1) 2px var(--space-3);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.day-box {
  flex: 0 0 auto;
  min-width: 52px;
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-1);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  gap: 5px;
  border: 1px solid var(--color-border-subtle);
  scroll-snap-align: start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.day-box-n {
  font-size: 10px;
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.day-box-v {
  font-size: var(--text-sm);
  font-weight: var(--weight-black);
}
.day-box.done {
  background: var(--color-accent-dim);
  border-color: rgba(0,212,255,0.35);
  color: var(--color-accent);
  box-shadow: inset 0 0 12px rgba(0,212,255,0.08);
}
.day-box.done::after {
  content: '✓';
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 9px;
  color: var(--color-accent);
  opacity: 0.7;
}
.day-box.today {
  background: var(--color-elevated);
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 16px rgba(0,212,255,0.2), inset 0 0 12px rgba(0,212,255,0.06);
  transform: scale(1.05);
}
.day-box.today .day-box-n::after { content: ' 🔥'; }
.day-box.pending {
  background: var(--color-secondary);
  color: var(--color-text-muted);
}
/* Legacy .day-boxes support */
.day-boxes {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  -webkit-overflow-scrolling: touch;
}

/* ── Misc Helpers ── */
.rounded-full { border-radius: var(--radius-full); }
.rounded-lg   { border-radius: var(--radius-lg); }
.rounded-md   { border-radius: var(--radius-md); }
.rounded-sm   { border-radius: var(--radius-sm); }
.opacity-0    { opacity: 0; }
.opacity-50   { opacity: 0.5; }
.hidden       { display: none !important; }
.block        { display: block; }

/* ── Aim Trainer Canvas ── */
#aimCanvas {
  border-radius: var(--radius-xl);
  background: var(--color-secondary);
  display: block;
  cursor: crosshair;
  touch-action: none;
  width: 100%;
}

/* ── Float Badge ── */
.float-badge {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}
.float-fn { background: rgba(184,255,61,0.1); color: var(--color-accent); }
.float-mw { background: rgba(96,165,250,0.1); color: #60a5fa; }
.float-ft { background: rgba(251,191,36,0.1); color: #fbbf24; }
.float-ww { background: rgba(248,113,113,0.1); color: #f87171; }
.float-bs { background: var(--color-elevated); color: var(--color-text-secondary); }

/* ── Leaderboard Row ── */
.lb-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-card);
  border: 1px solid var(--color-border-subtle);
}
.lb-row.gold   { border-color: rgba(228, 174, 57, 0.3); background: rgba(228, 174, 57, 0.05); }
.lb-row.silver { border-color: rgba(146,153,165, 0.3); }
.lb-row.bronze { border-color: rgba(184,115,51, 0.3); }
.lb-rank {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-black);
  flex-shrink: 0;
}

/* ── App Header ── */
#app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-4) var(--space-3);
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── Header Center (dynamic page title) ── */
.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ── Page Title Bar ── */
#app-page-title {
  font-size: var(--text-sm);
  font-weight: var(--weight-extrabold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}

.header-brand {
  font-size: var(--text-lg);
  font-weight: var(--weight-black);
  letter-spacing: 1px;
  color: var(--color-text-primary);
}
.header-brand span { color: var(--color-accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.balance-chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-elevated);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 12px 6px 6px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}
.balance-chip:active { transform: scale(0.97); }
.balance-chip:hover  { border-color: var(--color-border); }
.balance-chip-vx {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #08090B;
  font-size: 9px;
  font-weight: var(--weight-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.balance-chip-amount {
  font-size: var(--text-sm);
  font-weight: var(--weight-extrabold);
  font-variant-numeric: tabular-nums;
}

.notif-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-elevated);
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
  position: relative;
}
.notif-btn:active { transform: scale(0.95); }

/* ── Wizard Steps ── */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-6);
}
.wizard-step {
  flex: 1;
  height: 3px;
  background: var(--color-elevated);
  border-radius: 2px;
  transition: background var(--transition-normal);
}
.wizard-step.active   { background: var(--color-accent); }
.wizard-step.complete { background: var(--color-accent); opacity: 0.4; }

/* ── Notification center ── */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  transition: background var(--transition-fast);
}
.notif-item.unread { border-left: 3px solid var(--color-accent); }
.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

/* ── Market skin detail ── */
.detail-image-wrap {
  background: var(--color-secondary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  margin-bottom: var(--space-4);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.detail-image-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.15;
}
.detail-image-wrap img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ── Step indicator for wizard ── */
.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.step-number.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #08090B;
}
.step-number.done {
  background: var(--color-accent-dim);
  border-color: var(--color-accent-glow);
  color: var(--color-accent);
}

/* ── Micro-animations ── */
@keyframes pop-in {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slide-up {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--color-accent-glow); }
  50%       { box-shadow: 0 0 0 8px transparent; }
}
@keyframes pulse-glow-cyan {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
  50%       { box-shadow: 0 0 0 10px rgba(0,212,255,0); }
}
@keyframes counter-up {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
@keyframes shimmer-slide {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.anim-pop-in   { animation: pop-in   0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.anim-fade-in  { animation: fade-in  var(--transition-normal); }
.anim-slide-up { animation: slide-up 0.3s ease; }
.anim-glow-pulse { animation: pulse-glow-cyan 2s ease infinite; }

/* ── Glassmorphism Utilities ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}
.glass-surface {
  background: rgba(22, 27, 39, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Responsive ── */
@media (min-width: 480px) {
  .hero-title { font-size: var(--text-5xl); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════════════════
   NEW COMPONENTS — REDESIGN 2.1
   ══════════════════════════════════════════════════ */

/* ── Category Pills (Cases filter) ── */
.category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-pills::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-elevated);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.cat-pill:active { transform: scale(0.95); }
.cat-pill.active {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.35);
  color: var(--color-accent);
  box-shadow: 0 0 12px rgba(0,212,255,0.15);
}

/* ── Case Card (2-column grid) ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.case-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-card);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.case-card:active { transform: scale(0.97); }
.case-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0;
}
.case-card-img {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-elevated);
  border-bottom: 1px solid var(--color-border-subtle);
}
.case-card-img img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.case-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.case-card-name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-text-primary);
}
.case-card-sub {
  font-size: 11px;
  color: var(--color-text-muted);
}
.case-card-price {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 2px;
}
.case-card-btn {
  margin-top: 8px;
  width: 100%;
  padding: 8px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent), rgba(0,212,255,0.7));
  color: #04090F;
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,212,255,0.25);
}
.btn-primary-sm {
  background: linear-gradient(135deg, var(--color-accent), rgba(0,212,255,0.7));
  color: #04090F;
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  border: none;
  cursor: pointer;
}

/* ── Task Cards (Bonus section) ── */
.task-card {
  background: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color var(--transition-fast);
}
.task-card:active { border-color: var(--color-border); }
.task-card-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.task-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.task-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}
.task-card-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.task-card-reward {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.task-reward-vx {
  font-size: 15px;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}
.task-reward-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.task-card-btn {
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}
.task-card-btn:active { transform: scale(0.95); }
.task-card-btn-purple {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
  color: #a855f7;
}

/* ── Profile Menu Card ── */
.profile-menu-card {
  background: var(--color-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 12px;
}
.profile-menu-card .menu-row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.profile-menu-card .menu-row:last-child { border-bottom: none; }

/* ── Settings Row ── */
.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.settings-row:last-child { border-bottom: none; }
.settings-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.settings-row-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1px;
}
.settings-row-sub {
  font-size: 11px;
  color: var(--color-text-muted);
}
.settings-select {
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  padding: 7px 10px;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* ══════════════════════════════════════════════════
   REDESIGN 2.2 — Neon Case Cards, Live Drops, Payments
   ══════════════════════════════════════════════════ */

/* ── Neon Case Card ── */
.case-card-neon {
  position: relative;
  background: var(--color-card);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}
.case-card-neon:active { transform: scale(0.95); }
.case-card-neon:hover {
  box-shadow: 0 0 20px var(--neon-color, #00D4FF44), 0 4px 24px rgba(0,0,0,0.5);
  transform: translateY(-3px) scale(1.01);
}
.case-card-neon .neon-top-bar { height: 2px; background: linear-gradient(90deg, var(--neon-color, #00D4FF), transparent); }
.case-card-neon .case-img-wrap { height: 100px; display: flex; align-items: center; justify-content: center; padding: 12px; position: relative; }
.case-card-neon .case-glow-floor { position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 55%; height: 16px; background: radial-gradient(ellipse, var(--neon-color, #00D4FF) 0%, transparent 70%); opacity: 0.22; filter: blur(4px); }
.case-card-neon img { max-height: 80px; max-width: 95%; object-fit: contain; filter: drop-shadow(0 4px 10px var(--neon-color, #00D4FF)); transition: filter 0.3s, transform 0.3s; position: relative; z-index: 1; }
.case-card-neon:hover img { filter: drop-shadow(0 6px 20px var(--neon-color, #00D4FF)); transform: scale(1.06) translateY(-2px); }
.case-card-neon .case-info { padding: 0 10px 10px; }
.case-card-neon .case-name { font-size: 11px; font-weight: 800; color: var(--color-text-primary); line-height: 1.3; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.case-card-neon .case-price-row { display: flex; align-items: center; justify-content: space-between; }
.case-card-neon .case-price { font-size: 13px; font-weight: 900; color: var(--neon-color, #00D4FF); }
.case-card-neon .case-opens { font-size: 9px; color: var(--color-text-muted); font-weight: 600; }
.case-card-neon .neon-border-frame { position: absolute; inset: 0; border-radius: 16px; border: 1px solid var(--neon-color, #00D4FF); opacity: 0.18; pointer-events: none; transition: opacity 0.25s; }
.case-card-neon:hover .neon-border-frame { opacity: 0.55; }

/* ── Live Drop Feed ── */
@keyframes dropSlideIn { from { transform: translateX(80px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes livePulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.6; } }

.live-drop-chip { display: flex; align-items: center; gap: 7px; background: var(--color-card); border: 1px solid var(--drop-color, #00D4FF); border-radius: 30px; padding: 5px 12px 5px 6px; flex-shrink: 0; animation: dropSlideIn 0.45s cubic-bezier(.34,1.2,.64,1) both; cursor: default; max-width: 190px; }
.live-drop-chip img { width: 30px; height: 30px; object-fit: contain; border-radius: 50%; background: var(--color-elevated); flex-shrink: 0; }
.live-drop-chip .drop-chip-no-img { width: 30px; height: 30px; border-radius: 50%; background: var(--color-elevated); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.live-drop-chip .drop-info { overflow: hidden; min-width: 0; }
.live-drop-chip .drop-name { font-size: 10px; font-weight: 800; color: var(--color-text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }
.live-drop-chip .drop-user { font-size: 9px; color: var(--drop-color, #00D4FF); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── Payment Gateway UI ── */
.pay-method-tabs { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; margin-bottom: 18px; background: var(--color-elevated); border-radius: 12px; padding: 4px; }
.pay-method-tab { text-align: center; padding: 8px 4px; border-radius: 9px; font-size: 9px; font-weight: 700; color: var(--color-text-muted); cursor: pointer; transition: all 0.2s; user-select: none; letter-spacing: 0.02em; }
.pay-method-tab.active { background: var(--color-card); color: var(--color-accent); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.pay-method-tab .tab-icon { font-size: 18px; display: block; margin-bottom: 2px; }

.pay-amount-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.pay-amount-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 12px 8px; background: var(--color-elevated); border: 1.5px solid var(--color-border); border-radius: 12px; cursor: pointer; transition: all 0.18s; }
.pay-amount-btn:active { transform: scale(0.95); }
.pay-amount-btn.selected { border-color: var(--color-accent); background: var(--color-accent-dim); box-shadow: 0 0 12px var(--color-accent-glow); }
.pay-amount-btn .amt-vx { font-size: 16px; font-weight: 900; color: var(--color-accent); line-height: 1; }
.pay-amount-btn .amt-sub { font-size: 10px; color: var(--color-text-muted); font-weight: 600; }

.pay-method-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--color-card); border: 1.5px solid var(--color-border-subtle); border-radius: 14px; margin-bottom: 10px; cursor: pointer; transition: all 0.18s; }
.pay-method-card:hover, .pay-method-card.active { border-color: var(--color-accent); box-shadow: 0 0 12px var(--color-accent-glow); }
.pay-method-card .pm-logo { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.pay-method-card .pm-info { flex: 1; }
.pay-method-card .pm-name { font-size: 13px; font-weight: 800; color: var(--color-text-primary); }
.pay-method-card .pm-sub  { font-size: 11px; color: var(--color-text-muted); margin-top: 1px; }
.pay-method-card .pm-badge { font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 20px; background: rgba(0,212,255,0.12); color: var(--color-accent); border: 1px solid rgba(0,212,255,0.25); white-space: nowrap; }
.pay-method-card.coming-soon { opacity: 0.5; pointer-events: none; }
