/* ═══════════════════════════════════════════════════════════════
   MOBILE IMBA v2 — Premium Visual Upgrade
   Фокус: доверие, дорогой вид, glass morphism, gradient borders
   ═══════════════════════════════════════════════════════════════ */

/* ═══ CSS VARIABLES ═══ */

:root {
  --bg: #000;
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-border-hover: rgba(255, 255, 255, 0.08);
  --gold-glow: rgba(255, 215, 0, 0.08);
  --purple-glow: rgba(168, 85, 247, 0.06);
}

/* ═══ ШАГ 1: МНОГОСЛОЙНЫЙ ПРЕМИУМ ФОН ═══ */

body {
  background: #000 !important;
  position: relative;
}

/* Gradient mesh — enhanced with better visibility */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    /* Основной золотой glow — увеличенная видимость */
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 45%),
    /* Фиолетовый accent — более насыщенный */
    radial-gradient(ellipse 90% 70% at 100% 100%, rgba(139, 92, 246, 0.07) 0%, transparent 45%),
    /* Центральное subtle highlight */
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 255, 255, 0.015) 0%, transparent 50%),
    /* Глубокая виньетка для фокуса на контенте */
    radial-gradient(ellipse 150% 100% at 50% 0%, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 0;
  display: block !important;
}

/* Subtle noise texture + vignette */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  display: block !important;
}

/* Ensure content is above background layers */
.header,
.main,
.hero,
.container,
section,
footer {
  position: relative;
  z-index: 1;
}

/* ═══ ОТКЛЮЧЕНИЕ БЕСКОНЕЧНЫХ АНИМАЦИЙ ═══ */

/* Орбы — скрыть полностью */
.orb,
.orb-purple,
.bg-orb,
.bg-orb-1,
.bg-orb-2,
.bg-orb-3,
.bg-orb-4,
.bg-stars,
.bg-star {
  display: none !important;
}

/* Частицы — скрыть полностью */
.particles,
.particle {
  display: none !important;
}

/* Hero badge pulse — отключить */
.hero-badge::before {
  animation: none !important;
  opacity: 1;
}

/* Убрать встроенное свечение hero */
.hero::before,
.hero::after {
  display: none !important;
}

.hero {
  background: transparent !important;
}

/* Убираем все бесконечные keyframes */
.orb-pulse,
.orb-float,
.orb-breathe,
.orb-drift,
.particle-float,
.particle-rise,
.float,
.btn-shine,
.btn-shine-premium,
.pulse {
  animation: none !important;
}

/* ═══ ШАГ 2: HEADER/NAV С BLUR ═══ */

.header {
  background: rgba(0, 0, 0, 0.7) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* iOS safe area */
@supports (padding-top: env(safe-area-inset-top)) {
  .header {
    padding-top: calc(12px + env(safe-area-inset-top));
  }
}

/* ═══ ШАГ 3: GLASS MORPHISM КАРТОЧКИ ═══ */

/* Базовый glass-эффект для карточек */
.feature,
.stat,
.pay-method,
.review-card,
.faq-item,
.step-card,
.info-card,
.trust-card {
  background: var(--glass-bg) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border) !important;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out;
}

.feature:hover,
.stat:hover,
.pay-method:hover,
.review-card:hover,
.step-card:hover {
  border-color: var(--glass-border-hover) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ═══ ШАГ 4: STATS С ЦВЕТНЫМИ ЛИНИЯМИ СВЕРХУ ═══ */

.stat {
  position: relative;
  overflow: hidden;
}

/* Цветные линии для каждого stat */
.stat:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  border-radius: 0 0 2px 2px;
}

.stat:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  border-radius: 0 0 2px 2px;
}

.stat:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
  border-radius: 0 0 2px 2px;
}

.stat:nth-child(4)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  border-radius: 0 0 2px 2px;
}

/* ═══ ШАГ 5: FORM-CARD С GRADIENT BORDER ═══ */

.form-card {
  position: relative;
  background: var(--bg-card) !important;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border) !important;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 215, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  overflow: hidden;
}

/* Subtle золотая линия сверху */
.form-card::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

/* ═══ ШАГ 6: PREMIUM КНОПКИ ═══ */

/* Primary button with shine */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent2) 50%,
    var(--accent) 100%
  );
  background-size: 100% 100%;
  position: relative;
  box-shadow:
    0 4px 16px rgba(255, 215, 0, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    transform 0.1s ease-out,
    box-shadow 0.15s ease-out;
}

/* Shine highlight сверху */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* Убрать бегущий shine */
.btn-primary::after {
  animation: none !important;
  display: none;
}

/* Active state */
.btn-primary:active {
  transform: scale(0.97);
  box-shadow:
    0 2px 8px rgba(255, 215, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Hover state */
.btn-primary:hover {
  box-shadow:
    0 6px 24px rgba(255, 215, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Secondary/Outline buttons */
.btn-secondary,
.btn-outline {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.1s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out;
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--glass-border-hover);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-secondary:active,
.btn-outline:active {
  transform: scale(0.97);
}

/* Все transitions для кнопок */
.btn,
.quick-btn {
  transition:
    transform 0.1s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out,
    background-color 0.15s ease-out;
}

/* ═══ ШАГ 7: УЛУЧШЕННЫЕ ИНПУТЫ ═══ */

.field-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.2s ease-out,
    box-shadow 0.2s ease-out,
    background-color 0.2s ease-out;
}

/* Gold glow при фокусе */
.field-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow:
    0 0 0 4px rgba(255, 215, 0, 0.08),
    0 0 20px rgba(255, 215, 0, 0.05);
  background: rgba(0, 0, 0, 0.5);
  outline: none;
}

/* Error state */
.field-input.error,
input.error {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow:
    0 0 0 4px rgba(239, 68, 68, 0.08),
    0 0 16px rgba(239, 68, 68, 0.05);
}

/* Success state */
.field-input.success,
input.success {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.08),
    0 0 16px rgba(34, 197, 94, 0.05);
}

/* ═══ ШАГ 8: ВИЗУАЛ СООБЩЕНИЙ ═══ */

.msg.err {
  background: rgba(239, 68, 68, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.08);
}

.msg.ok {
  background: rgba(34, 197, 94, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #86efac;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.06);
}

.msg.err::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.msg-sub {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--muted);
  font-family: monospace;
}

/* ═══ ШАГ 9: PREMIUM LOADING SPINNER ═══ */

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.btn[data-loading="1"] {
  pointer-events: none;
  opacity: 0.85;
}

.btn[data-loading="1"] .btn-spinner {
  display: inline-block;
}

/* ═══ ШАГ 10: SUCCESS-BOX ПРЕМИУМ ═══ */

.success-box {
  position: relative;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(34, 197, 94, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.success-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.success-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.success-id {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.success-id span {
  color: var(--muted);
}

.success-id code {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
  user-select: all;
  cursor: text;
}

.success-note {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border-left: 3px solid rgba(34, 197, 94, 0.4);
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ═══ ШАГ 11: КОМПАКТНЫЕ КНОПКИ ═══ */

.btn-sm {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-sm.btn-primary {
  box-shadow:
    0 3px 12px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-sm.btn-outline {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--glass-border);
}

/* ═══ ШАГ 12: CTA/PROMO CARDS ═══ */

.cta-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 215, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.promo-banner-inner {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Premium card */
.premium-card::before,
.premium-card::after {
  animation: none !important;
}

/* ═══ ШАГ 13: QUICK BUTTONS GLASS ═══ */

.quick-btn {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.quick-btn:hover {
  border-color: var(--glass-border-hover);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.quick-btn.active,
.quick-btn:active {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow:
    0 2px 8px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ═══ ШАГ 14: PAY METHODS ENHANCED ═══ */

.pay-method {
  position: relative;
  overflow: hidden;
}

.pay-method.selected {
  border-color: rgba(255, 215, 0, 0.3) !important;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.pay-method.selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

/* ═══ HERO SECTION — поднять контент ═══ */

.hero {
  padding-top: 20px !important;
  padding-bottom: 32px !important;
}

.hero .container {
  padding-top: 0 !important;
}

/* Скрыть badge если остался в HTML */
.hero-badge {
  display: none !important;
}

/* ═══ HERO TITLE ═══ */

/* ═══ PREMIUM TYPOGRAPHY ═══ */

.hero-title {
  text-align: center !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  line-height: 1.25 !important;
}

/* Русский текст — Outfit (чистый, ровный рендеринг кириллицы) */
.hero-title-ru {
  display: block;
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

/* Золотой акцент — Outfit для ровности */
.hero-title-accent {
  display: block;
  font-family: 'Outfit', sans-serif !important;
  font-size: 32px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  background: linear-gradient(135deg, #ffd700 0%, #fff 35%, #ffd700 65%, #ff9500 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
  -webkit-font-smoothing: antialiased;
}

/* Английский текст — Orbitron (латиница рендерится хорошо) */
.hero-title-en {
  display: block;
  font-family: 'Orbitron', monospace !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-align: center !important;
  margin-top: 12px !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page titles на внутренних страницах */
.page-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.page-title .accent {
  background: linear-gradient(135deg, #ffd700 0%, #fff 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.page-title .accent-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #fff 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

/* Section titles с декором */
.section-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Page subtitle */
.page-subtitle {
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Feature descriptions */
.feature-desc,
.step-item-desc {
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Labels с акцентом */
.field-label {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 11px;
  font-weight: 600;
}

/* ═══ УБРАТЬ СВЕЧЕНИЕ С BADGES ═══ */

.page-badge,
.hero-badge {
  box-shadow: none !important;
}

.page-badge::before,
.page-badge::after,
.hero-badge::before,
.hero-badge::after {
  display: none !important;
  box-shadow: none !important;
  animation: none !important;
}

.page-badge--gold,
.page-badge--cyan {
  box-shadow: none !important;
  filter: none !important;
}

/* ═══ PAGE-SPECIFIC COLOR ACCENTS ═══ */

/* BUY PAGE — золотой акцент */
body.page-buy .form-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

body.page-buy .page-badge {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.25);
  color: #ffd700;
  box-shadow: none !important;
}

/* SELL PAGE — циановый акцент */
body.page-sell .form-card::before {
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), transparent);
}

body.page-sell .form-card {
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(6, 182, 212, 0.04);
}

body.page-sell .btn-primary--cyan::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
}

/* PROMO PAGE — фиолетовый акцент */
body.page-promo .form-card::before,
body.page-promo .promo-card--main::before {
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

/* Background glow для promo */
body.page-promo::before {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
}

/* FAQ PAGE — нейтральный с cyan */
body.page-faq .faq-item[open] {
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.05);
}

/* CONTACTS PAGE */
body.page-contacts .contact-card {
  border-color: rgba(255, 215, 0, 0.1);
}

body.page-contacts .contact-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.05);
}

/* ═══ IMPROVED COMPONENTS ═══ */

/* TRUST BAR */
.trust-bar {
  padding: 14px 0;
}

.trust-item {
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.trust-item svg {
  filter: drop-shadow(0 0 6px currentColor);
}

/* FEATURES — ИКОНКИ С GLOW */
.feature-icon {
  position: relative;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-icon svg {
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
}

/* STEPS — НОМЕРА С GLOW */
.step-num {
  background: linear-gradient(135deg, #ffd700 0%, #ff9500 100%);
  box-shadow:
    0 4px 15px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 800;
}

.step-item {
  position: relative;
}

/* FAQ ITEMS */
.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 215, 0, 0.1);
}

.faq-item p {
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* PROMO CARDS */
.promo-card {
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.promo-card--main {
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(168, 85, 247, 0.08);
}

.promo-card--main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.6), transparent);
}

.promo-card-prize {
  font-family: 'Orbitron', monospace;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #fff 40%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
  margin: 12px 0;
}

.promo-card-badge {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.05em;
}

/* ═══ FOOTER POLISH ═══ */

.footer {
  position: relative;
  padding-top: 40px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.12), transparent);
}

.footer-brand img {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4));
}

.footer-brand span {
  background: linear-gradient(135deg, #ffd700, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer-links a {
  position: relative;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   BUY/SELL PAGES ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ═══ RESULT BOXES — Premium Glow ═══ */

.result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.result-box {
  padding: 14px 12px !important;
  min-height: 72px !important;
  max-height: 72px !important;
  height: 72px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Gold box — ПОЛУЧИШЬ */
.result-box--gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, rgba(255, 149, 0, 0.03) 100%);
  border-color: rgba(255, 215, 0, 0.15);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.result-box--gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

/* Green box — К ОПЛАТЕ */
.result-box--green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(22, 163, 74, 0.03) 100%);
  border-color: rgba(34, 197, 94, 0.15);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(34, 197, 94, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.result-box--green::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
}

/* Cyan box (для sell) */
.result-box--cyan {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.06) 0%, rgba(8, 145, 178, 0.03) 100%);
  border-color: rgba(6, 182, 212, 0.15);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(6, 182, 212, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.result-box--cyan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.4), transparent);
}

.result-label {
  font-size: 10px !important;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px !important;
  white-space: nowrap;
}

.result-value {
  font-family: 'Orbitron', monospace;
  font-size: 18px !important;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.2 !important;
}

/* Символ валюты на той же строке */
.result-value span {
  display: inline !important;
}

/* Glow эффект для значений */
.result-box--gold .result-value {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.result-box--green .result-value {
  color: var(--green);
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.result-box--cyan .result-value {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* ═══ QUICK BUTTONS — Premium Glass ═══ */

.quick-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

[data-quick-amount] {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

[data-quick-amount]:active {
  transform: scale(0.95);
}

[data-quick-amount].active {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.35);
  color: var(--accent);
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ═══ SLIDER — Premium Gold ═══ */

.slider-wrap {
  margin-bottom: 20px;
  padding: 0 4px;
}

.slider,
input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb,
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ffd700, #ff9500);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid rgba(0, 0, 0, 0.3);
  box-shadow:
    0 2px 10px rgba(255, 215, 0, 0.4),
    0 0 20px rgba(255, 215, 0, 0.2);
  transition: transform 0.15s ease;
}

.slider::-webkit-slider-thumb:active,
input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══ CALC INPUT — Refined ═══ */

.calc-wrap {
  position: relative;
  margin-bottom: 16px;
}

.calc-input,
input[name="gold"] {
  width: 100%;
  padding: 18px 50px 18px 50px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  outline: none;
  transition: all 0.2s ease;
}

.calc-input:focus,
input[name="gold"]:focus {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow:
    0 0 0 4px rgba(255, 215, 0, 0.08),
    0 0 30px rgba(255, 215, 0, 0.1);
}

.calc-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  opacity: 0.7;
}

.calc-suffix {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══ SKIN CARD — Premium ═══ */

.skin-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, rgba(139, 92, 246, 0.02) 100%);
  border: 1.5px solid rgba(255, 215, 0, 0.12);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.skin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.skin-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.skin-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.skin-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.skin-title span {
  color: var(--accent);
}

.skin-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.skin-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.skin-val {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.skin-val-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.skin-val-num {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

/* ═══ PAY METHODS — Premium ═══ */

.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.pay-method:active {
  transform: scale(0.98);
}

.pay-method.selected,
.pay-method:has(input:checked) {
  background: rgba(255, 215, 0, 0.04);
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow:
    0 0 25px rgba(255, 215, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Radio button */
.pay-radio {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pay-method.selected .pay-radio,
.pay-method:has(input:checked) .pay-radio {
  border-color: var(--accent);
  background: rgba(255, 215, 0, 0.1);
}

.pay-method.selected .pay-radio::after,
.pay-method:has(input:checked) .pay-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Pay icons */
.pay-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.pay-icon--sbp {
  background: rgba(124, 77, 255, 0.12);
  color: #a78bfa;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.1);
}

.pay-icon--card {
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.pay-icon--sber {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.pay-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.pay-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1px;
}

.pay-badge {
  margin-left: auto;
  padding: 5px 10px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ═══ UPLOAD AREA — Premium ═══ */

.upload-area {
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.upload-area:active {
  transform: scale(0.99);
}

.upload-area.dragover,
.upload-area:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.02);
}

.upload-area.has-file,
.upload-area.has-preview {
  border-style: solid;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.04);
}

.upload-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  color: var(--green);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.upload-text {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══ PROMO FIELD — Collapsible ═══ */

.promo-field {
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}

.promo-field-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: none;
  border: none;
  color: #a855f7;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.promo-field-toggle .promo-chevron {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.promo-field.collapsed .promo-field-content {
  display: none;
}

.promo-field:not(.collapsed) .promo-chevron {
  transform: rotate(180deg);
}

.promo-field-content {
  padding: 0 16px 16px;
}

.promo-field-row {
  display: flex;
  gap: 10px;
}

.promo-field-input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}

.promo-field-input:focus {
  border-color: rgba(168, 85, 247, 0.5);
  outline: none;
}

.promo-field-btn {
  padding: 12px 16px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 10px;
  color: #a855f7;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.promo-field-btn:active {
  transform: scale(0.97);
}

/* ═══ STEP DOTS — Premium ═══ */

.steps-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.steps-dots .dot {
  width: 32px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.steps-dots .dot.active {
  width: 48px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* ═══ STEP HEAD — Premium ═══ */

.step-head {
  margin-bottom: 20px;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.step-title svg {
  color: var(--accent);
  width: 22px;
  height: 22px;
}

.step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 32px;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ═══ FAQ ITEMS — Premium Accordion ═══ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item summary {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 215, 0, 0.12);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.03);
}

.faq-item p {
  padding: 0 20px 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACTS PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ═══ CONTACT CARDS — Premium ═══ */

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.contact-card:active {
  transform: scale(0.98);
}

.contact-card:hover {
  border-color: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.04);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-icon--telegram {
  background: rgba(42, 171, 238, 0.12);
  color: #2AABEE;
  box-shadow: 0 0 20px rgba(42, 171, 238, 0.1);
}

.contact-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.contact-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   PROMO PAGE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ═══ PROMO CARDS — Premium (Enhanced) ═══ */

.promo-card {
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.promo-card--main {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(168, 85, 247, 0.08);
}

.promo-card--main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.promo-card-badge {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #f87171;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.promo-card-prize {
  font-family: 'Orbitron', monospace;
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd700 0%, #fff 40%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
  margin-bottom: 8px;
}

.promo-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.promo-card-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══ SCROLLBAR STYLING ═══ */

/* Custom scrollbar for desktop */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.3);
}

/* ═══ MOBILE BREAKPOINTS ═══ */

/* Result boxes responsive sizing */
@media (max-width: 380px) {
  .result-value {
    font-size: 16px !important;
  }

  .result-box {
    min-height: 68px !important;
    max-height: 68px !important;
    height: 68px !important;
  }
}

@media (max-width: 340px) {
  .result-value {
    font-size: 14px !important;
  }
}

@media (max-width: 360px) {
  .hero-title-ru {
    font-size: 26px !important;
    letter-spacing: 0.06em !important;
  }

  .hero-title-accent {
    font-size: 26px !important;
  }

  .hero-title-en {
    font-size: 24px !important;
  }

  .hero-subtitle {
    font-size: 13px !important;
  }

  .result-box {
    padding: 10px 8px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    height: 68px !important;
  }

  .result-value {
    font-size: 15px !important;
  }

  .quick-btn,
  [data-quick-amount] {
    padding: 12px 8px;
    font-size: 12px;
  }

  .calc-input,
  input[name="gold"] {
    font-size: 20px;
    padding: 16px 45px;
  }

  .promo-card-prize {
    font-size: 30px;
  }

  .success-box {
    padding: 20px 16px;
  }

  .success-title {
    font-size: 16px;
  }

  .success-id code {
    font-size: 13px;
    padding: 6px 12px;
  }

  .btn-sm {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 12px;
  }
}

/* Smaller backdrop blur on low-end devices */
@media (max-width: 480px) {
  .feature,
  .stat,
  .pay-method,
  .form-card,
  .success-box,
  .cta-card {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

/* ═══ REDUCED MOTION ═══ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══ FALLBACK FOR NO BACKDROP-FILTER SUPPORT ═══ */

@supports not (backdrop-filter: blur(1px)) {
  .header {
    background: rgba(0, 0, 0, 0.95) !important;
  }

  .feature,
  .stat,
  .pay-method,
  .form-card,
  .success-box,
  .cta-card,
  .quick-btn,
  .btn-outline,
  .btn-secondary {
    background: rgba(15, 15, 15, 0.95) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FIX v7 — Hero layout + красная точка + баланс
   ═══════════════════════════════════════════════════════════════ */

/* Hero title — оптимальные отступы */
.hero-title {
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

/* Hero subtitle — ближе к заголовку */
.hero-subtitle {
  margin-top: 12px !important;
  margin-bottom: 28px !important;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA buttons — оптимальные отступы */
.cta-buttons {
  margin-bottom: 32px !important;
}

/* Stats — компактнее */
.stats {
  gap: 8px !important;
}

.stat {
  padding: 14px 8px !important;
}

/* ═══ FIX: Promo banner — ближе к stats ═══ */
.promo-banner {
  margin-top: 16px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Уменьшить отступ снизу у stats */
.stats {
  margin-bottom: 0 !important;
}

/* Section после promo — нормальный отступ */
.promo-banner + .container,
.promo-banner + section {
  margin-top: 32px !important;
}

/* Section title — оптимальный отступ */
.section-title {
  margin-top: 40px !important;
  margin-bottom: 20px !important;
}

/* ═══ FIX: Скрыть пустые элементы ошибок и индикаторы ═══ */

.field-error:empty,
[data-file-error]:empty,
[data-msg]:empty,
.msg:empty {
  display: none !important;
}

/* Убрать точку у msg если нет класса err */
.msg:not(.err)::before {
  display: none !important;
}
