@font-face {
  font-family: "HarmonyOS_Sans";
  src: url('../fonts/HarmonyOS_Sans.ttf');
}

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

body {
	font-family: HarmonyOS_Sans;
	background: #0a0a0a;
	overflow: hidden;
	color: #fff;
	-webkit-font-smoothing: antialiased;
}

/* ============ Page Container ============ */
.page {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	overflow: hidden;
	transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
		opacity 0.8s ease,
		visibility 0s linear 0.8s;
	will-change: transform, opacity;
}

.page.active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 10;
	transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
		opacity 0.8s ease,
		visibility 0s linear 0s;
}

.page.prev {
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

.page.next {
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}

/* ============ Staggered Animations ============ */
.anim-item {
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-delay: var(--delay, 0s);
}

.page.active .anim-item {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.page.prev .anim-item,
.page.next .anim-item {
	transition-duration: 0.3s;
	transition-delay: 0s;
}

/* ============ Background Particles ============ */
.bg-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: #e05a1e;
	border-radius: 50%;
	animation: floatUp linear infinite;
	opacity: 0;
}

@keyframes floatUp {
	0% {
		opacity: 0;
		transform: translateY(100vh) scale(0);
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 0.8;
	}

	100% {
		opacity: 0;
		transform: translateY(-10vh) scale(1);
	}
}

/* ============ Page 1: Cover ============ */
.page-cover {
	background-color: #0f1420;
	background: url(../images/26070806.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
}

.cover-decoration {
	position: absolute;
	top: -50px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 50%;
	animation: rotateDecor 20s linear infinite;
}

.cover-decoration:nth-child(2) {
	top: auto;
	bottom: -80px;
	width: 400px;
	height: 400px;
	animation-duration: 25s;
	animation-direction: reverse;
}

@keyframes rotateDecor {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.cover-badge {
	width: 80px;
	height: 80px;
	border: 2px solid #e05a1e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	animation: pulse 2s ease-in-out infinite;
	z-index: 1;
}

.cover-badge svg {
	width: 40px;
	height: 40px;
	fill: #e05a1e;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0);
	}
}

.cover-subtitle {
	height: 36%;
	font-size: 13px;
	letter-spacing: 8px;
	color: #e05a1e;
	text-transform: uppercase;
	margin-bottom: 16px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 0.3s forwards;
}

.cover-title {
	font-size: 42px;
	font-weight: 700;
	/* background: linear-gradient(135deg, #f5e6b8 0%, #e05a1e 50%, #b8860b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; */
	color: #fff;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 12px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 0.5s forwards;
}

.cover-venue {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 3px;
	margin-bottom: 40px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 0.7s forwards;
	font-weight: 300;
}

.cover-divider {
	width: 60px;
	height: 1px;
	/* background: linear-gradient(90deg, transparent, #e05a1e, transparent); */
	margin-bottom: 60px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 0.9s forwards;
}


.cover-time {
	font-size: 26px;
	color: #e05a1e;
	opacity: 0;
	animation: fadeInUp 1s ease 1s forwards;
}

.cover-date {
	font-size: 16px;
	color: rgba(255, 255, 255, 1);
	letter-spacing: 2px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 1.1s forwards;
	margin-top: 5px;
}

.cover-xian {
	width: 40px;
	height: 1px;
	background-color: #eb633d;
	margin-top: 25px;
}

.cover-addr {
	margin-top: 25px;
	font-size: 16px;
	color: rgba(255, 255, 255, 1);
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 1.2s forwards;
	text-align: center;
}

.scroll-hint {
	position: absolute;
	bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 1.6s forwards;
}

.scroll-hint span {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.scroll-arrow {
	width: 20px;
	height: 20px;
	border-right: 1.5px solid rgba(224, 90, 30, 0.6);
	border-bottom: 1.5px solid rgba(224, 90, 30, 0.6);
	transform: rotate(45deg);
	animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

	0%,
	100% {
		transform: rotate(45deg) translateY(0);
	}

	50% {
		transform: rotate(45deg) translateY(6px);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============ Page 2: Invitation ============ */
.page-invite {
	background: url(../images/26070807.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
}

.invite-title {
	font-size: 22px;
	font-weight: 700;
	color: #eb633d;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 12px;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease 0.5s forwards;
}

.invite-card {
	/* backdrop-filter: blur(12px) saturate(180%);
	-webkit-backdrop-filter: blur(12px) saturate(180%); */
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(235, 99, 61, 0.9);
	border-radius: 16px;
	padding: 30px 25px;
	max-width: 360px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.invite-card::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #e05a1e, transparent);
}

.invite-card::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #e05a1e, transparent);
}

.invite-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.invite-icon svg {
	width: 100%;
	height: 100%;
	fill: #e05a1e;
}

.invite-heading {
	font-size: 16px;
	text-align: center;
	color: #eb633d;
	/* background: linear-gradient(135deg, #f5e6b8, #e05a1e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; */
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 800;
}

.invite-xian {
	margin: auto;
	width: 40px;
	height: 1px;
	background-color: #eb633d;
	margin-bottom: 20px;
}

.invite-text {
	font-size: 14px;
	line-height: 1.2;
	color: rgba(0, 0, 0, 0.9);
	text-align: center;
	margin-bottom: 25px;
}

.invite-text .highlight {
	color: #e05a1e;
	font-weight: 600;
}

.invite-xian-long {
	margin: auto;
	width: 180px;
	height: 1px;
	background-color: rgba(255, 0, 0, 0.9);
	margin-bottom: 5px;
}

.invite-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 15px;
	border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.info-row {
	display: flex;
	/* align-items: center; */
	gap: 16px;
}

.info-icon {
	/* width: 36px;
	height: 36px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; */
}

.info-icon svg {
	width: 18px;
	height: 18px;
	fill: #e05a1e;
}

.info-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.info-value {
	font-size: 14px;
	color: #fff;
	margin-top: 2px;
}

.qrcode {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 5px;
}

.qrcode img {
	width: 60px;
}

/* ============ Page 3: Highlights ============ */
.page-highlights {
	background: url(../images/26070807.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 60px 24px;
}

.section-title {
	font-size: 22px;
	/* background: linear-gradient(135deg, #f5e6b8, #e05a1e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text; */
	color: #eb633d;
	text-align: center;
	margin-bottom: 8px;
	letter-spacing: 1px;
	z-index: 1;
	font-weight: 800;
	text-transform: uppercase;
}

.section-subtitle {
	font-size: 11px;
	color: rgba(255, 255, 255, 1);
	text-align: center;
	letter-spacing: 6px;
	margin-bottom: 40px;
	z-index: 1;
	text-transform: uppercase;
}

.highlights-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	max-width: 360px;
	width: 100%;
	z-index: 1;
}

.highlight-item {
	background: linear-gradient(145deg, rgba(30, 30, 50, 0.8), rgba(15, 15, 30, 0.9));
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: 12px;
	padding: 24px 16px;
	text-align: center;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.highlight-item:hover {
	border-color: rgba(212, 175, 55, 0.5);
	transform: translateY(-2px);
}

.highlight-item .icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 12px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.highlight-item .icon svg {
	width: 22px;
	height: 22px;
	fill: #e05a1e;
}

.highlight-item h3 {
	font-size: 14px;
	color: #fff;
	margin-bottom: 6px;
}

.highlight-item p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
}

/* ============ Page 4: Schedule ============ */
.page-schedule {
	background: url(../images/26070807.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 30px 24px;
}

.timeline {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(235, 99, 61, 0.9);
	border-radius: 16px;
	padding: 22px 28px;
	max-width: 340px;
	width: 100%;
	position: relative;
	z-index: 1;
	margin-top: 10px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 34px;
	top: 30px;
	bottom: 80px;
	width: 1px;
	background: linear-gradient(180deg, transparent, rgba(224, 90, 30, 0.95), transparent);
}

.timeline-item {
	display: flex;
	gap: 20px;
	margin-bottom: 12px;
	position: relative;
}

.timeline-dot {
	/* width: 40px;
	height: 40px;
	border: 1.5px solid rgba(212, 175, 55, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #0d0d0d;
	position: relative;
	z-index: 1; */
}

.timeline-dot img {
	width: 14px;
	height: 14px;
}

.timeline-content {
	flex: 1;
	/* padding-top: 6px; */
}

.timeline-time {
	font-size: 14px;
	color: #e05a1e;
	font-weight: 600;
	margin-bottom: 4px;
	letter-spacing: 1px;
}

.timeline-title {
	font-size: 14px;
	color: #fff;
	margin-bottom: 4px;
}

.timeline-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.2;
}

.timeline-desc-2 {
	font-size: 10px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.2;
}

.timeline-desc-3 {
	font-size: 8px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.2;
}

/* ============ Page 5: VIP Guests ============ */
.page-guests {
	background: url(../images/26070807.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 60px 0px;
}

.guests-scroll {
	width: 100%;
	padding: 20px 0px 20px;
	z-index: 1;
}

.swiper-wrapper {
  align-items: stretch; 
}

/* 核心：覆盖默认的 height: 100%，让 slide 高度由内容或 flex 决定 */
.swiper-slide {
  height: auto; 
}

.swiper {
	padding-bottom: 40px;
}

.swiper-pagination {
	color: rgba(255, 255, 255, .6);
}

.swiper-pagination-current {
	color: rgba(235, 99, 61, 0.9);
}

.guests-scroll::-webkit-scrollbar {
	display: none;
}

.guest-card {
	width: 100%;
	height: 100%;
	min-width: 260px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(235, 99, 61, 0.9);
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	scroll-snap-align: center;
	position: relative;
	flex-shrink: 0;
	transition: border-color 0.4s ease;
}

.guest-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40%;
	height: 2px;
	/* background: linear-gradient(90deg, transparent, #e05a1e, transparent); */
	border-radius: 1px;
}

.guest-card:active {
	border-color: rgba(212, 175, 55, 0.5);
}

.guest-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 18px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.guest-avatar::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
}

.guest-avatar::after {
	content: '';
	position: absolute;
	inset: -8px;
	border-radius: 50%;
}

.guest-avatar img {
	width: 120px;
	height: 120px;
}

.guest-tag {
	display: inline-block;
	padding: 3px 12px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 20px;
	font-size: 10px;
	color: #e05a1e;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.guest-name {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

.guest-role {
	font-size: 12px;
	color: #e05a1e;
	margin-bottom: 14px;
	letter-spacing: 1px;
	padding: 0px 12px;
}

.guest-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 1);
	line-height: 1.2;
	text-align: left;
	padding: 0px 16px;
}
.guest-desc li {
	margin-bottom: 5px;
}

.guests-hint {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.25);
	text-align: center;
	margin-top: 16px;
	letter-spacing: 2px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
}

.guests-hint::before,
.guests-hint::after {
	content: '';
	width: 20px;
	height: 1px;
	background: rgba(212, 175, 55, 0.2);
}

/* ============ Page 6: Partners (MARQUEE UPDATE) ============ */
.page-brands {
	background: url(../images/26070807.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 35px 24px;
}

.brands-intro {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
	max-width: 300px;
	line-height: 1.8;
	margin-top: -10px;
	margin-bottom: 24px;
	z-index: 1;
}

/* Marquee Wrapper */
.brands-marquee-wrapper {
	position: relative;
	width: 100%;
	/* max-width: 360px; */
	/* background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(235, 99, 61, 0.9); */
	border-radius: 16px;
	padding: 32px 0px;
	height: 450px;
	overflow: hidden;
	z-index: 1;
	margin-top: 20px;
}

/* Top & Bottom Fade Masks */
.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 50px;
	z-index: 2;
	pointer-events: none;
}

.brands-marquee-wrapper::before {
	top: 0;
	/* background: linear-gradient(to bottom, #1a1a2e 0%, transparent 100%); */
}

.brands-marquee-wrapper::after {
	bottom: 0;
	/* background: linear-gradient(to top, #0d0d0d 0%, transparent 100%); */
}

/* Marquee Track */
.brands-marquee-track {
	display: flex;
	flex-direction: column;
	animation: marqueeScrollUp 25s linear infinite;
}

/* Pause on hover / touch */
.brands-marquee-wrapper:hover .brands-marquee-track,
.brands-marquee-wrapper:active .brands-marquee-track {
	animation-play-state: paused;
}

@keyframes marqueeScrollUp {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(-50%);
	}
}

/* Brand Grid (inside marquee) */
.brands-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	width: 100%;
	padding-bottom: 12px;
}

.brand-item {
	aspect-ratio: 1.4 / 1;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
	border: 1px solid rgba(212, 175, 55, 0.1);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: all 0.35s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.brand-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.brand-item:hover::before,
.brand-item:active::before {
	opacity: 1;
}

.brand-item:hover,
.brand-item:active {
	border-color: rgba(212, 175, 55, 0.35);
	transform: translateY(-2px);
	/* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); */
}

.brand-logo {
	width: auto;
	height: auto;
	border-radius: 8px;
	/* background: rgba(212, 175, 55, 0.08); */
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.brand-logo img {
	width: 40px;
	height: auto;
}

#bose {
	width: 90%;
}

.brand-name {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.5px;
	position: relative;
	z-index: 1;
}

.brands-category {
	margin-top: 20px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 1;
}

.category-tag {
	padding: 5px 12px;
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: 20px;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 1px;
	transition: all 0.3s;
}

.category-tag:hover {
	border-color: rgba(212, 175, 55, 0.4);
	color: #e05a1e;
}

/* ============ Page 7: RSVP ============ */
.page-rsvp {
	background: url(../images/26070807.jpg);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
}

.rsvp-container {
	max-width: 360px;
	width: 100%;
	z-index: 1;
	text-align: center;
}

.countdown {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-bottom: 40px;
}

.countdown-item {
	background: rgba(30, 30, 50, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 10px;
	padding: 12px 16px;
	min-width: 60px;
}

.countdown-number {
	font-size: 28px;
	font-weight: 700;
	color: #e05a1e;
	line-height: 1;
}

.countdown-label {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 4px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.rsvp-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 30px;
}

.rsvp-input {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 10px;
	color: #fff;
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s;
}

.rsvp-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.rsvp-input:focus {
	border-color: rgba(212, 175, 55, 0.6);
}

.rsvp-select {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(212,175,55,0.6)'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 20px;
	transition: border-color 0.3s;
}

.rsvp-select:focus {
	border-color: rgba(212, 175, 55, 0.6);
}

.rsvp-btn {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #e05a1e, #b8860b);
	border: none;
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
}

.rsvp-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.rsvp-btn:hover::before {
	left: 100%;
}

.rsvp-btn:active {
	transform: scale(0.98);
}

.rsvp-footer {
	margin-top: 24px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.3);
}

.rsvp-footer a {
	color: #e05a1e;
	text-decoration: none;
}

/* ============ Navigation Dots ============ */
.nav-dots {
	position: fixed;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 100;
}

.nav-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-dot.active {
	background: #e05a1e;
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
	height: 20px;
	border-radius: 4px;
}

/* ============ Success Modal ============ */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 200;
	padding: 24px;
	backdrop-filter: blur(4px);
}

.modal-overlay.show {
	display: flex;
}

.modal {
	background: linear-gradient(145deg, #1e1e32, #0f0f1e);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 16px;
	padding: 40px 28px;
	text-align: center;
	max-width: 320px;
	width: 100%;
	animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
	from {
		opacity: 0;
		transform: scale(0.8) translateY(20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.modal-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	background: rgba(212, 175, 55, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-icon svg {
	width: 32px;
	height: 32px;
	fill: #e05a1e;
}

.modal h3 {
	font-size: 20px;
	color: #e05a1e;
	margin-bottom: 12px;
}

.modal p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin-bottom: 24px;
}

.modal-btn {
	padding: 12px 32px;
	background: linear-gradient(135deg, #e05a1e, #b8860b);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* ============ Music Button ============ */
.music-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 50%;
	background: rgba(10, 10, 10, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
	backdrop-filter: blur(10px);
}

.music-btn svg {
	width: 16px;
	height: 16px;
	fill: #e05a1e;
}

.music-btn.playing {
	animation: rotateMusic 3s linear infinite;
}

@keyframes rotateMusic {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* ============ Page Indicator ============ */
.page-indicator {
	position: fixed;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.2);
	letter-spacing: 3px;
	z-index: 100;
}

/* ============ Responsive ============ */
@media (max-width: 360px) {
	.cover-title {
		font-size: 34px;
	}

	.countdown-item {
		min-width: 52px;
		padding: 10px 12px;
	}

	.countdown-number {
		font-size: 24px;
	}

	.guest-card {
		min-width: 230px;
		padding: 28px 20px;
	}

	.brands-marquee-wrapper {
		height: 320px;
	}
}