:root {
	--bg-dark: 240 10% 4%; /* Deep obsidian black */
	--bg-surface: 240 10% 8%; /* Dark charcoal surface */
	--bg-card: 240 10% 12%; /* Card background */
	--text-primary: 0 0% 100%;
	--text-secondary: 240 5% 75%;
	--text-muted: 240 5% 55%;
	--primary: 43 100% 50%; /* Electric Gold */
	--primary-hover: 43 100% 42%;
	--primary-glow: hsla(43, 100%, 50%, 0.15);
	--success: 142 70% 45%;
	--danger: 350 80% 50%;
	--border-color: 240 6% 16%;
	--border-hover: 240 6% 26%;
	
	--font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	
	--header-height: 80px;
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-full: 9999px;
}

* {
	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(--bg-dark));
	color: hsl(var(--text-primary));
	font-family: var(--font-body);
	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: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: hsl(var(--bg-dark));
}
::-webkit-scrollbar-thumb {
	background: hsl(var(--border-color));
	border-radius: var(--radius-full);
	border: 2px solid hsl(var(--bg-dark));
}
::-webkit-scrollbar-thumb:hover {
	background: hsl(var(--text-muted));
}

/* Typography & Layout Headers */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

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

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

.site-header.scrolled {
	background: rgba(10, 10, 12, 0.75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 184, 0, 0.15);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.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: 12px;
	font-family: var(--font-title);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.logo svg {
	fill: hsl(var(--primary));
	filter: drop-shadow(0 0 8px hsla(var(--primary), 0.3));
}

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

.nav-link {
	font-size: 15px;
	font-weight: 500;
	color: hsl(var(--text-secondary));
	position: relative;
	padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
	color: #fff;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, hsl(var(--primary)), #ffda79);
	transition: width 0.3s ease;
	border-radius: var(--radius-full);
}

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

.header-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 184, 0, 0.08);
	border: 1px solid rgba(255, 184, 0, 0.2);
	padding: 6px 14px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 600;
	color: hsl(var(--primary));
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Hamburger menu button */
.hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 105;
}

.hamburger span {
	display: block;
	width: 26px;
	height: 2px;
	background-color: #fff;
	margin: 6px 0;
	transition: all 0.3s ease;
	border-radius: var(--radius-full);
}

.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu-backdrop {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 98;
	opacity: 0;
	transition: opacity 0.3s ease, left 0s 0.3s;
}

.mobile-menu-backdrop.active {
	left: 0;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.mobile-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background: hsl(var(--bg-surface));
	border-left: 1px solid hsl(var(--border-color));
	z-index: 99;
	padding: 100px 32px 40px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

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

.mobile-nav-link {
	font-family: var(--font-title);
	font-size: 20px;
	font-weight: 600;
	padding: 12px 0;
	color: hsl(var(--text-secondary));
	border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
	color: #fff;
	padding-left: 8px;
}

/* Hero Section */
.hero {
	position: relative;
	padding: 180px 0 85px;
	background: radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 40%),
	            radial-gradient(circle at 20% 80%, rgba(255, 184, 0, 0.06) 0%, transparent 45%),
	            hsl(var(--bg-dark));
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background: linear-gradient(180deg, transparent, hsl(var(--bg-dark)));
	pointer-events: none;
}

.hero-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
	z-index: 10;
	position: relative;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 8px 18px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 600;
	color: hsl(var(--primary));
	margin-bottom: 28px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero h1 {
	font-size: 62px;
	margin-bottom: 24px;
	letter-spacing: -1.5px;
	font-weight: 800;
}

.hero p {
	font-size: 19px;
	color: hsl(var(--text-secondary));
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.7;
	font-weight: 400;
}

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

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

.section-title {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	font-family: var(--font-title);
	margin-bottom: 48px;
	letter-spacing: -0.5px;
	text-align: center;
	position: relative;
}

.showcase-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	list-style: none;
}

/* Premium Plaque Design with Event Images */
.showcase-plaque {
	display: grid;
	grid-template-columns: 280px 1fr 180px;
	gap: 32px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	padding: 24px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.showcase-plaque::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 10% 50%, hsla(var(--brand-glow), 0.08) 0%, transparent 50%);
	pointer-events: none;
	opacity: 0.5;
	transition: opacity 0.4s ease;
}

.showcase-plaque:hover {
	transform: translateY(-5px);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-color: hsla(var(--brand-glow), 0.4);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px hsla(var(--brand-glow), 0.15);
}

.showcase-plaque:hover::before {
	opacity: 1;
}

/* Plaque Image Box */
.plaque-image-box {
	position: relative;
	height: 100%;
	min-height: 180px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: hsl(var(--bg-surface));
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.plaque-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-plaque:hover .plaque-img {
	transform: scale(1.06);
}

/* Rank & Badge on Image */
.plaque-rank-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
}

.plaque-num {
	width: 36px;
	height: 36px;
	background: rgba(10, 10, 12, 0.9);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1.5px solid hsla(var(--brand-glow), 0.6);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	font-weight: 800;
	font-size: 17px;
	font-family: var(--font-title);
	box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.plaque-top-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: linear-gradient(135deg, #fff 0%, hsl(var(--primary)) 100%);
	color: #000;
	font-weight: 800;
	font-size: 10px;
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 5;
}

/* Plaque Info Box */
.plaque-info-box {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
}

.plaque-header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.plaque-title {
	font-size: 24px;
	font-weight: 800;
	color: #fff;
	font-family: var(--font-title);
	letter-spacing: -0.5px;
}

.plaque-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 184, 0, 0.05);
	border: 1px solid rgba(255, 184, 0, 0.15);
	padding: 4px 10px;
	border-radius: var(--radius-sm);
}

.plaque-rating .rating-value {
	font-weight: 800;
	font-size: 14px;
	color: hsl(var(--primary));
}

.plaque-rating .stars-svg {
	fill: hsl(var(--primary));
	display: flex;
	gap: 2px;
}

.plaque-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.plaque-tags .tag {
	font-size: 11px;
	font-weight: 600;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 4px 10px;
	border-radius: var(--radius-sm);
	color: hsl(var(--text-secondary));
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

.plaque-desc {
	font-size: 14.5px;
	color: hsl(var(--text-secondary));
	line-height: 1.6;
}

/* Plaque Grid Details - Generator Associates style */
.plaque-details-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: var(--radius-md);
	padding: 12px 16px;
}

.detail-item {
	font-size: 13.5px;
	color: hsl(var(--text-secondary));
}

.detail-item strong {
	color: #fff;
	font-weight: 600;
}

/* Plaque Actions */
.plaque-actions-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.plaque-bonus-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.plaque-bonus-label {
	font-size: 11px;
	text-transform: uppercase;
	color: hsl(var(--text-muted));
	letter-spacing: 0.5px;
	font-weight: 600;
}

.plaque-bonus-value {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	font-family: var(--font-title);
	margin-top: 2px;
}

.play-btn-wrapper {
	position: relative;
	width: 100%;
}

.play-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14px 24px;
	background: var(--brand-color);
	color: #fff;
	font-weight: 800;
	font-size: 15px;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	position: relative;
	overflow: hidden;
	font-family: var(--font-title);
	letter-spacing: 0.5px;
	animation: btnPulse 2.2s infinite ease-in-out;
}

.play-btn span {
	z-index: 2;
}

.shdewenrhwer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -5;
	color: transparent;
	background: transparent;
}

.play-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	animation: shimmerSweep 3.5s infinite ease-in-out;
	z-index: 1;
}

.play-btn:hover {
	transform: translateY(-3px);
	filter: brightness(1.15);
}

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

/* Mobile Reveal Trigger (for Mobile View Collapse) */
.mobile-reveal-trigger {
	display: none;
}

/* Descriptive / SEO Content Sections Wrapper */
.seo-container-wrapper {
	width: 100%;
}

.seo-section {
	padding: 60px 0 0;
	border-top: 1px solid hsl(var(--border-color));
}

.seo-grid {
	display: grid;
	grid-template-columns: 1.8fr 1.2fr;
	gap: 60px;
	margin-bottom: 80px;
}

.seo-text h2 {
	font-size: 38px;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 16px;
	letter-spacing: -0.5px;
}

.seo-text h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, hsl(var(--primary)), transparent);
	border-radius: var(--radius-full);
}

.seo-text p {
	color: hsl(var(--text-secondary));
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.75;
}

.features-box {
	background: hsl(var(--bg-surface));
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-lg);
	padding: 36px;
	height: fit-content;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-box h3 {
	font-size: 24px;
	margin-bottom: 24px;
	font-family: var(--font-title);
	color: #fff;
	letter-spacing: -0.5px;
}

.feature-item-desc {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-item-desc p {
	font-size: 14.5px;
	color: hsl(var(--text-secondary));
	line-height: 1.6;
	margin: 0;
	position: relative;
	padding-left: 28px;
}

.feature-item-desc p::before {
	content: "✨";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
}

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

.faq-section h2 {
	font-size: 38px;
	text-align: center;
	margin-bottom: 40px;
	letter-spacing: -0.5px;
}

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

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

.faq-card.active {
	border-color: hsla(var(--primary), 0.3);
	box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

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

.faq-icon {
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	stroke: hsl(var(--primary));
	flex-shrink: 0;
}

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

/* Accordion transition */
.faq-answer-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.faq-card.active .faq-answer-wrapper {
	grid-template-rows: 1fr;
}

.faq-answer-content {
	overflow: hidden;
}

.faq-answer {
	padding: 0 28px 24px;
	color: hsl(var(--text-secondary));
	font-size: 15.5px;
	line-height: 1.7;
}

/* Responsible Gaming Banner */
.responsible-gaming {
	background: radial-gradient(circle at 5% 50%, rgba(255, 184, 0, 0.04) 0%, transparent 50%),
	            hsl(var(--bg-surface));
	border: 1px solid rgba(255, 184, 0, 0.15);
	border-radius: var(--radius-lg);
	padding: 44px;
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 80px;
	box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.rg-icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: var(--radius-full);
	background: rgba(255, 184, 0, 0.08);
	border: 1px solid rgba(255, 184, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: hsl(var(--primary));
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.rg-icon-wrapper svg {
	fill: currentColor;
}

.rg-content {
	flex: 1;
}

.rg-content h2 {
	font-size: 26px;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.rg-content p {
	color: hsl(var(--text-secondary));
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.rg-helpline {
	font-size: 14px;
	color: hsl(var(--text-muted));
	font-weight: 500;
}

.rg-helpline span {
	color: #fff;
	font-weight: 600;
}

/* Footer Component */
.site-footer {
	background: #070709;
	border-top: 1px solid hsl(var(--border-color));
	padding: 80px 0 40px;
	margin-top: auto;
}

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

.footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 80px;
	margin-bottom: 60px;
}

.footer-about h3, .footer-links h3 {
	font-size: 18px;
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-about p {
	color: hsl(var(--text-muted));
	font-size: 14px;
	line-height: 1.7;
	max-width: 540px;
}

.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.footer-link {
	font-size: 14.5px;
	color: hsl(var(--text-muted));
}

.footer-link:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.03);
	padding-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
}

.footer-disclosures {
	display: flex;
	gap: 20px;
	align-items: center;
	max-width: 800px;
}

.age-limit-badge {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	border: 2px solid hsl(var(--danger));
	color: hsl(var(--danger));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 15px;
	flex-shrink: 0;
}

.responsible-disclosure-text {
	font-size: 13px;
	color: hsl(var(--text-muted));
	line-height: 1.6;
	text-align: left;
}

.footer-bottom p {
	font-size: 13px;
	color: hsl(var(--text-muted));
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: 24px;
	max-width: 600px;
	background: rgba(15, 15, 18, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-md);
	padding: 24px;
	z-index: 95;
	display: none;
	flex-direction: column;
	gap: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	animation: slideUp 0.5s ease-out;
}

.cookie-content h3 {
	font-size: 18px;
	margin-bottom: 6px;
}

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

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

.cookie-btn {
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
}

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

.cookie-btn-accept:hover {
	background: hsl(var(--primary-hover));
}

.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);
}

/* 18+ Age Gate Modal */
.age-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(4, 4, 6, 0.95);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.age-modal-dialog {
	background: hsl(var(--bg-surface));
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-lg);
	padding: 48px;
	max-width: 520px;
	width: 100%;
	text-align: center;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
	animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.age-modal-badge {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-full);
	border: 3px solid hsl(var(--danger));
	color: hsl(var(--danger));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 24px;
	box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.age-modal h2 {
	font-size: 28px;
	letter-spacing: -0.5px;
}

.age-modal p {
	font-size: 15px;
	color: hsl(var(--text-secondary));
	line-height: 1.6;
}

.age-modal-actions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	width: 100%;
	margin-top: 10px;
}

.age-btn {
	padding: 14px 20px;
	border-radius: var(--radius-md);
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.25s ease;
	border: none;
	font-family: var(--font-title);
}

.age-btn-accept {
	background: hsl(var(--primary));
	color: #000;
}

.age-btn-accept:hover {
	background: hsl(var(--primary-hover));
	transform: translateY(-2px);
}

.age-btn-decline {
	background: rgba(239, 68, 68, 0.1);
	color: hsl(var(--danger));
	border: 1px solid rgba(239, 68, 68, 0.2);
}

.age-btn-decline:hover {
	background: rgba(239, 68, 68, 0.2);
}

.age-error-msg {
	display: none;
	color: #fff;
	max-width: 440px;
}

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

/* Subpage styling (About, Contact, Policies) */
.subpage-hero {
	padding: 160px 0 60px;
	background: radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.05) 0%, transparent 60%),
	            hsl(var(--bg-dark));
	text-align: center;
}

.subpage-hero h1 {
	font-size: 48px;
	margin-bottom: 16px;
	letter-spacing: -1px;
}

.subpage-hero p {
	color: hsl(var(--text-secondary));
	font-size: 17px;
	max-width: 650px;
	margin: 0 auto;
}

.subpage-content {
	max-width: 850px;
	margin: 0 auto;
	padding: 20px 24px 100px;
	width: 100%;
}

.subpage-card {
	background: hsl(var(--bg-surface));
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-lg);
	padding: 44px;
	margin-bottom: 36px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.subpage-card h2 {
	font-size: 28px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	padding-bottom: 14px;
	letter-spacing: -0.5px;
}

.subpage-card p {
	color: hsl(var(--text-secondary));
	font-size: 15.5px;
	margin-bottom: 20px;
	line-height: 1.75;
}

.subpage-card ul {
	margin-left: 24px;
	margin-bottom: 24px;
	color: hsl(var(--text-secondary));
	font-size: 15.5px;
}

.subpage-card li {
	margin-bottom: 12px;
	line-height: 1.6;
}

/* Contact page styling */
.contact-container {
	max-width: 650px;
	margin: 0 auto;
	padding: 20px 24px 100px;
	width: 100%;
}

.contact-card {
	background: hsl(var(--bg-surface));
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-lg);
	padding: 44px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-group-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-md);
	padding: 14px 18px;
	color: #fff;
	font-size: 15.5px;
	transition: all 0.2s ease;
	width: 100%;
}

.form-control:focus {
	outline: none;
	border-color: hsl(var(--primary));
	box-shadow: 0 0 12px rgba(255, 184, 0, 0.15);
	background: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
	resize: vertical;
	min-height: 140px;
}

.submit-btn {
	width: 100%;
	padding: 16px;
	background: hsl(var(--primary));
	color: #000;
	border: none;
	border-radius: var(--radius-md);
	font-weight: 800;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
	font-family: var(--font-title);
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
	filter: brightness(1.1);
}

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

.success-msg {
	display: none;
	text-align: center;
	padding: 24px;
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: #a7f3d0;
	border-radius: var(--radius-md);
	font-weight: 600;
	margin-top: 20px;
	animation: fadeIn 0.4s ease;
	line-height: 1.6;
}

/* Animations */
@keyframes slideUp {
	from { transform: translateY(50px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
	from { transform: scale(0.9); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

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

@keyframes btnPulse {
	0% {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 hsla(var(--brand-glow), 0.4);
	}
	50% {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 14px 6px hsla(var(--brand-glow), 0.65);
	}
	100% {
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 hsla(var(--brand-glow), 0);
	}
}

@keyframes shimmerSweep {
	0% {
		left: -100%;
	}
	30% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

/* RESPONSIVENESS AND COLLAPSIBLE MOBILE VIEW */
@media (min-width: 768px) {
	/* Ensure SEO/Description container is visible on desktop */
	.seo-container-wrapper {
		display: block !important;
		max-height: none !important;
		opacity: 1 !important;
		overflow: visible !important;
	}
}

@media (max-width: 1024px) {
	.showcase-plaque {
		grid-template-columns: 220px 1fr 160px;
		gap: 24px;
	}
	
	.hero h1 {
		font-size: 50px;
	}
	
	.seo-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 767px) {
	/* General Body Layout adjustments */
	:root {
		--header-height: 70px;
	}
	
	.nav-menu {
		display: none;
	}
	
	.hamburger {
		display: block;
	}
	
	.hero {
		padding: 120px 0 40px;
	}
	
	.hero h1 {
		font-size: 34px;
		letter-spacing: -0.5px;
	}
	
	.hero p {
		font-size: 15.5px;
	}
	
	.section-title {
		font-size: 24px;
		margin-bottom: 24px;
	}
	
	/* MOBILE COLLAPSE OF WEBSITE DESCRIPTION (SEO / FAQS / BANNER) */
	.seo-container-wrapper {
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		transition: max-height 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
	}
	
	.seo-container-wrapper.expanded {
		opacity: 1;
		/* Max-height is updated dynamically via JS scroll trigger, then set to none */
	}
	
	/* Mobile reveal trigger styled as scroll-indicator spacer */
	.mobile-reveal-trigger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 60px 24px 30px;
		text-align: center;
		color: hsl(var(--text-muted));
		font-size: 14px;
		gap: 12px;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	
	.mobile-reveal-trigger.hidden {
		display: none;
	}
	
	.reveal-line {
		width: 40px;
		height: 2px;
		background: rgba(255, 184, 0, 0.3);
		border-radius: var(--radius-full);
		animation: pulseLine 2s infinite ease-in-out;
	}
	
	.reveal-arrow {
		font-size: 20px;
		color: hsl(var(--primary));
		animation: bounceArrow 1.5s infinite;
	}
	
	@keyframes bounceArrow {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(6px); }
	}
	
	@keyframes pulseLine {
		0%, 100% { width: 40px; background: rgba(255, 184, 0, 0.3); }
		50% { width: 80px; background: rgba(255, 184, 0, 0.7); }
	}

	/* Showcase Plaque Mobile Restyling */
	.showcase-plaque {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}
	
	.plaque-image-box {
		height: 180px;
		min-height: auto;
	}
	
	.plaque-details-grid {
		grid-template-columns: 1fr;
		padding: 10px 14px;
	}
	
	.plaque-actions-box {
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding-top: 16px;
		margin-top: 4px;
	}
	
	.play-btn {
		width: 100%;
	}
	
	.responsible-gaming {
		flex-direction: column;
		gap: 24px;
		padding: 24px;
		text-align: center;
	}
	
	.rg-icon-wrapper {
		width: 60px;
		height: 60px;
	}
	
	.cookie-banner {
		bottom: 12px;
		left: 12px;
		right: 12px;
		padding: 16px;
	}
	
	.cookie-actions {
		width: 100%;
	}
	
	.cookie-btn {
		flex: 1;
		text-align: center;
	}
	
	.age-modal-dialog {
		padding: 32px 20px;
	}
	
	.age-modal h2 {
		font-size: 22px;
	}
	
	.age-modal-actions {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		padding-top: 24px;
	}
	
	.footer-disclosures {
		flex-direction: column;
		gap: 16px;
	}
	
	.responsible-disclosure-text {
		text-align: center;
	}
	
	.subpage-hero {
		padding: 120px 0 40px;
	}
	
	.subpage-hero h1 {
		font-size: 36px;
	}
	
	.subpage-card {
		padding: 24px;
	}
	
	.contact-card {
		padding: 24px;
	}
	
	.form-group-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* Two-column layout and tight paddings for screens below 700px */
@media (max-width: 700px) {
	.main-content {
		padding: 0 12px 20px;
	}
	
	.hero {
		padding: 95px 0 10px; /* Extremely tight padding to remove empty space */
	}
	
	.hero-container {
		padding: 0;
	}
	
	.hero h1 {
		font-size: 24px !important;
		margin-bottom: 6px;
	}
	
	.hero p {
		font-size: 13px !important;
		line-height: 1.45;
		margin-bottom: 0;
		padding: 0 8px;
	}
	
	.hero-badge {
		padding: 4px 8px;
		font-size: 11px;
		margin-bottom: 8px;
	}
	
	.section-title {
		font-size: 18px !important;
		margin-top: 10px;
		margin-bottom: 16px;
	}

	.showcase-list {
		display: grid;
		grid-template-columns: 1fr 1fr; /* 2-column grid layout */
		gap: 10px;
	}
	
	.showcase-plaque {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto 1fr;
		gap: 8px;
		padding: 10px;
		border-radius: var(--radius-md);
	}
	
	.plaque-image-box {
		height: 100px;
		min-height: auto;
	}
	
	.plaque-top-badge {
		padding: 2px 5px;
		font-size: 8px;
		top: 6px;
		right: 6px;
		bottom: auto;
		left: auto;
		box-shadow: 0 2px 6px rgba(255, 184, 0, 0.3);
		letter-spacing: 0.2px;
	}
	
	.plaque-rank-badge {
		top: 6px;
		left: 6px;
	}
	
	.plaque-num {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}
	
	.plaque-title {
		font-size: 13px !important;
		margin-bottom: 2px;
		line-height: 1.25;
	}
	
	.plaque-rating {
		font-size: 11px;
		padding: 1px 4px;
	}
	
	.plaque-tags {
		display: none !important;
	}
	
	.plaque-desc {
		display: none !important;
	}
	
	.plaque-details-grid {
		grid-template-columns: 1fr;
		gap: 2px;
		padding: 0;
		border: none;
		background: transparent;
		font-size: 11px;
	}
	
	.detail-item {
		padding: 1px 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	
	.plaque-actions-box {
		border-top: none;
		padding-top: 0;
		margin-top: 4px;
		display: flex;
		flex-direction: column;
		gap: 6px;
		justify-content: flex-end;
	}
	
	.plaque-bonus-box {
		padding: 2px 4px;
		font-size: 10px;
		text-align: center;
	}
	
	.play-btn {
		width: 100%;
		padding: 8px 10px;
		font-size: 12px;
	}
	
	.subpage-hero {
		padding: 95px 0 10px;
	}
	
	.subpage-hero h1 {
		font-size: 26px !important;
	}
	
	.subpage-card {
		padding: 16px;
		margin-top: 10px;
	}
	
	.contact-card {
		padding: 16px;
	}
}

