@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
	--primary: 36 66% 50%; /* #d4af37 gold */
	--primary-hover: 36 66% 40%;
	--primary-glow: hsla(36, 66%, 50%, 0.15);
	--primary-rgb: 212, 175, 55;
	--background: 210 35% 6%; /* deep dark navy */
	--surface: 210 30% 10%; /* slightly lighter navy */
	--surface-card: 210 25% 13%; /* card bg */
	--text: 210 20% 98%; /* off-white */
	--text-muted: 210 12% 72%;
	--border: 210 20% 18%;
	--border-focus: 36 66% 50%;
	--success: 142 70% 45%;
	--danger: 350 80% 50%;
	
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
	
	--header-height: 72px;
	--border-radius-sm: 6px;
	--border-radius-md: 12px;
	--border-radius-lg: 20px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
	height: 100%;
}

body {
	background-color: hsl(var(--background));
	color: hsl(var(--text));
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

body.modal-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

button, input, textarea {
	font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
}

.text-gradient {
	background: linear-gradient(135deg, #fff 30%, hsl(var(--primary)) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Glassmorphism utility */
.glass {
	background: rgba(16, 26, 36, 0.65);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header styling */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	z-index: 100;
	display: flex;
	align-items: center;
	transition: background 0.3s ease, border-color 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.site-header.scrolled {
	background: rgba(8, 15, 22, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-serif);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.logo svg {
	fill: hsl(var(--primary));
}

.nav-menu {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-link {
	font-size: 15px;
	font-weight: 500;
	opacity: 0.85;
	position: relative;
	padding: 6px 0;
}

.nav-link:hover {
	opacity: 1;
	color: hsl(var(--primary));
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: hsl(var(--primary));
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.header-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.25);
	padding: 4px 10px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	color: hsl(var(--primary));
}

.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #fff;
	margin: 5px 0;
	transition: 0.3s;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 98;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.active {
	left: 0;
	opacity: 1;
}

/* Mobile Menu Drawer */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100%;
	background: hsl(var(--surface));
	border-left: 1px solid rgba(255, 255, 255, 0.05);
	z-index: 99;
	padding: 80px 24px 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	transition: right 0.3s ease;
}

.mobile-drawer.active {
	right: 0;
}

.mobile-nav-link {
	font-size: 18px;
	font-weight: 500;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover {
	color: hsl(var(--primary));
}

/* Hero Section */
.hero {
	position: relative;
	padding: 160px 0 60px;
	background-image: linear-gradient(180deg, rgba(8, 18, 26, 0.2) 0%, hsl(var(--background)) 100%), url('../images/hero-bg.webp?v=178653');
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}

.hero h1 {
	font-size: 52px;
	margin-bottom: 20px;
	letter-spacing: -1px;
}

.hero p {
	font-size: 18px;
	color: hsl(var(--text-muted));
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 500;
	color: hsl(var(--primary));
	margin-bottom: 24px;
}

/* Main Container */
.main-content {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 80px;
	width: 100%;
}

/* Showcase Section */
.showcase-section {
	margin-bottom: 60px;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.showcase-card {
	background: hsl(var(--surface-card));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.showcase-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
	pointer-events: none;
	z-index: 2;
}

.showcase-card:hover {
	transform: translateY(-8px);
	border-color: rgba(212, 175, 55, 0.25);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

.card-num {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 32px;
	height: 32px;
	background: rgba(8, 15, 22, 0.75);
	border: 1px solid rgba(212, 175, 55, 0.3);
	color: hsl(var(--primary));
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 700;
	font-size: 14px;
	z-index: 5;
}

.card-image-wrapper {
	position: relative;
	padding-top: 100%; /* 1:1 Aspect Ratio */
	overflow: hidden;
}

.card-image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.showcase-card:hover .card-image-wrapper img {
	transform: scale(1.05);
}

.card-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, hsl(var(--primary)) 0%, #f9d976 100%);
	color: #000;
	font-weight: 700;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 5;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.card-info {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
	z-index: 3;
}

.card-header-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
}

.card-title {
	font-size: 22px;
	font-family: var(--font-serif);
	color: #fff;
}

.card-rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.rating-value {
	font-weight: 700;
	font-size: 16px;
	color: hsl(var(--primary));
}

.stars-svg {
	fill: hsl(var(--primary));
	display: flex;
}

.card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 16px;
}

.tag {
	font-size: 11px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 3px 8px;
	border-radius: 4px;
	color: hsl(var(--text-muted));
}

.card-desc {
	font-size: 14px;
	color: hsl(var(--text-muted));
	margin-bottom: 24px;
	flex: 1;
	line-height: 1.5;
}

.card-actions {
	margin-top: auto;
}

.play-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
	background: linear-gradient(135deg, hsl(var(--primary)) 0%, #e5c05b 100%);
	color: #08121A;
	font-weight: 700;
	font-size: 15px;
	border: none;
	border-radius: var(--border-radius-md);
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
	position: relative;
	overflow: hidden;
}

.play-btn span {
	margin: 0;
	padding: 0;
}

.shdewenrhwer {
	position: absolute;
	z-index: -5;
	color: transparent;
}

.play-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
	opacity: 0.95;
}

.play-btn:active {
	transform: translateY(0);
}

/* Descriptive / SEO Content Sections */
.seo-section {
	padding: 40px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
}

.seo-text h2 {
	font-size: 32px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 12px;
}

.seo-text h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: hsl(var(--primary));
}

.seo-text p {
	color: hsl(var(--text-muted));
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.7;
}

.features-box {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: var(--border-radius-lg);
	padding: 30px;
	height: fit-content;
}

.features-box h3 {
	font-size: 22px;
	margin-bottom: 20px;
	font-family: var(--font-serif);
	color: #fff;
}

.feature-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.feature-item {
	display: flex;
	gap: 12px;
	font-size: 14px;
	color: hsl(var(--text-muted));
	line-height: 1.5;
}

.feature-item svg {
	fill: hsl(var(--primary));
	flex-shrink: 0;
	margin-top: 3px;
}

/* FAQs Section */
.faq-section {
	margin-bottom: 60px;
}

.faq-section h2 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
}

.faq-grid {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-card {
	background: hsl(var(--surface));
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: var(--border-radius-md);
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.faq-card.active {
	border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.faq-icon {
	transition: transform 0.3s ease;
	stroke: hsl(var(--primary));
}

.faq-card.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease, padding 0.3s ease;
	padding: 0 24px;
	color: hsl(var(--text-muted));
	font-size: 15px;
	line-height: 1.6;
}

.faq-card.active .faq-answer {
	max-height: 1000px; /* large enough */
	opacity: 1;
	padding: 0 24px 20px;
	transition: max-height 0.3s cubic-bezier(0.5, 0, 1, 0), opacity 0.3s ease, padding 0.3s ease;
}

/* Responsible Gaming Guide */
.responsible-gaming {
	background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
	border: 1px solid rgba(212, 175, 55, 0.1);
	border-radius: var(--border-radius-lg);
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 60px;
}

.rg-icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid rgba(212, 175, 55, 0.2);
}

.rg-icon-wrapper svg {
	fill: hsl(var(--primary));
}

.rg-content h3 {
	font-size: 24px;
	margin-bottom: 12px;
	font-family: var(--font-serif);
}

.rg-content p {
	font-size: 14px;
	color: hsl(var(--text-muted));
	margin-bottom: 16px;
	line-height: 1.6;
}

.rg-helpline {
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
}

.rg-helpline span {
	color: hsl(var(--primary));
}

/* Footer styling */
.site-footer {
	background: #050a0f;
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	padding: 60px 0 30px;
	font-size: 14px;
	color: hsl(var(--text-muted));
}

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

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-about h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #fff;
}

.footer-about p {
	margin-bottom: 15px;
	line-height: 1.6;
}

.footer-links h4 {
	font-size: 18px;
	margin-bottom: 15px;
	color: #fff;
}

.footer-links-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.footer-link:hover {
	color: hsl(var(--primary));
}

.footer-bottom {
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-disclosures {
	display: flex;
	align-items: center;
	gap: 15px;
}

.age-limit-badge {
	border: 2px solid hsl(var(--danger));
	color: hsl(var(--danger));
	font-weight: 700;
	font-size: 14px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
}

.responsible-disclosure-text {
	max-width: 500px;
	font-size: 12px;
	line-height: 1.4;
}

/* 18+ Age Gate Modal */
.age-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(5, 10, 15);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.age-modal-dialog {
	max-width: 500px;
	width: 100%;
	background: hsl(var(--surface));
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: var(--border-radius-lg);
	padding: 40px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.05);
	position: relative;
}

.age-modal-dialog::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, hsl(var(--primary)) 0%, #e5c05b 100%);
	border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.age-modal-badge {
	width: 60px;
	height: 60px;
	border: 3px solid hsl(var(--danger));
	color: hsl(var(--danger));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	margin: 0 auto 24px;
}

.age-modal-dialog h2 {
	font-size: 28px;
	margin-bottom: 16px;
}

.age-modal-dialog p {
	color: hsl(var(--text-muted));
	font-size: 15px;
	margin-bottom: 30px;
	line-height: 1.6;
}

.age-modal-actions {
	display: flex;
	gap: 16px;
}

.age-btn {
	flex: 1;
	padding: 14px;
	border-radius: var(--border-radius-md);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	border: none;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.age-btn-accept {
	background: linear-gradient(135deg, hsl(var(--primary)) 0%, #e5c05b 100%);
	color: #050a0f;
}

.age-btn-accept:hover {
	opacity: 0.95;
}

.age-btn-decline {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-btn-decline:hover {
	background: rgba(255, 255, 255, 0.1);
}

.age-error-msg {
	display: none;
	flex-direction: column;
	align-items: center;
	animation: fadeIn 0.3s ease;
}

.age-error-msg svg {
	fill: hsl(var(--danger));
	margin-bottom: 16px;
}

.age-error-msg h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 8px;
}

.age-error-msg p {
	margin-bottom: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
	position: fixed;
	bottom: 24px;
	right: 24px;
	max-width: 400px;
	width: calc(100% - 48px);
	background: rgba(16, 26, 36, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--border-radius-lg);
	padding: 24px;
	z-index: 900;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
	display: none;
	flex-direction: column;
	gap: 16px;
	animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-content h4 {
	font-size: 16px;
	margin-bottom: 6px;
	font-family: var(--font-sans);
	font-weight: 600;
}

.cookie-content p {
	font-size: 13px;
	color: hsl(var(--text-muted));
	line-height: 1.5;
}

.cookie-actions {
	display: flex;
	gap: 12px;
}

.cookie-btn {
	flex: 1;
	padding: 10px;
	border-radius: var(--border-radius-sm);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.cookie-btn-accept {
	background: hsl(var(--primary));
	color: #050a0f;
}

.cookie-btn-accept:hover {
	opacity: 0.9;
}

.cookie-btn-settings {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { transform: translateY(40px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 1199px) {
	.showcase-grid {
		gap: 20px;
	}
}

@media (max-width: 991px) {
	.showcase-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.hero h1 {
		font-size: 40px;
	}
	
	.seo-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.footer-top {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.responsible-gaming {
		flex-direction: column;
		text-align: center;
		padding: 30px;
		gap: 20px;
	}
}

@media (max-width: 767px) {
	:root {
		--header-height: 64px;
	}
	
	.hamburger {
		display: block;
	}
	
	.nav-menu {
		display: none;
	}
	
	.hero {
		padding: 110px 0 40px;
	}
	
	.hero h1 {
		font-size: 28px;
		line-height: 1.3;
	}
	
	.hero p {
		font-size: 14px;
		margin-bottom: 24px;
	}
	
	.showcase-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.showcase-section {
		margin-bottom: 30px;
	}
	
	/* Mobile Specific: Collapse descriptive text section initially */
	.mobile-collapsed {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		transition: max-height 1.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease;
		border-top: none;
		padding-top: 0;
	}
	
	.mobile-collapsed.is-expanded {
		max-height: 10000px;
		opacity: 1;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding-top: 30px;
		margin-top: 30px;
	}
	
	.faq-question {
		font-size: 16px;
		padding: 16px 20px;
	}
	
	.faq-answer {
		font-size: 14px;
	}
	
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.footer-disclosures {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.cookie-banner {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: calc(100% - 24px);
		padding: 16px;
	}
	
	.age-modal-dialog {
		padding: 30px 20px;
	}
	
	.age-modal-dialog h2 {
		font-size: 22px;
	}
	
	.age-modal-dialog p {
		font-size: 14px;
	}
	
	.age-modal-actions {
		flex-direction: column;
		gap: 10px;
	}
	
	.age-btn {
		width: 100%;
	}
}

/* Responsive adjustments for 2-column cards layout on screens under 700px */
@media (max-width: 700px) {
	.hero {
		padding-bottom: 0;
	}

	.main-content {
		padding: 0 10px 40px;
	}
	
	.showcase-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	
	.showcase-card {
		border-radius: var(--border-radius-md);
	}
	
	.card-num {
		top: 6px;
		left: 6px;
		width: 18px;
		height: 18px;
		font-size: 9px;
	}
	
	.card-badge {
		top: 6px;
		right: 6px;
		padding: 1px 4px;
		font-size: 8px;
	}
	
	.card-image-wrapper {
		padding-top: 48%;
	}
	
	.card-info {
		padding: 8px;
	}
	
	.card-header-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		margin-bottom: 4px;
	}
	
	.card-title {
		font-size: 13px;
		line-height: 1.2;
	}
	
	.card-rating {
		gap: 3px;
	}
	
	.rating-value {
		font-size: 11px;
	}
	
	.stars-svg svg {
		width: 8px;
		height: 8px;
	}
	
	.card-tags {
		gap: 3px;
		margin-bottom: 8px;
	}
	
	.tag {
		font-size: 8px;
		padding: 1px 4px;
	}
	
	.card-desc {
		display: none; /* Hide description to make cards extremely compact */
	}
	
	.play-btn {
		padding: 6px;
		font-size: 11px;
		border-radius: var(--border-radius-sm);
	}
}

/* Micro-adjustments for very small screens to prevent overflow and keep text readable */
@media (max-width: 480px) {
	.main-content {
		padding: 0 6px 30px;
	}
	
	.showcase-grid {
		gap: 6px;
	}
	
	.card-num {
		top: 4px;
		left: 4px;
		width: 16px;
		height: 16px;
		font-size: 8px;
	}
	
	.card-badge {
		top: 4px;
		right: 4px;
		padding: 1px 3px;
		font-size: 7px;
	}
	
	.card-info {
		padding: 6px;
	}
	
	.card-title {
		font-size: 11px;
	}
	
	.tag {
		font-size: 7px;
		padding: 1px 3px;
	}
	
	.play-btn {
		padding: 5px;
		font-size: 10px;
	}
}


