.irm-container-b801c697 {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	border-radius: 0;
}

.irm-bg-layers-b801c697 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.irm-bg-layer-b801c697 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.irm-bg-layer-b801c697.active {
	opacity: 1;
}

.irm-bg-overlay-b801c697 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3); /* Subtle overlay for text readability */
}

.irm-menu-wrapper-b801c697 {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 600px;
	padding: 40px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(0,0,0,0.15);
	border-radius: 20px;
	margin: 20px;
	backdrop-filter: blur(12px); /* Strengthened blur */
	-webkit-backdrop-filter: blur(12px);
}

.irm-menu-inner-b801c697 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.irm-menu-item-b801c697 {
	cursor: pointer;
	position: relative;
}

.irm-item-title-b801c697 {
	font-size: 2.5rem;
	color: #ffffff;
	margin: 0;
	padding: 10px 0;
	display: inline-block;
	position: relative;
	transition: color 0.3s ease;
}

.irm-item-title-b801c697::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	background-color: #ffffff;
	transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.irm-menu-item-b801c697:hover .irm-item-title-b801c697::after,
.irm-menu-item-b801c697.active .irm-item-title-b801c697::after {
	width: 100%;
}

.irm-item-desc-wrapper-b801c697 {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
	margin-top: 0;
}

.irm-menu-item-b801c697:hover .irm-item-desc-wrapper-b801c697,
.irm-menu-item-b801c697.active .irm-item-desc-wrapper-b801c697 {
	max-height: 200px;
	opacity: 1;
	margin-top: 10px;
}

.irm-item-desc-b801c697 {
	color: #ffffff;
	margin: 0;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px); /* Strengthened blur */
	-webkit-backdrop-filter: blur(15px);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 1.1rem;
	line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 767px) {
	.irm-menu-wrapper-b801c697 {
		margin: 10px;
		padding: 20px;
		width: calc(100% - 20px);
	}
	
	.irm-item-title-b801c697 {
		font-size: 1.8rem;
	}
	
	.irm-item-desc-b801c697 {
		font-size: 1rem;
	}
}
