/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 25 2026 | 10:20:10 */
/* PREMIUM DESIGN VARIATION
Scoped to .casino-listing-container
*/

.casino-listing-container {
	margin: 0 auto;
	box-sizing: border-box;
}

.casino-listing-container * {
	box-sizing: border-box;
}

/* Loading State */
.cl-state-msg {
	text-align: center;
	padding: 40px;
	color: #888;
	font-weight: 500;
}

/* Card Container - Floating Shadow Style */
.casino-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #eff0f2;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 5px 10px -5px rgba(0, 0, 0, 0.01);
	border-radius: 12px; 
	margin-bottom: 24px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.casino-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.1);
	border-color: #e0e0e0;
}

.cl-row-wrapper {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex: 1; /* Take available height */
}

/* Left Side: Logo */
.cl-brand-section {
	flex: 0 0 145px; /* Slightly narrower */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #fff;
}

/* Logo Wrapper - Fixed 100x100px */
.cl-logo-wrapper {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 16px;
	padding: 0;
}

.cl-logo {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ID Badge - Dynamic Pill Style */
.cl-id-badge {
	position: absolute;
	top: -11px;
	left: -11px;
	background-color: var(--card-primary, #007bff);
	color: #fff;
	width: auto;
	min-width: 27px;
	height: 27px;
	padding: 0 8px;
	border-radius: 8px; /* Pill shape */
	font-size: 0.9rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 4px 6px rgba(0,0,0,0.15);
	line-height: 1;
	/* border: 2px solid #fff; */
	white-space: nowrap;
}

/* Middle: Content */
.cl-info-section {
	flex: 1;
	padding: 25px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

/* Header Area */
.cl-name-rating-header {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 8px;
}

.cl-casino-name {
	font-weight: 800;
	font-size: 1.5rem;
	color: #2d3436;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

/* Rating - Pill Style */
.cl-header-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.95rem;
	font-weight: 700;
	color: #2d3436;
	background: #f1f2f6;
	padding: 4px 10px;
	border-radius: 20px;
}

.cl-star-icon {
	width: 16px;
	height: 16px;
	fill: #f39c12;
}

/* Bonus Text */
.cl-bonus-text {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--card-primary, #007bff); 
	line-height: 1.25;
}

/* Features List */
.cl-features-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 5px 0 0 0 !important;
}

.cl-feature-item {
	font-size: 0.85rem;
	font-weight: 500;
	color: #636e72;
	display: flex;
	align-items: center;
	padding-right: 10px;
}

.cl-check-icon {
	width: 16px;
	height: 16px;
	margin-right: 4px;
	fill: #00b894; /* Green check */
}

/* Right Side: Actions */
.cl-action-section {
	flex: 0 0 300px; 
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	gap: 0;
	position: relative; /* Context for absolute positioning */
}

.cl-btn {
	width: 100%;
	padding: 14px 20px; 
	border-radius: 8px; 
	text-align: center;
	text-decoration: none !important;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-block;
}

.cl-btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.cl-btn-primary {
	color: #ffffff !important;
	background-color: var(--card-primary, #007bff);
	box-shadow: none; /* Removed default glow */
}

/* Add glow only on hover */
.cl-btn-primary:hover {
	box-shadow: 0 4px 15px -3px var(--card-primary, rgba(0,123,255,0.4));
}

.cl-btn-secondary {
	color: #b2bec3 !important;
	background-color: transparent;
	font-size: .9rem;
	padding: 5px;
	text-transform: none;
	letter-spacing: normal;
	text-decoration: underline !important;
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
}

.cl-btn-secondary:hover {
	text-decoration: none;
	color: var(--card-primary, #007bff) !important;
}

.cl-terms {
	width: 100%;
	text-align: center;
	padding: 0;
	background-color: #fafafa;
	border-top: 1px solid #f0f0f0;
	font-size: 0.6rem;
	color: #b2bec3;
	margin-top: auto; 
}

.casino-card:hover .cl-terms {
	color: #999;
}

/* Responsive Design (Mobile First adjustments) */
@media (max-width: 768px) {
	.casino-card {
		display: grid;
		grid-template-columns: 120px 1fr; 
		flex-direction: unset;
		align-items: start;
	}
	
	.cl-id-badge {
		top: -8px;
		left: -8px;
	}
	
	.cl-row-wrapper {
		display: contents;
	}

	/* 1. Logo Section */
	.cl-brand-section {
		grid-row: 1;
		grid-column: 1;
		padding: 15px 0 15px 15px; 
		justify-content: flex-start;
		background: transparent;
		flex: none;
		height: auto;
	}

	/* 2. Info Section (Unboxed) */
	.cl-info-section {
		display: contents;
	}

	/* Header: Name & Rating */
	.cl-name-rating-header {
		grid-row: 1;
		grid-column: 2;

		/* Layout & Spacing */
		margin-left: 20px; /* Requested margin left */
		padding: 0; /* Remove top padding, keep right padding */
		margin-bottom: 0;

		/* Alignment */
		align-self: center; /* Vertically center in the grid row */
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.cl-casino-name {
		font-size: 1.3rem;
	}

	.cl-header-rating {
		font-size: 0.85rem;
		padding: 3px 8px;
	}

	/* 3. Bonus Text */
	.cl-bonus-text {
		grid-row: 2;
		grid-column: 1 / -1;
		font-size: 1.3rem;
		margin-bottom: 15px;
		padding: 10px 20px 0 20px; 
		text-align: left;
	}

	/* 4. Features */
	.cl-features-list {
		grid-row: 3;
		grid-column: 1 / -1;
		padding: 0 20px 20px 20px;
		justify-content: flex-start;
		gap: 10px;
	}

	.cl-feature-item {
		background: #f1f2f6;
		padding: 4px 8px;
		border-radius: 4px;
	}

	/* 5. Actions */
	.cl-action-section {
		grid-row: 4;
		grid-column: 1 / -1;
		padding: 0 20px 20px 20px;
		/* padding: 20px; */
		background: transparent;
		/* border-top: 1px solid #f0f0f0; */
		flex: auto;
		flex-direction: column;
	}
	
	.cl-btn-secondary {
		margin: 0 0 -15px 0;
		position: relative;
		bottom: 0;
	}
	
	.cl-terms {
		grid-row: 5;
		grid-column: 1 / -1;
		background-color: #f9f9f9;
	}
}