/* [project]/src/components/ui/galaxy.css [app-client] (css) */
.galaxy-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* [project]/src/components/ui/magic-bento.css [app-client] (css) */
:root {
  --hue: 27;
  --sat: 69%;
  --white: #fff;
  --purple-primary: #8400ff;
  --purple-glow: #8400ff33;
  --purple-border: #8400ffcc;
  --border-color: #392e4e;
  --background-dark: #060010;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
  }
}

.card-grid {
  gap: .5em;
  max-width: 54em;
  padding: .75em;
  font-size: clamp(1rem, .9rem + .5vw, 1.5rem);
  display: grid;
}

.magic-bento-card {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-color);
  background: var(--background-dark);
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 200px;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  padding: 1.25em;
  font-weight: 300;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.magic-bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #00000026;
}

.magic-bento-card__header, .magic-bento-card__content {
  color: var(--white);
  display: flex;
  position: relative;
}

.magic-bento-card__header {
  justify-content: space-between;
  gap: .75em;
}

.magic-bento-card__content {
  flex-direction: column;
}

.magic-bento-card__label {
  font-size: 16px;
}

.magic-bento-card__title, .magic-bento-card__description {
  --clamp-title: 1;
  --clamp-desc: 2;
}

.magic-bento-card__title {
  margin: 0 0 .25em;
  font-size: 16px;
  font-weight: 400;
}

.magic-bento-card__description {
  opacity: .9;
  font-size: 12px;
  line-height: 1.2;
}

.magic-bento-card--text-autohide .magic-bento-card__title, .magic-bento-card--text-autohide .magic-bento-card__description {
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.magic-bento-card--text-autohide .magic-bento-card__title {
  -webkit-line-clamp: var(--clamp-title);
  line-clamp: var(--clamp-title);
}

.magic-bento-card--text-autohide .magic-bento-card__description {
  -webkit-line-clamp: var(--clamp-desc);
  line-clamp: var(--clamp-desc);
}

@media (max-width: 599px) {
  .card-grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
    padding: .5em;
  }

  .magic-bento-card {
    width: 100%;
    min-height: 180px;
  }
}

@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .magic-bento-card:nth-child(3) {
    grid-area: span 2 / span 2;
  }

  .magic-bento-card:nth-child(4) {
    grid-area: 2 / 1 / span 2 / span 2;
  }

  .magic-bento-card:nth-child(6) {
    grid-area: 3 / 4;
  }
}

.magic-bento-card--border-glow:after {
  content: "";
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y), rgba(132, 0, 255, calc(var(--glow-intensity) * .8)) 0%, rgba(132, 0, 255, calc(var(--glow-intensity) * .4)) 30%, transparent 60%);
  border-radius: inherit;
  -webkit-mask-composite: xor;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
  padding: 6px;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

.magic-bento-card--border-glow:hover:after {
  opacity: 1;
}

.magic-bento-card--border-glow:hover {
  box-shadow: 0 4px 20px #2e184e66, 0 0 30px var(--purple-glow);
}

.particle-container {
  position: relative;
  overflow: hidden;
}

.particle:before {
  content: "";
  z-index: -1;
  background: #8400ff33;
  border-radius: 50%;
  position: absolute;
  inset: -2px;
}

.particle-container:hover {
  box-shadow: 0 4px 20px #2e184e33, 0 0 30px var(--purple-glow);
}

.global-spotlight {
  mix-blend-mode: screen;
  will-change: transform, opacity;
  pointer-events: none;
  z-index: 200 !important;
}

.bento-section {
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}

/*# sourceMappingURL=src_components_ui_c75a0d2b._.css.map*/