	:root {
	  --scroll-thumb: rgba(0,0,0,0.0);
	}

	html, body {
	  margin: 0;
	  padding: 0;
	  height: 100%;
	  scroll-behavior: smooth;
	  overscroll-behavior: none;
	  overflow-x: hidden;
	  font-family: 'Poppins', sans-serif;
	}
	
	.bg-global {
	  position: fixed;
	  inset: 0;
	  background: url('../img/background-2.png') center center / cover no-repeat;
	  z-index: -10;
	  pointer-events: none;
	  will-change: transform;
	}
	
	/* 🌌 GLOBAL BACKGROUND (1 gambar untuk semua section) */
	body {
	  background: transparent;
	  color: white;
	}

	/* Smooth scroll efek paralaks lembut */
	body.scroll {
	  background-position-y: calc(var(--scroll, 0px) * -0.15);
	}

	::-webkit-scrollbar { width: 0px; }
	::-webkit-scrollbar-thumb {
	  background: var(--scroll-thumb);
	  border-radius: 8px;
	}

	/* ❄ Splash Screen Winter Elegan */
	#splash {
	  position: fixed;
	  inset: 0;
	  background: linear-gradient(180deg, #fafdff, #eef7ff);
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  z-index: 9999;
	  animation: splashFadeOut 1.7s ease forwards 1.2s;
	  overflow: hidden;
	}

	/* ❄ ICE HEART SUPER SHARP & CLEAR */
	.ice-heart {
	  width: 95px;
	  height: 95px;

	  /* Warna biru es lebih tebal */
	  background: #b9e3ff;

	  /* Mask SVG resolusi tinggi */
	  -webkit-mask: url('data:image/svg+xml;utf8,\
	<svg width="600" height="600" viewBox=\'0 0 24 24\' xmlns=\'http://www.w3.org/2000/svg\'>\
	<path fill=\'white\' d=\'M12 21s-6.715-4.486-9.5-8.5C.15 10.141 0 8.28 0 7a6 6 0 0 1 6-6c2.113 0 4.03 1.067 5 2.626C12.97 2.067 14.887 1 17 1a6 6 0 0 1 6 6c0 1.28-.15 3.141-2.5 5.5C18.715 16.514 12 21 12 21z\'/>\
	</svg>') center / contain no-repeat;

	  mask: url('data:image/svg+xml;utf8,\
	<svg width="600" height="600" viewBox=\'0 0 24 24\' xmlns=\'http://www.w3.org/2000/svg\'>\
	<path fill=\'white\' d=\'M12 21s-6.715-4.486-9.5-8.5C.15 10.141 0 8.28 0 7a6 6 0 0 1 6-6c2.113 0 4.03 1.067 5 2.626C12.97 2.067 14.887 1 17 1a6 6 0 0 1 6 6c0 1.28-.15 3.141-2.5 5.5C18.715 16.514 12 21 12 21z\'/>\
	</svg>') center / contain no-repeat;

	  /* Glow winter lebih tegas */
	  filter: drop-shadow(0 0 10px #d4f1ff)
	  		  drop-shadow(0 0 20px #b8e3ff);

	  /* Animasi */
	  animation: heartGlow 2s ease-in-out infinite,
			     heartPulse 1.8s ease-in-out infinite;
	}

	/* Glow effect */
	@keyframes heartGlow {
	  0% { filter: drop-shadow(0 0 6px #d4f1ff); }
	  50% { filter: drop-shadow(0 0 16px #aee4ff); }
	  100% { filter: drop-shadow(0 0 6px #d4f1ff); }
	}

	/* Pulse lembut */
	@keyframes heartPulse {
	  0% { transform: scale(1); }
	  50% { transform: scale(1.13); }
	  100% { transform: scale(1); }
	}

	/* ✨ Partikel kilau halus */
	.sparkles::before,
	.sparkles::after {
	  content: "✦";
	  position: absolute;
	  color: #d8f1ff;
	  font-size: 22px;
	  opacity: 0;
	  animation: sparkleAnim 2.2s infinite ease-in-out;
	}

	.sparkles::before {
	  top: 40%;
	  left: calc(50% - 70px);
	  animation-delay: .2s;
	}

	.sparkles::after {
	  top: 42%;
	  left: calc(50% + 60px);
	  animation-delay: .6s;
	}

	@keyframes sparkleAnim {
	  0% { opacity: 0; transform: scale(0.5); }
	  50% { opacity: 1; transform: scale(1); }
	  100% { opacity: 0; transform: scale(0.5); }
	}

	/* 🎭 Splash fade-out */
	@keyframes splashFadeOut {
	  to {
		opacity: 0;
	  	  pointer-events: none;
	  }
	}
	
/* Floating Music Button */
#music-control {
    position: fixed;
    bottom: 28px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s;
    border: 1.5px solid rgba(255,255,255,0.5);
    opacity: 0;                 /* disembunyikan saat awal */
    pointer-events: none;       /* tidak bisa diklik dulu */
}

#music-control.show {
    opacity: 1;                /* tampil setelah invitation dibuka */
    pointer-events: auto;
}

#music-control:hover {
    transform: scale(1.08);
}

/* CD Icon */
.cd-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle,
        #d7eaff 0%,
        #b6d8ff 40%,
        #8dbaff 70%,
        #6aa0e0 100%
    );
    box-shadow: inset 0 0 8px rgba(255,255,255,0.8);
    position: relative;
}

/* CD hole */
.cd-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
}

/* CD Spin Animation */
#music-control.playing .cd-icon {
    animation: spin 3.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

	/* === HERO === */
	.hero {
	  position: fixed;
	  inset: 0;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
	  z-index: 10;
	  background: rgba(0,0,0,0.4);
	  transition: all 1s ease;
	}

	.hero.slide-up {
	  transform: translateY(-100%);
	  opacity: 0;
	}

	.hero h1 {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(40px, 8vw, 64px);
	  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
	  margin: 5px 0 10px 0;
	}
	
	.hero p {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(20px, 5vw, 30px);
	  color: #fff;
	  margin-bottom: 10px;
	}

	/* ❄ Winter Ice Button */
	.btn {
	  background: linear-gradient(145deg, #ffffff, #f4fbff);
	  color: #b7ddff; /* ❄ warna teks biru es */
	  font-weight: 600;
	  padding: 10px 26px;       /* ✔ ukuran proporsional */
	  border: none;
	  border-radius: 28px;      /* ✔ lebih slim & mewah */
	  cursor: pointer;
	  font-size: 16px;
	  letter-spacing: 0.4px;

	  /* efek icy glow */
	  box-shadow:
	 	0 3px 12px rgba(180, 220, 255, 0.45),
		0 0 10px rgba(180, 220, 255, 0.35);

	  backdrop-filter: blur(5px);
	  -webkit-backdrop-filter: blur(5px);
	  transition: 0.28s ease;
	  display: inline-flex;
	  align-items: center;
	  gap: 6px;
	}

	/* Hover: lebih icy, glow bertambah halus */
	.btn:hover {
	  transform: translateY(-2px);
	  background: linear-gradient(145deg, #ffffff, #eaf6ff);
	  box-shadow:
		0 4px 16px rgba(200, 235, 255, 0.65),
		0 0 14px rgba(180, 220, 255, 0.55);
	  color: #dff2ff; /* ❄ sedikit lebih cerah */
	}

	/* Klik */
	.btn:active {
	  transform: scale(0.97);
	  box-shadow:
	 	0 2px 8px rgba(160, 190, 220, 0.45),
		inset 0 0 10px rgba(255,255,255,0.5);
	}
	
	.guest-card {
	  background: rgba(255, 255, 255, 0.15);
	  backdrop-filter: blur(14px) saturate(180%) brightness(1.15);
	  -webkit-backdrop-filter: blur(14px) saturate(180%) brightness(1.15);
	  border-radius: 18px;
	  border: 1.8px solid rgba(173, 216, 230, 0.65);
	  box-shadow:
		0 6px 25px rgba(0, 0, 0, 0.25),
		inset 0 0 20px rgba(173, 216, 230, 0.35);
	  padding: 28px 55px;              /* lebih besar */
	  margin: 25px 0 50px 0;
	  text-align: center;
	  color: #f5f7fa;
	  transition: all 0.8s ease;
	  animation: iceGlow 3s ease-in-out infinite alternate;
	  transform: translateY(0);
	}

	/* Efek glow biru lembut */
	@keyframes iceGlow {
	  0% {
		box-shadow:
		  0 6px 25px rgba(0, 0, 0, 0.25),
		  inset 0 0 22px rgba(173, 216, 230, 0.3);
	  }
	  100% {
		box-shadow:
		  0 6px 35px rgba(173, 216, 230, 0.4),
		  inset 0 0 30px rgba(173, 216, 230, 0.55);
	  }
	}

	/* teks di dalam kartu */
	.guest-card p {
	  margin: 5px 0;
	  font-family: 'Cormorant Garamond', serif;  /* elegan, tidak latin */
	  font-size: clamp(18px, 3vw, 22px);
	  color: #eaf3ff;
	  letter-spacing: 0.3px;
	  font-weight: 400;
	}

	/* teks utama (tamu undangan) */
	.guest-card strong {
	  display: block;
	  font-weight: 600;
	  color: #fff;
	  font-size: clamp(20px, 3.5vw, 26px);
	  text-shadow: 0 0 10px rgba(180, 220, 255, 0.45);
	}

	/* efek saat hover */
	.guest-card:hover {
	  transform: scale(1.03);
	  border-color: rgba(200, 240, 255, 0.85);
	  box-shadow:
		0 10px 40px rgba(173, 216, 230, 0.55),
		inset 0 0 35px rgba(173, 216, 230, 0.6);
	}
	
	/* ❄️ Salju */
	#snow-container {
	  position: absolute;
	  inset: 0;
	  pointer-events: none;
	  overflow: hidden;
	  z-index: 1;
	}
	.snowflake {
	  position: absolute;
	  top: 0;
	  color: white;
	  font-size: 1em;
	  opacity: 0.9;
	  animation: fall linear infinite;
	  text-shadow: 0 0 8px rgba(255,255,255,0.8);
	}
	@keyframes fall {
	  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
	  100% { transform: translateY(100dvh) rotate(360deg); opacity: 0.4; }
	}

	/* === SECTION NAME === */
	#name {
	  position: relative;
	  min-height: 100dvh;
	  height: 100vh;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
	  padding: 40px 20px;
	  opacity: 0;
	  transform: translateY(30px);
	  pointer-events: none;
	  transition: opacity 1.2s ease, transform 1.2s ease;
	}

	/* Saat undangan dibuka, tampil lembut */
	#name.show {
	  opacity: 1;
	  transform: translateY(0);
	  pointer-events: auto;
	  animation: softFade 1.8s ease forwards;
	}

	#name::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(0, 0, 0, 0.30);
	  z-index: 0;
	}

	.name-box {
	  position: relative;
	  z-index: 2;
	  color: white;
	  max-width: 700px;
	  width: 90%;
	}

	/* ==============================
	   ANIMASI URUTAN MASUK
	   ============================== */
	.name-box .yulius,
	.name-box .and,
	.name-box .shendi,
	.name-box .countdown,
	.name-box .save-date {
	  opacity: 0;
	  transform: translateY(20px);
	}

	/* Yulius: slide kanan */
	#name.show .yulius {
	  animation: slideRight 1.6s ease forwards 0.3s;
	}

	/* Shendi: slide kiri */
	#name.show .shendi {
	  animation: slideLeft 1.6s ease forwards 1s;
	}

	/* &: fade lembut di tengah */
	#name.show .and {
	  animation: fadeInCenter 1.8s ease forwards 1.8s;
	}

	/* Countdown: muncul bersamaan dengan & */
	#name.show .countdown {
	  animation: fadeInCenter 1.8s ease forwards 1.8s;
	}

	/* Save Date: muncul terakhir */
	#name.show .save-date {
	  animation: fadeInCenter 2s ease forwards 2.6s;
	}

	/* ==============================
	   TEKS STYLE
	   ============================== */
	.name-box h1 {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(38px, 6vw, 64px);
	  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
	  margin: 10px 0;
	}

	.name-box h2 {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(30px, 5vw, 58px);
	  margin: -10px 0;
	  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
	}

	.name-box p {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(20px, 4vw, 35px);
	  margin: -5px 0;
	  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
	}

	/* ==============================
	   COUNTDOWN
	   ============================== */
	.countdown {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-wrap: wrap;
	  gap: 15px;
	  margin-top: 35px;
	}

	.time-box {
	  background: rgba(255, 255, 255, 0.25);
	  padding: 14px 18px;
	  border-radius: 12px;
	  backdrop-filter: blur(6px);
	  min-width: 90px;
	  transition: all 0.3s ease;
	}

	.time-box:hover {
	  background: rgba(255, 255, 255, 0.35);
	  transform: scale(1.05);
	}

	.time-box div {
	  color: #ffffff;
	  font-size: clamp(18px, 4vw, 26px);
	  font-weight: 600;
	}

	.time-box span {
	  color: #ffffff;
	  display: block;
	  font-size: clamp(10px, 2vw, 13px);
	  opacity: 0.9;
	}

	/* ==============================
	   SAVE THE DATE BUTTON
	   ============================== */
	.save-date {
	  margin-top: 35px;
	  background: rgba(255, 255, 255, 0.85);
	  color: #222;
	  padding: 12px 35px;
	  border-radius: 30px;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 600;
	  border: none;
	  cursor: pointer;
	  transition: 0.3s;
	  opacity: 0;
	  transform: translateY(20px);
	}

	.save-date:hover {
	  background: #fff;
	  transform: scale(1.05);
	  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	}

	/* ==============================
	   KEYFRAMES
	   ============================== */
	@keyframes softFade {
	  0% { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(4px); }
	  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
	}

	@keyframes slideRight {
	  0% { opacity: 0; transform: translateX(120px); filter: blur(4px); }
	  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
	}

	@keyframes slideLeft {
	  0% { opacity: 0; transform: translateX(-120px); filter: blur(4px); }
	  100% { opacity: 1; transform: translateX(0); filter: blur(0); }
	}

	@keyframes fadeInCenter {
	  0% { opacity: 0; transform: scale(0.9); filter: blur(3px); }
	  100% { opacity: 1; transform: scale(1); filter: blur(0); }
	}
	
	/* === INVITATION === */
	#invitation {
	  position: relative;
	  min-height: 100dvh;
	  height: 100dvh;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 40px 20px;
	  background: transparent;
	}
	#invitation::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(0, 0, 0, 0.30);
	  z-index: 0;
	}
	#invitation.show {
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
	}
	.invitation-box {
	  position: relative;
	  z-index: 2;
	  padding: 40px;
	  border-radius: 24px;
	  text-align: center;
	  max-width: 600px;
	  width: 100%;
	  backgound: url('../img/ice-flower.png');
	  box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.25),
		inset 0 0 20px rgba(255, 255, 255, 0.15);
	  border: 1px solid rgba(255, 255, 255, 0.25);
	  color: #fff;
	  overflow: hidden;
	  transform: translateY(30px);
	  transition: opacity 1s ease, visibility 1s ease, transform 1.5s ease;
	}
	
	/* 🌸 Bunga es lembut */
	.invitation-box::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: url('../img/ice-flower.png') no-repeat center center / cover;
	  opacity: 0.22;
	  mix-blend-mode: screen;
	  pointer-events: none;
	  z-index: 0;
	}

	/* 🌟 Cahaya lembut atas */
	.invitation-box::after {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
	  opacity: 0.25;
	  pointer-events: none;
	  z-index: 1;
	}

	/* ✨ Hover efek kaca hidup */
	.invitation-box:hover {
	  background: rgba(255, 255, 255, 0.25);
	  backdrop-filter: blur(24px) saturate(200%);
	  transform: scale(1.02);
	  box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.3),
		inset 0 0 25px rgba(255, 255, 255, 0.2);
	}
	
	.invitation-box h2 {
	  color: #f5f7fa;
	  font-family: 'Great Vibes', cursive;
	  font-weight: 600;
	  font-size: clamp(40px, 8vw, 46px);
	}
	.invitation-box p {
	  color: #e4e8ec;
	  font-size: clamp(14px, 3vw, 18px);
	  line-height: 1.6;
	}
	
	/* ==============================
	   ❄️ COUPLE SECTION - WINTER THEME (RESPONSIVE FIXED CIRCLE)
	   ============================== */
	#couple {
	  background: linear-gradient(
		180deg,
		rgba(245, 250, 255, 0.12),
		rgba(210, 230, 255, 0.25)
	  );
	  backdrop-filter: blur(10px);
	  -webkit-backdrop-filter: blur(10px);
	  padding: 90px 20px;
	  text-align: center;
	  color: #f5f7fa;
	  position: relative;
	  overflow: hidden;
	}

	/* 🌸 Title utama */
	.section-title {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(38px, 7vw, 60px);
	  color: #eaf7ff;
	  text-align: center;
	  margin-bottom: 20px;
	  text-shadow: 0 0 12px rgba(190, 230, 255, 0.6);
	  letter-spacing: 1px;
	}

	/* Paragraf pembuka */
	#couple > p {
	  font-family: 'Lora', serif;
	  font-size: clamp(17px, 3.8vw, 20px);
	  color: #dcecff;
	  text-align: center;
	  margin-bottom: 60px;
	  line-height: 1.6;
	}

	/* layout pasangan */
	.couple-box {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 50px;
	  margin: 60px auto;
	  flex-wrap: wrap;
	  max-width: 900px;
	}

	/* Foto */
	/* 🧊 Bingkai Foto Efek Es Elegan */
	.couple-box .photo {
		width: 240px !important;
		height: 240px !important;
		aspect-ratio: 1 / 1 !important;
		border-radius: 50% !important;
		overflow: hidden;
		flex-shrink: 0 !important;
		position: relative;
		background: rgba(255,255,255,0.1);
		border: 4px solid rgba(200, 240, 255, 0.7); /* warna es */
		box-shadow:
			0 0 20px rgba(180, 220, 255, 0.6),   /* glow luar */
			0 0 40px rgba(180, 220, 255, 0.3),   /* glow besar */
			inset 0 0 25px rgba(200, 240, 255, 0.5); /* glow dalam */
		backdrop-filter: blur(3px);
	}
	
	.couple-box .photo::before {
  	  content: "";
	  position: absolute;
	  inset: 0;
	  border-radius: 50%;
	  background: radial-gradient(circle,
		  rgba(255,255,255,0.15) 0%,
		  rgba(255,255,255,0.0) 60%
	  );
	  pointer-events: none;
	}

	.couple-box .photo::after {
	  content: "";
	  position: absolute;
	  inset: -2px;
	  border-radius: 50%;
	  border: 3px solid rgba(180, 220, 255, 0.45);
	  animation: icyGlow 6s ease-in-out infinite;
	  pointer-events: none;
	}

	@keyframes icyGlow {
	  0%   { opacity: 0.4; box-shadow: 0 0 18px rgba(180, 220, 255, 0.7); }
	  50%  { opacity: 0.9; box-shadow: 0 0 35px rgba(180, 220, 255, 0.95); }
	  100% { opacity: 0.4; box-shadow: 0 0 18px rgba(180, 220, 255, 0.7); }
	}

	.couple-box .photo:hover {
	  transform: scale(1.05);
	}

	.couple-box .photo img {
	  width: 100% !important;
	  height: 100% !important;
	  object-fit: cover !important;
	  aspect-ratio: 1 / 1 !important;
	  border-radius: 50% !important;
	}

	/* Deskripsi */
	.couple-box .info {
	  flex: 1;
	  background: rgba(255, 255, 255, 0.15);
	  backdrop-filter: blur(10px) saturate(150%);
	  -webkit-backdrop-filter: blur(10px) saturate(150%);
	  border: 1px solid rgba(190, 230, 255, 0.3);
	  border-radius: 14px;
	  padding: 25px 30px;
	  text-align: left;
	  color: #eaf3ff;
	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	  transition: all 0.3s ease;
	}

	.couple-box .info:hover {
	  background: rgba(255, 255, 255, 0.22);
	  border-color: rgba(200, 240, 255, 0.55);
	}

	.couple-box .info h3 {
	  text-align: center;
	  font-family: 'Poppins', sans-serif;
	  font-size: clamp(22px, 4vw, 28px);
	  font-weight: 600;
	  color: #ffffff;
	  margin-bottom: 8px;
	  text-shadow: 0 0 6px rgba(180, 220, 255, 0.4);
	}

	.couple-box .info p {
	  text-align: center;
	  font-family: 'Lora', serif;
	  font-size: clamp(15px, 3vw, 18px);
	  line-height: 1.6;
	  margin: 4px 0;
	  color: #dceaff;
	}

	/* Posisi kiri-kanan */
	.couple-box.male {
	  flex-direction: row;
	}

	.couple-box.female {
	  flex-direction: row-reverse;
	}

	/* 🌨️ Divider "Dengan" - Retakan di tengah + kilau icy */
	.frozen-divider {
	  position: relative;
	  width: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  margin: 70px auto;
	}

	/* Wrapper 3 retakan */
	.retakan-wrapper {
	  display: flex;
	  gap: 18px;
	  align-items: center;
	  justify-content: center;
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	}

	/* Retakan lebih panjang & elegan */
	.retakan {
	  width: 2px;
	  background: linear-gradient(
		to bottom,
		rgba(150, 200, 255, 0),
		rgba(200, 240, 255, 0.95),
		rgba(150, 200, 255, 0)
	  );
	  border-radius: 3px;
	  position: relative;
	  overflow: hidden;
	  box-shadow:
		0 0 20px rgba(190, 225, 255, 0.5),
		0 0 40px rgba(190, 225, 255, 0.3);
	}

	/* Tinggi garis ditingkatkan */
	.r1 { height: 130px; }
	.r2 { height: 190px; } /* paling panjang */
	.r3 { height: 130px; }

	/* Kilauan lebih terang + lebih icy */
	.retakan::before {
	  content: "";
	  position: absolute;
	  left: 0;
	  width: 100%;
	  height: 70%;
	  background: linear-gradient(
		to bottom,
		rgba(230, 245, 255, 0),
		rgba(140, 200, 255, 0.95), /* icy neon blue */
		rgba(230, 245, 255, 0)
	  );
	  filter: blur(5px);
	  top: -70%;
	  animation: glowMove 4.8s ease-in-out infinite;
	}

	/* Animasi kilau lebih jelas & halus */
	@keyframes glowMove {
	  0%   { top: -70%; opacity: 0.2; }
	  25%  { top: 20%;  opacity: 1;   }
	  50%  { top: 100%; opacity: 0.25; }
	  75%  { top: 20%;  opacity: 1;   }
	  100% { top: -70%; opacity: 0.2; }
	}

	/* Tulisan "Dengan" tepat di tengah retakan */
	.frozen-divider p {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(34px, 5vw, 48px);
	  color: #eaf7ff;
	  padding: 10px 34px;
	  border-radius: 50px;
	  z-index: 2;
	  letter-spacing: 1px;
	  position: relative;
	}

	@media (max-width: 768px) {
	  .couple-box .photo {
		width: 200px !important;
		height: 200px !important;
	  }
	}

	/* 📱 Extra Small (≤480px) */
	@media (max-width: 480px) {
	  #couple {
		padding: 60px 15px;
	  }

	  .couple-box .photo {
		width: 160px !important;
		height: 160px !important;
	  }

	  .section-title {
		font-size: 42px;
	  }

	  #couple > p {
		font-size: 17px;
	  }

	  .frozen-divider p {
		font-size: 32px;
	  }
	}

	/* ==============================
	   ❄️ LOCATION SECTION - WINTER ELEGANT DELUXE (ANDROID SAFE)
	   ============================== */
	#location {
	  position: relative;
	  padding: 120px 20px 100px;
	  text-align: center;
	  color: #fff;
	  overflow: visible; /* ⬅ penting agar lengkungan tidak kepotong */
	  z-index: 2; /* ⬅ di atas global background */
	}

	/* ❄ Background gradiasi tetap tetapi tidak mengganggu global BG */
	#location::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: linear-gradient(180deg, #0b2239cc, #14344fcc 70%, #1c4963cc);
	  z-index: -1;
	  pointer-events: none;
	}

	/* ❄️ Lengkungan atas */
	#location::before {
	  content: "";
	  position: absolute;
	  top: -95px;
	  left: 0;
	  width: 100%;
	  height: 180px;
	  background: #e9f3fa;
	  border-bottom-left-radius: 50% 20%;
	  border-bottom-right-radius: 50% 20%;
	  z-index: 1;
	}

	/* 🌨️ Salju lembut */
	#location .snow {
	  position: absolute;
	  inset: 0;
	  overflow: hidden;
	  z-index: 3;
	  pointer-events: none;
	}

	#location .snowflake {
	  position: absolute;
	  top: -10px;
	  color: #fff;
	  opacity: 0.8;
	  font-size: 1em;
	  animation: snowFall 10s linear infinite;
	  text-shadow: 0 0 10px rgba(255,255,255,0.6);
	}

	@keyframes snowFall {
	  0% { transform: translateY(0) rotate(0); opacity: 1; }
	  100% { transform: translateY(100dvh) rotate(360deg); opacity: 0.3; }
	}

	/* 🌬️ Kotak kaca beku */
	.location-container {
	  position: relative;
	  z-index: 4;
	  background: rgba(255, 255, 255, 0.12);
	  backdrop-filter: blur(15px) saturate(180%);
	  -webkit-backdrop-filter: blur(15px) saturate(180%);
	  border: 1px solid rgba(200, 240, 255, 0.35);
	  border-radius: 40px;
	  max-width: 480px;
	  margin: auto;
	  padding: 60px 30px;
	  box-shadow:
		0 0 25px rgba(0, 0, 0, 0.35),
		inset 0 0 18px rgba(200, 240, 255, 0.25);
	  animation: fadeIn 1.5s ease both;
	}

	@keyframes fadeIn {
	  from { opacity: 0; transform: translateY(40px); }
	  to   { opacity: 1; transform: translateY(0); }
	}

	/* ✨ Judul */
	#location .section-title {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(40px, 7vw, 58px);
	  color: #eaf8ff;
	  margin-bottom: 10px;
	  text-shadow: 0 0 15px rgba(200, 240, 255, 0.7);
	}

	.subtitle {
	  font-family: 'Lora', serif;
	  font-size: clamp(16px, 3.5vw, 19px);
	  color: #d6eaff;
	  margin-bottom: 50px;
	}

	/* 🧊 Kotak acara */
	.event-box {
	  margin-bottom: 60px;
	  animation: floatUp 2s ease both;
	}

	@keyframes floatUp {
	  from { opacity: 0; transform: translateY(40px); }
	  to   { opacity: 1; transform: translateY(0); }
	}

	.event-icon img {
	  width: 105px;
	  height: 105px;
	  filter: drop-shadow(0 0 10px rgba(200, 240, 255, 0.7));
	  margin-bottom: 20px;
	  transition: 0.5s;
	}

	.event-icon img:hover {
	  transform: scale(1.1) rotate(5deg);
	}

	.event-title {
	  font-family: 'Great Vibes', cursive;
	  font-size: clamp(32px, 6vw, 42px);
	  color: #e8faff;
	  text-shadow: 0 0 12px rgba(180, 230, 255, 0.5);
	}

	.event-date {
	  font-family: 'Poppins', sans-serif;
	  font-weight: 600;
	  color: #fff;
	  font-size: clamp(18px, 4vw, 22px);
	}

	.event-time {
	  font-family: 'Lora', serif;
	  font-size: clamp(16px, 3.5vw, 18px);
	  color: #d0e9ff;
	}

	.event-place {
	  font-family: 'Lora', serif;
	  color: #cde7ff;
	  font-size: clamp(15px, 3vw, 18px);
	  line-height: 1.5;
	}

	/* 💠 Tombol Maps */
	.btn-map {
	  background: linear-gradient(145deg, #ffffff, #eaf8ff);
	  color: #0b2239;
	  padding: 12px 28px;
	  border-radius: 30px;
	  font-family: 'Poppins', sans-serif;
	  font-weight: 600;
	  text-decoration: none;
	  box-shadow: 0 4px 20px rgba(200, 240, 255, 0.4);
	  transition: 0.3s;
	}
	.btn-map:hover {
	  transform: scale(1.05);
	  box-shadow: 0 0 30px rgba(200, 240, 255, 0.6);
	}

	/* ❄️ Divider es FIX TENGAH */
	.snow-divider {
	  position: relative;
	  width: 2px;
	  height: 110px;
	  margin: 40px auto;
	  background: linear-gradient(
		to bottom,
		rgba(210, 240, 255, 0),
		rgba(210, 240, 255, 0.9),
		rgba(210, 240, 255, 0)
	  );
	  border-radius: 2px;
	  box-shadow:
		0 0 15px rgba(200, 240, 255, 0.5),
		0 0 30px rgba(200, 240, 255, 0.3);

	  display: flex;           /* ⬅ agar anak mudah diposisikan */
	  justify-content: center; /* ⬅ posisi horizontal */
	  align-items: center;     /* ⬅ posisi vertikal */
	}

	/* ❄ ICON selalu pas di tengah tanpa bias */
	.snow-divider::before {
	  content: "❄";
	  font-size: 26px;
	  color: #e9f9ff;
	  text-shadow: 0 0 15px rgba(200,240,255,0.8);
	  animation: glow 3s ease-in-out infinite alternate;
	  position: absolute;
	  top: 50%;
	  transform: translate(-50%, -50%);  /* ⬅ fix utama */
	}

	@keyframes glow {
	  0%   { text-shadow: 0 0 10px rgba(255,255,255,0.5); }
	  100% { text-shadow: 0 0 25px rgba(200,240,255,0.9); }
	}

	/* 📱 RESPONSIVE */
	@media (max-width: 768px) {
	  #location {
	 	padding: 90px 15px;
	  }
	  .location-container {
	 	padding: 45px 22px;
		border-radius: 30px;
	  }
	}

	/* ✨ STARFIELD - BINTANG BERKEDIP UNTUK SECTION LOCATION */
	#location .stars {
	  position: absolute;
	  inset: 0;
	  overflow: hidden;
	  z-index: 1;
	  pointer-events: none;
	}

	/* Bintang kecil */
	.star {
	  position: absolute;
	  width: 3px;
	  height: 3px;
	  background: white;
	  border-radius: 50%;
	  opacity: 0;
	  box-shadow: 0 0 6px rgba(255,255,255,0.8);
	  animation: twinkle 3s infinite ease-in-out;
	}

	/* Bintang sedang */
	.star-mid {
	  width: 4px;
	  height: 4px;
	  background: #d6eaff;
	  box-shadow: 0 0 10px rgba(200,220,255,0.9);
	  animation: glow 5s infinite ease-in-out;
	}

	/* Bintang besar (kelihatan muncul – hilang) */
	.star-big {
	  width: 6px;
	  height: 6px;
	  background: #cdeeff;
	  box-shadow: 0 0 15px rgba(200,240,255,1);
	  animation: flash 6s infinite ease-in-out;
	}

	/* Animasi kelap-kelip */
	@keyframes twinkle {
	  0% { opacity: 0; transform: scale(0.8); }
	  50% { opacity: 1; transform: scale(1); }
	  100% { opacity: 0; transform: scale(0.8); }
	}

	@keyframes glow {
	  0% { opacity: 0.3; transform: scale(1); }
	  50% { opacity: 1; transform: scale(1.3); }
	  100% { opacity: 0.3; transform: scale(1); }
	}

	@keyframes flash {
	  0% { opacity: 0; transform: scale(0.8); }
	  20% { opacity: 1; transform: scale(1.5); }
	  40% { opacity: 0.2; transform: scale(1); }
	  100% { opacity: 0; transform: scale(0.8); }
	}

/* ============================
   ❄ THANK YOU SECTION
   ============================ */
#thanks-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0c2134, #14344f 60%, #0c2134);
    position: relative;
    text-align: center;
}

/* ❄ Aurora Soft Glow */
#thanks-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 250px;
    background: radial-gradient(circle, rgba(120,200,255,0.45), transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    animation: auroraMove 14s ease-in-out infinite alternate;
}

@keyframes auroraMove {
    0%   { transform: translateX(-50%) translateY(0); }
    100% { transform: translateX(-45%) translateY(20px); }
}

/* ❄ Frosted Glass Box */
.thanks-box {
    position: relative;
    max-width: 550px;
    margin: auto;
    padding: 60px 35px;
    border-radius: 32px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(200,230,255,0.25);

    box-shadow:
        0 0 22px rgba(160,210,255,0.18),
        inset 0 0 25px rgba(255,255,255,0.09);
}

/* ============================
   TEXT STYLING
   ============================ */
.thanks-box h2 {
    font-family: "Great Vibes", cursive;
    font-size: clamp(40px, 7vw, 58px);
    color: #eaf7ff;
    margin-bottom: 15px;
    text-shadow: 0 0 12px rgba(200,240,255,0.7);
}

.thanks-box p {
    color: #d9edff;
    font-family: "Lora", serif;
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.6;
    margin-bottom: 25px;
}

.thanks-box .subtitle {
    font-family: "Great Vibes", cursive;
    font-size: clamp(32px, 6vw, 44px);
    color: #ffffff;
    margin: 25px 0;
    text-shadow: 0 0 14px rgba(200,240,255,0.8);
}

/* Family Box */
.family-box {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(200,230,255,0.35);
    border-radius: 18px;
    padding: 20px 5px;
    margin: 18px auto;
    max-width: 380px;

    backdrop-filter: blur(10px);
    color: #e7f4ff;
    text-shadow: 0 0 6px rgba(180,220,255,0.4);
}

.family-box span {
    display: block;
    font-family: 'Lora', serif;
    font-size: 14px;
    opacity: 0.8;
}

/* ============================
   CSS ANIMATION FULL — NO JS
   (slide-up + fade + blur)
   ============================ */
.t-anim {
    opacity: 0;
    transform: translateY(45px);
    filter: blur(6px);
    animation: slideFade 1.4s ease forwards;
}

.t-anim:nth-of-type(1) { animation-delay: .2s; }
.t-anim:nth-of-type(2) { animation-delay: .6s; }
.t-anim:nth-of-type(3) { animation-delay: 1s; }
.t-anim:nth-of-type(4) { animation-delay: 1.4s; }
.t-anim:nth-of-type(5) { animation-delay: 1.8s; }

@keyframes slideFade {
    0%   { opacity: 0; transform: translateY(45px); filter: blur(6px); }
    100% { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

/* ============================
   ❄ FOOTER - ELEGANT FROSTED
   ============================ */
.frost-footer {
    padding: 26px 0;
    text-align: center;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200,230,255,0.45);

    color: #eaf7ff;
    font-size: 14px;
    letter-spacing: 0.6px;

    box-shadow: 0 -8px 25px rgba(150,200,255,0.25);
}

.frost-footer span {
    color: #bde8ff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(200,240,255,0.8);
}

/* =====================================================
   ❄ BACKGROUND SNOW PARTICLES (FULL CSS)
   ===================================================== */
.snow-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.snow-bg .flake {
    position: absolute;
    top: -10px;
    font-size: 20px;
    color: #ffffff;
    opacity: 0.8;
    animation: snowFallThanks linear infinite;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

/* 7 flake berbeda posisi + speed */
.snow-bg .flake:nth-child(1) { left: 10%; animation-duration: 9s; }
.snow-bg .flake:nth-child(2) { left: 25%; animation-duration: 11s; }
.snow-bg .flake:nth-child(3) { left: 40%; animation-duration: 10s; }
.snow-bg .flake:nth-child(4) { left: 55%; animation-duration: 12s; }
.snow-bg .flake:nth-child(5) { left: 70%; animation-duration: 8s; }
.snow-bg .flake:nth-child(6) { left: 85%; animation-duration: 13s; }
.snow-bg .flake:nth-child(7) { left: 50%; animation-duration: 14s; }

@keyframes snowFallThanks {
    0%   { transform: translateY(-20px) rotate(0); opacity: 1; }
    100% { transform: translateY(120dvh) rotate(360deg); opacity: 0.2; }
}

/* =====================================================
   ❄ ELEGANT SNOW DIVIDER
   ===================================================== */
.snow-divider {
    font-size: 32px;
    margin: 25px auto;
    color: #eaf9ff;
    text-shadow: 
        0 0 12px rgba(200,240,255,0.9),
        0 0 22px rgba(200,240,255,0.5);
    animation: snowGlow 3s ease-in-out infinite alternate;
}

@keyframes snowGlow {
    0%   { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.3); }
}

	/* === RESPONSIVE === */
	@media (max-width: 768px) {
	  .invitation-box, .name-box { padding: 25px 15px; }
	  .countdown { gap: 10px; }
	  .time-box { padding: 10px 14px; }
	}
	@media (max-width: 480px) {
	  .hero h1 { font-size: 44px; }
	  .hero p { font-size: 18px; }
	  .save-date { padding: 10px 28px; font-size: 14px; }
	}