html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img,
svg {
  max-width: 100%;
}
:root {
  --warm-1: #23080e;
  --warm-2: #6a1225;
  --warm-3: #c78535;
}
body {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(160, 20, 50, 0.22),
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(218, 57, 100, 0.28),
      transparent 45%
    ),
    #8f2e2e;
  font-family: "Cormorant Garamond", Georgia, serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px;
  overflow-x: hidden;
}
body.locked {
  overflow: hidden;
  height: 100vh;
}
.cover-screen {
  position: fixed;
  inset: 0;
  z-index: 3000;
  overflow: hidden;
  background: #2c0f18;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
.cover-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.cover-slide.active {
  opacity: 1;
}
.cover-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 7px;
  align-items: center;
}
.cover-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.cover-dot.active {
  background: #c9a882;
  transform: scale(1.4);
}
.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 7, 4, 0.6) 0%,
    rgba(15, 7, 4, 0.18) 45%,
    rgba(15, 7, 4, 0.38) 75%,
    rgba(10, 4, 2, 0.72) 100%
  );
  pointer-events: none;
}
.cover-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cover-top-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 52px 24px 32px;
  text-align: center;
  color: #fff;
  animation: coverRise 0.85s ease both;
}
.cover-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  margin-bottom: 10px;
}
.cover-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 9vw, 56px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  line-height: 1.1;
  letter-spacing: 1px;
}
.cover-amp {
  font-style: italic;
  color: #fff;
  margin: 0 8px;
}
.cover-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  margin-top: 12px;
}
.cover-bottom-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 32px 42px;
  text-align: center;
  animation: coverRise 1s 0.15s ease both;
}
.cover-card-icon {
  margin: 0 auto 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a882;
}
.cover-to {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: rgba(201, 168, 130, 0.9);
  font-style: italic;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.cover-guest {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}
.cover-invite-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: rgba(240, 230, 211, 0.8);
  line-height: 1.75;
  font-style: italic;
  max-width: 300px;
  margin: 0 auto 20px;
}
.cover-open {
  padding: 12px 40px;
  border: 1.5px solid rgba(240, 230, 211, 0.65);
  background: transparent;
  color: #f0e6d3;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  display: inline-block;
}
.cover-open:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.cover-open:active {
  opacity: 0.85;
}
.invitation {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #faf7f2;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}
.top-border {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #6b2737, #b8956a, #6b2737);
}
.hero {
  background: #2c0f18;
  padding: 48px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(107, 39, 55, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(107, 39, 55, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.ornament-top {
  color: #b8956a;
  font-size: 24px;
  letter-spacing: 12px;
  margin-bottom: 20px;
  position: relative;
  opacity: 0.8;
}
.invitation-label {
  font-family: "Cormorant Garamond", serif;
  color: #c9a882;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 300;
  position: relative;
}
.bismillah {
  font-family: Amiri, serif;
  color: #e8d5bb;
  font-size: 30px;
  font-style: normal;
  margin-bottom: 6px;
  position: relative;
  direction: rtl;
  text-align: center;
  letter-spacing: 0;
}
.bismillah-sub {
  color: #9a7a5a;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
  position: relative;
}
.divider-line {
  height: 0.5px;
  width: 70px;
  background: linear-gradient(90deg, transparent, #b8956a, transparent);
}
.divider-diamond {
  width: 6px;
  height: 6px;
  background: #b8956a;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.groom-name {
  font-family: "Playfair Display", serif;
  color: #f0e6d3;
  font-size: clamp(14px, 3.8vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.bride-name {
  font-family: "Playfair Display", serif;
  color: #f0e6d3;
  font-size: clamp(14px, 3.8vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}
.ampersand {
  font-family: "Playfair Display", serif;
  color: #b8956a;
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin: 6px 0;
  position: relative;
}
.floral-accent {
  width: 100%;
  height: 36px;
  display: block;
}
.section {
  padding: 32px 40px;
  text-align: center;
  position: relative;
}
.section + .section {
  border-top: none;
}
.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 0.5px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a882 40%,
    #c9a882 60%,
    transparent
  );
}
.section:last-of-type::after {
  display: none;
}
.section-label {
  color: #6b2737;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
}
.intro-text {
  color: #5a4a3a;
  font-size: 16px;
  line-height: 1.15;
  font-style: italic;
  font-weight: 300;
  max-width: 360px;
  margin: 0 auto;
}
.parents-grid {
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 4px;
}
.parent-side {
  text-align: center;
}
.parent-label {
  color: #9a7a5a;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 300;
}
.parent-name {
  color: #2c0f18;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.parents-divider {
  color: #c9a882;
  font-size: 22px;
  padding-top: 20px;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.event-date {
  color: #5a4a3a;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}
.event-card {
  background: #2c0f18;
  border-radius: 2px;
  padding: 16px 12px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6b2737, #b8956a, #6b2737);
}
.event-card-label {
  color: #f0e6d3;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
}
.event-card-main {
  color: #f0e6d3;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.event-card-sub {
  color: #b8956a;
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.location-name {
  color: #2c0f18;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.location-detail {
  color: #a89070;
  font-size: 16px;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 24px;
}
.qr-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.qr-box {
  width: 170px;
  height: 170px;
  border: 1.5px solid #b8956a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  padding: 8px;
}
.qr-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #6b2737;
  border-style: solid;
}
.qr-corner.tl {
  top: 5px;
  left: 5px;
  border-width: 2px 0 0 2px;
}
.qr-corner.tr {
  top: 5px;
  right: 5px;
  border-width: 2px 2px 0 0;
}
.qr-corner.bl {
  bottom: 5px;
  left: 5px;
  border-width: 0 0 2px 2px;
}
.qr-corner.br {
  bottom: 5px;
  right: 5px;
  border-width: 0 2px 2px 0;
}
.qr-inner {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 10px 22px;
  border: 1.5px solid rgba(184, 149, 106, 0.55);
  background: transparent;
  color: #c9a882;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  border-radius: 2px;
}
.qr-maps-btn:hover {
  background: rgba(184, 149, 106, 0.12);
  border-color: #b8956a;
  color: #f0e6d3;
}
.qr-label {
  color: #9a7a5a;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.countdown-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  flex-wrap: nowrap;
  position: relative;
}
.countdown-item {
  text-align: center;
  flex-shrink: 0;
}
.cd-card {
  position: relative;
  width: 70px;
  height: 80px;
  background: linear-gradient(165deg, #2c0f18 0%, #1a0810 100%);
  border-radius: 8px;
  border: 1px solid rgba(184, 149, 106, 0.35);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}
.cd-card::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.cd-number {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 600;
  color: #f0e6d3;
  line-height: 1;
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(199, 133, 53, 0.4);
  transition: none;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cd-number.changed {
  animation: slideUp 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cardGlow {
  0% {
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  40% {
    box-shadow:
      0 6px 28px rgba(199, 133, 53, 0.25),
      inset 0 0 0 1px rgba(199, 133, 53, 0.5);
  }
  100% {
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
}
.cd-card.flash {
  animation: cardGlow 0.5s ease;
}
.countdown-unit {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #9a7a5a;
  text-transform: uppercase;
  margin-top: 8px;
}
.countdown-colon {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  color: #b8956a;
  line-height: 1;
  padding-bottom: 28px;
  flex-shrink: 0;
  animation: colonBlink 1s step-end infinite;
}
@keyframes colonBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.countdown-celebrate {
  display: none;
  text-align: center;
  animation: fadeInUp 0.8s ease both;
}
.celebrate-heart {
  font-size: 44px;
  animation: heartBeat 0.8s ease infinite alternate;
}
@keyframes heartBeat {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.18);
  }
}
.celebrate-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #6b2737;
  margin-top: 10px;
}
#countdown-particles {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(340px, 100%);
  height: 130px;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 480px) {
  .cd-card {
    width: 60px;
    height: 70px;
  }
  .cd-number {
    font-size: 36px;
  }
  .countdown-colon {
    font-size: 28px;
    padding-bottom: 22px;
  }
}
.footer {
  background: #0a0308;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.footer-photo-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.footer-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.footer-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 3, 1, 0.08) 0%,
    rgba(8, 3, 1, 0.12) 38%,
    rgba(8, 3, 1, 0.62) 68%,
    rgba(8, 3, 1, 0.93) 100%
  );
  pointer-events: none;
}
.footer-photo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 36px;
  text-align: center;
}
.footer-thanks-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
}
.footer-thanks-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: rgba(240, 230, 211, 0.88);
  line-height: 1.15;
  font-style: italic;
  max-width: 320px;
  margin: 0 auto 18px;
}
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto;
  max-width: 180px;
}
.footer-divider-line {
  height: 0.5px;
  flex: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 149, 106, 0.7),
    transparent
  );
}
.footer-divider-diamond {
  width: 5px;
  height: 5px;
  background: #b8956a;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.footer-names {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 4.5vw, 24px);
  letter-spacing: 3px;
  font-weight: 600;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.footer-date {
  color: rgba(201, 168, 130, 0.85);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}
.footer-bottom-bar {
  padding: 18px 24px 20px;
  background: #0a0308;
  border-top: 0.5px solid rgba(107, 39, 55, 0.3);
  text-align: center;
}
.footer-copyright {
  color: rgba(225, 210, 199, 0.75);
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer-ornament {
  color: #6b2737;
  font-size: 12px;
  letter-spacing: 8px;
  margin-bottom: 10px;
  opacity: 0.6;
}
.bottom-border {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #6b2737, #b8956a, #6b2737);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes coverRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  animation: fadeInUp 0.9s ease both;
}
.section {
  animation: fadeInUp 0.9s ease both;
}
.section:nth-of-type(1) {
  animation-delay: 0.15s;
}
.section:nth-of-type(2) {
  animation-delay: 0.25s;
}
.section:nth-of-type(3) {
  animation-delay: 0.35s;
}
.section:nth-of-type(4) {
  animation-delay: 0.45s;
}
.section:nth-of-type(5) {
  animation-delay: 0.55s;
}
.footer {
  animation: fadeInUp 0.9s 0.65s ease both;
}
@media (max-width: 480px) {
  body {
    padding: 0;
  }
  .cover-top-area {
    padding: 44px 20px 24px;
  }
  .cover-bottom-content {
    padding: 24px 20px 36px;
  }
  .cover-open {
    width: 100%;
    max-width: 260px;
  }
  .hero {
    padding: 40px 24px 32px;
  }
  .section {
    padding: 28px 24px;
  }
  .section::after {
    left: 24px;
    right: 24px;
  }
  .groom-name,
  .bride-name {
    font-size: clamp(14px, 3.8vw, 28px);
  }
  .ampersand {
    font-size: 46px;
  }
}
.profile-section {
  background: #1e0810;
  position: relative;
  overflow: hidden;
}
.profile-section + .profile-section {
  border-top: 2px solid rgba(107, 39, 55, 0.25);
}
.profile-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 440px;
  overflow: hidden;
  position: relative;
}
.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s ease;
}
.profile-section:first-of-type .profile-photo-wrap img {
  object-position: center 42%;
  transform: scale(1.22);
}
.profile-photo-wrap:hover img {
  transform: scale(1.04);
}
.profile-section:first-of-type .profile-photo-wrap:hover img {
  transform: scale(1.26);
}
.profile-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(18, 8, 5, 0.92) 0%,
    rgba(18, 8, 5, 0.5) 55%,
    transparent 100%
  );
  pointer-events: none;
}
.profile-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(107, 39, 55, 0.78);
  color: #ffd78f;
  font-family: Montserrat, sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(184, 149, 106, 0.25);
}
.profile-body {
  background: #1e0810;
  padding: 26px 32px 32px;
  text-align: center;
}
.profile-role {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 12px;
  font-weight: 300;
}
.profile-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 3.8vw, 28px);
  color: #f0e6d3;
  font-weight: 600;
  line-height: 1.2;
}
.profile-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto;
  width: 130px;
}
.profile-divider-line {
  height: 0.5px;
  flex: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 149, 106, 0.6),
    transparent
  );
}
.profile-divider-gem {
  width: 5px;
  height: 5px;
  background: #b8956a;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.profile-parent-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d5c3b8;
  margin-bottom: 6px;
}
.profile-parent-name {
  color: #c9a882;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
}
.gallery-section {
  background: #0f0508;
  padding: 40px 0 0;
}
.gallery-header {
  text-align: center;
  padding: 0 20px 28px;
}
.gallery-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 10px;
}
.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4.5vw, 32px);
  color: #f0e6d3;
  font-weight: 400;
  font-style: italic;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: #1a0810;
}
.gallery-item.span2 {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item.span2 img {
  height: 260px;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(8, 3, 2, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.lb-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lb-img {
  max-width: 94vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lb-btn {
  position: absolute;
  background: rgba(107, 39, 55, 0.5);
  border: 1px solid rgba(184, 149, 106, 0.35);
  color: #f0e6d3;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-btn:hover {
  background: rgba(107, 39, 55, 0.8);
}
.lb-close {
  top: 16px;
  right: 16px;
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  font-size: 18px;
}
.lb-next {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  font-size: 18px;
}
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #b8956a;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}
@media (max-width: 480px) {
  .profile-body {
    padding: 22px 20px 28px;
  }
  .gallery-item img {
    height: 150px;
  }
  .gallery-item.span2 img {
    height: 200px;
  }
}
.gift-section {
  background: #1a0810;
  padding: 40px 32px 44px;
  text-align: center;
  position: relative;
}
.gift-section-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 10px;
}
.gift-section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 4vw, 28px);
  color: #f0e6d3;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
}
.gift-intro {
  color: #9a7a5a;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.15;
  max-width: 340px;
  margin: 0 auto 28px;
}
.gift-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.gift-card {
  background: linear-gradient(160deg, #250810 0%, #16050a 100%);
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: 2px;
  padding: 22px 12px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.gift-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6b2737, #b8956a, #6b2737);
}
.gift-card-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}
.gift-card-holder {
  font-family: "Playfair Display", serif;
  color: #f0e6d3;
  font-size: clamp(12px, 3.2vw, 16px);
  font-weight: 600;
  margin-bottom: 12px;
  word-break: break-word;
}
.gift-bank-name {
  color: #9a7a5a;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.gift-acc-number {
  color: #c9a882;
  font-family: Montserrat, sans-serif;
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  word-break: break-all;
}
.gift-copy-btn {
  padding: 6px 14px;
  border: 1px solid rgba(184, 149, 106, 0.45);
  background: transparent;
  color: #b8956a;
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gift-copy-btn:hover {
  background: rgba(184, 149, 106, 0.12);
  border-color: #b8956a;
}
.gift-copy-btn.copied {
  color: #6b2737;
  border-color: rgba(107, 39, 55, 0.6);
}
@media (max-width: 380px) {
  .gift-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 359px) {
  .cover-top-area {
    padding: 36px 14px 18px;
  }
  .cover-bottom-content {
    padding: 18px 14px 28px;
  }
  .cover-invite-text {
    font-size: 11.5px;
    margin-bottom: 16px;
  }
  .cover-open {
    width: 100%;
    max-width: 220px;
    padding: 11px 24px;
    font-size: 10px;
  }
  .hero {
    padding: 32px 16px 28px;
  }
  .bismillah {
    font-size: 22px;
  }
  .groom-name,
  .bride-name {
    font-size: clamp(14px, 3.8vw, 28px);
  }
  .ampersand {
    font-size: 36px;
  }
  .section {
    padding: 22px 16px;
  }
  .section::after {
    left: 16px;
    right: 16px;
  }
  .parents-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .parents-divider {
    display: none;
  }
  .event-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .event-card-main {
    font-size: 26px;
  }
  .cd-card {
    width: 50px;
    height: 60px;
  }
  .cd-number {
    font-size: 28px;
  }
  .countdown-colon {
    font-size: 20px;
    padding-bottom: 16px;
  }
  .countdown-unit {
    font-size: 7.5px;
    letter-spacing: 1.5px;
  }
  .gift-section {
    padding: 28px 14px 32px;
  }
  .profile-body {
    padding: 16px 14px 22px;
  }
  .gallery-item img {
    height: 130px;
  }
  .gallery-item.span2 img {
    height: 170px;
  }
  .location-name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .countdown-wrapper {
    gap: 4px;
  }
  .cover-open {
    min-height: 44px;
  }
  .gift-copy-btn {
    min-height: 36px;
    padding: 8px 14px;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  body {
    padding: 24px 12px;
  }
  .invitation {
    max-width: 100%;
  }
  .hero {
    padding: 44px 32px 36px;
  }
  .section {
    padding: 30px 32px;
  }
  .section::after {
    left: 32px;
    right: 32px;
  }
  .groom-name,
  .bride-name {
    font-size: clamp(14px, 3.8vw, 28px);
  }
  .ampersand {
    font-size: 52px;
  }
  .profile-body {
    padding: 24px 32px 30px;
  }
  .gallery-item img {
    height: 190px;
  }
  .gallery-item.span2 img {
    height: 260px;
  }
  .gift-section {
    padding: 36px 32px 40px;
  }
  .profile-photo-wrap {
    max-height: 480px;
  }
  .cd-card {
    width: 68px;
    height: 78px;
  }
  .cd-number {
    font-size: 42px;
  }
}
@media (min-width: 768px) {
  body {
    padding: 48px 32px;
  }
  .invitation {
    max-width: 600px;
  }
  .hero {
    padding: 56px 56px 48px;
  }
  .section {
    padding: 38px 56px;
  }
  .section::after {
    left: 56px;
    right: 56px;
  }
  .groom-name,
  .bride-name {
    font-size: clamp(14px, 3.8vw, 28px);
  }
  .ampersand {
    font-size: 62px;
  }
  .bismillah {
    font-size: 34px;
  }
  .profile-body {
    padding: 30px 48px 38px;
  }
  .gift-section {
    padding: 44px 48px 48px;
  }
  .gallery-item img {
    height: 230px;
  }
  .gallery-item.span2 img {
    height: 310px;
  }
  .profile-photo-wrap {
    max-height: 500px;
  }
  .cd-card {
    width: 78px;
    height: 90px;
  }
  .cd-number {
    font-size: 50px;
  }
  .countdown-colon {
    font-size: 38px;
    padding-bottom: 30px;
  }
  .countdown-unit {
    font-size: 10px;
  }
  .cover-title {
    font-size: clamp(40px, 7vw, 64px);
  }
  .cover-top-area {
    padding: 60px 40px 36px;
  }
  .cover-bottom-content {
    padding: 36px 48px 52px;
  }
  .cover-invite-text {
    font-size: 14px;
    max-width: 380px;
  }
  .cover-open {
    padding: 13px 52px;
    font-size: 12px;
  }
  .event-card-main {
    font-size: 34px;
  }
  .location-name {
    font-size: 19px;
  }
  .qr-box {
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 1024px) {
  body {
    padding: 64px 32px;
  }
  .invitation {
    max-width: 640px;
    box-shadow: 0 32px 120px rgba(0, 0, 0, 0.65);
  }
  .hero {
    padding: 64px 72px 56px;
  }
  .section {
    padding: 42px 72px;
  }
  .section::after {
    left: 72px;
    right: 72px;
  }
  .groom-name,
  .bride-name {
    font-size: clamp(14px, 3.8vw, 28px);
  }
  .ampersand {
    font-size: 68px;
  }
  .profile-body {
    padding: 34px 64px 42px;
  }
  .gift-section {
    padding: 52px 64px 56px;
  }
  .gallery-item img {
    height: 255px;
  }
  .gallery-item.span2 img {
    height: 350px;
  }
  .profile-photo-wrap {
    max-height: 520px;
  }
  .cd-card {
    width: 86px;
    height: 98px;
  }
  .cd-number {
    font-size: 56px;
  }
  .countdown-colon {
    font-size: 42px;
    padding-bottom: 34px;
  }
  .cover-bottom-content {
    padding: 40px 56px 60px;
  }
  .cover-invite-text {
    font-size: 15px;
    max-width: 440px;
  }
  .event-card-main {
    font-size: 36px;
  }
  .location-name {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .invitation {
    max-width: 680px;
  }
}
@supports (padding: env(safe-area-inset-bottom)) {
  .cover-bottom-content {
    padding-bottom: calc(42px + env(safe-area-inset-bottom));
  }
  body {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}
.rsvp-section {
  background: #faf7f2;
  padding: 40px 40px 44px;
  text-align: center;
  position: relative;
}
.rsvp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 0.5px;
  background: linear-gradient(
    90deg,
    transparent,
    #c9a882 40%,
    #c9a882 60%,
    transparent
  );
}
.rsvp-label {
  color: #6b2737;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
}
.rsvp-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: #2c0f18;
  margin-bottom: 8px;
}
.rsvp-subtitle {
  color: #a89070;
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
}
.rsvp-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.rsvp-option {
  position: relative;
}
.rsvp-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.rsvp-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 12px;
  border: 1.5px solid rgba(184, 149, 106, 0.35);
  background: linear-gradient(160deg, #fff 0%, #faf7f2 100%);
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 2px;
}
.rsvp-option input[type="radio"]:checked + label {
  border-color: #6b2737;
  background: linear-gradient(160deg, #fdf0f0 0%, #f9eae8 100%);
  box-shadow: 0 4px 18px rgba(107, 39, 55, 0.14);
}
.rsvp-option label:hover {
  border-color: #b8956a;
  background: linear-gradient(160deg, #fdf9f4 0%, #f9f3ea 100%);
}
.rsvp-option-icon {
  font-size: 26px;
  line-height: 1;
}
.rsvp-option-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 400;
  color: #2c0f18;
  letter-spacing: 0.5px;
}
.rsvp-option-sub {
  font-size: 11px;
  color: #9a7a5a;
  font-style: italic;
}
.rsvp-count-wrap {
  margin-bottom: 22px;
  display: none;
}
.rsvp-count-wrap.visible {
  display: block;
}
.rsvp-count-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: #5a4a3a;
  font-style: italic;
  margin-bottom: 10px;
}
.rsvp-count-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(184, 149, 106, 0.45);
  border-radius: 2px;
  overflow: hidden;
}
.rsvp-step-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: #6b2737;
  font-size: 20px;
  font-family: "Playfair Display", serif;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rsvp-step-btn:hover {
  background: rgba(107, 39, 55, 0.08);
}
.rsvp-step-num {
  min-width: 40px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #2c0f18;
  border-left: 1px solid rgba(184, 149, 106, 0.35);
  border-right: 1px solid rgba(184, 149, 106, 0.35);
  padding: 0 8px;
  line-height: 38px;
}
.rsvp-field {
  margin-bottom: 16px;
  text-align: left;
}
.rsvp-field label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a7a5a;
  margin-bottom: 7px;
}
.rsvp-field input,
.rsvp-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(184, 149, 106, 0.35);
  background: #fff;
  color: #2c0f18;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  outline: 0;
  transition: border-color 0.2s;
  border-radius: 2px;
  box-sizing: border-box;
}
.rsvp-field input::placeholder,
.rsvp-field textarea::placeholder {
  color: rgba(122, 106, 90, 0.55);
  font-style: italic;
}
.rsvp-field input:focus,
.rsvp-field textarea:focus {
  border-color: #b8956a;
}
.rsvp-submit-btn {
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(135deg, #6b2737 0%, #8a3445 100%);
  border: none;
  color: #f0e6d3;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.rsvp-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transition: left 0.4s ease;
}
.rsvp-submit-btn:hover::before {
  left: 100%;
}
.rsvp-submit-btn:hover {
  box-shadow: 0 6px 20px rgba(107, 39, 55, 0.35);
  transform: translateY(-1px);
}
.rsvp-submit-btn:active {
  transform: translateY(0);
}
.rsvp-success {
  display: none;
  text-align: center;
  padding: 24px 0 8px;
  animation: fadeInUp 0.5s ease both;
}
.rsvp-success-icon {
  font-size: 40px;
  margin-bottom: 10px;
}
.rsvp-success-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-style: italic;
  color: #6b2737;
  margin-bottom: 6px;
}
.rsvp-success-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: #a89070;
  line-height: 1.75;
}
.wishes-section {
  background: #1e0810;
  padding: 44px 40px 48px;
  text-align: center;
  position: relative;
}
.wishes-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b8956a;
  margin-bottom: 10px;
}
.wishes-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 4.5vw, 30px);
  color: #f0e6d3;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
}
.wishes-subtitle {
  color: #9a7a5a;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.wishes-field {
  margin-bottom: 14px;
  text-align: left;
}
.wishes-field label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6b5040;
  margin-bottom: 7px;
}
.wishes-field input,
.wishes-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(184, 149, 106, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #f0e6d3;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  outline: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
  border-radius: 2px;
  box-sizing: border-box;
}
.wishes-field input::placeholder,
.wishes-field textarea::placeholder {
  color: rgba(184, 149, 106, 0.4);
  font-style: italic;
}
.wishes-field input:focus,
.wishes-field textarea:focus {
  border-color: #b8956a;
  background: rgba(255, 255, 255, 0.08);
}
.wishes-field textarea {
  resize: vertical;
  min-height: 90px;
}
.wishes-submit-btn {
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  border: 1.5px solid rgba(184, 149, 106, 0.65);
  color: #c9a882;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
  border-radius: 2px;
  margin-top: 6px;
}
.wishes-submit-btn:hover {
  background: rgba(184, 149, 106, 0.12);
  border-color: #b8956a;
  color: #f0e6d3;
  box-shadow: 0 4px 16px rgba(184, 149, 106, 0.2);
}
.wishes-list {
  margin-top: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
}
.wish-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(184, 149, 106, 0.18);
  border-radius: 2px;
  padding: 16px 18px;
  position: relative;
  animation: fadeInUp 0.45s ease both;
}
.wish-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: rgba(184, 149, 106, 0.25);
  line-height: 1;
}
.wish-name {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  color: #c9a882;
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 20px;
}
.wish-attendance-badge {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.wish-attendance-badge.hadir {
  background: rgba(107, 39, 55, 0.25);
  color: #e8a0a0;
  border: 1px solid rgba(107, 39, 55, 0.4);
}
.wish-attendance-badge.tidak {
  background: rgba(90, 74, 58, 0.25);
  color: #b8956a;
  border: 1px solid rgba(184, 149, 106, 0.3);
}
.wish-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(240, 230, 211, 0.8);
  line-height: 1.75;
  padding-left: 20px;
}
.wish-time {
  font-family: Montserrat, sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  color: #9a7a5a;
  margin-top: 8px;
  padding-left: 20px;
}
.wishes-empty {
  text-align: center;
  padding: 16px 0;
  color: #9a7a5a;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
}
.wishes-success-msg {
  display: none;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(107, 39, 55, 0.15);
  border: 1px solid rgba(107, 39, 55, 0.3);
  border-radius: 2px;
  color: #e8a0a0;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  animation: fadeInUp 0.4s ease both;
}
@media (max-width: 480px) {
  .rsvp-section {
    padding: 32px 24px 36px;
  }
  .rsvp-section::before {
    left: 24px;
    right: 24px;
  }
  .wishes-section {
    padding: 32px 24px 40px;
  }
}
@media (max-width: 359px) {
  .rsvp-section {
    padding: 24px 16px 28px;
  }
  .rsvp-section::before {
    left: 16px;
    right: 16px;
  }
  .wishes-section {
    padding: 24px 16px 32px;
  }
  .rsvp-options {
    grid-template-columns: 1fr 1fr;
  }
}
.music-btn {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 4000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 10, 6, 0.8);
  border: 1.5px solid rgba(201, 168, 110, 0.55);
  color: #c9a96e;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
  outline: 0;
}
.music-btn:hover {
  background: rgba(201, 168, 110, 0.18);
  border-color: #c9a96e;
  transform: scale(1.08);
}
.music-btn .music-icon {
  display: inline-block;
  transition: transform 0.3s;
}
.music-btn.playing .music-icon {
  animation: musicSpin 4s linear infinite;
}
@keyframes musicSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
