* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}

body {
  font-family: 'Inter', sans-serif;
}


.pill-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;

  padding: 14px 24px;
  border-radius: 999px;

  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(12px);

  border: 1px solid #000000;
  box-shadow: 0 0 40px rgba(0, 145, 255, 0.08);
}

.animated-title {
  font-size: 4.2rem;
  letter-spacing: 5px;
  font-weight: 400;
  display: flex;
  gap: 2px;
}

.animated-title span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: letterReveal 0.8s ease forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .animated-title {
    font-size: 2.6rem;
    letter-spacing: 3px;
  }
}

.nav-logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  color: #eaeaea;
  font-size: 0.95rem;
}

.nav-links li {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.nav-links li:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #0b0b0b;
  background: #00c3ff;
  transition: 0.3s;
}

.nav-btn:hover {
  filter: brightness(0.9);
}

.nav-btn.outline {
  background: transparent;
  color: #00fbff;
  border: 1px solid rgba(0, 255, 255, 0.6);
}

.nav-btn.outline:hover {
  background: rgba(0, 255, 176, 0.1);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 2s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.85));
  z-index: 1;
}

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0.15) 75%,
      rgba(0, 0, 0, 0.15) 100%
      /* 👈 lighter bottom */
    );
  z-index: 1;
}


.hero-center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-center h1 {
  font-size: 4.2rem;
  letter-spacing: 4px;
  font-weight: 500;
}

.hero-center p {
  margin-top: 14px;
  color: #aaa;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
}

.logo img {
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.logo img:hover {
  opacity: 1;
}

.logo img {
  filter: brightness(1) blur(0.3px);
}

.enter {
  margin-top: 35px;
  padding: 12px 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.4s;
}

.enter:hover {
  background: #fff;
  color: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #777;
  font-size: 22px;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

@media(max-width: 768px) {
  .hero-center h1 {
    font-size: 2.6rem;
    letter-spacing: 2px;
  }
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

.container {
  padding: 80px 3vw;
  max-width: none;
}


.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

/* GALLERY GRID – FIXED 4 PER ROW */
/* =========================
   MASONRY GALLERY (REAL)
========================= */

.gallery {
  column-count: 4;
  column-gap: 22px;
  padding: 0 4vw 80px;
}

.gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  border-radius: 18px;
  display: block;

  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;

  transition: transform .35s ease, filter .35s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.025);
  filter: brightness(1.05);
}


@media (max-width:1200px) {
  .gallery {
    column-count: 4 !important;
  }
}

@media (max-width:768px) {
  .gallery {
    column-count: 3 !important;
  }
}

@media (max-width:480px) {
  .gallery {
    column-count: 3 !important;
  }
}



.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal img {
  max-width: 90%;
  max-height: 80vh;
  margin-bottom: 20px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 30px;
  cursor: pointer;
}

.drive-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 26px;
  text-decoration: none;
}

.animated-title span {
  transform: translateY(30px);
  filter: blur(4px);
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.brand-title {
  font-size: 4.2rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-align: center;
}

.brand-title .mask {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand-title .q,
.brand-title .p {
  display: inline-block;
}

.brand-title .expand {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  transition: max-width 1.6s cubic-bezier(.77, 0, .18, 1),
    filter 1.2s ease;
  filter: blur(6px);
}

.brand-title.expand .expand {
  max-width: 500px;
  filter: blur(0);
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 2.6rem;
    letter-spacing: 3px;
  }
}

html {
  scroll-behavior: smooth;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  padding-bottom: 130px;
  /* 👈 space for thumb strip */
}


.lightbox-img {
  max-width: 92vw;
  max-height: calc(100vh - 200px);
  /* 👈 KEY FIX */
  object-fit: contain;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.nav-links li a {
  color: inherit;
  text-decoration: none;
}

.nav-links li a:hover {
  color: #1cbdbd;
  text-decoration: none;
  transition: ease-in-out 0.3s;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 44px;
  background: rgba(0, 0, 0, 0);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 18px 22px;
  border-radius: 50%;
  z-index: 21000;
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
}


body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open .pill-nav {
  opacity: 0;
  pointer-events: none;
}

.gallery img:hover {
  transform: translateY(-6px) scale(1.04);
}

.poster-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0 10px;
  background: linear-gradient(to right,
      #000 0%,
      transparent 10%,
      transparent 90%,
      #000 100%);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track img {
  height: 260px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.marquee-track img:hover {
  transform: scale(1.08);
}

.poster-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-track img {
    height: 180px;
  }
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-track {
  animation-duration: 60s;
}

.marquee-track img {
  filter: grayscale(100%);
}

.marquee-track img:hover {
  filter: grayscale(0%);
}

.gallery-text {
  padding: 20px 0 10px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 34px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 21000;
}

/* BOTTOM THUMB STRIP */
.thumb-strip {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 14px;
  max-width: 90vw;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.album-viewer {
  height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#mainImage {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
}

.thumb-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
}

.thumb-strip img {
  height: 80px;
  border-radius: 6px;
  opacity: 0.4;
  cursor: pointer;
}

.thumb-strip img.active {
  opacity: 1;
  outline: 2px solid white;
}

.thumb-strip img {
  height: 70px;
  border-radius: 6px;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.thumb-strip img.active {
  opacity: 1;
  transform: scale(1.1);
  outline: 2px solid white;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 20px 5vw 80px;
  margin-top: -30px;
  padding-top: 40px;
  align-items: start;
  /* 👈 THIS is important */
}


.album-card {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.album-thumb {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  transition:
    transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s ease;
}



.album-card:hover .album-thumb {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* GALLERY TITLE */
.gallery-text {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 20px 0 10px;
  /* ⬅ reduced */
}

.gallery-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* ⬅ tighter */
}


.gallery-title h2 {
  font-size: 2.2rem;
  /* slightly smaller = classier */
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}


/* HR LINE */
.gallery-line {
  margin: 0 auto;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.9),
      transparent);
  transition: width 0.35s ease;
}



/* HOVER EFFECT */
.gallery-title:hover .gallery-line {
  width: 140px;
}


.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.view-all-btn {
  padding: 12px 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: all 0.35s ease;
}

.view-all-btn:hover {
  background: #fff;
  color: #000;
}

/* Albums page wrapper */
.albums-page {
  padding-top: 140px;
  /* space for fixed navbar */
}

/* Make navbar stable for albums page */
body.albums-page-active .pill-nav {
  top: 16px;
  position: fixed;
  transform: translateX(-50%);
}

/* Back to top button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.3s ease;
  z-index: 15000;
}

#backToTop:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Active album highlight */
.album-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1);
}


.album-card.active {
  opacity: 1;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Album search */
.album-search {
  display: flex;
  justify-content: center;
  margin: 30px 0 50px;
}

.album-search input {
  width: 320px;
  max-width: 80vw;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.album-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.album-search input:focus {
  border-color: #1cbdbd;
  box-shadow: 0 0 0 2px rgba(28, 189, 189, 0.2);
}

.lightbox-download {
  position: absolute;
  top: 24px;
  right: 80px;
  /* sits next to close */
  font-size: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  z-index: 21000;
}

.lightbox-download:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lightbox-download-wrapper {
  position: absolute;
  top: 24px;
  right: 80px;
  /* space from close button */
  z-index: 22000;
}

.lightbox-download {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 20px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-download:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* DROPDOWN */
.download-menu {
  position: absolute;
  top: 48px;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  min-width: 200px;
  backdrop-filter: blur(10px);
}

.download-menu button {
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.download-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-actions {
  position: absolute;
  top: 22px;
  right: 70px;
}

.icon-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
}

.download-menu {
  position: absolute;
  top: 45px;
  right: 0;
  display: none;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  min-width: 190px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.download-menu button {
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
}

.download-menu button:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* REMOVE CIRCLE AROUND DOWNLOAD ICON */
#downloadBtn {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.lightbox-close,
#downloadBtn {
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

#downloadBtn:focus,
#downloadBtn:active {
  outline: none;
  box-shadow: none;
}

/* =============================
   ALBUM PAGE – CINEMATIC STYLE
============================= */

.album-header {
  padding: 160px 6vw 40px;
  text-align: center;
}

.album-header h1 {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.album-meta {
  margin-top: 14px;
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ALBUM NAV */
.album-nav {
  position: sticky;
  top: 90px;
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.album-nav-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.album-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.album-nav-btn.primary {
  border-color: #00eaff;
  color: #00eaff;
}

.album-nav-btn.primary:hover {
  background: rgba(0, 234, 255, 0.15);
}

/* GALLERY SPACING FIX */
#gallery {
  padding: 60px 5vw 120px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}

/* ALBUM THUMB IMAGES */
#gallery img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
}

#gallery img:hover {
  transform: translateY(-6px) scale(1.04);
  filter: brightness(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .album-header h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
}

/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);

  font-size: 18px;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#backToTop:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =============================
   DOWNLOAD DROPDOWN (LIGHTBOX)
============================= */

.lightbox-actions {
  position: absolute;
  top: 24px;
  right: 72px;
  z-index: 30000;
  /* ABOVE IMAGE */
}

/* DOWNLOAD ICON BUTTON */
.icon-btn {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 6px;
}

/* DROPDOWN MENU */
.download-menu {
  position: absolute;
  top: 38px;
  right: 0;

  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;

  display: none;
  flex-direction: column;
  min-width: 200px;

  z-index: 40000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* SHOW STATE */
.download-menu.show {
  display: flex;
}

/* DROPDOWN BUTTONS */
.download-menu button {
  background: none;
  border: none;
  color: white;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
}

.download-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* GALLERY TITLE CENTER ALIGN */
.gallery-text {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0 10px;
  /* 👈 less dead space */
}

.gallery-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  text-align: center;
}

/* Animated HR line */
.gallery-line {

  width: 60px;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      #ffffff,
      transparent);
  align-items: center;
  transition: width 0.4s ease;
}

/* Expand on hover */
.gallery-text:hover .gallery-line {
  width: 120px;
}

.album-card:hover {
  transform: translateY(-10px);
}

.album-card:hover .album-thumb {
  transform: scale(1.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.album-card:hover h3 {
  color: #ffffff;
  transform: translateY(-4px);
}

.album-card:hover h3 {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 480px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.album-card {
  width: 100%;
  max-width: 260px;
  /* cinematic poster width */
}

.scroll-indicator {
  opacity: 0.85;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

/* =============================
   CONTACT SECTION
============================= */

.contact-section {
  padding: 120px 6vw 140px;
  background: radial-gradient(ellipse at top,
      rgba(255, 255, 255, 0.04),
      transparent 60%);
  text-align: center;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.4rem;
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 18px;
}

.contact-sub {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-btn {
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.contact-btn.primary {
  background: #fff;
  color: #000;
}

.contact-btn.primary:hover {
  transform: translateY(-3px);
}

.contact-btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.contact-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =============================
   ABOUT PAGE
============================= */

.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 6vw 80px;
  text-align: center;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.9;
}

.team-section {
  padding: 80px 6vw 120px;
  text-align: center;
}

.team-title {
  font-size: 2rem;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 👈 KEY */
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .team-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .team-card h3 {
    font-size: 1rem;
  }

  .team-card p {
    font-size: 0.85rem;
  }
}


.team-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.team-card h3 {
  font-weight: 500;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 14px;
}

.team-card a {
  font-size: 0.85rem;
  color: #00eaff;
  text-decoration: none;
}

.team-card a:hover {
  text-decoration: underline;
}

.poster-marquee {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(to right,
      #000 0%,
      transparent 12%,
      transparent 88%,
      #000 100%);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee-infinite 55s linear infinite;
}

.marquee-track img {
  height: 260px;
  width: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.marquee-track img:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* 🔥 TRUE INFINITE SCROLL */
@keyframes marquee-infinite {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional, cinematic) */
.poster-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-track img {
    height: 180px;
  }
}

.hamburger {
  display: none;
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
  }

  .pill-nav {
    width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 36px;
  }
}

.mobile-menu {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);

  width: calc(100% - 40px);
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(14px);

  border-radius: 18px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 18px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;

  z-index: 9999;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
}

.mobile-socials {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
}

.mobile-menu.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.contact-sub a {
  color: #1cbdbd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-sub a:hover {
  text-decoration: underline;
  color: aqua;
}

/* =============================
   FLAC AUDIO SECTION
============================= */

.flac-section {
  padding: 100px 6vw;
  background: radial-gradient(circle at top,
      rgba(0, 255, 255, 0.05),
      transparent 60%);
}

.flac-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.flac-title {
  font-size: 2.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.flac-subtitle {
  margin-top: 12px;
  color: #aaa;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
}

.flac-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.flac-card {
  background: rgba(15, 15, 15, 0.9);
  border-radius: 18px;
  padding: 36px 30px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.flac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.flac-card h3 {
  margin-bottom: 18px;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.flac-card ul {
  list-style: none;
  padding: 0;
}

.flac-card li {
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.95rem;
}

/* MP3 vs FLAC accent */
.flac-card.mp3 h3 {
  color: #ff6b6b;
}

.flac-card.flac h3 {
  color: #00fbff;
}

/* CTA */
.flac-cta {
  margin-top: 60px;
}

.flac-cta p {
  color: #aaa;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.flac-btn {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 999px;
  text-decoration: none;
  color: #00fbff;
  border: 1px solid rgba(0, 255, 255, 0.6);
  letter-spacing: 2px;
  font-size: 0.85rem;
  transition: all 0.35s ease;
}

.flac-btn:hover {
  background: rgba(0, 255, 255, 0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .flac-grid {
    grid-template-columns: 1fr;
  }

  .flac-title {
    font-size: 1.9rem;
    letter-spacing: 3px;
  }
}

.social-icon i {
  font-size: 18px;
}

.nav-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
}

.mobile-socials a {
  font-size: 22px;
  margin: 10px;
  display: inline-block;
}

/* =========================
   CINEMATIC ALBUM POSTERS
========================= */

.album-card {
  text-decoration: none;
  color: white;
  display: block;
}

/* Poster image */
.album-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .5s ease, filter .5s ease;
}

/* Overlay gradient */
.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 22px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 15%,
      rgba(0, 0, 0, 0.65) 40%,
      rgba(0, 0, 0, 0.25) 70%,
      transparent);

  opacity: 0;
  transition: opacity .45s ease;
}

/* Album name */
.album-title {
  font-size: .95rem;
  letter-spacing: 1px;
  text-align: center;
  transform: translateY(14px);
  opacity: 0;
  transition: .45s ease;
}

/* View button */
.album-view {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(18px);
  transition: .45s ease;
}

/* Hover effects */
.album-card:hover .album-thumb {
  transform: scale(1.06);
  filter: brightness(.75);
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.album-card:hover .album-title,
.album-card:hover .album-view {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile — always visible (no hover) */
@media (hover:none) {
  .album-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
  }

  .album-title,
  .album-view {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   ALBUM CARD STRUCTURE
========================= */

.album-card {
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Poster */
.album-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .45s ease, filter .45s ease;
}

/* Bottom title (default visible) */
.album-bottom-title {
  font-size: .9rem;
  opacity: .85;
  letter-spacing: 1px;
  transition: opacity .35s ease, transform .35s ease;
}

/* =========================
   OVERLAY
========================= */

.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 22px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, .95) 10%,
      rgba(0, 0, 0, .6) 40%,
      rgba(0, 0, 0, .2) 70%,
      transparent);

  opacity: 0;
  transition: opacity .4s ease;
}

/* Overlay text */
.overlay-title {
  font-size: 1rem;
  text-align: center;
  transform: translateY(16px);
  opacity: 0;
  transition: .4s ease;
}

.overlay-btn {
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, .7);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: .4s ease;
}

/* =========================
   HOVER ANIMATION
========================= */

.album-card:hover .album-thumb {
  transform: scale(1.06);
  filter: brightness(.75);
}

/* show overlay */
.album-card:hover .album-overlay {
  opacity: 1;
}

/* show overlay text */
.album-card:hover .overlay-title,
.album-card:hover .overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

/* hide bottom title */
.album-card:hover .album-bottom-title {
  opacity: 0;
  transform: translateY(8px);
}

/* =========================
   MOBILE (always visible)
========================= */

@media (hover:none) {
  .album-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
  }

  .overlay-title,
  .overlay-btn {
    opacity: 1;
    transform: none;
  }

  .album-bottom-title {
    display: none;
  }
}

.album-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 30px 0 50px;
  flex-wrap: wrap;
}

#sortAlbums {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: .9rem;
  cursor: pointer;
  transition: .25s;
}

#sortAlbums:hover {
  border-color: #1cbdbd;
}

/* =============================
   ALBUM CONTROLS WRAPPER
============================= */

.album-controls {
  margin: 28px auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =============================
   SEARCH BAR
============================= */

#albumSearch {
  width: 260px;
  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: white;
  font-size: 14px;
  letter-spacing: .5px;

  backdrop-filter: blur(10px);
  outline: none;
  transition: all .25s ease;
}

#albumSearch::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#albumSearch:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 0 2px rgba(0, 240, 255, .15);
  background: rgba(255, 255, 255, 0.07);
}

/* =============================
   SORT DROPDOWN (CUSTOM LOOK)
============================= */

#sortAlbums {
  padding: 12px 42px 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: white;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;

  backdrop-filter: blur(10px);
  appearance: none;
  outline: none;

  transition: all .25s ease;

  /* custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, #00f0ff 50%),
    linear-gradient(135deg, #00f0ff 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 4px),
    calc(100% - 12px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-position-y: 50%;
  background-repeat: no-repeat;
}

#sortAlbums:hover {
  border-color: #00f0ff;
  background: rgba(255, 255, 255, 0.07);
}

#sortAlbums:focus {
  border-color: #00f0ff;
  box-shadow: 0 0 0 2px rgba(0, 240, 255, .15);
}

/* dropdown list (limited styling support) */
#sortAlbums option {
  background: #0f0f0f;
  color: white;
}

/* =============================
   MOBILE RESPONSIVE
============================= */

@media(max-width:600px) {

  .album-controls {
    gap: 12px;
  }

  #albumSearch {
    width: 180px;
    font-size: 13px;
  }

  #sortAlbums {
    font-size: 13px;
    padding: 10px 36px 10px 14px;
  }

}

/* =============================
   FLAC SECTION CENTER FIX
============================= */

#flac {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* wrapper that previously held 2 boxes */
.flac-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  /* center horizontally */
  align-items: center;
  margin-top: 40px;
}

/* the actual card */
.flac-box {
  max-width: 520px;
  width: 90%;
  text-align: left;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 36px;

  backdrop-filter: blur(12px);
  transition: all .35s ease;
}

/* hover cinematic glow */
.flac-box:hover {
  border-color: #00f0ff;
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.15);
  transform: translateY(-4px);
}

/* title */
.flac-box h3 {
  color: #00f0ff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* points */
.flac-box ul {
  padding-left: 0;
}

.flac-box li {
  list-style: none;
  margin: 10px 0;
  color: #dcdcdc;
  position: relative;
  padding-left: 22px;
}

.flac-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00f0ff;
}

/* telegram button center */
.flac-cta {
  margin-top: 40px;
  text-align: center;
}

/* TOGGLE WRAPPER */
.view-toggle {
  position: relative;
  display: flex;
  align-items: center;
  width: 92px;
  height: 38px;
  background: #0f0f0f;
  border-radius: 50px;
  cursor: pointer;
  padding: 4px;
  transition: 0.25s;
}

/* SLIDING BLUE BACKGROUND */
.toggle-slider {
  position: absolute;
  width: 44px;
  height: 30px;
  background: #1a73e8;
  border-radius: 40px;
  left: 4px;
  transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

.view-toggle.list-active .toggle-slider {
  left: 44px;
}

/* ICON BUTTONS */
.toggle-btn {
  width: 44px;
  height: 30px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  transition: 0.25s;
}

.toggle-btn.active {
  color: white;
}

.toggle-btn i {
  font-size: 15px;
}

/* DEFAULT (GRID) — keep your current centered look */
.albums-page {
  max-width: 1200px;
  margin: auto;
}

/* LIST VIEW — FULL WIDTH LIKE DRIVE */
body.list-view .albums-page {
  padding: 0 40px;
}

/* LIST MODE CONTAINER */
body.list-view .album-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

body.list-view .album-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 72px;

  padding: 8px 16px;
  border-radius: 10px;
  background: transparent;

  transition: 0.18s ease;
}

/* hover like drive */
body.list-view .album-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.list-view .album-thumb {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  margin-right: 18px;
  background-size: cover;
  background-position: center;
}

body.list-view .album-overlay {
  display: none;
}

body.list-view .album-bottom-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* remove card rounded feel in list */
body.list-view .album-card {
  border-radius: 0;
}

/* create full-width row illusion */
body.list-view .album-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* VERY IMPORTANT */
body.list-view .album-card {
  display: flex;
  width: 100%;
  min-width: 100%;
}

/* make grid container full width */
body.list-view .album-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
}

body.list-view .album-card {
  justify-content: flex-start;
  align-items: center;
  height: 72px;
  padding: 8px 18px;
  border-radius: 8px;
}

body.list-view .album-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.list-view .album-thumb {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  margin-right: 18px;
}

/* folder icon default hidden (grid mode) */
.folder-icon {
  display: none;
}

body.list-view .album-thumb {
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* show folder */
body.list-view .folder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

/* folder icon style */
body.list-view .folder-icon i {
  font-size: 22px;
  color: #8ab4f8;
  /* Google Drive blue */
}

body.list-view .album-overlay {
  display: none;
}

/* Keep page layout stable */
.albums-page {
  max-width: 1200px;
  margin: auto;
}

/* ROW STRUCTURE */
body.list-view .album-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 6px 16px;
  gap: 14px;

  border-radius: 8px;
  text-align: left;
}

/* hover highlight (do NOT hide text) */
body.list-view .album-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* remove overlay entirely */
body.list-view .album-overlay {
  display: none !important;
}

/* thumbnail container becomes icon holder */
body.list-view .album-thumb {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin: 0;
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* folder icon LEFT SIDE */
body.list-view .folder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.list-view .folder-icon i {
  font-size: 20px;
  color: #8ab4f8;
}

/* TITLE beside icon */
body.list-view .album-bottom-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
}

.albums-page {
  max-width: 1200px;
  margin-top: 150px;
  padding: 0 20px;
}

/* LIST MODE */
body.list-view .album-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* each album becomes full row */
body.list-view .album-card {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 6px 14px;
  border-radius: 10px;
  text-align: left;
}

/* hover */
body.list-view .album-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.grid-view .album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

/* remove thumbnail image */
body.list-view .album-thumb {
  background: none !important;
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-right: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* show folder icon */
.folder-icon {
  display: none;
  justify-content: left;
}

body.list-view .folder-icon {
  display: flex;
}

body.list-view .folder-icon i {
  font-size: 20px;
  color: #8ab4f8;
}

/* kill overlay completely in list */
body.list-view .album-overlay {
  display: none !important;
}

/* keep title visible always */
body.list-view .album-bottom-title {
  opacity: 1 !important;
  transform: none !important;
  margin: 0;
  font-size: 15px;
}

/* LIST VIEW OVERRIDE — RESET CARD BEHAVIOR */
body.list-view .album-card {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
  gap: 14px;
}

body.list-view .album-thumb {
  margin: 0 !important;
  flex: 0 0 40px;
}

body.list-view .folder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

body.list-view .folder-icon i {
  font-size: 20px;
  color: #8ab4f8;
}

body.list-view .album-bottom-title {
  margin: 0 !important;
  text-align: left !important;
  width: auto !important;
}

body.list-view .album-card::before,
body.list-view .album-card::after {
  display: none !important;
  content: none !important;
  border: none !important;
}

body.list-view .album-card:hover .album-bottom-title {
  opacity: 1 !important;
  transform: none !important;
}

/* make title container positioning context */
body.list-view .album-bottom-title {
  position: relative;
  padding-right: 22px;
  /* space for arrow */
}

/* arrow icon */
body.list-view .album-bottom-title::after {
  content: "\f054";
  /* FontAwesome chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);

  font-size: 12px;
  opacity: 0;
  color: #9aa0a6;

  transition: 0.18s ease;
}

body.list-view .album-card:hover .album-bottom-title::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

body.list-view .album-card:hover .album-bottom-title::after {
  color: #8ab4f8;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ddd;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: .2s;
}

.pagination button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pagination button.active {
  background: #1a73e8;
  border-color: #1a73e8;
  color: white;
}

.about-content a {
  color: #00c3ff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-content a:hover {
  color: #1cbdbd;
  text-decoration: underline;
}

/* ============================================
   FORCE REAL MASONRY FOR ALBUM PAGE
   (OVERRIDES OLD GRID WITHOUT DELETING IT)
============================================ */

/* kill the grid only for album viewer */
.album-header+#gallery,
body:has(.album-header) #gallery {
  display: block !important;
  column-count: 4 !important;
  column-gap: 22px !important;
  padding: 40px 5vw 120px !important;
}

/* images keep real ratio */
.album-header+#gallery img,
body:has(.album-header) #gallery img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;

  margin-bottom: 22px !important;
  border-radius: 18px;

  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  page-break-inside: avoid !important;

  transition: transform .35s ease, filter .35s ease;
}

/* hover effect */
.album-header+#gallery img:hover,
body:has(.album-header) #gallery img:hover {
  transform: scale(1.025);
  filter: brightness(1.05);
}

/* responsive columns */
@media (max-width:1200px) {
  body:has(.album-header) #gallery {
    column-count: 3 !important;
  }
}

@media (max-width:768px) {
  body:has(.album-header) #gallery {
    column-count: 2 !important;
  }
}

@media (max-width:480px) {
  body:has(.album-header) #gallery {
    column-count: 1 !important;
  }
}

/* LANDSCAPE = HERO SIZE */
body:has(.album-header) #gallery img.landscape {
  width: 100% !important;
  grid-column: 1 / -1;
  display: block;
}

/* switch masonry engine to grid masonry */
body:has(.album-header) #gallery {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 10px;
  gap: 22px;
}

/* each image auto height */
body:has(.album-header) #gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* responsive */
@media(max-width:1200px) {
  body:has(.album-header) #gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px) {
  body:has(.album-header) #gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:480px) {
  body:has(.album-header) #gallery {
    grid-template-columns: repeat(3, 1fr);
    row-gap: none !important;
    column-gap: 0px;
  }
}

.scroll-indicator a {
  text-decoration: none;
  color: grey;
}

.gallery {
  column-count: 4;
  column-gap: 22px;
  padding: 0 4vw 80px;
}

.gallery img {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  border-radius: 18px;
  display: block;

  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;

  transition: transform .35s ease, filter .35s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.025);
  filter: brightness(1.05);
}


@media (max-width:1200px) {
  .gallery {
    column-count: 4 !important;
  }
}

@media (max-width:768px) {
  .gallery {
    column-count: 3 !important;
  }
}

@media (max-width:480px) {
  .gallery {
    column-count: 3 !important;
  }
}

/* base glass button */
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

/* icon */
.icon {
  width: 22px;
  height: 22px;
  color: #e8eaed;
  transition: transform .25s ease;
}

/* download hover */
#downloadBtn:hover {
  background: rgba(0, 170, 255, 0.18);
  border-color: rgba(0, 170, 255, 0.55);
}

#downloadBtn:hover .icon {
  transform: translateY(2px);
}

/* close hover */
#closeBtn:hover {
  background: rgba(255, 70, 70, 0.18);
  border-color: rgba(255, 70, 70, 0.55);
}

#closeBtn:hover .icon {
  transform: rotate(90deg);
}

.lightbox-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.lightbox-close:hover {
  background: rgba(255, 70, 70, 0.18);
  border-color: rgba(255, 70, 70, 0.5);
  transform: scale(1.08) rotate(90deg);
}

.close-icon {
  width: 22px;
  height: 22px;
  color: #e8eaed;
  transition: transform .25s ease;
}

/* ===== FORCE MODERN BUTTON STYLE ===== */

#downloadBtn,
#closeBtn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.18) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  font-size: 0 !important;
  /* hides any text icon */
  cursor: pointer;
  transition: all .25s ease !important;
}

/* remove old icon styling */
#downloadBtn::before,
#closeBtn::before {
  content: none !important;
}

/* svg icon */
#downloadBtn svg,
#closeBtn svg {
  width: 22px;
  height: 22px;
  color: #e8eaed;
  pointer-events: none;
  transition: transform .25s ease;
}

/* download hover */
#downloadBtn:hover {
  background: rgba(0, 170, 255, 0.18) !important;
  border-color: rgba(0, 170, 255, 0.55) !important;
  transform: scale(1.08);
}

#downloadBtn:hover svg {
  transform: translateY(2px);
}

/* close hover */
#closeBtn:hover {
  background: rgba(255, 70, 70, 0.18) !important;
  border-color: rgba(255, 70, 70, 0.55) !important;
  transform: scale(1.08);
}

#closeBtn:hover svg {
  transform: rotate(90deg);
}

#downloadBtn {
  margin-right: 12px;
}

.poster-marquee {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.poster-marquee.dragging {
  cursor: grabbing;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transform: translateX(0);
  will-change: transform;
}

.marquee-track img {
  height: 220px;
  border-radius: 14px;
  user-select: none;
  pointer-events: auto;
}

.poster-marquee {
  overflow: hidden;
  position: relative;
  cursor: grab;
  touch-action: pan-y;
  /* allow vertical scroll but capture horizontal */
}

.poster-marquee.dragging {
  cursor: grabbing;
}

.marquee-track img {
  -webkit-user-drag: none;
  /* stop image drag ghost */
  user-select: none;
  pointer-events: auto;
}

#posterMarquee {
  overflow: hidden;
  touch-action: none;
  /* 🔥 MOST IMPORTANT LINE */
}

#posterMarquee * {
  pointer-events: auto;
}

#posterMarquee img {
  user-select: none;
  -webkit-user-drag: none;
}
