/* Ethereal Darkroom Style for MJFS - Midjourney Fantasy Studio */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Syncopate:wght@400;700&display=swap');

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Ethereal Darkroom color palette */
  --darkroom-black: #0A0A0A;
  --darkroom-gray: #121212;
  --card-dark: #2D2D2D;
  --text-primary: #FFFFFF;
  --text-secondary: #a8a8a8;
  --text-muted: #666666;
  --accent-purple: #7B2CBF;
  --accent-blue: #4CC9F0;
  --gradient-accent: linear-gradient(135deg, #7B2CBF 0%, #4CC9F0 100%);
  --gradient-glow: linear-gradient(135deg, rgba(123, 44, 191, 0.8) 0%, rgba(76, 201, 240, 0.8) 100%);
  --border-light: #2a2a4a;
  --border-medium: #3a3a5a;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(123, 44, 191, 0.3);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Typography system */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--darkroom-black);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ethereal Darkroom background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(76, 201, 240, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(123, 44, 191, 0.05) 0%, transparent 50%);
  background-size: 800px 800px, 600px 600px, 400px 400px;
  background-position: 0% 0%, 100% 100%, 50% 50%;
  pointer-events: none;
  z-index: 0;
  animation: etherealFloat 20s ease-in-out infinite alternate;
}

@keyframes etherealFloat {
  0% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
  }
  100% {
    background-position: 100% 100%, 0% 0%, 50% 80%;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(123, 44, 191, 0.3);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-decoration {
  background: var(--gradient-accent);
  height: 2px;
  position: relative;
  overflow: hidden;
}

.header-decoration::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: etherealShimmer 3s ease-in-out infinite;
}

@keyframes etherealShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-link:hover::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: var(--gradient-glow);
  border-radius: 12px;
  opacity: 0.2;
  z-index: -1;
  filter: blur(20px);
}

.logo-image {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
}

.logo-link:hover .logo-image {
  box-shadow: 0 0 30px rgba(123, 44, 191, 0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Syncopate', 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
  opacity: 0.8;
}

/* Navigation */
.nav {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  transition: all var(--transition-base);
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: rgba(123, 44, 191, 0.1);
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(123, 44, 191, 0.2);
}

.nav-link.active {
  background: var(--gradient-accent);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(123, 44, 191, 0.5);
}

.nav-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 450px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(45, 45, 45, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.search-wrapper:focus-within {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2), var(--shadow-glow);
}

#searchInput {
  flex: 1;
  padding: 1rem 1.2rem;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
}

#searchInput::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.search-btn {
  padding: 1rem 1.2rem;
  background: var(--gradient-accent);
  border: none;
  color: white;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.search-btn:hover::before {
  left: 100%;
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(123, 44, 191, 0.4);
}

/* Main content */
.main {
  margin-top: 100px;
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 300px);
}

/* Gallery Section */
.gallery-section {
  margin-bottom: 4rem;
  position: relative;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.gallery-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(123, 44, 191, 0.3);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 20px rgba(123, 44, 191, 0.3));
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 30px rgba(76, 201, 240, 0.4));
  }
}

.gallery-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.gallery-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Ethereal accent text */
.ethereal-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  position: relative;
}

.ethereal-accent::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0.5;
  border-radius: 1px;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  position: relative;
}

.image-card {
  background: var(--card-dark);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.image-card.fade-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.image-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  border-color: var(--accent-purple);
}

.image-card.fade-in:hover {
  transform: translateY(-12px) scale(1.02);
}

.image-card:hover .image-overlay {
  opacity: 1;
}

.image-card:hover::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-glow);
  border-radius: 18px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--card-dark) 0%, rgba(45, 45, 45, 0.8) 100%);
}

.image-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
  aspect-ratio: 1;
}

/* Image placeholder */
.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card-dark);
  transition: opacity var(--transition-base);
}

.image-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(123, 44, 191, 0.3));
}

.image-placeholder .loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border-light);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px rgba(123, 44, 191, 0.3);
}

.image-placeholder .loading-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
}

.image-card:hover .image-item {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(10, 10, 10, 0.8) 100%
  );
  opacity: 0;
  transition: all var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.image-info {
  color: white;
  width: 100%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.image-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.image-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.9;
}

.image-author {
  font-style: italic;
  font-weight: 300;
}

.image-likes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: rgba(123, 44, 191, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-likes .heart {
  font-size: 1.1rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Loading and No Results */
.loading {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(123, 44, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-light);
  border-top-color: var(--accent-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.3);
}

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

.loading p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card-dark);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.no-results::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
}

.no-results h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.no-results p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--card-dark);
  border-top: 1px solid var(--border-light);
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.4);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 3rem 0;
}

.footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.4;
}

.footer-nav {
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-section h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.footer-nav-section a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  position: relative;
  padding: 0.2rem 0;
}

.footer-nav-section a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-base);
}

.footer-nav-section a:hover {
  color: var(--text-primary);
}

.footer-nav-section a:hover::before {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
}

.footer-copyright,
.footer-motto {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  .main {
    margin-top: 9rem;
  }

  .logo {
    order: 1;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .search-container {
    order: 2;
    max-width: 300px;
  }

  .nav-link {
    padding: 0.6rem 1rem;
  }

  .nav-text {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .gallery-title {
    font-size: 2.5rem;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .logo-text {
    display: none;
  }

  .main {
    margin-top: 9rem;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav-link {
    padding: 0.6rem 0.8rem;
  }

  .search-container {
    max-width: 100%;
  }

  #searchInput {
    padding: 0.8rem 1rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .gallery-subtitle {
    font-size: 1.2rem;
  }

  .footer-name {
    font-size: 1.8rem;
  }
}

/* Search Results Page */
.search-results-section {
  margin-bottom: 3rem;
}

.search-header {
  text-align: center;
  margin-bottom: 3rem;
}

.search-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.search-query-display {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 300;
  padding: 0.5rem 1.5rem;
  background: rgba(123, 44, 191, 0.1);
  border: 1px solid rgba(123, 44, 191, 0.2);
  border-radius: 25px;
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.loading-more {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.no-results-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--card-dark);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.no-results-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
}

.no-results-icon {
  margin-bottom: 2rem;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(123, 44, 191, 0.3));
}

.no-results-content h2 {
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.no-results-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.search-suggestions {
  margin-bottom: 2.5rem;
}

.search-suggestions .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1rem;
}

.search-suggestions .tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(123, 44, 191, 0.1);
  border: 1px solid rgba(123, 44, 191, 0.2);
  border-radius: 25px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-suggestions .tag:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(123, 44, 191, 0.3);
}

.browse-gallery {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
}

.browse-gallery p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.explore-btn {
  display: inline-block;
  background: var(--gradient-accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.explore-btn:hover::before {
  left: 100%;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 44, 191, 0.4);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }