.showcase_main__4INMJ {
  min-height: calc(100vh - 65px - 200px);
  background: linear-gradient(180deg, var(--bg-app) 0%, #f8f6f2 100%);
}

/* Hero Section */
.showcase_heroSection__97Eu_ {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(135deg, #fff9f5 0%, #fef6f0 50%, #fdf5eb 100%);
  position: relative;
  overflow: hidden;
}

.showcase_heroSection__97Eu_::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 97, 7, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 97, 7, 0.06) 0%, transparent 40%);
  animation: showcase_float__AFEx5 25s ease-in-out infinite;
}

@keyframes showcase_float__AFEx5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(1%, 1%); }
}

.showcase_heroBadge__OrWVk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.showcase_heroBadgeIcon__iqED1 {
  font-size: 16px;
}

.showcase_title__yth_e {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--text-strong) 0%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase_subtitle__1tVHE {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 auto 32px;
  max-width: 500px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.showcase_heroActions__34GNR {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.showcase_submitButton__Daeys {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b2e 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255, 97, 7, 0.25);
}

.showcase_submitButton__Daeys:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 97, 7, 0.35);
}

.showcase_browseButton__Kt3z8 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.showcase_browseButton__Kt3z8:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Stats Section */
.showcase_statsSection__jObra {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 24px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.showcase_statItem__NuYJ7 {
  text-align: center;
}

.showcase_statNumber__M1vR4 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-strong);
  display: block;
}

.showcase_statLabel__J8N_G {
  font-size: 14px;
  color: var(--text-muted);
}

/* Filter Section */
.showcase_filterSection__cGdf2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

.showcase_filterTabs__RlUeA {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.showcase_filterTab__RSchI {
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase_filterTab__RSchI:hover {
  border-color: var(--border-strong);
  color: var(--text);
  transform: translateY(-1px);
}

.showcase_filterTab__RSchI.showcase_active__z0fxw {
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b2e 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 97, 7, 0.3);
}

/* Gallery Grid */
.showcase_galleryGrid__eScXt {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  padding: 0 0 60px;
  list-style: none;
  margin: 0;
}

.showcase_card__fm4IO {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.showcase_card__fm4IO:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 97, 7, 0.3);
}

.showcase_cardImage__51jyP {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-secondary);
}

.showcase_cardImage__51jyP img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase_card__fm4IO:hover .showcase_cardImage__51jyP img {
  transform: scale(1.08);
}

.showcase_cardOverlay__0SWH9 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.showcase_card__fm4IO:hover .showcase_cardOverlay__0SWH9 {
  opacity: 1;
}

.showcase_viewButton__zz7fK {
  padding: 10px 24px;
  background: white;
  color: var(--text-strong);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.3s;
}

.showcase_card__fm4IO:hover .showcase_viewButton__zz7fK {
  transform: translateY(0);
}

.showcase_cardPlaceholder__796cF {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b2e 100%);
}

.showcase_cardPlaceholderIcon__vvjzV {
  font-size: 3rem;
}

.showcase_cardBody__yuDmE {
  padding: 20px;
}

.showcase_cardTitle__rE81D {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase_cardDescription__XibWC {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase_cardMeta__O8AoZ {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.showcase_cardAuthor__l2jK3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.showcase_cardAvatar__o9N0a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #ff7b2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: 600;
}

.showcase_cardTags__8sV_s {
  display: flex;
  gap: 6px;
}

.showcase_cardTag__ygiDr {
  padding: 4px 10px;
  background: var(--bg-muted);
  border-radius: 50px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Loading */
.showcase_loading__z8NxR {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 100px 20px;
  color: var(--text-muted);
}

.showcase_loadingSpinner__GvSnL {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: showcase_spin__wUXVo 0.8s linear infinite;
}

@keyframes showcase_spin__wUXVo {
  to { transform: rotate(360deg); }
}

/* Empty State */
.showcase_empty__fpuDH {
  text-align: center;
  padding: 100px 20px;
}

.showcase_emptyIcon__p6GEy {
  font-size: 5rem;
  margin-bottom: 24px;
}

.showcase_emptyTitle__ZGaiY {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 12px;
}

.showcase_emptyText__JvR8X {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 32px;
}

/* Lightbox */
.showcase_lightbox__jOGjB {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.showcase_lightboxBackdrop__PIWFN {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.showcase_lightboxContent__nMejZ {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: showcase_zoomIn__Z_xTT 0.3s ease;
}

@keyframes showcase_zoomIn__Z_xTT {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.showcase_lightboxImage__jICaR {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.showcase_lightboxClose__DjjG1 {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.showcase_lightboxClose__DjjG1:hover {
  transform: scale(1.1);
}

.showcase_lightboxInfo__X_EXv {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.showcase_lightboxTitle__8FcDp {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.showcase_lightboxAuthor___wpZ1 {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .showcase_heroSection__97Eu_ {
    padding: 60px 20px 40px;
  }

  .showcase_title__yth_e {
    font-size: 32px;
  }

  .showcase_subtitle__1tVHE {
    font-size: 16px;
  }

  .showcase_heroActions__34GNR {
    flex-direction: column;
    align-items: center;
  }

  .showcase_statsSection__jObra {
    flex-wrap: wrap;
    gap: 24px;
  }

  .showcase_galleryGrid__eScXt {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .showcase_filterSection__cGdf2 {
    padding: 24px 16px 0;
  }

  .showcase_lightbox__jOGjB {
    padding: 20px;
  }
}

