```css
:root {
  --bg: #ffffff;
  --text: #111111;
  --panel: #f2f2f2;
  --link: #0066cc;
  --link-hover: #004999;
  --gallery-bg: #eaeaea;
}

[data-theme="light"] {
  --bg: #ffffff;
  --text: #111111;
  --panel: #f2f2f2;
  --link: #0066cc;
  --link-hover: #004999;
  --gallery-bg: #eaeaea;
}

[data-theme="dark"] {
  --bg: #0f1115;
  --text: #e6e6e6;
  --panel: #1c1f26;
  --link: #9ecbff;
  --link-hover: #cfe3ff;
  --gallery-bg: #000000;
}

[data-theme="wolf"] {
  --bg: #dfe5ea;
  --text: #2b2f33;
  --panel: #cfd6dc;
  --link: #6b8fb3;
  --link-hover: #4f7396;
  --gallery-bg: #bfc7ce;
}

[data-theme="bumblebee"] {
  --bg: #000000;
  --text: #eac556;
  --panel: #111111;
  --link: #eac556;
  --link-hover: #fff2b0;
  --gallery-bg: #000000;
}

[data-theme="pink"] {
  --bg: #fde6ef;
  --text: #4a2c3a;
  --panel: #f8c9da;
  --link: #c84b7d;
  --link-hover: #a63865;
  --gallery-bg: #f3b6cd;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: Verdana;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
}

#gallery {
  max-width: 3000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.gallery-wrapper {
  position: relative;
  background: var(--gallery-bg);
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  width: 100%; 
  max-width: 100vw; 
}


.gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  flex-wrap: nowrap;
}

.gallery-item {
  width: 200px;
  flex-shrink: 0;
  text-align: center;
  color: var(--text);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05) rotate(1.5deg);
  filter: brightness(1.1);
}

.credit {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}


.credit a {
  color: var(--link);
}

.progress-bar {
     height: 100% !important;
}

.gallery-nav {
  z-index: 20;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
  border-radius: 0.25rem;
}

.gallery-nav.prev {
  left: 0;
}

.gallery-nav.next {
  right: 0;
}

.card.text-uppercase.bg-faded {
    background-color: #d0d0d0 !important; 
}

.card.highlight {
  background-color: #D9D9D9; 
  color: #111; 
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  cursor: default;
}

@media (max-width: 768px) {
  .gallery-wrapper {
    width: calc(150px * 6 + 12px * 5);
  }
  .gallery-item {
    width: 150px;
  }
  .gallery-item img {
    width: 150px;
    height: 150px;
  }
  .nav {
    font-size: 2rem;
  }
}

.bg-faded {
  background-color:white;
}

.nav-tabs .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem; 
}

.nav-tabs .nav-link i {
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
}


@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  .gallery-wrapper {
    width: 100%;
    padding: 0;
  }
  .gallery-track {
    gap: 0.5rem;
  }
  .gallery-item {
    width: 120px;
    margin-bottom: 2rem;
  }
  .gallery-item img {
    width: 120px;
    height: 120px;
  }
  .nav {
    font-size: 1.8rem;
    padding: 0 0.25rem;
  }
  .lightbox img {
    max-width: 95vw;
    max-height: 80vh;
  }
}

.footer-nav {
  position: relative; 
  background-color: var(--panel);
  color: var(--text);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 0.75rem 0;
  border-top: 2px solid rgba(0,0,0,0.1);
  transition: background-color 0.3s, color 0.3s;
}

.footer-nav a {
  color: var(--link);
  text-decoration: none;
  margin: 0 1rem;
}

.footer-nav a:hover {
  color: var(--link-hover);
}


#site-footer {
  display: flex;
  justify-content: center;      
  gap: 1rem;                    
  padding: 1rem 0;
  background-color: var(--panel); 
  color: var(--text);            
  font-size: 0.95rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;           
  width: 100%;
  text-align: center;
}


#site-footer a {
  color: var(--link); 
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

#site-footer a:hover {
  color: var(--link-hover);
}
```
