/* src/styles.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  height: 100dvh;
  font-family: "Geist", sans-serif;
  background: #000000;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a,
button,
input,
select,
textarea,
[role=button] {
  touch-action: manipulation;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8b95a3;
}
@media (hover: none) {
  ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
}
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 20;
}
.card-preview-portal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: portal-fade-in 0.2s ease;
  overflow: hidden;
  touch-action: none;
}
.card-preview-portal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
  animation: portal-scale-in 0.2s ease;
}
.card-preview-portal__close {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10;
  transition: all 150ms ease;
}
.card-preview-portal__close:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}
.card-preview-portal__close .material-symbols-outlined {
  font-size: 20px;
}
@media (max-width: 480px) {
  .card-preview-portal__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .card-preview-portal__close .material-symbols-outlined {
    font-size: 18px;
  }
}
.card-preview-portal__img {
  max-width: 340px;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
}
@media (max-width: 480px) {
  .card-preview-portal__img {
    max-width: 260px;
    max-height: 60vh;
  }
}
.card-preview-portal__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  max-width: 340px;
}
@media (max-width: 480px) {
  .card-preview-portal__footer {
    max-width: 260px;
    margin-top: 12px;
  }
}
.card-preview-portal__title {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
  flex: 1;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .card-preview-portal__title {
    font-size: 12px;
  }
}
.card-preview-portal__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #8b95a3;
  cursor: pointer;
  transition: all 150ms ease;
}
.card-preview-portal__copy .material-symbols-outlined {
  font-size: 16px;
}
.card-preview-portal__copy:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.card-preview-portal__copy--done {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}
@keyframes portal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes portal-scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
