.elite-calendar-wrapper-e4817757 {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
}

.elite-event-card-e4817757 {
	display: flex;
	flex-direction: column;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
	animation: eliteSlideInUp 0.8s ease forwards;
	opacity: 0;
	transform: translateY(30px);
}

@media (min-width: 768px) {
	.elite-event-card-e4817757 {
		flex-direction: row;
	}
}

.elite-event-card-e4817757:hover {
	border-color: rgba(212, 175, 55, 0.8);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), 0 0 40px rgba(255, 255, 255, 0.05);
	transform: translateY(-5px);
}

.elite-event-poster-e4817757 {
	width: 100%;
	min-height: 250px;
	background: #050505;
}

@media (min-width: 768px) {
	.elite-event-poster-e4817757 {
		width: 40%;
		min-height: auto;
	}
}

.elite-event-poster-e4817757 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.elite-event-content-e4817757 {
	padding: 2.5rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 768px) {
	.elite-event-content-e4817757 {
		width: 60%;
	}
}

.elite-event-header-e4817757 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
	padding-bottom: 0.5rem;
}

.elite-event-date-e4817757 {
	color: #D4AF37;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.elite-event-price-e4817757 {
	background: rgba(212, 175, 55, 0.1);
	color: #D4AF37;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.elite-event-title-e4817757 {
	color: #ffffff;
	font-size: 2rem;
	margin: 0 0 1rem 0;
	font-weight: 400;
}

.elite-event-desc-e4817757 {
	color: #a0a0a0;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.elite-event-venue-e4817757 {
	color: #e0e0e0;
	font-size: 0.95rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.elite-event-cta-e4817757 {
	display: inline-block;
	background: transparent;
	color: #D4AF37;
	border: 1px solid #D4AF37;
	padding: 0.8rem 2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	align-self: flex-start;
	text-decoration: none;
}

.elite-event-cta-e4817757:hover {
	background: #D4AF37;
	color: #0A0A0A;
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

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

/* Staggered animation for list items */
.elite-calendar-wrapper-e4817757 > div:nth-child(1) { animation-delay: 0.1s; }
.elite-calendar-wrapper-e4817757 > div:nth-child(2) { animation-delay: 0.2s; }
.elite-calendar-wrapper-e4817757 > div:nth-child(3) { animation-delay: 0.3s; }
.elite-calendar-wrapper-e4817757 > div:nth-child(4) { animation-delay: 0.4s; }
