/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fcf0f5;
  font-family:
    "Segoe UI",
    "Poppins",
    system-ui,
    -apple-system,
    sans-serif;
  color: #5a3d4a;
  scroll-behavior: smooth;
}

body {
  overflow-y: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   PINK SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #fce4ec;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #f06292;
  border-radius: 4px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #ec407a;
}
::-webkit-scrollbar-corner {
  background: #fce4ec;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #f06292 #fce4ec;
}

/* ============================================================
   SCROLL MESSAGE (INTRO)
   ============================================================ */
.scroll-msg {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  user-select: none;
  padding: 2rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

.scroll-msg.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-30px) scale(0.96);
}

.scroll-msg.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateY(0) scale(1);
}

.scroll-msg .moon-deco {
  font-size: 4rem;
  margin-bottom: 0.2rem;
  display: block;
  animation: moon-glow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 30px rgba(255, 182, 193, 0.3));
}

@keyframes moon-glow {
  0% {
    transform: scale(1) rotate(-4deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.08) rotate(4deg);
    opacity: 1;
  }
}

.scroll-msg > div:nth-child(2) {
  font-size: clamp(2.8rem, 12vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #f8bbd0, #f48fb1, #f06292, #f8bbd0);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease-in-out infinite alternate;
  text-shadow: 0 0 60px rgba(240, 98, 146, 0.15);
  padding-bottom: 0.15em;
  line-height: 1.2;
}

.scroll-msg > div:nth-child(3) {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(90, 61, 74, 0.5);
  margin-top: -0.1em;
  -webkit-text-fill-color: rgba(90, 61, 74, 0.5);
}

.scroll-msg > div:nth-child(4) {
  margin-top: 2rem;
}

.arrow-animated-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-animated {
  font-size: 2.2rem;
  color: #f06292;
  animation: arrow-float 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(240, 98, 146, 0.25));
  line-height: 1;
}

@keyframes arrow-float {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* ============================================================
   PAGE — MAIN CONTENT
   ============================================================ */
.page {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
  position: relative;
  z-index: 1;
  min-height: 200vh;
  background: transparent !important;
  padding-top: 100vh;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
  text-align: center;
  font-weight: 300;
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  letter-spacing: 0.3em;
  color: rgba(90, 61, 74, 0.5);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(240, 98, 146, 0.15);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.section-title span {
  color: #f06292;
  font-weight: 600;
}

.section-title .moon-icon {
  font-size: 1.2rem;
  opacity: 0.4;
}

/* ============================================================
   SECTION — TANPA OVERLAY PUTIH
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
  padding: 2rem 1.5rem 2.5rem;
  border-radius: 2rem;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none;
  box-shadow: none;
}

/* ============================================================
   SECTION 1: MAKANAN KESUKAAN
   ============================================================ */
.special-section {
  background: transparent !important;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.special-grid .g-item {
  border-radius: 1.8rem;
  overflow: hidden;
  min-height: 320px;
  background: transparent !important;
  box-shadow: 0 8px 40px rgba(240, 98, 146, 0.14);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.special-grid .g-item:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 16px 56px rgba(240, 98, 146, 0.2);
  z-index: 2;
}

.special-grid .g-item img {
  display: block;
  width: 100%;
  min-height: 320px;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 1 !important;
  filter: none !important;
}

.special-grid .g-item .special-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: #7a4a5a;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 20px rgba(240, 98, 146, 0.12);
}

.special-grid .g-item:hover img {
  transform: scale(1.04);
}

.special-grid .g-item .heart-badge {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  font-size: 1.2rem;
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s ease;
}

.special-grid .g-item:hover .heart-badge {
  opacity: 0.8;
}

.special-grid .g-item .moon-overlay {
  position: absolute;
  top: 0.6rem;
  left: 0.8rem;
  font-size: 1.1rem;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   SECTION 2: GALERI FOTO — CSS SCROLL-DRIVEN CAROUSEL (FIXED)
   ============================================================ */
.photo-gallery {
  background: transparent !important;
  backdrop-filter: none !important;
  transition: background 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 !important;
}

.photo-gallery.ended {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 2rem;
  padding: 2rem 1.5rem 2.5rem !important;
  box-shadow: 0 4px 40px rgba(240, 98, 146, 0.04);
}

.photo-gallery .section-title {
  padding: 0 1.5rem 1rem;
}

/* CAROUSEL WRAPPER */
.carousel-wrapper {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 0 2.5rem 0;
  margin: 0 0.5rem;
}

/* CAROUSEL SCROLL CONTAINER */
.carousel-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0 1.5rem 0;
  cursor: grab;
  position: relative;
  z-index: 2;
  scroll-snap-type: x mandatory;
}

.carousel-scroll:active {
  cursor: grabbing;
}

.carousel-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* CAROUSEL TRACK — transform diatur oleh JS */
.carousel-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding: 0 2rem;
  will-change: transform;
}

/* CAROUSEL ITEMS */
.carousel-item {
  flex: 0 0 clamp(180px, 18vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(240, 98, 146, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
  position: relative;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.carousel-item:hover {
  transform: scale(1.06) translateY(-6px) rotateZ(1deg);
  box-shadow: 0 16px 48px rgba(240, 98, 146, 0.12);
  z-index: 5;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1 !important;
  filter: none !important;
}

.carousel-item:hover img {
  transform: scale(1.08);
}

.carousel-item .heart-badge {
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  font-size: 1rem;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s ease;
}

.carousel-item:hover .heart-badge {
  opacity: 0.6;
}

.carousel-item .moon-overlay {
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  font-size: 1rem;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

/* CAROUSEL PROGRESS BAR */
.carousel-progress {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(60%, 300px);
  height: 3px;
  background: rgba(240, 98, 146, 0.12);
  border-radius: 4px;
  overflow: hidden;
  z-index: 5;
}

.progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f06292, #f48fb1, #f06292);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: progressPulse 2s ease-in-out infinite;
  transition: width 0.1s ease;
}

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

/* CAROUSEL COUNTER */
.carousel-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  color: rgba(90, 61, 74, 0.25);
  letter-spacing: 0.05em;
  z-index: 5;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  padding: 0.15rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(240, 98, 146, 0.04);
}

/* ============================================================
   SECTION 3: GALERI VIDEO
   ============================================================ */
.video-gallery {
  background: transparent !important;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.video-grid .vid-wrap {
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(240, 98, 146, 0.08);
  background: transparent !important;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
  position: relative;
  cursor: pointer;
}

.video-grid .vid-wrap:hover {
  transform: scale(1.01) translateY(-6px);
  box-shadow: 0 24px 60px rgba(240, 98, 146, 0.14);
}

.video-grid .vid-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f8e8ee;
  pointer-events: none;
  opacity: 1 !important;
  filter: none !important;
}

.vid-wrap .vid-label {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #7a4a5a;
  border: 1px solid rgba(240, 98, 146, 0.08);
  font-weight: 500;
  pointer-events: none;
  user-select: none;
}

.vid-wrap .moon-badge {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.3rem;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   LIGHTBOX / MODAL POP-UP UNTUK SEMUA MEDIA
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 8, 20, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  animation: lightboxFadeIn 0.3s ease;
}

#lightbox.active {
  display: flex;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#lightbox .lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 10000;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

#lightbox .lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

#lightbox .lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 2.8rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

#lightbox .lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) scale(1.06);
}

#lightbox .lightbox-nav:active {
  transform: translateY(-50%) scale(0.94);
}

#lightbox .lightbox-prev {
  left: 1.5rem;
}

#lightbox .lightbox-next {
  right: 1.5rem;
}

#lightbox .lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 92vw;
  max-height: 86vh;
  position: relative;
}

#lightbox .lightbox-media {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 1.2rem;
  box-shadow: 0 26px 110px rgba(0, 0, 0, 0.55);
  background: transparent;
}

#lightbox .lightbox-media.video-media {
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
  border-radius: 1.2rem;
  background: #0a0a0a;
}

#lightbox .lightbox-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 10000;
  font-weight: 300;
}

#lightbox .lightbox-fallback {
  width: 80vw;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.12);
  font-size: 4rem;
}

/* ============================================================
   MUSIC PLAYER
   ============================================================ */
#music-player {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: rgba(252, 240, 245, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 3rem;
  padding: 0.4rem 1.2rem 0.4rem 1.6rem;
  border: 1px solid rgba(240, 98, 146, 0.08);
  box-shadow: 0 8px 32px rgba(90, 61, 74, 0.06);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition:
    opacity 0.4s ease,
    transform 0.3s ease;
}

#music-player:hover {
  opacity: 1;
  transform: scale(1.02);
}

#music-player audio {
  width: 130px;
  max-width: 18vw;
  height: 30px;
  border-radius: 2rem;
  background: transparent;
  outline: none;
}

#music-player audio::-webkit-media-controls-panel {
  background: rgba(240, 98, 146, 0.04);
}

#music-player audio::-webkit-media-controls-play-button {
  background-color: #f06292;
  border-radius: 50%;
  color: white;
}

#music-player .music-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #7a4a5a;
  font-weight: 400;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.romantic-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(90, 61, 74, 0.2);
  border-top: 1px solid rgba(240, 98, 146, 0.06);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.romantic-footer .moon-icon {
  font-size: 1rem;
  opacity: 0.3;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  #lightbox .lightbox-nav {
    width: 48px;
    height: 48px;
    font-size: 2.2rem;
  }
  #lightbox .lightbox-prev {
    left: 0.8rem;
  }
  #lightbox .lightbox-next {
    right: 0.8rem;
  }
  .special-grid {
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .carousel-item {
    flex: 0 0 clamp(160px, 20vw, 220px);
  }
  .carousel-track {
    gap: 1rem;
    padding: 0 1.5rem;
  }
  .photo-gallery.ended {
    padding: 1.5rem 1rem 2rem !important;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 0.8rem;
  }
  .gallery-grid .g-item {
    margin-bottom: 0.8rem;
    border-radius: 1rem;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .video-grid .vid-wrap {
    border-radius: 1.2rem;
  }
  .special-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
  }
  .special-grid .g-item {
    border-radius: 1.4rem;
  }
  .section {
    padding: 1.2rem 0.8rem 1.8rem;
    border-radius: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .page {
    padding: 1rem 0.8rem 2rem;
    padding-top: 100vh;
  }
  #music-player {
    bottom: 0.8rem;
    right: 0.8rem;
    padding: 0.3rem 0.8rem 0.3rem 1rem;
    border-radius: 2rem;
    gap: 0.4rem;
  }
  #music-player audio {
    width: 90px;
    max-width: 30vw;
    height: 26px;
  }
  #music-player .music-label {
    font-size: 0.55rem;
  }
  .scroll-msg .moon-deco {
    font-size: 3rem;
  }
  .scroll-msg > div:nth-child(2) {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }
  #lightbox .lightbox-close {
    top: 1rem;
    right: 1.2rem;
    font-size: 2.2rem;
  }
  #lightbox .lightbox-media.video-media {
    max-height: 60vh;
  }
  #lightbox {
    padding: 1rem;
  }
  #lightbox .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  #lightbox .lightbox-prev {
    left: 0.4rem;
  }
  #lightbox .lightbox-next {
    right: 0.4rem;
  }
  #lightbox .lightbox-counter {
    font-size: 0.7rem;
    bottom: 1.2rem;
    padding: 0.3rem 1rem;
  }
  .romantic-footer {
    font-size: 0.65rem;
    padding-top: 1.2rem;
    margin-top: 1.5rem;
  }
  .carousel-item {
    flex: 0 0 clamp(130px, 25vw, 180px);
  }
  .carousel-track {
    gap: 0.8rem;
    padding: 0 1rem;
  }
  .carousel-wrapper {
    margin: 0;
    border-radius: 1.2rem;
  }
  .carousel-counter {
    font-size: 0.6rem;
    bottom: 0.3rem;
    right: 1rem;
    padding: 0.1rem 0.6rem;
  }
  .carousel-progress {
    width: 50%;
    height: 2px;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .video-grid .vid-wrap {
    border-radius: 1rem;
  }
  .special-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .special-grid .g-item {
    border-radius: 1rem;
  }
  .section {
    padding: 1rem 0.6rem 1.2rem;
    border-radius: 1rem;
  }
  .page {
    padding: 0.5rem 0.6rem 1.5rem;
    padding-top: 100vh;
  }
  .scroll-msg .moon-deco {
    font-size: 2.4rem;
  }
  .scroll-msg > div:nth-child(2) {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .arrow-animated {
    font-size: 1.8rem;
  }
  #music-player audio {
    width: 70px;
    max-width: 35vw;
    height: 24px;
  }
  .section-title {
    font-size: 0.85rem;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
  }
  #lightbox .lightbox-close {
    top: 0.8rem;
    right: 1rem;
    font-size: 1.8rem;
  }
  #lightbox .lightbox-media.video-media {
    max-height: 50vh;
  }
  #lightbox .lightbox-nav {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
  #lightbox .lightbox-prev {
    left: 0.2rem;
  }
  #lightbox .lightbox-next {
    right: 0.2rem;
  }
  #lightbox .lightbox-counter {
    font-size: 0.6rem;
    bottom: 0.8rem;
    padding: 0.2rem 0.8rem;
  }
  .romantic-footer {
    font-size: 0.55rem;
  }
  .carousel-item {
    flex: 0 0 clamp(100px, 30vw, 150px);
  }
  .carousel-track {
    gap: 0.6rem;
    padding: 0 0.8rem;
  }
  .carousel-scroll {
    padding: 0.3rem 0 1.2rem 0;
  }
}

@media (max-width: 380px) {
  .special-grid {
    gap: 0.5rem;
  }
  .special-grid .g-item {
    border-radius: 0.8rem;
  }
  .section {
    padding: 0.6rem 0.4rem 0.8rem;
    border-radius: 0.8rem;
  }
  .video-grid {
    gap: 0.8rem;
  }
  .vid-wrap .vid-label {
    font-size: 0.5rem;
    padding: 0.15rem 0.6rem;
    bottom: 0.4rem;
    left: 0.5rem;
  }
  .g-item .heart-badge {
    font-size: 0.6rem;
    bottom: 0.3rem;
    right: 0.4rem;
  }
  .g-item .moon-overlay {
    font-size: 0.6rem;
    top: 0.2rem;
    left: 0.4rem;
  }
}
