/* === Viboscope Landing — Cyberpunk / MadASCII === */

:root {
  --green: #00ff41;
  --green-dim: rgba(0, 255, 65, 0.3);
  --green-bg: #0a1a0a;
  --green-card: rgba(0, 255, 65, 0.03);
  --green-border: rgba(0, 255, 65, 0.15);
  --green-glow: rgba(0, 255, 65, 0.5);
  --bg: #000000;
  --font-mono: 'Courier New', Courier, monospace;
  --font-display: 'Press Start 2P', monospace;
  --font-body: 'Space Grotesk', -apple-system, sans-serif;
}

/* === Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--green);
  font-family: var(--font-mono);
  overflow-x: hidden;
}

/* === Emoji Rain — outline style === */
.rain-bg {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0; overflow: hidden; opacity: 0.2;
}
.rain-col {
  position: absolute; top: -100%;
  font-size: 18px; line-height: 1.4;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 4px;
  animation: fall linear infinite;
  -webkit-text-stroke: 1px rgba(0, 255, 65, 0.5);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@keyframes fall {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(100vh + 100%)); }
}
.rain-col:nth-child(1)  { left:1%;  animation-duration:12s; animation-delay:-2s;  opacity:0.6; }
.rain-col:nth-child(2)  { left:6%;  animation-duration:16s; animation-delay:-8s;  opacity:0.4; }
.rain-col:nth-child(3)  { left:11%; animation-duration:10s; animation-delay:-4s;  opacity:0.7; }
.rain-col:nth-child(4)  { left:16%; animation-duration:18s; animation-delay:-12s; opacity:0.3; }
.rain-col:nth-child(5)  { left:21%; animation-duration:13s; animation-delay:-6s;  opacity:0.5; }
.rain-col:nth-child(6)  { left:26%; animation-duration:15s; animation-delay:-15s; opacity:0.6; }
.rain-col:nth-child(7)  { left:31%; animation-duration:11s; animation-delay:-1s;  opacity:0.4; }
.rain-col:nth-child(8)  { left:36%; animation-duration:14s; animation-delay:-9s;  opacity:0.7; }
.rain-col:nth-child(9)  { left:41%; animation-duration:13s; animation-delay:-3s;  opacity:0.3; }
.rain-col:nth-child(10) { left:46%; animation-duration:17s; animation-delay:-11s; opacity:0.5; }
.rain-col:nth-child(11) { left:51%; animation-duration:12s; animation-delay:-7s;  opacity:0.6; }
.rain-col:nth-child(12) { left:56%; animation-duration:15s; animation-delay:-14s; opacity:0.4; }
.rain-col:nth-child(13) { left:61%; animation-duration:10s; animation-delay:-5s;  opacity:0.7; }
.rain-col:nth-child(14) { left:66%; animation-duration:18s; animation-delay:-10s; opacity:0.3; }
.rain-col:nth-child(15) { left:71%; animation-duration:13s; animation-delay:-2s;  opacity:0.5; }
.rain-col:nth-child(16) { left:76%; animation-duration:16s; animation-delay:-13s; opacity:0.6; }
.rain-col:nth-child(17) { left:81%; animation-duration:11s; animation-delay:-8s;  opacity:0.4; }
.rain-col:nth-child(18) { left:86%; animation-duration:14s; animation-delay:-4s;  opacity:0.7; }
.rain-col:nth-child(19) { left:91%; animation-duration:13s; animation-delay:-16s; opacity:0.3; }
.rain-col:nth-child(20) { left:96%; animation-duration:17s; animation-delay:-6s;  opacity:0.5; }

/* === Scan Wave === */
.scan-wave {
  position: fixed; top: 0; bottom: 0; width: 200px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.04), rgba(0,255,65,0.08), rgba(0,255,65,0.04), transparent);
  animation: sweep 10s linear infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%   { left: -200px; }
  100% { left: calc(100vw + 200px); }
}

/* === CRT Scanlines === */
.crt-scanlines {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 10;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.03) 3px, rgba(0,0,0,0.03) 6px);
}

/* === Content Layout === */
.content {
  position: relative; z-index: 5;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px;
}

section { margin-bottom: 100px; }

/* === Section Titles === */
.section-title {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 4px;
  color: var(--green);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(0,255,65,0.3);
}

/* ======================== */
/* === HERO SECTION     === */
/* ======================== */
.hero {
  text-align: center;
  margin-bottom: 0;
  padding-top: 80px;
}

/* Logo — transparent PNG, no background */
.hero-logo {
  width: 260px; height: auto;
  border: none;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 30px rgba(0,255,65,0.3));
  transition: filter 0.5s;
}
.hero-logo:hover {
  filter: drop-shadow(0 0 50px rgba(0,255,65,0.5));
}

.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 8px;
  color: white;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-privacy {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.hidden { display: none !important; }

/* === Install Block — glass card === */
.install-prompt {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(0,255,65,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.install-block {
  margin: 32px auto 0;
  text-align: center;
}

.install-cmd {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0,255,65,0.2);
  border-radius: 8px;
  padding: 16px 28px;
  font-size: 16px;
  font-family: var(--font-mono);
  background: rgba(0,255,65,0.03);
  color: var(--green);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.install-cmd:hover {
  border-color: rgba(0,255,65,0.4);
  box-shadow: 0 0 20px rgba(0,255,65,0.1);
}

.install-cmd .prompt { opacity: 0.4; }

.copy-btn {
  background: none;
  border: 1px solid rgba(0,255,65,0.2);
  border-radius: 4px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, border-color 0.3s;
}
.copy-btn:hover {
  opacity: 0.9;
  border-color: rgba(0,255,65,0.5);
}

/* === CTA Row === */
.cta-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  padding: 16px 44px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 3px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(0,255,65,0.3), 0 4px 20px rgba(0,255,65,0.2);
}
.cta-primary:hover {
  box-shadow: 0 0 40px rgba(0,255,65,0.5), 0 4px 30px rgba(0,255,65,0.3);
  transform: translateY(-2px);
}

.cta-secondary {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.3s;
}
.cta-secondary:hover { opacity: 0.8; }

/* === Platforms === */
.platforms {
  text-align: center;
  margin-top: 56px;
}

.platforms-label {
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: 0.6;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.platform-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.platform-icons img {
  width: 28px; height: 28px;
  opacity: 0.55;
  transition: opacity 0.3s, filter 0.3s;
}
.platform-icons img:hover {
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(0,255,65,0.5));
}

.platforms-note {
  font-size: 11px;
  opacity: 0.2;
  letter-spacing: 2px;
}

/* ======================== */
/* === HOW IT WORKS     === */
/* ======================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.step {
  position: relative;
  border: 1px solid rgba(0,255,65,0.25);
  border-radius: 12px;
  padding: 32px 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.step::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,255,65,0.2), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.step:hover {
  border-color: rgba(0,255,65,0.4);
  box-shadow: 0 0 20px rgba(0,255,65,0.08);
}
.step:hover::before { opacity: 1; }

.step-num {
  font-size: 14px;
  color: var(--green);
  opacity: 0.7;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 12px;
}
.step-icon {
  width: 32px;
  height: 32px;
  color: var(--green);
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(0 0 4px rgba(0,255,65,0.4));
}
.step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ======================== */
/* === SCIENCE          === */
/* ======================== */
/* (smart-profile styles removed — now uses terminal styling) */
.science-footer {
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(0,255,65,0.25);
  margin-top: 20px;
}

/* ======================== */
/* === SOCIAL PROOF     === */
/* ======================== */
.social-proof {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  margin-bottom: 60px;
}
.proof-num {
  color: var(--green);
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(0,255,65,0.3);
}

/* ======================== */
/* === WHY TERMINAL     === */
/* ======================== */
.why-terminal {
  max-width: 650px;
  margin: 0 auto;
}

/* ======================== */
/* === CAROUSEL + TERMINAL  */
/* ======================== */
.match-demo-section {
  position: relative;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 min(480px, 85vw);
  scroll-snap-align: start;
}

.carousel-btn {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--green-border);
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.carousel-btn:hover {
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(0,255,65,0.2);
}

.terminal {
  position: relative;
  border-radius: 12px;
  padding: 0;
  font-family: var(--font-mono);
  overflow: hidden;
}
/* Gradient glow border */
.terminal::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,255,65,0.4), rgba(0,255,65,0.1) 50%, rgba(0,255,65,0.3));
  z-index: -1;
  filter: blur(1px);
}

/* Window bar */
.term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,255,65,0.15);
  background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
}
.term-dots {
  display: flex;
  gap: 7px;
}
.term-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.term-dot:nth-child(1) {
  background: #ff5f57;
  box-shadow: 0 0 6px rgba(255,95,87,0.5);
}
.term-dot:nth-child(2) {
  background: #febc2e;
  box-shadow: 0 0 6px rgba(254,188,46,0.5);
}
.term-dot:nth-child(3) {
  background: #28c840;
  box-shadow: 0 0 6px rgba(40,200,64,0.5);
}
.term-filename {
  font-size: 13px;
  color: rgba(0,255,65,0.5);
  margin-left: 10px;
}
.term-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(0,255,65,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.term-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green); }
  50% { opacity: 0.4; box-shadow: none; }
}

.term-body {
  padding: 20px 24px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
}
.term-line {
  margin: 2px 0;
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre;
}
/* CSS progress bars instead of block chars */
.css-bar {
  display: inline-block;
  width: 100px;
  height: 10px;
  background: rgba(0,255,65,0.1);
  border-radius: 2px;
  vertical-align: middle;
  overflow: hidden;
}
.css-bar span {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0,255,65,0.4);
}
.css-bar.sm {
  width: 80px;
  height: 8px;
}
.term-line.bright { opacity: 1; font-weight: bold; }
.term-line.dim { opacity: 0.65; }
.term-prompt { color: #00aa30; }
.term-hl {
  color: var(--green);
  text-shadow: 0 0 8px rgba(0,255,65,0.4);
}
.cursor {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ======================== */
/* === CONTEXTS         === */
/* ======================== */
.contexts-subtitle {
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin: -20px 0 32px;
}
.context-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.context-card {
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 22px 10px;
  text-align: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  cursor: default;
  flex: 1 1 0;
  min-width: 110px;
  max-width: 130px;
}
.context-card:hover {
  border-color: rgba(0,255,65,0.5);
  box-shadow: 0 0 20px rgba(0,255,65,0.1);
  transform: translateY(-2px);
}
.ctx-icon {
  width: 28px;
  height: 28px;
  color: var(--green);
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 4px rgba(0,255,65,0.4));
}
.context-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}
.context-card:hover .context-name {
  color: var(--green);
}

/* ======================== */
/* === FINAL CTA        === */
/* ======================== */
.final-cta {
  text-align: center;
  padding: 60px 0 40px;
}
.cta-divider {
  width: 200px;
  height: 1px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.3), transparent);
}
.final-cta .install-block {
  margin-bottom: 28px;
}
.cta-headline {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 4px;
  color: white;
  margin-bottom: 32px;
  text-shadow: 0 0 20px rgba(0,255,65,0.2);
}
.cta-trust {
  font-family: var(--font-body);
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.cta-privacy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(0,255,65,0.25);
  margin-top: 8px;
}

/* ======================== */
/* === ANIMATIONS       === */
/* ======================== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo,
.hero-title,
.hero-tagline,
.hero-privacy,
.install-block,
.cta-row,
.platforms {
  animation: fade-in-up 0.8s ease-out both;
}
.hero-logo     { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.2s; }
.hero-tagline  { animation-delay: 0.3s; }
.hero-privacy  { animation-delay: 0.4s; }
.install-block { animation-delay: 0.5s; }
.cta-row       { animation-delay: 0.6s; }
.platforms     { animation-delay: 0.7s; }

/* ======================== */
/* === SCROLL ANIMATIONS === */
/* ======================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== */
/* === MOBILE           === */
/* ======================== */
@media (max-width: 768px) {
  .rain-col:nth-child(even) { display: none; }
  .hero { padding-top: 48px; }
  .hero-title { font-size: 28px; letter-spacing: 4px; }
  .hero-logo { width: 180px; height: 180px; }
  .hero-tagline { font-size: 14px; letter-spacing: 4px; }
  .install-cmd { font-size: 11px; padding: 12px 16px; word-break: break-word; white-space: normal; max-width: 100%; flex-wrap: wrap; gap: 8px; }
  .install-cmd .copy-btn { flex-shrink: 0; margin-left: auto; }
  .content { padding: 60px 24px; }
  .cta-row { flex-direction: column; align-items: center; gap: 14px; }
  .cta-primary { width: auto; padding: 14px 36px; }
  .platform-icons { gap: 14px; }
  .platform-icons img { width: 24px; height: 24px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .science-row { flex-direction: column; gap: 4px; text-align: left; }
  .terminal { font-size: 12px; }
  .term-line { font-size: 13px; white-space: pre-wrap; }
  .term-body { padding: 14px 14px; }
  .carousel-card { flex: 0 0 85vw; }
  .carousel-btn { display: none; }
  .context-card { flex: 1 1 0; min-width: 70px; max-width: 130px; }
  .contexts-subtitle { font-size: 12px; }
  section { margin-bottom: 64px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 22px; letter-spacing: 2px; }
  .hero-logo { width: 140px; height: 140px; }
  .section-title { font-size: 14px; letter-spacing: 2px; }
  .cta-primary { padding: 14px 32px; font-size: 12px; }
}

/* Invite banner — glass fixed top */
.invite-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 255, 65, 0.3);
  box-shadow: 0 4px 30px rgba(0, 255, 65, 0.1);
  animation: slideDown 0.4s ease;
}
.invite-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.invite-banner-text {
  color: #ccc;
  font-size: 15px;
}
.invite-banner-text strong {
  color: var(--green);
}
.invite-banner-btn {
  background: var(--green);
  color: #000;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(0,255,65,0.2);
}
.invite-banner-btn:hover {
  box-shadow: 0 0 30px rgba(0,255,65,0.4);
  transform: translateY(-1px);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .invite-banner-inner { flex-direction: column; text-align: center; padding: 12px 16px; }
  .invite-banner-text { font-size: 13px; }
}

/* GitHub link */
.github-link {
  display: inline-block;
  margin-top: 16px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.github-link:hover {
  color: var(--green);
}

/* Copy popup */
.copy-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.copy-popup.show {
  opacity: 1;
  pointer-events: auto;
}
.copy-popup-inner {
  background: #111;
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(0,255,65,0.3);
  max-width: 400px;
}
.copy-popup-check {
  font-size: 48px;
  color: var(--green);
  margin-bottom: 16px;
}
.copy-popup-title {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: bold;
  color: var(--green);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.copy-popup-text {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
}
