/* [project]/components/home/AgentShowcase/AgentShowcase.module.scss.module.css [app-client] (css) */
.AgentShowcase-module-scss-module__a7UTYG__showcase {
  width: 100%;
  padding: 0;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.AgentShowcase-module-scss-module__a7UTYG__heroImage {
  aspect-ratio: 2560 / 1086;
  width: 100%;
  height: auto;
  display: block;
}

.AgentShowcase-module-scss-module__a7UTYG__overlay {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(#0a0a0a00 0% 70%, #0a0a0a 100%);
  position: absolute;
  inset: 0;
}

.AgentShowcase-module-scss-module__a7UTYG__header {
  z-index: 2;
  margin-bottom: 56px;
  position: relative;
}

.AgentShowcase-module-scss-module__a7UTYG__title {
  color: #1e293b;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-text-fill-color: #0000;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
}

.AgentShowcase-module-scss-module__a7UTYG__subtitle {
  color: #334155;
  text-shadow: 0 1px 2px #fffc;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 500;
}

.AgentShowcase-module-scss-module__a7UTYG__agentGrid {
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  position: relative;
}

.AgentShowcase-module-scss-module__a7UTYG__agentCard {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: pointer;
  perspective: 1000px;
  width: 140px;
  transform-style: preserve-3d;
  background: #ffffffa6;
  border: 1px solid #ffffff80;
  border-radius: 24px;
  padding: 24px 16px 20px;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s;
  position: relative;
  box-shadow: 0 4px 24px #0000000f, 0 1px 2px #0000000a;
}

.AgentShowcase-module-scss-module__a7UTYG__agentCard.AgentShowcase-module-scss-module__a7UTYG__hovered {
  transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) scale(1.05);
  box-shadow: 0 20px 40px #0000001f, 0 8px 16px #00000014;
}

.AgentShowcase-module-scss-module__a7UTYG__glow {
  background: linear-gradient(135deg, var(--agent-color), var(--agent-color-end));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  border-radius: 26px;
  transition: opacity .3s;
  position: absolute;
  inset: -2px;
}

.AgentShowcase-module-scss-module__a7UTYG__agentCard.AgentShowcase-module-scss-module__a7UTYG__hovered .AgentShowcase-module-scss-module__a7UTYG__glow {
  opacity: .4;
}

.AgentShowcase-module-scss-module__a7UTYG__emojiContainer {
  background: linear-gradient(135deg, color-mix(in srgb, var(--agent-color) 15%, white), color-mix(in srgb, var(--agent-color-end) 15%, white));
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
}

.AgentShowcase-module-scss-module__a7UTYG__agentCard.AgentShowcase-module-scss-module__a7UTYG__hovered .AgentShowcase-module-scss-module__a7UTYG__emojiContainer {
  transform: scale(1.1);
}

.AgentShowcase-module-scss-module__a7UTYG__emoji {
  font-size: 2.5rem;
  line-height: 1;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  animation: none;
}

.AgentShowcase-module-scss-module__a7UTYG__agentCard.AgentShowcase-module-scss-module__a7UTYG__hovered .AgentShowcase-module-scss-module__a7UTYG__emoji {
  animation: .6s infinite AgentShowcase-module-scss-module__a7UTYG__bounce;
}

.AgentShowcase-module-scss-module__a7UTYG__info {
  text-align: center;
}

.AgentShowcase-module-scss-module__a7UTYG__nickname {
  color: #1e293b;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 600;
}

.AgentShowcase-module-scss-module__a7UTYG__description {
  color: #94a3b8;
  font-size: .75rem;
  line-height: 1.4;
}

.AgentShowcase-module-scss-module__a7UTYG__roleTag {
  color: var(--agent-color);
  background: color-mix(in srgb, var(--agent-color) 10%, white);
  opacity: 0;
  border-radius: 10px;
  padding: 2px 8px;
  font-size: .625rem;
  font-weight: 500;
  transition: opacity .2s, transform .2s;
  position: absolute;
  top: 8px;
  right: 8px;
  transform: translateY(-4px);
}

.AgentShowcase-module-scss-module__a7UTYG__agentCard.AgentShowcase-module-scss-module__a7UTYG__hovered .AgentShowcase-module-scss-module__a7UTYG__roleTag {
  opacity: 1;
  transform: translateY(0);
}

@keyframes AgentShowcase-module-scss-module__a7UTYG__bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1024px) {
  .AgentShowcase-module-scss-module__a7UTYG__agentGrid {
    gap: 20px;
  }

  .AgentShowcase-module-scss-module__a7UTYG__agentCard {
    width: 130px;
  }
}

@media (max-width: 768px) {
  .AgentShowcase-module-scss-module__a7UTYG__showcase {
    padding: 32px 0 40px;
  }

  .AgentShowcase-module-scss-module__a7UTYG__title {
    font-size: 4rem;
  }

  .AgentShowcase-module-scss-module__a7UTYG__agentGrid {
    gap: 16px;
  }

  .AgentShowcase-module-scss-module__a7UTYG__agentCard {
    width: 110px;
    padding: 20px 12px 16px;
  }

  .AgentShowcase-module-scss-module__a7UTYG__emojiContainer {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
  }

  .AgentShowcase-module-scss-module__a7UTYG__emoji {
    font-size: 2rem;
  }

  .AgentShowcase-module-scss-module__a7UTYG__nickname {
    font-size: .875rem;
  }

  .AgentShowcase-module-scss-module__a7UTYG__description {
    font-size: .625rem;
  }
}

/* [project]/components/home/WorksBackgroundWall/WorksBackgroundWall.module.scss.module.css [app-client] (css) */
.WorksBackgroundWall-module-scss-module___mGFyG__wallContainer {
  z-index: 0;
  contain: layout paint;
  background-color: #0a0a0a;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.WorksBackgroundWall-module-scss-module___mGFyG__grid {
  transform-origin: center;
  opacity: .5;
  gap: 16px;
  width: 120%;
  height: 200%;
  display: flex;
  position: absolute;
  top: -50%;
  left: -10%;
  transform: rotate(-8deg)scale(1.2);
}

.WorksBackgroundWall-module-scss-module___mGFyG__column {
  will-change: transform;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  min-width: 240px;
  display: flex;
}

.WorksBackgroundWall-module-scss-module___mGFyG__imageCard {
  aspect-ratio: 3 / 4;
  contain: paint;
  background: #ffffff0d;
  border-radius: 16px;
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
}

.WorksBackgroundWall-module-scss-module___mGFyG__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.WorksBackgroundWall-module-scss-module___mGFyG__scrollUp {
  animation: 60s linear infinite WorksBackgroundWall-module-scss-module___mGFyG__scroll-up;
}

.WorksBackgroundWall-module-scss-module___mGFyG__scrollDown {
  animation: 60s linear infinite WorksBackgroundWall-module-scss-module___mGFyG__scroll-down;
}

@keyframes WorksBackgroundWall-module-scss-module___mGFyG__scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes WorksBackgroundWall-module-scss-module___mGFyG__scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.WorksBackgroundWall-module-scss-module___mGFyG__overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, #0a0a0a33 0%, #0a0a0acc 50%, #0a0a0a 100%);
  position: absolute;
  inset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .WorksBackgroundWall-module-scss-module___mGFyG__scrollUp, .WorksBackgroundWall-module-scss-module___mGFyG__scrollDown {
    animation: none;
  }
}

/* [project]/components/home/ChatInput/ChatInput.module.scss.module.css [app-client] (css) */
.ChatInput-module-scss-module__RgCL-q__chatSection {
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: 0 24px;
  position: relative;
}

.ChatInput-module-scss-module__RgCL-q__inputContainer {
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  cursor: text;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 28px;
  flex-direction: column;
  justify-content: flex-start;
  width: 50vw;
  min-width: 320px;
  max-width: 760px;
  height: 25vh;
  min-height: 160px;
  max-height: 220px;
  margin: 0 auto;
  padding: 24px;
  transition: box-shadow .3s, border-color .3s;
  display: flex;
  position: relative;
  box-shadow: 0 10px 40px #0003, 0 2px 8px #0000001a;
}

.ChatInput-module-scss-module__RgCL-q__inputContainer:hover {
  border-color: #ffffff26;
  box-shadow: 0 8px 32px #0000004d, 0 2px 4px #00000026;
}

.ChatInput-module-scss-module__RgCL-q__inputContainer.ChatInput-module-scss-module__RgCL-q__focused {
  border-color: #ffffff40;
  box-shadow: 0 0 20px #ffffff0f, 0 0 40px #ffffff08, 0 8px 32px #0000004d;
}

.ChatInput-module-scss-module__RgCL-q__typewriterContainer {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding-bottom: 48px;
  display: flex;
}

.ChatInput-module-scss-module__RgCL-q__prefix {
  color: #fff6;
  font-size: 1rem;
}

.ChatInput-module-scss-module__RgCL-q__typewriterText {
  color: #ffffffb3;
  font-size: 1rem;
  font-weight: 500;
}

.ChatInput-module-scss-module__RgCL-q__cursor {
  color: #ffffffb3;
  opacity: .8;
  margin-left: 2px;
  font-weight: 300;
}

.ChatInput-module-scss-module__RgCL-q__cursor.ChatInput-module-scss-module__RgCL-q__blinking {
  animation: 1s step-end infinite ChatInput-module-scss-module__RgCL-q__blink;
}

@keyframes ChatInput-module-scss-module__RgCL-q__blink {
  0%, 50% {
    opacity: 1;
  }

  51%, 100% {
    opacity: 0;
  }
}

.ChatInput-module-scss-module__RgCL-q__inputWrapper {
  flex-direction: column;
  flex: 1;
  width: 100%;
  display: flex;
  position: relative;
}

.ChatInput-module-scss-module__RgCL-q__input {
  color: #ffffffe6;
  resize: none;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  width: 100%;
  padding: 0 0 48px;
  font-size: 1rem;
}

.ChatInput-module-scss-module__RgCL-q__input::placeholder {
  color: #ffffff4d;
}

.ChatInput-module-scss-module__RgCL-q__input:disabled {
  opacity: .6;
}

.ChatInput-module-scss-module__RgCL-q__sendButton {
  color: #ffffff4d;
  cursor: not-allowed;
  background: #ffffff1a;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background .2s, color .2s, transform .2s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.ChatInput-module-scss-module__RgCL-q__sendButton.ChatInput-module-scss-module__RgCL-q__active {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #339cff, #1f8eeb);
}

.ChatInput-module-scss-module__RgCL-q__sendButton.ChatInput-module-scss-module__RgCL-q__active:hover {
  transform: scale(1.05);
}

.ChatInput-module-scss-module__RgCL-q__sendButton.ChatInput-module-scss-module__RgCL-q__active:active {
  transform: scale(.95);
}

.ChatInput-module-scss-module__RgCL-q__sendButton:disabled {
  cursor: not-allowed;
  transform: none;
}

.ChatInput-module-scss-module__RgCL-q__sendIcon {
  width: 18px;
  height: 18px;
}

.ChatInput-module-scss-module__RgCL-q__spinner {
  width: 18px;
  height: 18px;
  animation: 1s linear infinite ChatInput-module-scss-module__RgCL-q__spin;
}

@keyframes ChatInput-module-scss-module__RgCL-q__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.ChatInput-module-scss-module__RgCL-q__modelTags {
  align-items: center;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 64px;
}

.ChatInput-module-scss-module__RgCL-q__modelTag {
  color: #ffffff4d;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  background: #ffffff0a;
  border: 1px solid #ffffff0f;
  border-radius: 20px;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  transition: all .25s;
  display: flex;
}

.ChatInput-module-scss-module__RgCL-q__modelTag:hover {
  color: #fff9;
  background: #ffffff14;
  border-color: #ffffff1f;
}

.ChatInput-module-scss-module__RgCL-q__modelTagIcon {
  opacity: .6;
  width: 10px;
  height: 10px;
}

@media (max-width: 768px) {
  .ChatInput-module-scss-module__RgCL-q__chatSection {
    padding: 24px 16px 60px;
  }

  .ChatInput-module-scss-module__RgCL-q__inputContainer {
    height: 160px;
    padding: 20px;
  }

  .ChatInput-module-scss-module__RgCL-q__prefix {
    font-size: .875rem;
  }

  .ChatInput-module-scss-module__RgCL-q__typewriterText {
    font-size: .9375rem;
  }
}

/* [project]/components/home/RecentProjects/RecentProjects.module.scss.module.css [app-client] (css) */
.RecentProjects-module-scss-module__gTpGnG__section {
  background: none;
  padding: 40px 0;
}

.RecentProjects-module-scss-module__gTpGnG__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.RecentProjects-module-scss-module__gTpGnG__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__titleRow {
  align-items: baseline;
  gap: 16px;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__title {
  color: #ffffffe6;
  letter-spacing: -.01em;
  font-size: 1.125rem;
  font-weight: 700;
}

.RecentProjects-module-scss-module__gTpGnG__subtitle {
  color: #fff6;
  font-size: 1rem;
  font-weight: 400;
}

.RecentProjects-module-scss-module__gTpGnG__viewMore {
  color: #ffffff80;
  align-items: center;
  gap: 4px;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap .2s, color .2s;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__viewMore:hover {
  color: #fffc;
  gap: 8px;
}

.RecentProjects-module-scss-module__gTpGnG__chevron {
  width: 18px;
  height: 18px;
  transition: transform .2s;
}

.RecentProjects-module-scss-module__gTpGnG__viewMore:hover .RecentProjects-module-scss-module__gTpGnG__chevron {
  transform: translateX(2px);
}

.RecentProjects-module-scss-module__gTpGnG__content {
  min-height: 120px;
}

.RecentProjects-module-scss-module__gTpGnG__loading {
  color: #fff6;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 48px 0;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__spinner {
  width: 20px;
  height: 20px;
  animation: 1s linear infinite RecentProjects-module-scss-module__gTpGnG__spin;
}

@keyframes RecentProjects-module-scss-module__gTpGnG__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.RecentProjects-module-scss-module__gTpGnG__empty {
  text-align: center;
  color: #fff6;
  padding: 48px 0;
}

.RecentProjects-module-scss-module__gTpGnG__grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 20px;
  display: grid;
}

.RecentProjects-module-scss-module__gTpGnG__projectCard {
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: 12px;
  flex-direction: column;
  text-decoration: none;
  transition: border-color .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.RecentProjects-module-scss-module__gTpGnG__projectCard:hover {
  border-color: #ffffff4d;
}

.RecentProjects-module-scss-module__gTpGnG__hoverBorder {
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px #ffffff26;
}

.RecentProjects-module-scss-module__gTpGnG__projectCard:hover .RecentProjects-module-scss-module__gTpGnG__hoverBorder {
  opacity: 1;
}

.RecentProjects-module-scss-module__gTpGnG__createCard {
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: #ffffff1a;
  border: 1px solid #ffffff26;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__createCard:hover {
  background: #ffffff1a;
  border-color: #ffffff40;
  box-shadow: 0 8px 32px #0000004d, inset 0 1px #ffffff14;
}

.RecentProjects-module-scss-module__gTpGnG__createText {
  color: #fff6;
  letter-spacing: .5px;
  font-size: 12px;
  font-weight: 500;
  transition: color .3s;
}

.RecentProjects-module-scss-module__gTpGnG__createCard:hover .RecentProjects-module-scss-module__gTpGnG__createText {
  color: #ffffffb3;
}

.RecentProjects-module-scss-module__gTpGnG__createIconWrapper {
  color: #ffffffb3;
  justify-content: center;
  align-items: center;
  transition: color .3s;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__createCard:hover .RecentProjects-module-scss-module__gTpGnG__createIconWrapper {
  color: #fff;
}

.RecentProjects-module-scss-module__gTpGnG__previewArea {
  aspect-ratio: 16 / 9;
  background: #ffffff08;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.RecentProjects-module-scss-module__gTpGnG__previewMedia {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.RecentProjects-module-scss-module__gTpGnG__previewPlaceholder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.RecentProjects-module-scss-module__gTpGnG__placeholderIcon {
  color: #ffffff26;
  width: 32px;
  height: 32px;
}

.RecentProjects-module-scss-module__gTpGnG__projectInfo {
  z-index: 2;
  background: linear-gradient(to top, #000c 0%, #0000 100%);
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  padding: 20px 12px 8px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.RecentProjects-module-scss-module__gTpGnG__projectName {
  color: #ffffffd9;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}

.RecentProjects-module-scss-module__gTpGnG__updateTime {
  color: #ffffff59;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 11px;
  transition: color .25s;
}

.RecentProjects-module-scss-module__gTpGnG__projectCard:hover .RecentProjects-module-scss-module__gTpGnG__updateTime {
  color: #fff9;
}

.RecentProjects-module-scss-module__gTpGnG__skeletonCard {
  aspect-ratio: 16 / 9;
  background: linear-gradient(110deg, #ffffff08 8%, #ffffff0f 18%, #ffffff08 33%) 0 0 / 200% 100%;
  border-radius: 12px;
  animation: 1.5s linear infinite RecentProjects-module-scss-module__gTpGnG__skeletonShimmer;
}

@keyframes RecentProjects-module-scss-module__gTpGnG__skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1280px) {
  .RecentProjects-module-scss-module__gTpGnG__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .RecentProjects-module-scss-module__gTpGnG__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .RecentProjects-module-scss-module__gTpGnG__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .RecentProjects-module-scss-module__gTpGnG__container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .RecentProjects-module-scss-module__gTpGnG__grid {
    grid-template-columns: 1fr;
  }

  .RecentProjects-module-scss-module__gTpGnG__title {
    font-size: 1.25rem;
  }
}

/* [project]/components/home/AGShowGallery/AGShowGallery.module.scss.module.css [app-client] (css) */
.AGShowGallery-module-scss-module__rhi7QG__gallery {
  background: none;
  padding: 40px 0 100px;
}

.AGShowGallery-module-scss-module__rhi7QG__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

.AGShowGallery-module-scss-module__rhi7QG__header {
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__title {
  color: #ffffffe6;
  letter-spacing: -.01em;
  font-size: 1.125rem;
  font-weight: 700;
}

.AGShowGallery-module-scss-module__rhi7QG__subtitle {
  color: #fff6;
  font-size: 1rem;
  font-weight: 400;
}

.AGShowGallery-module-scss-module__rhi7QG__tabBar {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #ffffff0d;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 40px;
  padding: 5px;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .AGShowGallery-module-scss-module__rhi7QG__tabBar {
    scrollbar-width: none;
    width: 100%;
    overflow-x: auto;
  }

  .AGShowGallery-module-scss-module__rhi7QG__tabBar::-webkit-scrollbar {
    display: none;
  }
}

.AGShowGallery-module-scss-module__rhi7QG__tabIndicator {
  pointer-events: none;
  z-index: 0;
  background: #ffffff1a;
  border-radius: 999px;
  transition: left .3s cubic-bezier(.4, 0, .2, 1), width .3s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 5px;
  bottom: 5px;
  box-shadow: 0 2px 10px #0003;
}

.AGShowGallery-module-scss-module__rhi7QG__tab {
  z-index: 1;
  color: #fff6;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: .9375rem;
  font-weight: 600;
  transition: color .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.AGShowGallery-module-scss-module__rhi7QG__tab:hover {
  color: #fffc;
}

.AGShowGallery-module-scss-module__rhi7QG__tabActive {
  color: #fff;
}

.AGShowGallery-module-scss-module__rhi7QG__worksContainer {
  min-height: 400px;
}

.AGShowGallery-module-scss-module__rhi7QG__masonryGrid {
  -moz-column-count: 5;
  column-count: 5;
  -moz-column-gap: 24px;
  column-gap: 24px;
  width: 100%;
}

@media (max-width: 1600px) {
  .AGShowGallery-module-scss-module__rhi7QG__masonryGrid {
    -moz-column-count: 4;
    column-count: 4;
  }
}

@media (max-width: 1024px) {
  .AGShowGallery-module-scss-module__rhi7QG__masonryGrid {
    -moz-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .AGShowGallery-module-scss-module__rhi7QG__masonryGrid {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
}

@media (max-width: 480px) {
  .AGShowGallery-module-scss-module__rhi7QG__masonryGrid {
    -moz-column-count: 1;
    column-count: 1;
  }
}

.AGShowGallery-module-scss-module__rhi7QG__masonryItem {
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  width: 100%;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .AGShowGallery-module-scss-module__rhi7QG__masonryItem {
    margin-bottom: 16px;
  }
}

.AGShowGallery-module-scss-module__rhi7QG__workCard {
  background: #ffffff0d;
  border: 1px solid #ffffff0f;
  border-radius: 10px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 12px #00000026;
}

.AGShowGallery-module-scss-module__rhi7QG__workCard:hover {
  border-color: #ffffff1f;
  transform: translateY(-6px);
  box-shadow: 0 24px 48px #0000004d;
}

.AGShowGallery-module-scss-module__rhi7QG__previewContainer {
  background: #ffffff08;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.AGShowGallery-module-scss-module__rhi7QG__video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.AGShowGallery-module-scss-module__rhi7QG__mediaHidden {
  opacity: 0;
  position: absolute;
}

.AGShowGallery-module-scss-module__rhi7QG__coverFallback {
  background: radial-gradient(120% 80% at 30% 20%, #ffffff0a, #0000 60%), linear-gradient(135deg, #ffffff0d 0%, #ffffff04 100%);
  position: absolute;
  inset: 0;
}

.AGShowGallery-module-scss-module__rhi7QG__skeleton {
  border-radius: inherit;
  background: linear-gradient(110deg, #ffffff08 8%, #ffffff0f 18%, #ffffff08 33%) 0 0 / 200% 100%;
  animation: 1.5s linear infinite AGShowGallery-module-scss-module__rhi7QG__skeletonShimmer;
  position: absolute;
  inset: 0;
}

@keyframes AGShowGallery-module-scss-module__rhi7QG__skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.AGShowGallery-module-scss-module__rhi7QG__infoOverlay {
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity .3s;
  display: flex;
  position: absolute;
  inset: 0;
}

.AGShowGallery-module-scss-module__rhi7QG__infoOverlay.AGShowGallery-module-scss-module__rhi7QG__visible {
  opacity: 1;
}

.AGShowGallery-module-scss-module__rhi7QG__overlayGradient {
  background: linear-gradient(to top, #0009 0%, #0000 60%);
  position: absolute;
  inset: 0;
}

.AGShowGallery-module-scss-module__rhi7QG__overlayContent {
  z-index: 1;
  color: #fff;
  justify-content: flex-start;
  padding: 16px;
  display: flex;
  position: relative;
}

.AGShowGallery-module-scss-module__rhi7QG__overlayStats {
  gap: 12px;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__overlayStat {
  color: #fffffff2;
  text-shadow: 0 1px 2px #0003;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__overlayStatIcon {
  filter: drop-shadow(0 1px 2px #0003);
  width: 14px;
  height: 14px;
}

.AGShowGallery-module-scss-module__rhi7QG__overlayTitle {
  color: #fff;
  text-shadow: 0 1px 2px #0000004d;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .875rem;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
}

.AGShowGallery-module-scss-module__rhi7QG__cardFooter {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__authorInfo {
  flex: 1;
  align-items: center;
  gap: 8px;
  min-width: 0;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__authorAvatar {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.AGShowGallery-module-scss-module__rhi7QG__authorAvatarPlaceholder {
  color: #b8dcff;
  background: linear-gradient(135deg, #339cff4d, #1f8eeb4d);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: .6875rem;
  font-weight: 600;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__authorName {
  color: #fffc;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .8125rem;
  font-weight: 500;
  overflow: hidden;
}

.AGShowGallery-module-scss-module__rhi7QG__cardStats {
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__cardStat {
  color: #fff6;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__cardStatIcon {
  width: 14px;
  height: 14px;
}

.AGShowGallery-module-scss-module__rhi7QG__likeButton {
  cursor: pointer;
  color: #fff6;
  background: none;
  border: none;
  border-radius: 4px;
  align-items: center;
  gap: 4px;
  padding: 2px;
  font-size: .75rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__likeButton:hover, .AGShowGallery-module-scss-module__rhi7QG__liked {
  color: #ff4757;
}

.AGShowGallery-module-scss-module__rhi7QG__likedIcon {
  fill: #ff4757;
  color: #ff4757;
}

.AGShowGallery-module-scss-module__rhi7QG__loading {
  color: #fff6;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
}

.AGShowGallery-module-scss-module__rhi7QG__spinner {
  color: #339cff;
  width: 28px;
  height: 28px;
}

.AGShowGallery-module-scss-module__rhi7QG__emptyCategory {
  text-align: center;
  color: #fff6;
  background: #ffffff08;
  border: 1px dashed #ffffff14;
  border-radius: 32px;
  padding: 120px 0;
  font-size: 1.125rem;
  font-weight: 500;
}

.AGShowGallery-module-scss-module__rhi7QG__footer {
  text-align: center;
  margin-top: 80px;
}

.AGShowGallery-module-scss-module__rhi7QG__viewAllButton {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #ffffff1a;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.AGShowGallery-module-scss-module__rhi7QG__viewAllButton:hover {
  background: #ffffff26;
  transform: scale(1.02);
  box-shadow: 0 10px 30px #0000004d;
}

.AGShowGallery-module-scss-module__rhi7QG__viewAllButton .AGShowGallery-module-scss-module__rhi7QG__chevron {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .AGShowGallery-module-scss-module__rhi7QG__gallery {
    padding: 60px 0 80px;
  }

  .AGShowGallery-module-scss-module__rhi7QG__header {
    margin-bottom: 32px;
  }

  .AGShowGallery-module-scss-module__rhi7QG__title {
    font-size: 2.25rem;
  }

  .AGShowGallery-module-scss-module__rhi7QG__subtitle {
    font-size: 1.0625rem;
  }
}

/* [project]/components/home/AGShowGallery/PreviewDialog/PreviewDialog.module.scss.module.css [app-client] (css) */
.PreviewDialog-module-scss-module__S7RmpW__overlay {
  background: #0a0a0a !important;
}

.PreviewDialog-module-scss-module__S7RmpW__dialogContent {
  z-index: 50;
  background: #0a0a0a;
  display: flex;
  position: fixed;
  inset: 0;
}

.PreviewDialog-module-scss-module__S7RmpW__closeButton {
  z-index: 60;
  cursor: pointer;
  background: #ffffff1a;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: background .2s;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.PreviewDialog-module-scss-module__S7RmpW__closeButton:hover {
  background: #fff3;
}

.PreviewDialog-module-scss-module__S7RmpW__closeIcon {
  color: #fff;
  width: 16px;
  height: 16px;
}

.PreviewDialog-module-scss-module__S7RmpW__layout {
  width: 100%;
  height: 100%;
  display: flex;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebar {
  scrollbar-width: thin;
  scrollbar-color: #fff3 #0000;
  background: #141414;
  flex-direction: column;
  flex-shrink: 0;
  gap: 12px;
  width: 200px;
  padding: 16px 12px;
  display: flex;
  overflow-y: auto;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebar::-webkit-scrollbar {
  width: 4px;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebar::-webkit-scrollbar-track {
  background: none;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebar::-webkit-scrollbar-thumb {
  background: #fff3;
  border-radius: 2px;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarLoading {
  color: #fff9;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarItem {
  cursor: pointer;
  border-radius: 8px;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  transition: background .2s;
  display: flex;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarItem:hover {
  background: #ffffff14;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarItemActive {
  background: #ffffff1a;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarItemActive .PreviewDialog-module-scss-module__S7RmpW__sidebarThumb {
  outline-offset: 1px;
  outline: 2px solid #339cffcc;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarThumb {
  aspect-ratio: 4 / 3;
  background: #ffffff0d;
  border-radius: 6px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarThumb img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarThumbPlaceholder {
  background: #ffffff14;
  width: 100%;
  height: 100%;
}

.PreviewDialog-module-scss-module__S7RmpW__sidebarTitle {
  color: #ffffffbf;
  text-align: left;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.PreviewDialog-module-scss-module__S7RmpW__stage {
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 16px;
  display: flex;
  position: relative;
}

.PreviewDialog-module-scss-module__S7RmpW__stageVideo {
  -o-object-fit: contain;
  object-fit: contain;
  background: #000;
  width: 100%;
  height: 100%;
}

.PreviewDialog-module-scss-module__S7RmpW__stageImage {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.PreviewDialog-module-scss-module__S7RmpW__stagePlaceholder {
  color: #fff6;
  font-size: 1rem;
}

.PreviewDialog-module-scss-module__S7RmpW__cloneButton {
  z-index: 10;
  position: absolute;
  top: 12px;
  right: 64px;
  color: #ffffffe6 !important;
  background: #ffffff1a !important;
  border: none !important;
  border-radius: 999px !important;
  height: 32px !important;
  padding: 0 14px !important;
  font-size: .75rem !important;
  font-weight: 600 !important;
  transition: all .2s !important;
}

.PreviewDialog-module-scss-module__S7RmpW__cloneButton:hover {
  color: #fff !important;
  background: #ffffff2e !important;
}

@media (max-width: 768px) {
  .PreviewDialog-module-scss-module__S7RmpW__sidebar {
    display: none;
  }

  .PreviewDialog-module-scss-module__S7RmpW__stage {
    padding: 8px;
  }

  .PreviewDialog-module-scss-module__S7RmpW__cloneButton {
    top: 12px;
    right: 56px;
    padding: 6px 16px !important;
    font-size: .75rem !important;
  }
}

/* [project]/components/home/HomeFooter/HomeFooter.module.scss.module.css [app-client] (css) */
.HomeFooter-module-scss-module__2u_Ewa__footer {
  background: #000;
  border-top: 1px solid #ffffff0d;
  padding: 24px 0;
}

.HomeFooter-module-scss-module__2u_Ewa__container {
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
}

.HomeFooter-module-scss-module__2u_Ewa__copyright {
  color: #ffffff4d;
  font-size: .8125rem;
}

.HomeFooter-module-scss-module__2u_Ewa__legal {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  display: flex;
}

.HomeFooter-module-scss-module__2u_Ewa__legalLink {
  color: #ffffff4d;
  cursor: pointer;
  font-size: .8125rem;
  text-decoration: none;
  transition: color .2s;
}

.HomeFooter-module-scss-module__2u_Ewa__legalLink:hover {
  color: #fff9;
}

@media (max-width: 768px) {
  .HomeFooter-module-scss-module__2u_Ewa__container {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .HomeFooter-module-scss-module__2u_Ewa__container {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .HomeFooter-module-scss-module__2u_Ewa__legal {
    justify-content: center;
  }
}

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