/* ============================================
   Dark Luxury / ATM Card Style - 2026
   ============================================ */

:root{
  --bg: #0a0a0f;
  --bg-alt: #14141c;
  --card: #1a1a24;
  --text: #f5f5f7;
  --text-muted: #a0a0b0;
  --gold: #d4af37;
  --gold-light: #f9e79f;
  --gold-dark: #b8860b;
  --accent: #2a2a38;
  --border: rgba(212,175,55,0.2);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(212,175,55,0.15);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Background gradient mewah */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6{
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loader */
.loader{
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hide{
  opacity: 0;
  visibility: hidden;
}
.loader-heart{
  font-size: 48px;
  color: var(--gold);
  animation: pulse 1.5s infinite;
}
@keyframes pulse{
 0%, 100%{ transform: scale(1); }
 50%{ transform: scale(1.2); }
}

/* Opening Cover */
.opening{
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999;
  padding: 2rem;
  color: var(--text);
}

.opening-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.95) 100%);
  z-index: 1;
}

.opening-content{
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.opening-label{
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.opening-name{
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: var(--text);
  margin: 1rem 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.guest-greeting, .guest-name, .opening-date{
  color: var(--text-muted);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-open{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-open:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.hidden-content{
  display: none;
}

@keyframes fadeInUp{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Floating Nav */
.floating-nav{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,26,36,0.7);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 6px;
  box-shadow: var(--shadow);
  z-index: 999;
  max-width: 90vw;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid var(--border);
}
.floating-nav::-webkit-scrollbar{ display: none; }
.floating-nav ul{
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-icon{
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.nav-icon:hover,
.nav-icon.active{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Hero */
.hero{
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
}
.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.95) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding: 20px;
}
.hero-label{
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--gold);
}
.hero-name{
  font-family: 'Great Vibes', cursive;
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-name span{
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin: 0 15px;
}
.guest-greeting{
  font-size: 16px;
  margin-bottom: 8px;
  opacity: 0.9;
}
.guest-name{
  font-size: 28px;
  margin-bottom: 20px;
}
.hero-date{
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-muted);
}
.scroll-hint{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  animation: bounce 2s infinite;
  color: var(--gold);
}
@keyframes bounce{
 0%, 100%{ transform: translateX(-50%) translateY(0); }
 50%{ transform: translateX(-50%) translateY(10px); }
}

/* Buttons */
.btn-primary{
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline{
  padding: 12px 25px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline:hover{
  background: var(--gold);
  color: var(--bg);
}

/* Section */
.section{
  padding: 80px 0;
  position: relative;
}
.section-alt{
  background: var(--bg-alt);
}
.section-head{
  text-align: center;
  margin-bottom: 60px;
}
.section-tag{
  display: inline-block;
  padding: 6px 20px;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.section-head h2{
  font-size: 42px;
  color: var(--text);
}
.section-desc{
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 2;
}
.section-note{
  text-align: center;
  max-width: 650px;
  margin: 50px auto 0;
  font-size: 17px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  opacity: 0.9;
  line-height: 1.9;
}

/* Couple */
.couple-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}
.couple-card{
  text-align: center;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.couple-card:hover{
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.couple-frame{
  width: 280px;
  aspect-ratio: 2/3;
  margin: 0 auto 25px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.couple-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.couple-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-weight: 700;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.couple-name{
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--gold);
}
.couple-full{
  font-size: 18px;
  margin-bottom: 15px;
}
.parent{
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.couple-divider{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.couple-divider span{
  width: 2px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.couple-divider i{
  font-size: 28px;
  color: var(--gold);
}

/* Instagram Link */
.ig-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  font-weight: 500;
}
.ig-link:hover{
  color: var(--gold-light);
  transform: translateY(-2px);
}
.ig-link i{
  font-size: 18px;
}

/* Quote */
.quote-box{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.quote-box i{
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.quote-box p{
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.quote-box span{
  font-size: 16px;
  color: var(--text-muted);
}

/* Event */
.event-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.event-card{
  background: var(--card);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border: 1px solid var(--border);
}
.event-card:hover{
  transform: translateY(-5px);
  border-color: var(--gold);
}
.event-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--bg);
}
.event-card h4{
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--gold);
}
.event-card .time{
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
}
.event-card .location{
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Countdown */
.countdown-section{
  text-align: center;
  margin-bottom: 50px;
}
.countdown-label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.countdown{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.countdown div{
  background: var(--card);
  padding: 20px;
  border-radius: 15px;
  min-width: 90px;
  border: 1px solid var(--border);
}
.countdown span{
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.countdown small{
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Streaming */
.streaming-box{
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.streaming-box p{
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.streaming-embed{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Our Story */
#story{
  background: var(--bg-alt);
  position: relative;
}
.timeline{
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}
.timeline::before{
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item{
  position: relative;
  margin-bottom: 70px;
}
.timeline-item:last-child{ margin-bottom: 0; }
.timeline-dot{
  position: absolute;
  left: -80px;
  top: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 18px;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.timeline-card{
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
}
.timeline-card::before{
  content: '';
  position: absolute;
  left: -12px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--card);
}
.story-img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.timeline-content{
  padding: 35px 30px;
  text-align: left;
}
.timeline-date{
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}
.timeline-content h4{
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold);
}
.timeline-content p{
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* Gallery Swiper */
.gallery-swiper{
  padding: 0 50px 50px;
  position: relative;
}
.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 2px solid var(--border);
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img{
  transform: scale(1.05);
}
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next{
  color: var(--bg);
  background: rgba(212,175,55,0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover{
  background: var(--gold);
}
.gallery-swiper .swiper-button-prev:after,
.gallery-swiper .swiper-button-next:after{
  font-size: 18px;
  font-weight: 700;
}
.gallery-swiper .swiper-pagination-bullet{
  background: var(--text-muted);
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}
.gallery-swiper .swiper-pagination-bullet-active{
  background: var(--gold);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* RSVP */
.section-rsvp{
  background: linear-gradient(rgba(10,10,15,0.9), rgba(10,10,15,0.95)), url('../../public/uploads/bg-rsvp.jpg') center/cover no-repeat;
  color: var(--text);
  padding: 100px 0;
}
.rsvp-content{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.rsvp-title{
  font-size: 56px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--gold);
}
.rsvp-desc{
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
  color: var(--text-muted);
}
.rsvp-form{
  text-align: left;
}
.form-group{
  margin-bottom: 20px;
}
.form-group label{
  display: block;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}
.required{ color: #ff6b6b; }
.rsvp-form input,
.rsvp-form select{
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(26,26,36,0.5);
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}
.rsvp-form input:focus,
.rsvp-form select:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.btn-whatsapp{
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-whatsapp:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.rsvp-stats{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.stat-box{
  text-align: center;
}
.stat-number{
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label{
  font-size: 14px;
  opacity: 0.9;
}

/* Wishes */
.section-wishes{
  background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.95)), url('../../public/uploads/bg-wishes.jpg') center/cover no-repeat;
  color: var(--text);
  padding: 100px 0;
}
.wishes-content{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.wishes-icon{
  margin-bottom: 30px;
}
.wishes-icon i{
  font-size: 60px;
  color: var(--gold);
}
.wishes-title{
  margin-bottom: 20px;
}
.wishes-script{
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  font-weight: 400;
  display: block;
  color: var(--gold);
}
.wishes-bold{
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  display: block;
  margin-top: -10px;
}
.wishes-desc{
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.95;
  color: var(--text-muted);
}
.wishes-form{
  background: rgba(26,26,36,0.5);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.wishes-form input,
.wishes-form textarea{
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(10,10,15,0.5);
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  margin-bottom: 15px;
}
.wishes-form input:focus,
.wishes-form textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.btn-submit-wish{
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit-wish:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.wishes-list{
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}
.wish-item{
  background: var(--card);
  color: var(--text);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 15px;
  text-align: left;
  border: 1px solid var(--border);
}
.wish-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.wish-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 700;
}
.wish-info strong{
  display: block;
  font-size: 15px;
}
.wish-info small{
  font-size: 12px;
  color: var(--text-muted);
}
.wish-item p{
  font-size: 15px;
  line-height: 1.6;
  padding-left: 52px;
  color: var(--text-muted);
}
.empty-wish{
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
}

/* Wedding Gift - ATM Card Style */
.section-gift{
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  color: var(--text);
  padding: 100px 0;
  text-align: center;
}
.gift-head h2{
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--gold);
}
.gift-head p{
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.gift-list{
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gift-card-dark{
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}
.gift-card-dark::before{
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  width: 40px;
  height: 30px;
  background: linear-gradient(90deg, #D4AF37 0%, #F7E98E 50%, #D4AF37 100%);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), inset 0 0 0 8px rgba(255,255,255,0.3);
}
.gift-card-header{
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.gift-logo{
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.gift-card-body{
  padding-top: 45px;
}
.gift-number{
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Outfit', monospace;
}
.gift-name{
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-copy-dark{
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.btn-copy-dark:hover{
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

/* Footer */
.footer{
  text-align: center;
  padding: 50px 20px;
  background: var(--bg-alt);
  color: var(--text-muted);
}
.footer p{
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.9;
}
.footer h3{
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold);
}

/* Music Button */
.music-btn{
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  transition: all 0.3s;
}
.music-btn:hover{
  transform: scale(1.1);
}
.music-btn.playing{
  animation: spin 3s linear infinite;
}
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* Animation */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}
.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* Alert */
.alert{
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}
.alert.success{
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.alert.hidden{
  display: none;
}

/* Responsive */
@media(max-width: 768px){
  .hero-name{ font-size: 48px; }
  .hero-name span{ font-size: 28px; }
  .couple-grid{ grid-template-columns: 1fr; }
  .couple-divider{ flex-direction: row; justify-content: center; }
  .couple-divider span{ width: 80px; height: 2px; }
  .event-grid{ grid-template-columns: 1fr; }
  .section-head h2{ font-size: 32px; }
  .rsvp-title{ font-size: 42px; }
  .wishes-script{ font-size: 38px; }
  .wishes-bold{ font-size: 42px; }
  .timeline{ padding-left: 60px; }
  .timeline-dot{ left: -60px; width: 36px; height: 36px; font-size: 16px; }
  .timeline-content h4{ font-size: 26px; }
  .timeline-item{ margin-bottom: 50px; }
  .gift-head h2{ font-size: 42px; }
  .gallery-swiper{ padding: 0 0 50px; }
  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next{ display: none; }
  .opening-name{ font-size: 2.5rem; }
  .floating-nav{ display: none; }
}

@media(max-width: 480px){
  .floating-nav{ bottom: 15px; padding: 5px; border-radius: 25px; }
  .nav-icon{ width: 34px; height: 34px; font-size: 16px; }
  .countdown{ gap: 10px; }
  .countdown div{ min-width: 70px; padding: 15px; }
  .countdown span{ font-size: 28px; }
  .music-btn{ bottom: 90px; right: 20px; width: 50px; height: 50px; }
  .timeline{ padding-left: 50px; }
  .timeline-dot{ left: -50px; width: 32px; height: 32px; font-size: 14px; }
  .timeline-content{ padding: 25px 20px; }
  .timeline-content h4{ font-size: 24px; }
  .gift-number{ font-size: 20px; }
  .opening-name{ font-size: 2.2rem; }
}
/* ===== Live Streaming Section ===== */
.section-streaming {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
}

.streaming-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.streaming-header h2 {
  color: var(--accent);
  font-size: 48px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.streaming-header .section-desc {
  color: var(--cream);
  opacity: 0.9;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #ff0000;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 2px solid var(--accent);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

.streaming-card {
  margin-top: 40px;
  background: var(--cream);
  border: 3px solid var(--accent);
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.streaming-frame {
  background: #000;
  padding: 10px;
  border: 2px solid var(--accent-dark);
}

.streaming-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.streaming-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.streaming-info {
  margin-top: 20px;
  text-align: left;
}

.streaming-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.streaming-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 14px;
}

/* Animasi dot LIVE */
@keyframes pulse-live {
 0%, 100% { opacity: 1; transform: scale(1); }
 50% { opacity: 0.5; transform: scale(1.2); }
}

/* ===== Responsive Live Streaming ===== */
@media(max-width: 768px) {
  .section-streaming {
    padding: 60px 0;
  }
  .streaming-header h2 {
    font-size: 36px;
  }
  .streaming-card {
    padding: 15px;
  }
}

@media(max-width: 480px) {
  .streaming-header h2 {
    font-size: 32px;
  }
  .streaming-card {
    padding: 10px;
  }
  .streaming-meta,
  .streaming-note {
    font-size: 13px;
  }
  .live-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
}