:root {
  --midnight-blue: #0A1128;
  --navy-blue: #1B2B4D;
  --deep-blue: #1E3A5F;
  --gold: #FFD700;
  --light-gold: #FFED4E;
  --silver: #C0C0C0;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --text: #E8E8E8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--midnight-blue);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   STARRY NIGHT SPLASH SCREEN
========================================== */
.starry-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, var(--midnight-blue) 0%, var(--navy-blue) 50%, var(--deep-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 1.5s ease;
}

.starry-splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

.night-sky-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shooting-star {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  animation: shootingStar 3s linear infinite;
}

.shooting-star:nth-child(1) {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.shooting-star:nth-child(2) {
  top: 50%;
  right: 40%;
  animation-delay: 1.5s;
}

.shooting-star:nth-child(3) {
  top: 70%;
  right: 70%;
  animation-delay: 3s;
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateX(-500px) translateY(500px) rotate(45deg);
    opacity: 0;
  }
}

.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: splashFadeIn 1.2s ease-out;
}

@keyframes splashFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.moon-icon {
  font-size: 100px;
  margin-bottom: 30px;
  animation: moonGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px var(--gold));
}

@keyframes moonGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px var(--gold));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 50px var(--gold));
  }
}

.splash-title {
  font-family: 'Aref Ruqaa', serif;
  font-size: 72px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 20px var(--gold), 0 5px 30px rgba(255, 215, 0, 0.5);
}

.splash-subtitle {
  font-family: 'Cairo', sans-serif;
  font-size: 34px;
  color: var(--light-gold);
  margin-bottom: 35px;
  font-weight: 600;
}

.stars-ornament {
  display: flex;
  gap: 25px;
  justify-content: center;
  font-size: 42px;
  color: var(--silver);
}

.star-piece {
  animation: starTwinkle 2s ease-in-out infinite;
}

.star-piece:nth-child(1) { animation-delay: 0s; }
.star-piece:nth-child(2) { animation-delay: 0.5s; }
.star-piece:nth-child(3) { animation-delay: 1s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

/* ==========================================
   MAIN INVITATION
========================================== */
.main-invitation {
  opacity: 0;
  transition: opacity 1.5s ease 0.5s;
}

.main-invitation.visible {
  opacity: 1;
}

/* ==========================================
   STARS ANIMATION
========================================== */
.stars-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  color: var(--gold);
  font-size: 20px;
  animation: starFloat 4s ease-in-out infinite;
  text-shadow: 0 0 10px var(--gold);
}

.star-1 { top: 10%; right: 10%; animation-delay: 0s; }
.star-2 { top: 15%; right: 30%; animation-delay: 0.5s; }
.star-3 { top: 25%; right: 70%; animation-delay: 1s; }
.star-4 { top: 35%; right: 15%; animation-delay: 1.5s; }
.star-5 { top: 45%; right: 50%; animation-delay: 2s; }
.star-6 { top: 55%; right: 80%; animation-delay: 0.3s; }
.star-7 { top: 65%; right: 20%; animation-delay: 0.8s; }
.star-8 { top: 70%; right: 60%; animation-delay: 1.3s; }
.star-9 { top: 80%; right: 40%; animation-delay: 1.8s; }
.star-10 { top: 90%; right: 75%; animation-delay: 2.3s; }
.star-11 { top: 20%; left: 15%; animation-delay: 0.6s; }
.star-12 { top: 40%; left: 25%; animation-delay: 1.1s; }
.star-13 { top: 60%; left: 10%; animation-delay: 1.6s; }
.star-14 { top: 75%; left: 35%; animation-delay: 2.1s; }
.star-15 { top: 85%; left: 20%; animation-delay: 0.4s; }
.star-16 { top: 12%; left: 45%; animation-delay: 0.9s; }
.star-17 { top: 30%; left: 60%; animation-delay: 1.4s; }
.star-18 { top: 50%; left: 75%; animation-delay: 1.9s; }
.star-19 { top: 68%; left: 55%; animation-delay: 0.7s; }
.star-20 { top: 82%; left: 65%; animation-delay: 1.2s; }
.star-21 { top: 8%; right: 50%; animation-delay: 1.7s; }
.star-22 { top: 28%; right: 85%; animation-delay: 2.2s; }
.star-23 { top: 48%; right: 25%; animation-delay: 0.2s; }
.star-24 { top: 62%; right: 55%; animation-delay: 1s; }
.star-25 { top: 78%; right: 10%; animation-delay: 1.5s; }

@keyframes starFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 1;
  }
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--midnight-blue) 0%, var(--navy-blue) 50%, var(--deep-blue) 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 40px;
  max-width: 900px;
}

.moon-stars-top,
.moon-stars-bottom {
  font-size: 42px;
  color: var(--gold);
  margin: 35px 0;
  letter-spacing: 15px;
  text-shadow: 0 0 15px var(--gold);
}

.bismillah-starry {
  font-family: 'Scheherazade New', serif;
  font-size: 48px;
  color: var(--light-gold);
  margin: 40px 0;
  line-height: 2;
  text-shadow: 0 0 20px var(--gold);
}

.main-title-starry {
  font-family: 'Aref Ruqaa', serif;
  font-size: 80px;
  color: var(--gold);
  margin: 45px 0;
  font-weight: 700;
  letter-spacing: 4px;
  text-shadow: 0 0 30px var(--gold), 0 5px 40px rgba(255, 215, 0, 0.6);
}

.stars-divider {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  font-size: 38px;
  color: var(--silver);
}

.stars-divider span {
  animation: starTwinkle 2s ease-in-out infinite;
}

.stars-divider span:nth-child(1) { animation-delay: 0s; }
.stars-divider span:nth-child(2) { animation-delay: 0.5s; }
.stars-divider span:nth-child(3) { animation-delay: 1s; }

.quran-verse-starry {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 45px;
  margin: 50px 0;
  backdrop-filter: blur(10px);
}

.quran-verse-starry p {
  font-family: 'Amiri', serif;
  font-size: 28px;
  color: var(--cream);
  line-height: 2.3;
  margin-bottom: 12px;
}

.verse-ref {
  display: block;
  font-size: 20px;
  color: var(--gold);
  margin-top: 25px;
  font-weight: 700;
}

/* ==========================================
   INVITATION SECTION
========================================== */
.invitation-section {
  padding: 100px 20px;
  background: var(--navy-blue);
  position: relative;
}

.starry-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--navy-blue) 100%);
  border-radius: 25px;
  box-shadow: 0 25px 80px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.card-stars-border {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 25px;
  padding: 3px;
  pointer-events: none;
}

.border-star {
  position: absolute;
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 15px var(--gold);
}

.border-star:nth-child(1) { top: 10px; right: 10px; }
.border-star:nth-child(2) { top: 10px; left: 10px; }
.border-star:nth-child(3) { bottom: 10px; right: 10px; }
.border-star:nth-child(4) { bottom: 10px; left: 10px; }

.card-content {
  padding: 70px 50px;
  text-align: center;
}

.moon-ornament {
  font-size: 60px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px var(--gold));
}

.invitation-intro {
  font-size: 26px;
  color: var(--light-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.invitation-text {
  font-size: 30px;
  color: var(--cream);
  margin: 30px 0;
  line-height: 1.9;
  font-weight: 600;
}

.stars-line {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 28px;
  color: var(--silver);
  margin-top: 35px;
}

.stars-line span {
  animation: starTwinkle 2s ease-in-out infinite;
}

/* ==========================================
   SECTION HEADERS
========================================== */
.section-header-starry {
  text-align: center;
  margin-bottom: 60px;
}

.header-stars {
  font-size: 32px;
  color: var(--gold);
  margin: 20px 0;
  letter-spacing: 15px;
  text-shadow: 0 0 15px var(--gold);
}

.section-title-starry {
  font-family: 'Aref Ruqaa', serif;
  font-size: 54px;
  color: var(--gold);
  margin: 25px 0;
  font-weight: 700;
  text-shadow: 0 0 20px var(--gold);
}

.section-subtitle {
  font-size: 20px;
  color: var(--silver);
  margin-top: 15px;
  opacity: 0.9;
}

/* ==========================================
   COUPLE SECTION
========================================== */
.couple-section {
  padding: 120px 20px;
  background: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.couple-starry-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.starry-couple-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  transition: all 0.4s ease;
  border: 2px solid var(--gold);
}

.starry-couple-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.5);
}

.card-night-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1), transparent 50%);
}

.card-inner {
  padding: 50px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.couple-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.couple-label {
  display: block;
  font-size: 18px;
  color: var(--light-gold);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 2px;
}

.couple-name-starry {
  font-family: 'Aref Ruqaa', serif;
  font-size: 52px;
  color: var(--gold);
  margin: 20px 0;
  font-weight: 700;
  text-shadow: 0 0 15px var(--gold);
}

.star-divider {
  font-size: 32px;
  color: var(--silver);
  margin: 20px 0;
}

.family-intro {
  font-size: 16px;
  color: var(--cream);
  margin: 15px 0 8px;
  opacity: 0.9;
}

.family-name-starry {
  font-size: 22px;
  color: var(--cream);
  font-weight: 600;
}

.moon-heart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.moon-glow {
  font-size: 50px;
  animation: moonGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 25px var(--gold));
}

.heart-icon {
  font-size: 60px;
  color: var(--gold);
  animation: heartbeat 2s ease-in-out infinite;
  text-shadow: 0 0 20px var(--gold);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15%, 35% { transform: scale(1.2); }
  25%, 45% { transform: scale(1); }
}

.stars-around {
  display: flex;
  gap: 15px;
}

.mini-star {
  font-size: 20px;
  color: var(--silver);
  animation: starTwinkle 2s ease-in-out infinite;
}

/* ==========================================
   DATETIME SECTION
========================================== */
.datetime-section {
  padding: 120px 20px;
  background: var(--navy-blue);
}

.datetime-starry-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight-blue) 100%);
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4);
  border: 2px solid var(--gold);
}

.datetime-starry-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.datetime-starry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.datetime-icon-starry {
  font-size: 50px;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
}

.datetime-info-starry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.datetime-label {
  font-size: 17px;
  color: var(--light-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.datetime-value {
  font-family: 'Aref Ruqaa', serif;
  font-size: 30px;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 10px var(--gold);
}

.star-deco {
  font-size: 20px;
  color: var(--silver);
  animation: starTwinkle 2s ease-in-out infinite;
}

.datetime-separator-starry {
  font-size: 48px;
  filter: drop-shadow(0 0 20px var(--gold));
}

/* ==========================================
   COUNTDOWN SECTION
========================================== */
.countdown-section {
  padding: 120px 20px;
  background: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.countdown-starry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  direction: ltr;
}

.count-starry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-starry-box {
  width: 150px;
  padding: 30px;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  border: 3px solid var(--gold);
  transition: all 0.4s ease;
}

.count-starry-box:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.5);
}

.box-stars {
  font-size: 20px;
  color: var(--silver);
  letter-spacing: 10px;
  margin-bottom: 10px;
}

.count-number {
  font-family: 'Aref Ruqaa', serif;
  font-size: 60px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 20px var(--gold);
}

.count-label {
  font-size: 18px;
  color: var(--cream);
  font-weight: 600;
}

.count-separator {
  font-size: 60px;
  filter: drop-shadow(0 0 25px var(--gold));
}

/* ==========================================
   VENUE SECTION
========================================== */
.venue-section {
  padding: 120px 20px;
  background: var(--navy-blue);
}

.venue-starry-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 50px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight-blue) 100%);
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4);
  text-align: center;
  border: 2px solid var(--gold);
}

.venue-icon-starry {
  font-size: 70px;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.venue-name-starry {
  font-family: 'Aref Ruqaa', serif;
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 45px;
  font-weight: 700;
  text-shadow: 0 0 15px var(--gold);
}

.venue-details-starry {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
}

.venue-detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  position: relative;
  border: 1px solid var(--gold);
}

.detail-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.detail-content {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 15px;
  color: var(--light-gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.detail-value {
  font-family: 'Cairo', sans-serif;
  font-size: 22px;
  color: var(--cream);
  font-weight: 600;
}

.detail-star {
  font-size: 24px;
  color: var(--silver);
  animation: starTwinkle 2s ease-in-out infinite;
}

.starry-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  color: var(--midnight-blue);
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  transition: all 0.4s ease;
}

.starry-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

/* ==========================================
   EVENT PROGRAM SECTION
========================================== */
.program-section {
  padding: 120px 20px;
  background: var(--midnight-blue);
  position: relative;
  overflow: hidden;
}

.program-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--deep-blue) 100%);
  border-radius: 20px;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.1), transparent 40%);
  pointer-events: none;
}

.timeline-item:hover {
  transform: translateX(-10px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.timeline-icon {
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
  position: relative;
  z-index: 2;
}

.timeline-content {
  text-align: right;
  position: relative;
  z-index: 2;
}

.timeline-time {
  font-family: 'Aref Ruqaa', serif;
  font-size: 24px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--gold);
}

.timeline-title {
  font-family: 'Cairo', sans-serif;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-desc {
  font-size: 18px;
  color: var(--silver);
  opacity: 0.9;
}

.timeline-star {
  font-size: 28px;
  color: var(--silver);
  animation: starTwinkle 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* ==========================================
   DUA SECTION
========================================== */
.dua-section {
  padding: 120px 20px;
  background: var(--navy-blue);
}

.dua-starry-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 70px 50px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--midnight-blue) 100%);
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3);
  text-align: center;
  position: relative;
  border: 3px solid var(--gold);
}

.dua-stars {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 32px;
  color: var(--silver);
  margin: 25px 0;
}

.dua-stars span {
  animation: starTwinkle 2s ease-in-out infinite;
}

.dua-icon {
  font-size: 60px;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
}

.dua-title-starry {
  font-family: 'Aref Ruqaa', serif;
  font-size: 36px;
  color: var(--gold);
  margin: 25px 0 40px;
  font-weight: 700;
  text-shadow: 0 0 15px var(--gold);
}

.dua-text-starry {
  font-family: 'Amiri', serif;
  font-size: 32px;
  color: var(--cream);
  line-height: 2.5;
  margin: 40px 0;
}

.dua-closing {
  font-size: 20px;
  color: var(--silver);
  margin-top: 35px;
  opacity: 0.9;
  font-weight: 600;
}

/* ==========================================
   FOOTER
========================================== */
.starry-footer {
  background: linear-gradient(180deg, var(--midnight-blue) 0%, #000000 100%);
  padding: 80px 20px 40px;
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-stars-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.footer-star {
  position: absolute;
  color: var(--gold);
  font-size: 24px;
  animation: starFloat 4s ease-in-out infinite;
  text-shadow: 0 0 10px var(--gold);
}

.footer-star:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
.footer-star:nth-child(2) { top: 25%; right: 70%; animation-delay: 0.5s; }
.footer-star:nth-child(3) { top: 50%; right: 30%; animation-delay: 1s; }
.footer-star:nth-child(4) { top: 70%; right: 80%; animation-delay: 1.5s; }
.footer-star:nth-child(5) { top: 80%; right: 50%; animation-delay: 2s; }

.footer-moon {
  font-size: 60px;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 30px var(--gold));
  animation: moonGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.footer-names-starry {
  font-family: 'Aref Ruqaa', serif;
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
  position: relative;
  z-index: 2;
}

.footer-verse {
  font-family: 'Amiri', serif;
  font-size: 24px;
  margin-bottom: 30px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.footer-ornament {
  font-size: 28px;
  color: var(--silver);
  margin: 25px 0;
  position: relative;
  z-index: 2;
  letter-spacing: 12px;
}

.footer-copyright {
  font-size: 15px;
  opacity: 0.8;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  z-index: 2;
}

/* ==========================================
   MUSIC BUTTON
========================================== */
.music-btn-starry {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  border: 3px solid var(--midnight-blue);
  border-radius: 50%;
  color: var(--midnight-blue);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.music-btn-starry:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 768px) {
  .splash-title {
    font-size: 56px;
  }
  
  .splash-subtitle {
    font-size: 28px;
  }
  
  .moon-icon {
    font-size: 80px;
  }
  
  .bismillah-starry {
    font-size: 38px;
  }
  
  .main-title-starry {
    font-size: 62px;
  }
  
  .quran-verse-starry {
    padding: 35px;
  }
  
  .quran-verse-starry p {
    font-size: 24px;
  }
  
  .card-content {
    padding: 55px 35px;
  }
  
  .invitation-text {
    font-size: 26px;
  }
  
  .couple-starry-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .moon-heart {
    order: -1;
  }
  
  .couple-name-starry {
    font-size: 44px;
  }
  
  .datetime-starry-card {
    padding: 50px 35px;
  }
  
  .datetime-starry-grid {
    flex-direction: column;
    gap: 35px;
  }
  
  .datetime-separator-starry {
    display: none;
  }
  
  .count-starry-box {
    width: 130px;
    padding: 25px;
  }
  
  .count-number {
    font-size: 52px;
  }
  
  .count-separator {
    display: none;
  }
  
  .venue-starry-card,
  .dua-starry-card {
    padding: 50px 35px;
  }
  
  .venue-name-starry {
    font-size: 36px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  
  .timeline-icon {
    font-size: 42px;
    text-align: center;
  }
  
  .timeline-content {
    text-align: center;
  }
  
  .timeline-star {
    text-align: center;
  }
  
  .timeline-time {
    font-size: 22px;
  }
  
  .timeline-title {
    font-size: 24px;
  }
  
  .dua-text-starry {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .moon-icon {
    font-size: 70px;
  }
  
  .splash-title {
    font-size: 46px;
  }
  
  .splash-subtitle {
    font-size: 24px;
  }
  
  .hero-content {
    padding: 60px 25px;
  }
  
  .bismillah-starry {
    font-size: 32px;
  }
  
  .main-title-starry {
    font-size: 52px;
  }
  
  .quran-verse-starry {
    padding: 28px;
  }
  
  .quran-verse-starry p {
    font-size: 21px;
  }
  
  .verse-ref {
    font-size: 17px;
  }
  
  .card-content {
    padding: 45px 25px;
  }
  
  .invitation-intro {
    font-size: 22px;
  }
  
  .invitation-text {
    font-size: 24px;
  }
  
  .section-title-starry {
    font-size: 42px;
  }
  
  .card-inner {
    padding: 40px 30px;
  }
  
  .couple-name-starry {
    font-size: 38px;
  }
  
  .datetime-starry-card {
    padding: 40px 25px;
  }
  
  .datetime-value {
    font-size: 26px;
  }
  
  .count-starry-box {
    width: 115px;
    padding: 20px;
  }
  
  .count-number {
    font-size: 46px;
  }
  
  .venue-starry-card {
    padding: 40px 25px;
  }
  
  .venue-name-starry {
    font-size: 32px;
  }
  
  .detail-value {
    font-size: 19px;
  }
  
  .timeline-item {
    padding: 20px;
  }
  
  .timeline-icon {
    font-size: 36px;
  }
  
  .timeline-time {
    font-size: 20px;
  }
  
  .timeline-title {
    font-size: 22px;
  }
  
  .timeline-desc {
    font-size: 16px;
  }
  
  .dua-starry-card {
    padding: 40px 25px;
  }
  
  .dua-title-starry {
    font-size: 30px;
  }
  
  .dua-text-starry {
    font-size: 25px;
  }
  
  .footer-names-starry {
    font-size: 40px;
  }
  
  .footer-verse {
    font-size: 21px;
  }
  
  .music-btn-starry {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
  }
}
