
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
}

/* Container Classes */
.container-full {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.container-wide {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.container-narrow {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container-full, .container-wide, .container-narrow {
		padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container-full, .container-wide, .container-narrow {
		padding: 0 2rem;
	}
}

/* Layout Classes */
.section-padding {
	padding: 3rem 0 0rem;
}

.section-padding-lg {
	padding: 6rem 0;
}

.section-padding-sm {
	padding: 3rem 0;
}

.hero-section {
	background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	line-height: 1.2;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 3.5rem;
	}
}

.hero-content {
	max-width: 1024px;
	margin: 0 auto;
}

/* Author Info */
.author-info {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
}

.author-avatar {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	margin-right: 1rem;
}

.author-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
}

.breadcrumbs a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 0.9rem;
}

.breadcrumbs a:hover {
	color: white;
}

.breadcrumb-separator {
	margin: 0 0.5rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Background Classes */
.bg-gray-light {
	background-color: #f9fafb;
}

.bg-white {
	background-color: #ffffff;
}

.bg-green-light {
	background-color: #f0fdf4;
}

.bg-red-light {
	background-color: #fef2f2;
}

/* Text Classes */
.text-center {
	text-align: center;
}

.text-large {
	font-size: 1.125rem;
}

.text-xl {
	font-size: 1.25rem;
}

.text-2xl {
	font-size: 1.5rem;
}

.text-3xl {
	font-size: 1.875rem;
}

.text-4xl {
	font-size: 2.25rem;
}

.text-bold {
	font-weight: 700;
}

.text-semibold {
	font-weight: 600;
}

.text-gray {
	color: #6b7280;
}

.text-gray-dark {
	color: #374151;
}

.text-green {
	color: #16a34a;
}

.text-red {
	color: #dc2626;
}

.text-yellow {
	color: #eab308;
}

/* Margin Classes */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

/* Grid Classes */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Casino Table */
.casino-table {
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.casino-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	padding: 2rem;
	border-bottom: 1px solid #e5e7eb;
	align-items: center;
}

.casino-row:last-child {
	border-bottom: none;
}

@media (min-width: 1024px) {
	.casino-row {
		grid-template-columns: 200px 120px 180px 200px 200px;
		gap: 2rem;
	}
}

.casino-logo {
	text-align: center;
}

.casino-logo-thumb {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f9fafb;
}

.casino-logo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.casino-rating {
	text-align: center;
}

.rating-score {
	font-size: 1.5rem;
	font-weight: 700;
	color: #dc2626;
	margin-bottom: 0.5rem;
}

.rating-stars {
	color: #fbbf24;
}

.casino-bonus {
	text-align: center;
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	color: white;
	padding: 1rem;
	border-radius: 8px;
}

.bonus-amount {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.bonus-text {
	color: #fff;
	font-size: 0.9rem;
	opacity: 0.9;
}

.casino-info {
	font-size: 0.9rem;
}

.info-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.info-label {
	color: #6b7280;
}

.info-value {
	font-weight: 600;
}

.casino-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.btn-play {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
}

.btn-play:hover {
	background: linear-gradient(135deg, #b91c1c, #991b1b);
	transform: translateY(-2px);
}

.btn-review {
	background: transparent;
	color: #dc2626;
	border: 2px solid #dc2626;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
}

.btn-review:hover {
	background: #dc2626;
	color: white;
}

.casino-terms {
	font-size: 0.8rem;
	color: #6b7280;
	grid-column: 1 / -1;
	text-align: center;
	margin-top: 1rem;
}


.review-card {
	background: #fff;
	--tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	padding: 1.5rem;
	border-radius: .75rem;
}
.review-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 1rem;
}
.review-avatar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	margin-right: 1rem;
	background-color: rgba(254, 226, 226, 1);
	border-radius: 50%;
	color: rgba(220, 38, 38, 1);
	font-weight: 700;
}
.review-name {
	font-weight: 600;
}
.review-date {
	color: rgba(107, 114, 128, 1);
	font-size: .875rem;
	line-height: 1.25rem;
}
.review-text {
	color: rgba(75, 85, 99, 1);
}


/* Image Blocks */
.image-block {
	margin: 2rem 0;
	text-align: center;
}

.image-block img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Comparison Cards */
.comparison-card {
	border-radius: 12px;
	padding: 2rem;
	border: 2px solid;
}

.comparison-card.positive {
	background-color: #f0fdf4;
	border-color: #bbf7d0;
}






.genspark-badge-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #333;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 12px;
	cursor: pointer;
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 6px;
}

.genspark-modal {
	display: none;
	position: fixed;
	bottom: 80px;
	right: 20px;
	z-index: 10000;
	justify-content: end;
}

.genspark-modal-content {
	background-color: white;
	border-radius: 8px;
	max-width: 450px;
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	position: relative;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-size: 14px;
}
@media (max-width: 768px) {
	.genspark-modal-content {
		max-width: 90%;
	}
}

.genspark-close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	background: none;
	border: none;
}

.genspark-title {
	margin-bottom: 8px;
	font-weight: normal;
	display: inline;
	font-size: 14px;
}

.genspark-report {
	color: #909499;
	text-decoration: underline;
	cursor: pointer;
	margin-bottom: 14px;
	display: inline;
}

.genspark-info {
	margin: 25px 0;
	color: #333;
	font-size: 14px;
}

.genspark-buttons {
	display: flex;
	gap: 10px;
}

.genspark-remove-btn {
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	color: #333;
	padding: 4px 14px;
	border-radius: 8px;
	cursor: pointer;
	flex: 1;
	font-size: 14px;
	box-sizing: border-box;
}

.genspark-go-btn {
	background-color: #222;
	border: none;
	color: white;
	padding: 4px 14px;
	border-radius: 8px;
	cursor: pointer;
	flex: 1;
	font-size: 14px;
	box-sizing: border-box;
}







.genspark-notice-dialog {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10001;
	align-items: center;
	justify-content: center;
}

.genspark-notice-content {
	background-color: white;
	border-radius: 8px;
	max-width: 600px;
	width: 90%;
	box-sizing: border-box;
	padding: 10px 30px 30px 30px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	font-size: 16px;
}

.genspark-notice-title {
	color: #000;
	font-family: Arial;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
}

.genspark-notice-list {
	margin: 24px 0;

	color: #606366;
	font-family: Arial;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	padding-left: 12px;
}

.genspark-notice-list li {
	margin-bottom: 12px;
	list-style-type: disc;
}

.genspark-notice-list li a {
	color: #606366;
	text-decoration: underline;
}

.genspark-notice-checkbox {
	display: flex;
	align-items: center;
	margin-top: 20px;
	gap: 10px;

	color: #232425;

	font-family: Arial;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.genspark-notice-actions {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.genspark-notice-ok {
	color: #232425;

	text-align: center;
	font-family: Arial;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;

	cursor: pointer;
	display: flex;
	height: 40px;
	padding: 6px 14px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 8px;
	border: 1px solid #000;
	box-sizing: border-box;
	width: 100%;
}
