.icp-card {
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 12px;
	overflow: hidden;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 300px;
	cursor: pointer;
	transition: transform 0.3s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	color: #fff;
}

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

.icp-card-header {
	position: relative;
	display: flex;
	justify-content: flex-end;
	z-index: 2;
}

.icp-card-title {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 700;
	color: inherit;
}

.icp-plus-btn {
	background: rgba(0,0,0,0.4);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
	color: #fff;
}

.icp-plus-btn:hover {
	background: rgba(0,0,0,0.6);
}

.icp-card-content {
	position: relative;
	z-index: 2;
	color: inherit;
	background: rgba(0,0,0,0.5);
	padding: 16px;
	border-radius: 8px;
	margin-top: auto;
}

.icp-card-content p {
	margin: 0;
	opacity: 0.9;
}

/* Popup Styles */
.icp-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	backdrop-filter: blur(8px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.icp-popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.icp-popup-content {
	background: #fff;
	border-radius: 16px;
	width: 90%;
	max-width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.icp-popup-overlay.active .icp-popup-content {
	transform: scale(1);
}

.icp-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	background: rgba(0,0,0,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s ease;
	color: #333;
}

.icp-popup-close:hover {
	background: rgba(0,0,0,0.2);
}

.icp-popup-img {
	width: 100%;
	height: auto;
	max-height: 300px;
	object-fit: cover;
	display: block;
}

.icp-popup-title {
	margin: 24px 24px 16px;
	font-size: 28px;
	color: #333;
}

.icp-popup-desc {
	padding: 0 24px 32px;
	color: #555;
	line-height: 1.6;
}
