:root {
  --bg-primary: #07090e;
  --bg-secondary: #0d121c;
  --glass-surface: rgba(18, 25, 38, 0.75);
  --glass-surface-hover: rgba(28, 38, 56, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-highlight: rgba(100, 181, 246, 0.35);

  --accent-cyan: #00d2ff;
  --accent-blue: #3a86ff;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;

  --tg-bg: #0e1621;
  --tg-surface: #17212b;
  --tg-bubble-bot: #182533;
  --tg-bubble-user: #2b5278;
  --tg-button-bg: #202b36;
  --tg-button-hover: #293847;

  --text-main: #f0f6fc;
  --text-muted: #8b9bb4;
  --text-dim: #5c6b84;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --spring-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Фон с моушен-градиентами */
.bg-mesh-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.4;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.4), transparent 70%);
  top: -120px;
  left: -100px;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.3), transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -6s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 134, 255, 0.25), transparent 70%);
  top: 40%;
  left: 45%;
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.06); }
  100% { transform: translate(-30px, 40px) scale(0.96); }
}

.blueprint-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.8;
}

/* Верхняя стеклянная навигация */
.glass-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 16, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  height: 62px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-icon-wrapper {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(58, 134, 255, 0.15));
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.nav-svg-icon {
  width: 20px;
  height: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.2px;
  color: #ffffff;
}

.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.live-pulse-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseLight 1.8s infinite;
}

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

.pulse-label {
  font-size: 11px;
  font-weight: 700;
  color: #6ee7b7;
  letter-spacing: 0.5px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-icon-btn {
  width: 36px;
  height: 36px;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.control-icon-btn:hover {
  background: var(--glass-surface-hover);
  border-color: var(--glass-border-highlight);
  color: #ffffff;
  transform: translateY(-1px);
}

.glass-dev-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(32, 44, 66, 0.6), rgba(18, 25, 38, 0.9));
  border: 1px solid var(--glass-border);
  color: #c4d7ed;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.glass-dev-btn:hover {
  border-color: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.25);
  transform: translateY(-1px);
}

.glass-dev-btn.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.25));
  border-color: var(--accent-emerald);
  color: #a7f3d0;
}

/* Рабочая область */
.workspace-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 18px auto;
  padding: 0 20px 20px 20px;
  display: flex;
  gap: 24px;
  height: calc(100vh - 100px);
}

/* Панель администратора */
.admin-glass-sidebar {
  width: 480px;
  background: var(--glass-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  animation: drawerSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes drawerSlide {
  from { opacity: 0; transform: translateX(-30px) scale(0.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.sidebar-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-tag-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-shield {
  width: 34px;
  height: 34px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.admin-status-text {
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 500;
}

.glass-logout-btn {
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #fda4af;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.glass-logout-btn:hover {
  background: rgba(244, 63, 94, 0.25);
  color: #ffffff;
}

.scenario-pills-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.terminal-container {
  flex: 1;
  background: #090d14;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

.terminal-header {
  height: 38px;
  background: #101622;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-tab-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.terminal-copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c4d7ed;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.terminal-copy-btn:hover {
  background: rgba(0, 210, 255, 0.15);
  color: var(--accent-cyan);
  border-color: rgba(0, 210, 255, 0.3);
}

.terminal-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
}

#adminOutput {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.55;
  color: #93c5fd;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Фрейм смартфона */
.phone-viewport-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.device-frame {
  width: 100%;
  max-width: 470px;
  height: 100%;
  background: #141c26;
  border-radius: 36px;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.device-header-speaker {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 4px auto 8px auto;
}

.device-screen {
  flex: 1;
  background: var(--tg-bg);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tg-app-header {
  background: var(--tg-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tg-user-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-bot-avatar {
  width: 40px;
  height: 40px;
  background: #1e293b;
  border: 1px solid rgba(100, 181, 246, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--accent-emerald);
  border: 2px solid var(--tg-surface);
  border-radius: 50%;
}

.tg-header-meta {
  display: flex;
  flex-direction: column;
}

.tg-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tg-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
}

.tg-verified-badge {
  background: #3897f0;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tg-status-subtitle {
  font-size: 11.5px;
  color: #6c7c94;
}

.tg-action-reset {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c4d7ed;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tg-action-reset:hover {
  background: rgba(0, 210, 255, 0.15);
  color: var(--accent-cyan);
  border-color: rgba(0, 210, 255, 0.3);
}

/* Область сообщений */
.tg-chat-stream {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

.message-bubble {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  animation: bubblePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  word-break: break-word;
}

@keyframes bubblePop {
  0% { opacity: 0; transform: translateY(10px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.message-bubble.bot {
  background: var(--tg-bubble-bot);
  color: #e4ecf7;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.message-bubble.user {
  background: linear-gradient(135deg, #2b5278, #1f4263);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px rgba(43, 82, 120, 0.4);
}

/* Карточка вложения */
.file-attachment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 14px;
  border-radius: 12px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.file-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.file-meta {
  display: flex;
  flex-direction: column;
}

.file-name {
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
}

.file-size {
  font-size: 11px;
  color: #94a3b8;
}

.inline-contact-card {
  margin-top: 10px;
  display: block;
}

.inline-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0088cc, #006699);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.35);
  transition: var(--spring-bounce);
}

.inline-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.5);
  color: #ffffff;
}

/* Индикатор набора текста */
.typing-bubble-wrapper {
  align-self: flex-start;
  margin: 0 0 10px 16px;
  background: var(--tg-bubble-bot);
  padding: 8px 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #64b5f6;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; }
}

/* Нижняя панель */
.tg-bottom-bar {
  background: var(--tg-surface);
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.keyboard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  max-height: 180px;
  overflow-y: auto;
}

.tg-kb-btn {
  flex: 1 1 calc(50% - 8px);
  background: var(--tg-button-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  padding: 11px 12px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--spring-bounce);
  text-align: center;
}

.tg-kb-btn:hover {
  background: var(--tg-button-hover);
  border-color: var(--glass-border-highlight);
  color: #ffffff;
  transform: translateY(-2px);
}

.tg-kb-btn:active {
  transform: scale(0.97);
}

.tg-kb-btn.full-width {
  flex: 1 1 100%;
}

.chat-input-pill {
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(14, 22, 33, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 4px 6px;
  transition: var(--transition-smooth);
}

.chat-input-pill:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.2);
}

.pill-btn-attach {
  background: transparent;
  border: none;
  color: #8bb3db;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.chat-input-pill input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
  padding: 8px 4px;
  font-family: var(--font-sans);
}

.chat-input-pill input[type="text"]::placeholder {
  color: #5c6b84;
}

.pill-btn-send {
  background: linear-gradient(135deg, var(--accent-blue), #2563eb);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--spring-bounce);
}

.pill-btn-send:hover {
  transform: scale(1.06);
}

/* Модальное окно */
.glass-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 6, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.glass-modal-card {
  width: 100%;
  max-width: 400px;
  background: rgba(18, 25, 38, 0.95);
  border: 1px solid var(--glass-border-highlight);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  animation: modalPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  0% { opacity: 0; transform: scale(0.94) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-glow-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.modal-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-icon-shield {
  width: 44px;
  height: 44px;
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-header-texts {
  flex: 1;
}

.modal-heading {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.modal-subtext {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-field-group label {
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
}

.input-with-icon {
  display: flex;
  align-items: center;
  background: rgba(10, 15, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 12px;
  transition: var(--transition-smooth);
}

.input-with-icon:focus-within {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.25);
}

.field-icon-svg {
  color: var(--text-muted);
  margin-right: 10px;
}

.input-with-icon input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  font-family: var(--font-sans);
}

.auth-error-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #fca5a5;
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: 10px;
}

.modal-actions-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.btn-glass-secondary {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 12px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.btn-glow-primary {
  flex: 1.5;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  border: none;
  color: #030a16;
  padding: 12px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.35);
  transition: var(--spring-bounce);
}

.btn-glow-primary:hover {
  transform: translateY(-2px);
}

/* Всплывающий тост */
.toast-popup {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(18, 25, 38, 0.95);
  border: 1px solid var(--accent-cyan);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--spring-bounce);
}

.toast-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
