/* ========= Radar CRT palette & constants ========= */
:root {
  --bg0: #020607;
  --bg1: #061112;
  --glass: rgba(3, 12, 10, 0.86);
  --frame: rgba(0, 0, 0, 0.65);

  --phosphor: #7dffb8; /* основной “фосфор” */
  --phosphor-dim: #2eea86; /* вторичный */
  --phosphor-faint: rgba(125, 255, 184, 0.2);

  --grid: rgba(125, 255, 184, 0.18);
  --grid-strong: rgba(125, 255, 184, 0.28);

  --glow1: rgba(125, 255, 184, 0.45);
  --glow2: rgba(125, 255, 184, 0.18);

  --scanline: rgba(0, 0, 0, 0.22);
  --scanline2: rgba(255, 255, 255, 0.02);
}

/* ========= Page background ========= */

body {
  margin: 0;
  padding: 0;
  height: 100vh;

  font-family: 'ubuntu mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;

  background: #020607;

  color: var(--phosphor);
  overflow: hidden;
  position: relative;
}

/* ВСЁ: картинка + виньетка + blur */
body::before {
  content: '';
  position: absolute;
  inset: -24px;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(120% 90% at 50% 40%, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.92) 100%),
    url('images/radar-3.png') center / cover no-repeat;

  filter: blur(2.2px) saturate(0.9) contrast(1.08);
  transform: translateZ(0) scale(1.02);
  opacity: 1;
}

/* помехи/шум */
body::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(900px 520px at 18% 22%, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 60%),
    radial-gradient(760px 460px at 82% 78%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 62%),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      rgba(0, 0, 0, 0) 7px,
      rgba(0, 0, 0, 0) 11px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0px,
      rgba(0, 0, 0, 0) 12px,
      rgba(0, 0, 0, 0.05) 13px,
      rgba(0, 0, 0, 0.05) 14px
    );

  opacity: 0.35;
  mix-blend-mode: soft-light;
  filter: blur(0.25px) contrast(1.03);
}

/* контент поверх */
.theme-desert {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 18px;
}

/* ========= Tabs (DOS / terminal style) ========= */
.top-panel {
  width: 100%;
  flex: 0 0 100%; /* КРИТИЧЕСКИ важно в flex-wrap контейнере */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.tabs {
  position: relative;
  display: inline-flex;
  gap: 10px;
  padding: 10px;

  /*border: 2px solid rgba(125, 255, 184, 0.35);*/
  border-radius: 0;

  background: rgba(2, 8, 7, 0.82);
  overflow: hidden;
  isolation: isolate;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(0, 0, 0, 0.55),
    inset 0 0 0 3px rgba(125, 255, 184, 0.08);
}

.tabs::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.22) 3px),
    radial-gradient(circle at 40% 30%, rgba(125, 255, 184, 0.06), rgba(0, 0, 0, 0.32) 70%, rgba(0, 0, 0, 0.55) 100%);

  opacity: 0.6;
  mix-blend-mode: overlay;
}

.tab-btn {
  position: relative;
  z-index: 1;

  border: 2px solid rgba(125, 255, 184, 0.25);
  border-radius: 0;

  background: rgba(0, 0, 0, 0.35);
  color: rgba(125, 255, 184, 0.78);

  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  cursor: pointer;
  user-select: none;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 -2px 0 rgba(125, 255, 184, 0.08);

  transition:
    transform 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    background 120ms ease,
    filter 120ms ease;
}

.tab-btn:hover {
  border-color: rgba(125, 255, 184, 0.45);
  color: rgba(125, 255, 184, 0.95);
  filter: brightness(1.08);
}

.tab-btn:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.tab-btn.active {
  background: rgba(5, 16, 14, 0.88);
  border-color: rgba(125, 255, 184, 0.6);
  color: rgba(125, 255, 184, 1);
  text-shadow:
    0 0 3px rgba(125, 255, 184, 0.28),
    0 0 14px rgba(125, 255, 184, 0.18);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.65),
    inset 0 2px 0 rgba(125, 255, 184, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35);
}

/* ========= Screens viewport (фиксируем “место”, чтобы меню не прыгало) ========= */
/* ========= Screens viewport (правильное перекрытие без absolute) ========= */
.screens-viewport {
  width: 100%;
  flex: 0 0 100%;
  position: relative;

  /* ключ: перекрытие экранов без выпадения из потока */
  display: grid;
}

/* все экраны в одной и той же ячейке grid => накладываются */
.screen {
  grid-area: 1 / 1;

  width: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;

  /* анимационное состояние по умолчанию = скрыто */
  opacity: 0;
  transform: translateY(6px);
  filter: none;
  pointer-events: none;

  will-change: opacity, transform, filter;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

/* ВАЖНО: больше не используем display:none для hidden,
   иначе пропадает вклад в размеры и ломается центрирование */
.screen[hidden] {
  display: flex !important;
  visibility: hidden; /* чтобы не было фокуса/выделения */
}

/* активный экран */
.screen.is-active {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
  visibility: visible;
}

/* уходящий */
.screen.is-leaving {
  opacity: 0;
  transform: translateY(-4px);
  filter: contrast(1.05) brightness(0.96);
  pointer-events: none;
}

/* входящий */
.screen.is-entering {
  opacity: 1;
  transform: translateY(0px);
  filter: contrast(1.08) brightness(1.02);
  animation: screenFlicker 420ms steps(10, end) 1;
  visibility: visible;
}

/* scanline wipe overlay при переключении */
.screen::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-120%);
  mix-blend-mode: screen;
  z-index: 50;

  background:
    radial-gradient(
      110% 16% at 50% -12%,
      rgba(125, 255, 184, 0) 0%,
      rgba(125, 255, 184, 0.1) 30%,
      rgba(125, 255, 184, 0.22) 48%,
      rgba(125, 255, 184, 0.1) 62%,
      rgba(125, 255, 184, 0) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0.045) 3px
    );
}

.screen.is-entering::after {
  opacity: 0.85;
  animation: screenWipeDown 520ms ease-out 1;
}

@keyframes screenWipeDown {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  15% {
    opacity: 0.65;
  }
  55% {
    opacity: 0.65;
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes screenFlicker {
  0% {
    opacity: 0.45;
    filter: brightness(0.95) contrast(1.02);
  }
  30% {
    opacity: 0.95;
    filter: brightness(1.02) contrast(1.06);
  }
  55% {
    opacity: 0.78;
    filter: brightness(0.98) contrast(1.03);
  }
  100% {
    opacity: 1;
    filter: brightness(1) contrast(1);
  }
}

/* ========= CRT “monitor” container ========= */
.map-container {
  position: relative;
  display: inline-block;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;

  background: linear-gradient(180deg, rgba(5, 16, 14, 0.92), rgba(2, 8, 7, 0.92));
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(125, 255, 184, 0.12),
    inset 0 0 35px rgba(0, 0, 0, 0.65);
}

.map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(
      120% 90% at 50% 35%,
      rgba(125, 255, 184, 0.06) 0%,
      rgba(125, 255, 184, 0.02) 25%,
      rgba(0, 0, 0, 0.35) 70%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    radial-gradient(140% 120% at 50% 120%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.7) 100%);
  mix-blend-mode: normal;
  transform: scale(1.02);
}

.map-container::after {
  content: '';
  position: absolute;
  inset: -30% -20%;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0) 55%
  );
  transform: rotate(-12deg);
  opacity: 0.8;
}

.crt-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;

  background:
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, var(--scanline) 3px),
    repeating-linear-gradient(to right, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.08) 3px),
    radial-gradient(circle at 50% 45%, rgba(125, 255, 184, 0.05), rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));

  opacity: 0.9;
  mix-blend-mode: overlay;

  animation:
    crtFlicker 3.6s infinite steps(60),
    crtDrift 8s infinite linear;
}

@keyframes crtFlicker {
  0% {
    opacity: 0.88;
  }
  10% {
    opacity: 0.93;
  }
  20% {
    opacity: 0.86;
  }
  30% {
    opacity: 0.91;
  }
  40% {
    opacity: 0.87;
  }
  50% {
    opacity: 0.95;
  }
  60% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.92;
  }
  80% {
    opacity: 0.89;
  }
  90% {
    opacity: 0.94;
  }
  100% {
    opacity: 0.88;
  }
}

@keyframes crtDrift {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(2px);
  }
}

.map {
  position: relative;
  white-space: pre;
  font-size: 30px;
  line-height: 1.15;

  padding: 20px 20px 10px 0;
  margin: 0;

  color: rgba(125, 255, 184, 0.55);
  transform: perspective(900px) rotateX(0.8deg);
}

.map-container {
  filter: saturate(1.05) contrast(1.05);
}

/* ========= Palette mapping ========= */
.rock {
  color: rgba(125, 255, 184, 0.7);
}

.stele {
  color: rgba(125, 255, 184, 0.88);
  text-shadow:
    0 0 3px rgba(125, 255, 184, 0.28),
    0 0 14px rgba(125, 255, 184, 0.18);
}

.poi {
  color: rgba(125, 255, 184, 1);
  font-weight: 700;
}

.mound {
  color: rgba(125, 255, 184, 0.78);
  text-shadow: 0 0 10px rgba(125, 255, 184, 0.15);
}

.coord-head-even,
.row-idx-even {
  color: rgba(125, 255, 184, 0.55);
  text-shadow: 0 0 6px rgba(125, 255, 184, 0.1);
}

.coord-head-odd,
.row-idx-odd {
  color: rgba(125, 255, 184, 0.38);
  text-shadow: 0 0 6px rgba(125, 255, 184, 0.08);
}

.label {
  color: rgba(125, 255, 184, 0.92);
}

/* ========= Legend ========= */
.legend {
  position: relative;
  color: rgba(125, 255, 184, 0.65);
  font-size: 25px;
  line-height: 1.3;
  max-width: 600px;
  padding: 20px;

  border-radius: 14px;
  background: rgba(2, 10, 9, 0.78);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(125, 255, 184, 0.1),
    inset 0 0 22px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.legend::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0.18) 3px),
    radial-gradient(circle at 50% 30%, rgba(125, 255, 184, 0.06), rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.55;
  mix-blend-mode: overlay;
}

.legend-title {
  font-size: 30px;
  margin-bottom: 4px;
  color: rgba(125, 255, 184, 0.85);
  text-align: center;
}

.legend-item {
  margin-bottom: 3px;
}

.symbol-box {
  display: inline-block;
  min-width: 20px;
}

/* ========= CRT text effect ========= */
.crt {
  background: linear-gradient(to top, #000000, #000000, #333333, #333333);
  background-size: cover;
  background-size: 100% 4px;

  animation-duration: 1s;
  animation-name: textflicker;
  animation-iteration-count: infinite;
  animation-direction: alternate;

  text-shadow:
    0.06rem 0 0.06rem #ea36af,
    -0.125rem 0 0.06rem #75fa69;
}

@keyframes textflicker {
  from {
    text-shadow:
      1px 0 0 #ea36af,
      -1px 0 0 #75fa69;
  }
  to {
    text-shadow:
      2px 0.5px 2px #ea36af,
      -1px -0.5px 2px #75fa69;
  }
}

/* ========= Rotation (icons) ========= */
.poi.rotation,
.rotation.poi,
.rotation {
  display: inline-block;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: rotationCW 8s linear infinite;
}

@keyframes rotationCW {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========= CRT: бегущая полоса помех ========= */
.noise-line {
  position: relative;
}

.noise-line::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;

  background:
    radial-gradient(
      110% 18% at 50% -12%,
      rgba(125, 255, 184, 0) 0%,
      rgba(125, 255, 184, 0.1) 30%,
      rgba(125, 255, 184, 0.22) 48%,
      rgba(125, 255, 184, 0.1) 62%,
      rgba(125, 255, 184, 0) 100%
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0px,
      rgba(255, 255, 255, 0) 2px,
      rgba(255, 255, 255, 0.045) 3px
    );

  mix-blend-mode: screen;
  opacity: 0.85;

  transform: translateY(-110%);
  animation: crtRollDown 6.8s linear infinite;
}

@keyframes crtRollDown {
  0% {
    transform: translateY(-110%);
    opacity: 0;
  }
  4% {
    opacity: 0.55;
  }
  85% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(110%);
    opacity: 0;
  }
}

/* ========= Cameras ========= */
.camera-grid {
  display: grid;
  margin-top: 0;
  width: 100%;
  grid-template-columns: repeat(2, 45%);
  gap: 10%;
  margin-top: 20px;
}

.camera {
  border: 3px solid #271d1d;
  position: relative;
  width: 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;

  background: #050b0a;
  box-shadow:
    inset 0 0 0 1px rgba(125, 255, 184, 0.18),
    inset 0 0 18px rgba(0, 0, 0, 0.75),
    0 10px 30px rgba(0, 0, 0, 0.45);

  isolation: isolate;
  transform: translateZ(0) scale(1.02);
}

.camera img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  will-change: filter;
  animation: camFade 4.6s ease-in-out infinite alternate;
}

.camera-crt {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0.55) 2px,
      rgba(255, 255, 255, 0.04) 3px
    ),
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.22) 70%, rgba(0, 0, 0, 0.4) 100%);

  opacity: 0.9;
  mix-blend-mode: multiply;
  animation: camScanDrift 5s linear infinite;
}

@keyframes camScanDrift {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(1px);
  }
}

.camera::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;

  background: radial-gradient(
    120% 20% at 50% -10%,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    rgba(255, 255, 255, 0.28) 55%,
    rgba(255, 255, 255, 0) 100%
  );

  mix-blend-mode: screen;
  opacity: 0.45;

  transform: translateY(-120%);
  animation: cameraRoll 9s linear infinite;
}

@keyframes cameraRoll {
  from {
    transform: translateY(-110%);
  }
  to {
    transform: translateY(110%);
  }
}

.right-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.camera:nth-child(1) img {
  animation-duration: 4.2s;
  animation-delay: -0.6s;
}
.camera:nth-child(2) img {
  animation-duration: 5.1s;
  animation-delay: -1.8s;
}
.camera:nth-child(3) img {
  animation-duration: 4.6s;
  animation-delay: -1.1s;
}
.camera:nth-child(4) img {
  animation-duration: 5.7s;
  animation-delay: -2.9s;
}

.camera:nth-child(1)::after {
  animation-duration: 5.4s;
  animation-delay: -0.8s;
  opacity: 0.4;
}
.camera:nth-child(2)::after {
  animation-duration: 6.2s;
  animation-delay: -3.2s;
  opacity: 0.48;
}
.camera:nth-child(3)::after {
  animation-duration: 4.9s;
  animation-delay: -1.7s;
  opacity: 0.44;
}
.camera:nth-child(4)::after {
  animation-duration: 7.1s;
  animation-delay: -5.6s;
  opacity: 0.46;
}

/* CAM label */
.cam-label {
  font-family: 'Noto Sans Egyptian Hieroglyphs', sans-serif;

  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 20;
  pointer-events: none;

  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;

  color: rgba(125, 255, 184, 0.92);
  text-shadow:
    0 0 3px rgba(125, 255, 184, 0.35),
    0 0 10px rgba(125, 255, 184, 0.2);

  opacity: 0.85;
  animation: camBlink 3.35s steps(2, end) infinite;
}

@keyframes camBlink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.95;
  }
}

@keyframes camFade {
  from {
    filter: brightness(1.02) contrast(1.12) saturate(0.32) blur(0.6px);
  }
  to {
    filter: brightness(0.78) contrast(1.06) saturate(0.18) blur(0.6px);
  }
}

.camera:nth-child(1) .cam-label {
  animation-duration: 3.25s;
  animation-delay: -0.2s;
}
.camera:nth-child(2) .cam-label {
  animation-duration: 4.55s;
  animation-delay: -0.9s;
}
.camera:nth-child(3) .cam-label {
  animation-duration: 3.35s;
  animation-delay: -0.5s;
}
.camera:nth-child(4) .cam-label {
  animation-duration: 4.7s;
  animation-delay: -1.2s;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .map::after {
    animation: none;
    opacity: 0.25;
    transform: none;
  }
  .map {
    animation: none;
  }

  .screen,
  .screen.is-entering,
  .screen.is-leaving {
    transition: none !important;
    animation: none !important;
  }
  .screen::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* Rotation / layout (оставил как было; у вас сейчас не используется, потому что класс rotated-xxx) */
.rotated .theme-desert {
  transform: rotate(-90deg);
  flex-direction: column;
}

.rotated .camera-grid {
  display: none;
}

.rotated .map-container,
.rotated .legend,
.rotated .right-panel {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.rotated .legend-item {
  margin-bottom: 3px;
  padding: 0 1rem;
}

.rotated .legend-title {
  padding: 1rem;
}

/* ========= Mode switching (player/gm) ========= */
body.mode-player .top-panel {
  display: none !important;
}

/* Панель табов + Share в gm-режиме в одну линию */
body.mode-gm .top-panel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* вкладки слева, Share справа */
  gap: 14px;
  max-width: 1500px;
}

/* tabs в gm-режиме не растягиваем на всю ширину */
body.mode-gm .tabs {
  margin-right: auto;
}

/* кнопка Share — “терминальная” */
.share-btn {
  border: 2px solid rgba(125, 255, 184, 0.35);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(125, 255, 184, 0.9);

  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 -2px 0 rgba(125, 255, 184, 0.08);

  transition:
    transform 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    background 120ms ease,
    filter 120ms ease;
}

.share-btn:hover {
  border-color: rgba(125, 255, 184, 0.55);
  filter: brightness(1.08);
}

.share-btn:active {
  transform: translateY(1px);
  filter: brightness(0.98);
}

.share-btn.copied {
  border-color: rgba(125, 255, 184, 0.75);
  color: rgba(125, 255, 184, 1);
  text-shadow:
    0 0 3px rgba(125, 255, 184, 0.28),
    0 0 14px rgba(125, 255, 184, 0.18);
}
