
:root {
	--primary-yellow: #FFD700;
	--primary-black: #1A1A1A;
	--gold-dark: #D4AF37;
	--gold-light: #FFEC8B;
}

/* Gold Theme CSS */
.cta-event-button-gold {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, #FFD700, #D4AF37);
	color: #1A1A1A;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid #FFEC8B;
	box-shadow: 0 8px 25px -8px rgba(255, 215, 0, 0.5);
}

.cta-event-button-gold:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px -10px rgba(255, 215, 0, 0.7);
	background: linear-gradient(135deg, #FFEC8B, #FFD700);
	color: #1A1A1A;
}

.cta-secondary-gold {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 215, 0, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid #FFD700;
	color: #FFD700;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.cta-secondary-gold:hover {
	background: rgba(255, 215, 0, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -5px rgba(255, 215, 0, 0.3);
}

.cta-secondary-dark {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(26, 26, 26, 0.8);
	backdrop-filter: blur(8px);
	border: 1px solid #D4AF37;
	color: #FFEC8B;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.cta-secondary-dark:hover {
	background: rgba(26, 26, 26, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

.running-lottie {
	filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

/* Optional: Add color filter to match gold theme */
.lottie-gold-filter {
	filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3)) hue-rotate(0deg) saturate(1.2);
}


/* Stats dengan theme gold */
.stats-item {
	text-align: center;
	background: rgba(26, 26, 26, 0.6);
	backdrop-filter: blur(8px);
	border: 1px solid #D4AF37;
	border-radius: 1rem;
	padding: 1rem;
	transition: all 0.3s ease;
}

.stats-item:hover {
	transform: translateY(-5px);
	background: rgba(26, 26, 26, 0.8);
	border-color: #FFD700;
}

.stats-number {
	font-size: 2rem;
	font-weight: bold;
	color: #FFD700;
	margin-bottom: 0.25rem;
}

.stats-label {
	font-size: 0.875rem;
	color: #FFEC8B;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #FFFFFF;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
}

.logo-ayo {
	color: #FFD700; /* Primary yellow */
}

.logo-playon {
	color: #1A1A1A; /* Primary black */
}

/* Header Styling - FIXED */
.sticky-header {
	transition: all 0.35s ease;
	background: rgba(255, 215, 0, 0.95);
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-header.scrolled {
	background: rgba(255, 215, 0, 0.98);
	backdrop-filter: blur(18px);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* Navigation Links - FIXED */
.nav-link {
	position: relative;
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: all 0.3s;
	color: var(--primary-black);
	text-decoration: none;
	display: block;
}

.nav-link:hover {
	color: #1A1A1A;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary-black);
	transition: all 0.3s;
}

.nav-link:hover::after {
	width: 80%;
}

.nav-link.active::after {
	width: 80%;
}

/* Ayo PlayOn Heading Styles */
.hero-section h1 {
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .text-gradient-blue {
	background: linear-gradient(135deg, #60A5FA, #2563EB);
	-webkit-background-clip: text;
	background-clip: text;
}

.hero-section .text-gradient-green {
	background: linear-gradient(135deg, #34D399, #059669);
	-webkit-background-clip: text;
	background-clip: text;
}

/* Stats dengan background baru */
.stats-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1rem;
	padding: 1rem;
	transition: all 0.3s ease;
}

.stats-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.15);
}

.stats-number {
	font-size: 2rem;
	font-weight: bold;
	color: white;
	margin-bottom: 0.25rem;
}

.stats-label {
	font-size: 0.875rem;
	opacity: 0.9;
	color: white;
}

/* Header CTA Button - FIXED SVG COLOR */
.header-cta-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #1A1A1A !important;
	color: #FFD700 !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-decoration: none;
	border: 2px solid #1A1A1A;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.header-cta-button:hover {
	background: #FFD700 !important;
	color: #1A1A1A !important;
	border-color: #1A1A1A;
	transform: translateY(-2px);
	box-shadow: 0 6px 12px -1px rgba(0, 0, 0, 0.3);
}

.header-cta-button:hover svg {
	color: #1A1A1A !important;
	fill: #1A1A1A !important;
}

.header-cta-button:hover i {
	color: #1A1A1A !important;
}

/* Mobile Menu - FIXED */
.mobile-menu-btn {
	color: var(--primary-black);
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: all 0.3s;
	border: none;
	background: none;
	cursor: pointer;
}

.mobile-menu-btn:hover {
	background: rgba(0, 0, 0, 0.1);
	transform: scale(1.1);
}

#mobile-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	background: rgba(255, 215, 0, 0.98);
	backdrop-filter: blur(18px);
}

#mobile-menu.mobile-open {
	max-height: 500px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-link {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--primary-black);
	transition: all 0.3s;
	border-radius: 0.5rem;
	border-left: 4px solid transparent;
	text-decoration: none;
	font-weight: 500;
}

.mobile-nav-link:hover {
	color: #1A1A1A;
	background: rgba(0, 0, 0, 0.05);
	border-left-color: var(--primary-black);
}

.mobile-nav-link.active {
	background: rgba(0, 0, 0, 0.1);
	border-left-color: var(--primary-black);
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Pastikan background layer mengambil full space */
.hero-section .absolute {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.section-title {
	position: relative;
	padding-bottom: 0.75rem;
	margin-bottom: 2rem;
	text-align: center;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-yellow);
}

.btn-primary {
	background: var(--primary-yellow);
	color: var(--primary-black);
	font-weight: 600;
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Event Card Hover Effects */
.event-card {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
	transform: translateY(-5px);
}

/* Line clamp utilities */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Truncate text */
.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* Smooth scaling */
.hover-scale:hover {
	transform: scale(1.02);
}

/* Ensure consistent card heights in grid */
.grid-cols-1 > * {
	display: flex;
	flex-direction: column;
}

/* Hover effects for cards */
.event-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
.btn-primary {
	box-shadow: 0 4px 6px -1px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 10px 15px -3px rgba(255, 215, 0, 0.4);
}

/* Smooth transitions */
.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
}

.stats-item {
	text-align: center;
	padding: 1.5rem 0.5rem;
}

.stats-number {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary-yellow);
}

.stats-label {
	font-size: 0.9rem;
	color: var(--primary-black);
	font-weight: 500;
}


/* Event Info Card */
.event-info-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 1rem;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.event-info-card h3 {
	color: #FBBF24;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.75rem;
}

.event-date-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.event-date-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
}

.event-description {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

/* Footer Styling */
.footer {
	background: linear-gradient(to bottom, #1A1A1A, #000000);
	color: white;
	padding: 5rem 0 1.5rem;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
	opacity: 0.1;
}

.footer::after {
	content: '';
	position: absolute;
	top: -5rem;
	right: -5rem;
	width: 20rem;
	height: 20rem;
	background: rgba(255, 215, 0, 0.05);
	border-radius: 50%;
	filter: blur(60px);
}

.footer-content {
	position: relative;
	z-index: 10;
}

.footer-logo {
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.footer-heading {
	color: var(--primary-yellow);
	font-weight: 600;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.7rem;
	font-size: 1.25rem;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--primary-yellow);
}

.footer-link {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	display: block;
	margin-bottom: 0.7rem;
	padding: 0.3rem 0;
	text-decoration: none;
}

.footer-link:hover {
	color: var(--primary-yellow);
	transform: translateX(8px);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
	color: var(--primary-yellow);
	margin-right: 0.8rem;
	margin-top: 0.2rem;
	min-width: 20px;
	text-align: center;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	margin-right: 0.5rem;
	transition: all 0.3s ease;
	color: white;
	text-decoration: none;
}

.social-icon:hover {
	background: var(--primary-yellow);
	color: var(--primary-black);
	transform: translateY(-3px);
}

.newsletter-box {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1.5rem;
	margin-top: 3rem;
}

/* Doorprize Section */
.doorprize-item {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.doorprize-item:hover {
	transform: translateY(-10px);
	border-color: var(--primary-yellow);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.doorprize-icon {
	width: 5rem;
	height: 5rem;
	background: linear-gradient(135deg, var(--primary-yellow), var(--gold-dark));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 2rem;
}

/* CTA Button */
.cta-button {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary-yellow);
	color: var(--primary-black);
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-secondary-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 2px solid white;
	color: white;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	text-decoration: none;
}

.cta-secondary-button:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 3rem;
	height: 3rem;
	background: #1A1A1A;
	color: #FFD700;
	border: 2px solid #FFD700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: #FFD700;
	color: #1A1A1A;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Sponsor Section */
.sponsor-section {
	background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
	padding: 5rem 0;
}

.sponsor-logo {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	margin: 0 auto;
}

.sponsor-logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-logo img {
	max-height: 100px;
	max-width: 150px;
	object-fit: contain;
}

.tier-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--primary-black);
	position: relative;
	padding-bottom: 0.5rem;
}

.tier-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--primary-yellow);
}

/* Swiper Customization */
.sponsor-swiper {
	padding: 20px 0;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #D1D5DB;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--primary-yellow);
}

.swiper-button-next, .swiper-button-prev {
	color: var(--primary-yellow);
	background: rgba(255, 255, 255, 0.8);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 18px;
	font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
	background: var(--primary-yellow);
	color: white;
}

/* Event Detail Section */
.event-detail-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 3rem;
}

.event-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	color: #4B5563;
}

.event-info-icon {
	color: var(--primary-yellow);
	margin-right: 0.8rem;
	margin-top: 0.2rem;
	min-width: 20px;
	text-align: center;
}

/* Counter Section Enhanced */
.counter-section {
	position: relative;
	overflow: hidden;
}

.counter-item {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.counter-item:hover::before {
	left: 100%;
}

.counter-item:hover {
	transform: translateY(-8px);
}

.counter-icon-wrapper {
	position: relative;
}

.counter-icon {
	transition: all 0.3s ease;
}

.counter-item:hover .counter-icon {
	transform: scale(1.1);
	background: rgba(255, 215, 0, 0.3);
}

/* Smooth number counting animation */
.counter-number {
	transition: all 0.5s ease-in-out;
}

.counter-number::after {
	content: '+';
	position: absolute;
	top: 0;
	right: -15px;
	font-size: 1.5rem;
	color: #FFD700;
}

.counter-item:nth-child(2) .counter-number::after,
.counter-item:nth-child(4) .counter-number::after {
	content: '';
}

.counter-label {
	position: relative;
}

.counter-subtitle {
	transition: color 0.3s ease;
}

.counter-item:hover .counter-subtitle {
	color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.counter-item {
		padding: 2rem 1rem;
	}

	.counter-number {
		font-size: 2.5rem;
	}

	.counter-label {
		font-size: 1rem;
	}
}

/* Performance Optimizations */
img {
	content-visibility: auto;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Custom shadow effect */
.logo-container {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.logo-container:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Pulse animation on hover */
@keyframes gentle-pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.logo-pulse:hover img {
	animation: gentle-pulse 2s ease-in-out infinite;
}

/* Progress Bar Improvements */
.step-content {
	display: none;
}

.step-content.active {
	display: block;
}

.progress-bar-fill {
	background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
	transition: width 0.5s ease-in-out;
}

/* Summary Box Styling */
.summary-box {
	background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
	border-left: 4px solid #FFD700;
}

.checkout-summary {
	background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
	border-left: 4px solid #D4AF37;
}

/* Button Improvements */
.btn-primary {
	background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
	border: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px -5px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
	background: #6B7280;
	border: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: #4B5563;
	transform: translateY(-1px);
}

/* TABS STYLING */
.tabs {
	display: flex;
	gap: 4px;
	background: #F3F4F6;
	padding: 4px;
	border-radius: 8px;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.tab-item {
	flex: 1;
	padding: 12px 16px;
	text-align: center;
	background: transparent;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #6B7280;
	min-width: 120px;
}

.tab-item.active {
	background: #FFD700 !important;
	color: #1A1A1A !important;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-item:hover:not(.active) {
	background: #E5E7EB;
}

.tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tab-content.active {
	display: block;
	opacity: 1;
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* STEP CONTENT STYLING */
.step-content {
	display: none;
}

.step-content.active {
	display: block;
}

/* PESERTA CARD STYLING */
.peserta-card {
	margin-bottom: 1.5rem;
}

.form-row {
	margin-bottom: 1rem;
}

.form-group {
	margin-bottom: 1rem;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* STEP CONTENT STYLING */
.step-content {
	display: none;
}

.step-content.active {
	display: block;
}

/* Alert Container */
#alertContainer {
	min-height: 20px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
	.flex.space-x-3 {
		flex-direction: column;
		gap: 8px;
	}

	.flex.space-x-3 button,
	.flex.space-x-3 input {
		width: 100%;
	}
}

/* STEP CONTENT STYLING - PASTIKAN INI ADA */
.step-content {
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.step-content.active {
	display: block;
	opacity: 1;
	animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Pastikan juga tidak ada CSS lain yang override */
#step1, #step2 {
	width: 100%;
}

/* CHECKLIST PANEL STYLING - OPTIMIZED */
#checklistPanel {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 320px;
	max-height: 80vh;
	background: white;
	border: 2px solid #FFD700;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#checklistPanel.minimized {
	width: 60px;
	height: 60px;
	overflow: hidden;
}

.checklist-header {
	background: linear-gradient(135deg, #FFD700, #D4AF37);
	color: #1A1A1A;
	padding: 12px 16px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #FFD700;
	cursor: pointer;
	transition: padding 0.3s ease;
}

#checklistPanel.minimized .checklist-header {
	padding: 18px 12px;
	justify-content: center;
}

#checklistPanel.minimized .checklist-header span {
	display: none;
}

.checklist-toggle {
	background: rgba(255, 255, 255, 0.3);
	border: none;
	border-radius: 6px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.checklist-toggle:hover {
	background: rgba(255, 255, 255, 0.5);
	transform: scale(1.1);
}

.checklist-body {
	padding: 16px;
	max-height: 400px;
	overflow-y: auto;
	transition: opacity 0.3s ease;
}

#checklistPanel.minimized .checklist-body {
	display: none;
}

.checklist-stats {
	padding: 12px 16px;
	background: #FFFBEB;
	border-top: 1px solid #FEF3C7;
	text-align: center;
	font-size: 12px;
	transition: opacity 0.3s ease;
}

#checklistPanel.minimized .checklist-stats {
	display: none;
}

/* Checklist Content Styling */
.checklist-category {
	margin-bottom: 16px;
}

.checklist-category:last-child {
	margin-bottom: 0;
}

.checklist-category-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #1A1A1A;
}

.checklist-peserta {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	padding: 8px;
	margin-bottom: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.checklist-peserta:hover {
	background: #EFF6FF;
	border-color: #3B82F6;
	transform: translateX(2px);
}

.checklist-peserta.complete {
	background: #F0FDF4;
	border-color: #16A34A;
}

.checklist-peserta.partial {
	background: #FFFBEB;
	border-color: #F59E0B;
}

.checklist-peserta-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.checklist-peserta-name {
	font-size: 12px;
	font-weight: 500;
	color: #1A1A1A;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.checklist-peserta-badge {
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 10px;
	font-weight: 600;
	flex-shrink: 0;
	margin-left: 8px;
}

.checklist-peserta-badge.complete {
	background: #DCFCE7;
	color: #166534;
}

.checklist-peserta-badge.partial {
	background: #FEF3C7;
	color: #92400E;
}

.checklist-peserta-badge.empty {
	background: #F3F4F6;
	color: #6B7280;
}

.checklist-progress-bar {
	width: 100%;
	height: 4px;
	background: #E5E7EB;
	border-radius: 2px;
	overflow: hidden;
}

.checklist-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #FFD700, #D4AF37);
	transition: width 0.3s ease;
}

.checklist-progress-fill.complete {
	background: #16A34A;
}

/* Scrollbar Styling */
.checklist-body::-webkit-scrollbar {
	width: 4px;
}

.checklist-body::-webkit-scrollbar-track {
	background: #F1F5F9;
	border-radius: 2px;
}

.checklist-body::-webkit-scrollbar-thumb {
	background: #CBD5E1;
	border-radius: 2px;
}

.checklist-body::-webkit-scrollbar-thumb:hover {
	background: #94A3B8;
}

/* Responsive Design */
@media (max-width: 768px) {
	#checklistPanel {
		right: 10px;
		width: 280px;
		max-height: 70vh;
	}

	#checklistPanel.minimized {
		width: 50px;
		height: 50px;
	}

	.checklist-header {
		padding: 10px 12px;
	}

	#checklistPanel.minimized .checklist-header {
		padding: 15px 10px;
	}

	.checklist-body {
		padding: 12px;
		max-height: 300px;
	}
}

@media (max-width: 480px) {
	#checklistPanel {
		width: 250px;
		right: 8px;
	}

	#checklistPanel.minimized {
		width: 45px;
		height: 45px;
	}
}

/* Animation for smooth transitions */
@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateY(-50%) translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateY(-50%) translateX(0);
	}
}

#checklistPanel {
	animation: slideInRight 0.3s ease-out;
}

/* ADDITIONAL STYLES FOR EVENT PAGE */
.bg-gradient-gold {
	background: linear-gradient(135deg, var(--primary-yellow), var(--gold-dark));
}

.border-gold-100 {
	border-color: rgba(255, 215, 0, 0.1);
}

.border-gold-200 {
	border-color: rgba(255, 215, 0, 0.2);
}

.border-gold-300 {
	border-color: rgba(255, 215, 0, 0.3);
}

.bg-gold-50 {
	background: rgba(255, 215, 0, 0.05);
}

.shadow-gold {
	box-shadow: 0 4px 6px -1px rgba(255, 215, 0, 0.1), 0 2px 4px -1px rgba(255, 215, 0, 0.06);
}

.shadow-gold-lg {
	box-shadow: 0 10px 15px -3px rgba(255, 215, 0, 0.1), 0 4px 6px -2px rgba(255, 215, 0, 0.05);
}

.bg-gradient-gold-horizontal {
	background: linear-gradient(90deg, var(--primary-yellow), var(--gold-dark));
}

/* Progress Bar Text */
.progress-bar-text {
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Summary Box */
.summary-box, .checkout-summary {
	background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
	border-left: 4px solid var(--primary-yellow);
}

.checkout-summary {
	border-left-color: var(--gold-dark);
}

/* Additional styles for category cards */
.bg-yellow-50 {
	background: rgba(255, 215, 0, 0.05);
}

.border-yellow-200 {
	border-color: rgba(255, 215, 0, 0.2);
}

/* Quantity control animations */
.quantity-btn {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantity-btn:hover {
	transform: scale(1.1);
}

/* Price card glow effect */
.price-card {
	position: relative;
	overflow: hidden;
}

.price-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.6s ease;
}

.price-card:hover::before {
	left: 100%;
}

/* Category card hover effects */
.category-card {
	transition: all 0.3s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

/* LOADER STYLES - GOLD THEME */
.loader {
	position: fixed;
	border-radius: 50%;
	display: none;
	z-index: 200003;
	left: 50%;
	top: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	border: 2px solid rgba(255, 215, 0, 0.3);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	padding: 8px;
}

.loader img {
	border-radius: 50%;
	background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
	display: block;
	width: 124px;
	height: 124px;
	object-fit: contain;
	padding: 12px;
	border: 2px solid rgba(255, 215, 0, 0.2);
	animation: pulse-gold 2s ease-in-out infinite;
}

.loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 200002;
	pointer-events: auto;
	display: none;
}

/* Gold Pulse Animation */
@keyframes pulse-gold {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
	}
}

/* Spinner Loader Alternative */
.loader-spinner {
	position: fixed;
	z-index: 200003;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.spinner {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(255, 215, 0, 0.3);
	border-left: 4px solid var(--primary-yellow);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Parsley Error Styling */
.parsley-errors-list {
	margin-top: 0.25rem;
	list-style-type: none;
	padding: 0;
}

.parsley-errors-list li {
	font-size: 0.875rem;
	color: #DC2626;
	margin-top: 0.25rem;
}

.parsley-error {
	border-color: #DC2626 !important;
	background-color: #FEF2F2;
}

.parsley-success {
	border-color: #10B981 !important;
}