:root {
	--primary-red: #dc143c;
	--primary-dark-red: #8b0000;
	--primary-black: #1a1a1a;
	--primary-charcoal: #2d2d2d;
	--text-dark: #1a1a1a;
	--text-muted: #666666;
	--text-light: #fafafa;
	--bg-main: #fafafa;
	--surface-card: #ffffff;
	--border-subtle: rgba(220, 20, 60, 0.15);
	--shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 4px 16px rgba(220, 20, 60, 0.2);
	--radius-md: 8px;
}

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

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--bg-main);
	font-size: 16px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header - Sticky Navigation */
header {
	background: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 2px solid var(--primary-red);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	gap: 16px;
}

.logo-image {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

nav {
	display: flex;
	gap: 24px;
}

nav a {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.2s;
}

nav a:hover {
	color: var(--primary-red);
	border-bottom-color: var(--primary-red);
}

/* Hero - Compact and Clean */
.hero {
	background: #fff;
	padding: 24px 0;
	border-bottom: 1px solid var(--border-subtle);
}

h1 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-red);
	margin-bottom: 12px;
	line-height: 1.2;
}

.author-block {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
	font-weight: 700;
}

.author-photo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.author-info h3 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}

.author-expertise {
	color: var(--text-muted);
	font-size: 12px;
	margin-bottom: 2px;
}

.update-date {
	color: var(--text-muted);
	font-size: 12px;
}

/* Casino List - Mobile Optimized */
.casinos-section {
	margin: 32px 0;
}

h2 {
	font-size: 24px;
	margin-bottom: 24px;
	color: var(--text-dark);
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-bottom: 12px;
}

h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-red);
}

.casino-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.casino-item {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	transition: all 0.3s;
}

.casino-item:hover {
	box-shadow: var(--shadow-hover);
	border-color: var(--primary-red);
}

.casino-logo {
	width: 200px;
	height: 80px;
	background: linear-gradient(135deg, var(--primary-charcoal), var(--primary-black));
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 16px;
	border: 2px solid var(--primary-red);
}

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

.casino-info h3 {
	font-size: 20px;
	color: var(--primary-red);
	font-weight: 700;
	margin-bottom: 8px;
}

.bonus {
	color: var(--text-dark);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 16px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
	color: white;
	padding: 14px 28px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	width: 100%;
	text-align: center;
	text-decoration: none;
	display: block;
	transition: transform 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary:hover {
	transform: translateY(-2px);
}

/* TOC */
.toc {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 24px;
	margin: 32px 0;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
}

.toc h2 {
	text-align: left;
	margin-bottom: 16px;
	font-size: 20px;
}

.toc ul {
	list-style: none;
}

.toc li {
	margin-bottom: 12px;
}

.toc a {
	color: var(--primary-red);
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: color 0.2s;
}

.toc a:hover {
	color: var(--primary-dark-red);
}

/* Content */
.content-section {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 32px 24px;
	margin: 32px 0;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
}

h3 {
	font-size: 22px;
	margin: 24px 0 16px;
	color: var(--primary-red);
	font-weight: 700;
}

h4 {
	font-size: 18px;
	margin: 20px 0 12px;
	color: var(--primary-charcoal);
	font-weight: 600;
}

p {
	margin-bottom: 16px;
	line-height: 1.7;
	font-size: 15px;
}

ul, ol {
	margin: 16px 0 16px 24px;
}

li {
	margin-bottom: 8px;
	line-height: 1.6;
}

blockquote {
	border-left: 3px solid var(--primary-red);
	padding: 16px 20px;
	margin: 20px 0;
	background: rgba(220, 20, 60, 0.05);
	border-radius: 0 6px 6px 0;
	font-style: italic;
	color: var(--text-muted);
}

.content-section a {
	color: var(--primary-red);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid transparent;
}

.content-section a:hover {
	border-bottom-color: var(--primary-red);
}

/* FAQ */
.faq-section {
	margin: 32px 0;
}

.faq-item {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
}

.faq-item h3 {
	margin-top: 0;
	font-size: 18px;
}

/* Reviews */
.reviews-section {
	margin: 32px 0;
}

.review-item {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.review-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 18px;
}

.review-author h4 {
	margin: 0 0 4px 0;
	font-size: 16px;
}

.rating {
	color: var(--primary-red);
	font-size: 16px;
}

/* Contact Form */
.contact-form {
	background: #fff;
	border-radius: var(--radius-md);
	padding: 32px 24px;
	margin: 32px 0;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 14px;
}

input, textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--border-subtle);
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	background: #fafafa;
}

input:focus, textarea:focus {
	outline: none;
	border-color: var(--primary-red);
}

textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer */
footer {
	background: var(--primary-black);
	color: var(--text-light);
	padding: 48px 0 24px;
	margin-top: 60px;
	border-top: 2px solid var(--primary-red);
}

.footer-content {
	text-align: center;
}

.about-text {
	max-width: 800px;
	margin: 0 auto 24px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
}

.copyright {
	padding-top: 24px;
	border-top: 1px solid rgba(220, 20, 60, 0.3);
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

/* Desktop Responsive - Scale Up from Mobile */
@media (min-width: 768px) {
	h1 {
		font-size: 36px;
	}

	.casino-item {
		display: grid;
		grid-template-columns: 200px 1fr auto;
		gap: 24px;
		align-items: center;
	}

	.casino-logo {
		width: 200px;
		height: 80px;
		margin-bottom: 0;
	}

	.btn-primary {
		width: auto;
		padding: 14px 32px;
	}

	.content-section {
		padding: 40px;
	}

	nav {
		gap: 32px;
	}
}

@media (max-width: 767px) {
	nav {
		display: none;
	}

	.header-content {
		justify-content: center;
	}

	h1 {
		text-align: center;
	}

	.author-block {
		justify-content: center;
	}
}