:root {
  --netflix-red: #e50914;
  --netflix-red-dark: #b0060f;
  --bg: #000;
  --bg-2: #141414;
  --bg-3: #1f1f1f;
  --text: #fff;
  --text-dim: #b3b3b3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.hidden {
  display: none !important;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.reveal-left {
  transform: translateX(-50px) scale(0.98);
}
.reveal.reveal-right {
  transform: translateX(50px) scale(0.98);
}
.reveal.reveal-zoom {
  transform: scale(0.85);
}
.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.75s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============ SPLASH "N" ============ */
.splash {
  position: fixed;
  inset: 0;
  background: #000;
  display: grid;
  place-items: center;
  z-index: 1000;
  animation: splashOut 0.5s ease 3.4s forwards;
}
.n-logo {
  position: relative;
  width: 280px;
  height: 300px;
  display: grid;
  place-items: center;
}
.n-letter {
  font-family: "Bebas Neue", sans-serif;
  font-size: 180px;
  font-weight: 700;
  color: var(--netflix-red);
  line-height: 1;
  letter-spacing: -8px;
  text-shadow: 0 0 14px rgba(229, 9, 20, 0.25);
  opacity: 0;
  animation:
    nFadeIn 0.6s ease 0.2s forwards,
    nPulse 1.6s ease 1s forwards;
}
.n-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(229, 9, 20, 0.55));
}
.n-bar {
  position: absolute;
  width: 18px;
  height: 300px;
  background: linear-gradient(180deg, #e50914 0%, #7a0008 100%);
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  box-shadow: 0 0 26px rgba(229, 9, 20, 0.55);
  border-radius: 2px;
}
.n-bar-left {
  left: 0;
  animation: barUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.2s forwards;
}
.n-bar-right {
  right: 0;
  animation: barUp 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.45s forwards;
}

@keyframes nFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes nPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(229, 9, 20, 0.6));
  }
}
@keyframes barUp {
  to {
    transform: scaleY(1);
  }
}
@keyframes splashOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ============ COVER ============ */
.cover {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 900;
  padding: 24px;
}
.cover-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
  z-index: -1;
}
.cover-bg::before {
  content: "";
  position: absolute;
  inset: -5%;
  background: url("assets/netflixloginpage.jpg") center/cover no-repeat;
  animation: bgDrift 30s ease-in-out infinite;
}
.cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.9) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%);
}
@keyframes bgDrift {
  0%   { transform: scale(1.05); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1.05); }
}
.cover-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.cover-label {
  color: var(--netflix-red);
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 12px;
}
.cover-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(56px, 14vw, 96px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}
.cover-sub {
  color: var(--text-dim);
  margin-bottom: 32px;
}
.cover-guest {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.cover-guest span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}
.cover-guest strong {
  font-size: 18px;
}

/* ============ BUTTONS ============ */
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #000;
  border: none;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-play:hover {
  background: #d4d4d4;
}
.btn-play.full {
  width: 100%;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 109, 110, 0.7);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-secondary:hover {
  background: rgba(109, 109, 110, 0.4);
}

.btn-mini {
  display: inline-block;
  background: var(--netflix-red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.2s;
}
.btn-mini:hover {
  background: var(--netflix-red-dark);
}

/* ============ TOP NAV ============ */
.topnav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  z-index: 50;
  backdrop-filter: blur(6px);
}
.brand {
  font-family: "Bebas Neue", sans-serif;
  color: var(--netflix-red);
  font-size: 22px;
  letter-spacing: 2px;
}
.brand span {
  color: var(--text);
  font-size: 11px;
  margin-left: 4px;
  letter-spacing: 3px;
}
.topnav nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topnav nav a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.topnav nav a .nav-ico {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: stroke 0.2s;
}
.topnav nav a:hover {
  color: var(--netflix-red);
  transform: translateY(-2px);
}
.music-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.music-btn.playing {
  animation: spin 3s linear infinite;
  background: var(--netflix-red);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(229, 9, 20, 0.3), transparent 50%),
    url("assets/bgutama.png") center/cover no-repeat,
    #1a0000;
  z-index: 0;
}
.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.2) 55%,
      transparent 100%
    ),
    linear-gradient(180deg, transparent 65%, #000 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.badge {
  display: inline-block;
  color: var(--netflix-red);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 13px;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--netflix-red);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 16px;
  align-items: center;
}
.match {
  color: #46d369;
  font-weight: 700;
}
.tag {
  border: 1px solid var(--text-dim);
  padding: 1px 6px;
  font-size: 11px;
}
.hero-desc {
  color: #e5e5e5;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============ ROW TITLE ============ */
.row-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 0 5vw;
}

/* ============ COUNTDOWN ============ */
.countdown-row {
  padding: 30px 0;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 5vw;
}
.countdown > div {
  background: var(--bg-2);
  border: 1px solid #2a2a2a;
  padding: 18px 8px;
  text-align: center;
  border-radius: 6px;
}
.countdown strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 6vw, 42px);
  color: var(--netflix-red);
}
.countdown span {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ============ EPISODES ============ */
.events-row {
  padding: 40px 0;
}
.episode-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 5vw;
}
.episode {
  display: flex;
  background: var(--bg-2);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.episode:hover {
  transform: scale(1.02);
  border-color: var(--netflix-red);
}
.ep-thumb {
  flex: 0 0 110px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ep-akad {
  background:
    linear-gradient(135deg, rgba(74,14,14,0.55), rgba(26,0,0,0.55)),
    url("assets/akad.jpg") center/cover no-repeat,
    #1a0000;
}
.ep-resepsi {
  background:
    linear-gradient(135deg, rgba(176,6,15,0.4), rgba(74,14,14,0.45)),
    url("assets/resepsi.jpg") center/cover no-repeat,
    #4a0e0e;
}
.ep-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.85);
}
.ep-body {
  padding: 14px 16px;
  flex: 1;
}
.ep-body h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.ep-meta {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 6px;
}
.ep-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
}

/* ============ AYAT ============ */
.verse-row {
  padding: 40px 5vw;
}
.verse-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a0000 0%, #0d0000 100%);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
}
.verse-label {
  color: var(--netflix-red);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 18px;
}
.verse-arabic {
  font-family: "Amiri", "Scheherazade New", "Traditional Arabic", serif;
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 2;
  color: #fff;
  margin-bottom: 22px;
}
.verse-translate {
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.7;
  font-size: 14px;
  max-width: 620px;
  margin: 0 auto;
}

/* ============ MEMPELAI / CAST ============ */
.couple-row {
  padding: 40px 0;
}
.couple-intro {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 5vw 22px;
}
.couple-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 5vw;
}
.couple-card {
  background: var(--bg-2);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.couple-card:hover {
  transform: translateY(-4px);
  border-color: var(--netflix-red);
}
.couple-photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
}
.couple-photo-groom {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    url("assets/pria.png") center/cover no-repeat,
    #1a0000;
}
.couple-photo-bride {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%),
    url("assets/wanita.jpg") center/cover no-repeat,
    #1a0000;
}
.couple-photo-groom .couple-initial,
.couple-photo-bride .couple-initial {
  display: none;
}
.couple-initial {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(80px, 16vw, 120px);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}
.couple-body {
  padding: 20px;
}
.couple-role {
  color: var(--netflix-red);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.couple-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
}
.couple-desc {
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 4px;
}
.couple-parents {
  color: #e5e5e5;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.couple-address {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid #2a2a2a;
}
.couple-label-mini {
  display: block;
  color: var(--netflix-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ============ LOVE STORY ============ */
.story-row {
  padding: 40px 0;
}
.story-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 5vw;
  padding-left: 24px;
  border-left: 2px solid #2a2a2a;
  display: grid;
  gap: 22px;
}
.story-item {
  position: relative;
  background: var(--bg-2);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 16px 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.story-item:hover {
  border-color: var(--netflix-red);
  transform: translateX(4px);
}
.story-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 22px;
  width: 14px;
  height: 14px;
  background: var(--netflix-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #000, 0 0 18px rgba(229, 9, 20, 0.6);
}
.story-year {
  font-family: "Bebas Neue", sans-serif;
  color: var(--netflix-red);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.story-body h4 {
  font-size: 17px;
  margin-bottom: 6px;
}
.story-body p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
}

/* ============ GALLERY ============ */
.gallery-row {
  padding: 40px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 0 5vw;
}
.g-item {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid #2a2a2a;
  transition: transform 0.3s, border-color 0.3s, filter 0.3s;
  filter: grayscale(0.2);
}
.g-item:hover {
  transform: scale(1.04);
  border-color: var(--netflix-red);
  filter: grayscale(0);
}
.g-1 { background: url("assets/galery1.png") center/cover no-repeat, #1a0000; }
.g-2 { background: url("assets/galery2.png") center/cover no-repeat, #1a0000; }
.g-3 { background: url("assets/galery3.png") center/cover no-repeat, #1a0000; }
.g-4 { background: url("assets/galery4.png") center/cover no-repeat, #1a0000; }
.g-5 { background: url("assets/galery5.jpg") center/cover no-repeat, #1a0000; }
.g-6 { background: url("assets/Gemini_Generated_Image_45gtff45gtff45gt.png") center/cover no-repeat, #1a0000; }

/* ============ TANDA KASIH ============ */
.gift-row {
  padding: 40px 0;
}
.gift-intro {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 5vw 22px;
}
.gift-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  padding: 0 5vw;
}
.gift-card {
  background: var(--bg-2);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 18px;
  transition: border-color 0.25s;
}
.gift-card:hover {
  border-color: var(--netflix-red);
}
.gift-bank {
  color: var(--netflix-red);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 8px;
}
.gift-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.gift-owner,
.gift-address {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 12px;
}

/* ============ RSVP ============ */
.rsvp-section {
  padding: 40px 0 60px;
}
.rsvp-form {
  max-width: 520px;
  margin: 0 5vw;
  background: var(--bg-2);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rsvp-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}
.rsvp-form label.full,
.rsvp-form button.full {
  grid-column: 1 / -1;
}
.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  background: var(--bg-3);
  border: 1px solid #333;
  color: #fff;
  padding: 10px 12px;
  border-radius: 4px;
  font: inherit;
  resize: vertical;
}
.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  outline: none;
  border-color: var(--netflix-red);
}
.rsvp-status {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  min-height: 16px;
}
.rsvp-status.ok {
  color: #46d369;
}
.rsvp-status.err {
  color: var(--netflix-red);
}

/* ============ WISHES ============ */
.wishes-wrap {
  max-width: 520px;
  margin: 28px 5vw 0;
}
.wishes-title {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.wishes-title span {
  display: inline-block;
  background: var(--netflix-red);
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}
.wishes-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.wishes-list::-webkit-scrollbar {
  width: 6px;
}
.wishes-list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 3px;
}
.wish-card {
  background: var(--bg-2);
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--netflix-red);
  border-radius: 6px;
  padding: 12px 14px;
}
.wish-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 8px;
}
.wish-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.wish-status {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 1px;
}
.wish-status.hadir {
  background: rgba(70, 211, 105, 0.15);
  color: #46d369;
}
.wish-status.tidak {
  background: rgba(229, 9, 20, 0.15);
  color: var(--netflix-red);
}
.wish-status.ragu {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
}
.wish-msg {
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.wish-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.wish-time {
  font-size: 11px;
  color: var(--text-dim);
}
.wish-del {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: var(--text-dim);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: all 0.2s;
}
.wish-del:hover {
  background: var(--netflix-red);
  color: #fff;
  border-color: var(--netflix-red);
}
.wish-del:disabled {
  opacity: 0.5;
  cursor: wait;
}
.wishes-empty {
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  padding: 30px 5vw;
  color: var(--text-dim);
  font-size: 13px;
  border-top: 1px solid #222;
}

/* ============ RESPONSIVE ============ */

/* Tablet & below */
@media (max-width: 900px) {
  .hero {
    min-height: 80vh;
    padding: 0 5vw;
  }
  .hero-fade {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, #000 100%);
  }
  .hero-content {
    max-width: 100%;
  }
  .verse-card {
    padding: 26px 22px;
  }
  .story-timeline {
    margin: 0 5vw;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile (default phones) */
@media (max-width: 600px) {
  /* Topnav: brand left, music right, nav scrolls horizontal */
  .topnav {
    flex-wrap: wrap;
    padding: 10px 4vw;
    gap: 8px;
  }
  .brand {
    font-size: 18px;
  }
  .brand span {
    font-size: 10px;
  }
  .topnav nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .topnav nav::-webkit-scrollbar {
    display: none;
  }
  .topnav nav a {
    font-size: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 3px;
  }
  .topnav nav a .nav-ico {
    width: 20px;
    height: 20px;
  }
  .topnav nav {
    gap: 14px;
  }
  .music-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  /* Cover */
  .cover-inner {
    padding: 0 8px;
  }
  .cover-label {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .cover-guest {
    padding: 12px 14px;
  }
  .cover-guest strong {
    font-size: 16px;
  }

  /* Hero */
  .hero {
    min-height: 75vh;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .meta {
    gap: 10px;
    font-size: 13px;
  }
  .hero-actions {
    gap: 10px;
  }
  .btn-play,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 14px;
  }

  /* Row title */
  .row-title {
    font-size: 19px;
    padding: 0 5vw;
  }

  /* Countdown */
  .countdown {
    gap: 6px;
    padding: 0 4vw;
  }
  .countdown > div {
    padding: 14px 4px;
  }
  .countdown span {
    font-size: 10px;
  }

  /* Episode */
  .episode {
    flex-direction: column;
  }
  .ep-thumb {
    flex: 0 0 110px;
    height: 110px;
    width: 100%;
  }

  /* Verse */
  .verse-row {
    padding: 30px 4vw;
  }
  .verse-card {
    padding: 22px 16px;
  }
  .verse-arabic {
    line-height: 1.9;
  }
  .verse-translate {
    font-size: 13px;
  }

  /* Story */
  .story-timeline {
    padding-left: 20px;
    margin: 0 5vw;
  }
  .story-item::before {
    left: -29px;
    width: 12px;
    height: 12px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Mempelai */
  .couple-list {
    grid-template-columns: 1fr;
  }
  .couple-name {
    font-size: 22px;
  }
  .couple-body {
    padding: 18px;
  }

  /* Gift */
  .gift-list {
    grid-template-columns: 1fr;
  }
  .gift-number {
    font-size: 22px;
  }

  /* RSVP */
  .rsvp-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* Wishes */
  .wishes-wrap {
    margin-top: 24px;
  }
  .wishes-list {
    max-height: 360px;
  }
  .wish-head {
    flex-wrap: wrap;
  }
  .wish-status {
    font-size: 10px;
  }

  /* Splash: skala-kan keseluruhan logo + bar untuk layar HP */
  .n-logo {
    width: 200px;
    height: 220px;
  }
  .n-letter {
    font-size: 130px;
  }
  .n-img {
    width: 140px;
    height: 140px;
  }
  .n-bar {
    width: 13px;
    height: 220px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .countdown {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  .countdown strong {
    font-size: 22px;
  }
  .countdown > div {
    padding: 10px 2px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-play,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .cover {
    padding: 16px;
  }
}

/* Large desktop */
@media (min-width: 1400px) {
  .topnav,
  .hero,
  .row-title,
  .countdown,
  .episode-list,
  .story-timeline,
  .gallery-grid,
  .gift-intro,
  .gift-list,
  .rsvp-form,
  .wishes-wrap,
  .footer {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .hero-title {
    font-size: clamp(60px, 7vw, 96px);
  }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
