@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ДИЗАЙН-СИСТЕМА NOVA PAYMENT (Crypto & Fintech Dark Theme) */
:root {
  /* Базовые цвета темы */
  --bg-deep: #050508;
  --bg-surface: #12121A;
  --bg-elevated: #1A1A24;
  --bg-input: #0F0F16;
  
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0B0;
  --text-muted: #6B6B7B;
  --text-accent: #E0E0FF;

  --accent-blue: #2563EB;
  --accent-cyan: #0EA5E9;
  --accent-purple: #2563EB;
  --accent-green: #10B981;
  --accent-orange: #F59E0B;
  --accent-red: #EF4444;

  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #06B6D4 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.15) 0%, transparent 60%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  --gradient-border: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);

  --font-display: 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Переменные для обратной совместимости */
  --bg-main: var(--bg-deep);
  --bg-card: rgba(255, 255, 255, 0.03);     /* Стеклянные карточки на базе bg-surface */
  --text-main: var(--text-primary);
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-glass-focus: var(--accent-blue);
  --danger-color: var(--accent-red);
  --blur-radius: 24px;
}

[data-theme="light"] {
  --bg-deep: #050508;
  --bg-surface: #12121A;
  --bg-elevated: #F0F1F5;
  --bg-input: #EBECEF;
  
  --text-primary: #0F111A;
  --text-secondary: #5E6978;
  --text-muted: #8892A0;
  --text-accent: #3B82F6;

  --accent-blue: #2563EB;
  --accent-cyan: #0EA5E9;
  --accent-purple: #2563EB;
  --accent-green: #00B050;
  --accent-orange: #D97706;
  --accent-red: #D61F3C;

  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #0EA5E9 50%, #06B6D4 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 60%);
  
  --bg-main: var(--bg-deep);
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: var(--text-primary);
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-glass-focus: var(--accent-blue);
  --danger-color: var(--accent-red);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Background glowing orbs (Decorations for premium aesthetics) */
body::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: -9999 !important;
  pointer-events: none;
  animation: floatOrb1 20s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  z-index: -9999 !important;
  pointer-events: none;
  animation: floatOrb2 25s ease-in-out infinite alternate;
}

@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 60px) scale(1.1);
  }
  100% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, -40px) scale(0.9);
  }
  100% {
    transform: translate(30px, -70px) scale(1.08);
  }
}

/* Glassmorphism card utility */

.card-glass {
  background: var(--bg-surface);
  background-image: var(--gradient-card);
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-radius));
  -webkit-backdrop-filter: blur(var(--blur-radius));
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--gradient-border);
  opacity: 0.6;
}


.card-glass:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

/* App Header styling */
.app-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px;
  background: transparent;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.profile-meta-box {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.profile-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
  transition: transform 0.2s ease;
}

.profile-meta-box:hover .profile-avatar-circle {
  transform: scale(1.05);
}

.profile-username-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-main);
}

.profile-username-link svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
  transition: transform 0.2s ease;
}

.profile-meta-box:hover .profile-username-link svg {
  transform: translateX(2px);
}

.beta-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
  color: var(--accent-cyan);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(0, 242, 254, 0.25);
}

.theme-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.theme-toggle-btn:active {
  transform: scale(0.92);
}

.theme-toggle-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Horizontal scroll top-bar filters */
.scroll-filters-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 20px 16px;
  scrollbar-width: none;
}

.scroll-filters-row::-webkit-scrollbar {
  display: none;
}

.filter-chip-btn {
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 11px 20px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.filter-chip-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.filter-chip-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.filter-chip-btn.active {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0044cc 100%);
  border-color: var(--accent-blue);
  box-shadow: 0 6px 20px var(--accent-purple-glow);
  color: #ffffff;
}

/* Main Balance widget card */
.balance-widget-section {
  padding: 0 20px 20px;
}

.balance-card-wrapper {
  background: linear-gradient(145deg, rgba(20, 24, 45, 0.7) 0%, rgba(10, 12, 22, 0.8) 100%);
  border: 1px solid rgba(0, 102, 255, 0.18);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.1);
}

.balance-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.balance-title-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.balance-eye-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.balance-eye-btn:hover {
  color: var(--text-main);
}

.balance-eye-btn:active {
  transform: scale(0.9);
}

.balance-eye-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.balance-main-numeric {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #fff 40%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.balance-currency-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.balance-currency-selector:hover {
  color: var(--accent-cyan);
}

.balance-currency-selector svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Quick Actions buttons row */
.actions-grid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 20px 24px;
}


.action-card-square {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.action-card-square::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gradient-border);
  opacity: 0.5;
}


.action-card-square:hover {
  border-color: rgba(0, 242, 254, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 242, 254, 0.05);
}

.action-card-square:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.02);
}

.action-card-square svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-cyan);
  filter: drop-shadow(0 0 4px var(--accent-cyan-glow));
}

.action-card-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-main);
}

/* Slider banner section */
.promo-slider-section {
  padding: 0 20px 24px;
}

.promo-slider-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.7) 0%, rgba(0, 242, 254, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 20px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.promo-slider-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.promo-text-side {
  max-width: 70%;
  z-index: 2;
}

.promo-tag-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.promo-h3-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.promo-p-desc {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 14px;
  line-height: 1.4;
}

.promo-go-btn {
  background: #ffffff;
  color: #06070d;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.promo-go-btn:hover {
  transform: scale(1.05);
}

.promo-image-side {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.promo-image-side svg {
  width: 50px;
  height: 50px;
  fill: #ffffff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

/* Dots pagination */
.promo-dots-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
  transition: all 0.25s ease;
}

.promo-dot.active {
  width: 16px;
  border-radius: 3px;
  background: var(--accent-blue);
  opacity: 1;
}

/* Section titles */
.section-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 12px;
}

.section-h2-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.section-aside-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Assets section lists */
.assets-card-container {
  margin: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asset-list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: all 0.2s ease;
}

.asset-list-row:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.01);
}

.asset-brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.asset-avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.asset-avatar-circle.usd { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.asset-avatar-circle.ton { background: linear-gradient(135deg, #0088cc 0%, #005580 100%); }
.asset-avatar-circle.rub { background: linear-gradient(135deg, #85bb65 0%, #3e8e41 100%); }
.asset-avatar-circle.stars { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.asset-avatar-circle.btc { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.asset-avatar-circle.eth { background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); }

.asset-name-symbol {
  display: flex;
  flex-direction: column;
}

.asset-symbol-txt {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.asset-full-name {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.asset-values-block {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.asset-amount-main {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
}

.asset-amount-converted {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.soon-tag-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* History lists */
.history-empty-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.skeletons-group {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.skeleton-item-bar {
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.skeleton-item-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 1.6s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.history-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.history-description {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 260px;
}

/* Project API Keys configuration panel */
.project-config-card {
  margin: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.config-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.config-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-copy-container {
  position: relative;
  display: flex;
  width: 100%;
}

.input-field-cool {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px 48px 14px 16px;
  color: var(--text-main);
  font-size: 14px;
  transition: all 0.25s ease;
}

.input-field-cool:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
  background: rgba(0,0,0,0.3);
}

.btn-copy-input {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-copy-input:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-copy-input svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.help-text-small {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Custom Interactive Button */
.btn-premium {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0044cc 100%);
  border: none;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px var(--accent-purple-glow);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.btn-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.btn-premium:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px var(--accent-purple-glow);
}

.btn-premium svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-premium-sec {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-premium-sec:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255,255,255,0.02);
}

.btn-premium-sec:active {
  transform: scale(0.98);
}

/* Service icon grids category custom styles */
.services-category-block {
  padding: 0 20px 24px;
}

.services-category-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.services-grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-icon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.service-icon-card:hover {
  border-color: var(--border-glass-focus);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 242, 254, 0.05);
}

.service-icon-card:active {
  transform: scale(0.96);
}

.service-icon-container {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0044cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px var(--accent-purple-glow);
  transition: transform 0.25s ease;
}

.service-icon-card:hover .service-icon-container {
  transform: scale(1.05);
}

.service-icon-container svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-label-txt {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-main);
}

.services-category-block.for-life .service-icon-container {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.services-category-block.other-services .service-icon-container {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

/* Profile sections */
.profile-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px 20px;
}

.profile-large-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  border: 3px solid var(--bg-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-bottom: 14px;
}

.profile-username-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-twin-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 20px 24px;
}

.profile-twin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-twin-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.profile-twin-card:active {
  transform: scale(0.97);
}

.profile-twin-card-title {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.profile-twin-card-value {
  font-size: 15px;
  font-weight: 700;
}

.menu-list-card-wrapper {
  margin: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-menu-item-row:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.profile-menu-item-row:active {
  transform: scale(0.98);
}

.profile-menu-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}

.profile-menu-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  transition: all 0.2s ease;
}

.profile-menu-item-row:hover .profile-menu-item-icon {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 4px 10px var(--accent-purple-glow);
}

.profile-menu-item-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.arrow-icon-right {
  color: var(--text-muted);
}

.arrow-icon-right svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* SPA tabs visibility screen control with Nuxt-like bounciness */
.page-screen {
  display: none;
  position: relative;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.page-screen.active {
  display: flex;
  flex-direction: column;
  animation: tabSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; /* Smooth ease-out slide-up */
}

@keyframes tabSlideUp {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Navigation footer bar */
.bottom-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-radius));
  -webkit-backdrop-filter: blur(var(--blur-radius));
  border-top: 1px solid var(--border-glass);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 10px;
  z-index: 100;
}

.footer-nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  height: 100%;
  transition: all 0.2s ease;
}

.footer-nav-tab svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.footer-nav-tab:hover {
  color: var(--text-main);
}

.footer-nav-tab.active {
  color: var(--accent-cyan);
}

.footer-nav-tab.active svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 4px var(--accent-cyan-glow));
}

/* Popup and notifications style */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, opacity 0.3s ease;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(4, 5, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.popup-modal-content {
  background: linear-gradient(135deg, #0d101d 0%, #07080d 100%);
  border: 1px solid rgba(0, 85, 255, 0.25);
  border-radius: 28px;
  padding: 30px 24px 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(37, 99, 235, 0.15);
  position: relative;
  transform: translateY(30px) scale(0.96) translate3d(0, 0, 0);
  -webkit-transform: translateY(30px) scale(0.96) translate3d(0, 0, 0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  z-index: 10000;
}

.popup-overlay.active .popup-modal-content {
  transform: translateY(0) scale(1) translate3d(0, 0, 0);
  -webkit-transform: translateY(0) scale(1) translate3d(0, 0, 0);
  opacity: 1;
}

/* Индикатор свайпа для шторки */
.bottom-sheet-handle {
  display: none;
}

/* Мобильный вид: Bottom Sheet (выдвижная шторка снизу) */
@media (max-width: 600px) {
  .popup-overlay {
    align-items: flex-end;
    padding: 0;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease, opacity 0.35s ease;
  }
  
  .popup-modal-content {
    max-width: 100%;
    border-radius: 28px 28px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 12px 24px 34px 24px;
    transform: translateY(100%) translate3d(0, 0, 0);
    -webkit-transform: translateY(100%) translate3d(0, 0, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  }
  
  .popup-overlay.active .popup-modal-content {
    transform: translateY(0) translate3d(0, 0, 0);
    -webkit-transform: translateY(0) translate3d(0, 0, 0);
  }
  
  .bottom-sheet-handle {
    display: block;
    width: 38px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin: 0 auto 18px auto;
  }
}

.popup-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.popup-close-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.1);
}

/* Form controls styling */
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text-main);
  font-size: 14px;
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

/* CUSTOM CLIENT PAYMENT GATEWAY (payment.html) STYLING */
.payment-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.payment-container {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.merchant-header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 8px;
}

.merchant-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.merchant-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
}

.merchant-details {
  display: flex;
  flex-direction: column;
}

.merchant-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.merchant-domain {
  font-size: 12px;
  color: var(--text-muted);
}

.order-amount-display {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.order-amount-fiat {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
}

.order-number-lbl {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Pay methods grid */
.pay-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.method-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-main);
}

.method-btn:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.method-btn.active {
  border-color: var(--accent-cyan);
  background: rgba(0, 242, 254, 0.03);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.08);
}

.method-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.method-label {
  font-size: 12px;
  font-weight: 700;
}

/* Sub-currencies grid */
.crypto-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.crypto-select-btn {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 10px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 600;
}

.crypto-select-btn:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.crypto-select-btn.active {
  border-color: var(--accent-blue);
  background: rgba(37, 99, 235, 0.08);
  font-weight: 700;
}

.crypto-icon-sm {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: white;
  font-weight: 800;
}
.crypto-icon-sm.usdt { background: #26a17b; }
.crypto-icon-sm.ton { background: #0088cc; }
.crypto-icon-sm.btc { background: #f7931a; }
.crypto-icon-sm.eth { background: #627eea; }
.crypto-icon-sm.sol { background: #00ffaa; color: black; }

/* Payment credentials and QR view screen */
.payment-details-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 10px;
}

.qr-code-wrapper {
  width: 170px;
  height: 170px;
  background: #ffffff;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-credentials {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.credential-item {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 12px 14px;
  position: relative;
}

.credential-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.credential-value {
  font-size: 13px;
  font-weight: 600;
  word-break: break-all;
  padding-right: 32px;
  color: var(--text-main);
}

.btn-copy-cred {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  transition: color 0.2s ease;
}

.btn-copy-cred:hover {
  color: var(--text-main);
}

.btn-copy-cred svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Interactive payment success window */
.success-screen-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 10px;
  animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon-glowing {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 240, 118, 0.1);
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 240, 118, 0.25);
  margin-bottom: 20px;
  position: relative;
}

.success-icon-glowing svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.success-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.success-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Sandbox developer tooltips */
.sandbox-alert-badge {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #f59e0b;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 12px;
  text-align: center;
}

/* Timer styles */
.timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 10px;
}

.timer-row.danger {
  color: var(--danger-color);
  animation: pulseDanger 1.2s infinite;
}

@keyframes pulseDanger {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

.timer-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Copied notification toast */
.toast-msg {
  position: fixed;
  top: 16px;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 380px;
  transform: translateX(-50%) translateY(-60px) translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%) translateY(-60px) translate3d(0, 0, 0);
  background: rgba(13, 17, 30, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 85, 255, 0.08);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.175), opacity 0.35s ease;
  will-change: transform, opacity;
}

.toast-msg::before {
  content: '🔔';
  font-size: 16px;
  flex-shrink: 0;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0) translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%) translateY(0) translate3d(0, 0, 0);
}

[data-theme="light"] .toast-msg {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 20px rgba(0, 85, 255, 0.04);
  color: #1c1c1e;
}

/* Responsive adjust */
@media(max-width: 480px) {
  .actions-grid-row {
    padding: 0 14px 20px;
    gap: 8px;
  }
  .scroll-filters-row {
    padding: 10px 14px 14px;
  }
  .balance-widget-section {
    padding: 0 14px 16px;
  }
  .assets-card-container {
    margin: 0 14px 16px;
  }
  .project-config-card {
    margin: 0 14px 20px;
  }
  .profile-twin-cards-row {
    padding: 0 14px 20px;
  }
  .menu-list-card-wrapper {
    margin: 0 14px 24px;
  }
  .services-grid-box {
    padding: 0 14px;
  }
}

/* Центральная круглая кнопка сканера QR в футере */
.center-scan-btn {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0044cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px var(--accent-purple-glow);
  transform: translateY(-8px);
  transition: all 0.25s ease;
}

.center-scan-btn:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.4);
}

.center-scan-btn:active {
  transform: translateY(-6px) scale(0.95);
}

.center-scan-btn svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
  filter: none !important;
}

/* Анимация лазерной линии сканирования */
@keyframes scanLine {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Слайдер промо-баннеров */
.promo-slider-section {
  padding: 0 20px 24px 20px;
  position: relative;
  overflow: hidden;
}

.promo-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.promo-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.promo-carousel-viewport:active {
  cursor: grabbing;
}

.promo-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding-bottom: 4px;
}

.promo-slide-card {
  width: 290px;
  height: 140px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

/* Градиенты карточек */
.theme-blue-gradient {
  background: linear-gradient(135deg, #0f2c59 0%, #0055ff 100%);
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.2);
}

.theme-sky-gradient {
  background: linear-gradient(135deg, #0055ff 0%, #00a2ff 100%);
  box-shadow: 0 10px 30px rgba(0, 162, 255, 0.2);
}

.theme-dark-gradient {
  background: linear-gradient(135deg, #181d2b 0%, #2f3b52 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.promo-slide-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 60%;
  z-index: 2;
}

.promo-slide-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.promo-tag-mini {
  font-size: 10px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-slide-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  line-height: 1.25;
}

.promo-slide-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.promo-slide-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.promo-slide-btn:hover {
  background: white;
  color: black;
}

.promo-slide-btn.download-style {
  background: rgba(255, 255, 255, 0.12);
}

/* Иллюстрации внутри слайдов */
.promo-slide-visual {
  width: 90px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.visual-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card-rf {
  width: 70px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: rotate(-10deg);
  position: relative;
}

.visual-card-rf::after {
  content: 'MIR';
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 7px;
  font-weight: 800;
  color: white;
}

.visual-card-intl {
  width: 70px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transform: rotate(15deg);
  position: relative;
}

.visual-card-intl::after {
  content: 'VISA';
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 7px;
  font-weight: 800;
  color: white;
}

.appstore-logo-3d {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: #007aff;
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
  color: white;
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Пагинация точками */
.promo-dots-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.promo-dot.active {
  width: 18px;
  border-radius: 3px;
  background: var(--primary-color);
}

/* Переработка быстрых действий под iOS Control Center */
.action-card-square {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 24px !important;
  padding: 18px 10px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.action-card-square:hover {
  border-color: rgba(0, 85, 255, 0.2) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.08) !important;
}

.action-card-square:active {
  transform: scale(0.95) !important;
}

.action-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(0, 128, 255, 0.05) 100%);
  border: 1px solid rgba(0, 85, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: #0080ff;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 85, 255, 0.05);
}

.action-card-square:hover .action-icon-wrapper {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(0, 85, 255, 0.25) 0%, rgba(0, 128, 255, 0.1) 100%);
  box-shadow: 0 0 15px rgba(0, 85, 255, 0.25);
  color: #ffffff;
}

.action-icon-wrapper svg {
  width: 22px !important;
  height: 22px !important;
  fill: currentColor !important;
  filter: none !important;
}

/* Очистка и модернизация фильтр-кнопок */
.filter-chip-btn {
  white-space: nowrap !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: none !important;
  color: var(--text-muted) !important;
  padding: 10px 18px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

.filter-chip-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-main) !important;
}

.filter-chip-btn.active {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0044cc 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 85, 255, 0.3) !important;
}

/* Переопределение для светлой темы */
[data-theme="light"] .filter-chip-btn {
  background: rgba(0, 0, 0, 0.05) !important;
  color: var(--text-muted) !important;
}

[data-theme="light"] .filter-chip-btn:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  color: var(--text-main) !important;
}

[data-theme="light"] .filter-chip-btn.active {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0033aa 100%) !important;
  color: #ffffff !important;
}

/* Премиальный индикатор Sandbox статуса */
.user-status-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 179, 0, 0.1);
  color: #ffb300;
  border: 1px solid rgba(255, 179, 0, 0.2);
  padding: 2.5px 8px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
  margin-left: 6px;
}

.user-status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  box-shadow: 0 0 6px currentColor;
}

/* Стили кнопок выбора валюты вывода с адаптивной темой */
.coin-pick-btn {
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  padding: 8px 4px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.coin-pick-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}
.coin-pick-btn.active {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan) !important;
}
[data-theme="light"] .coin-pick-btn:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
}
[data-theme="light"] .coin-pick-btn.active {
  background: rgba(0, 122, 204, 0.12);
}


body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}
