@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
	/* Premium Emerald & Champagne Gold Palette */
	--bg-dark: 158 55% 4%; /* Obsidian Emerald Green */
	--bg-surface: 158 40% 7%; /* Deep Rich Jade */
	--bg-card: 158 28% 11%; /* Dark Forest Velvet */
	--text-primary: 0 0% 100%;
	--text-secondary: 158 15% 78%; /* Soft Sage Text */
	--text-muted: 158 10% 55%;
	
	/* Branding accents */
	--primary: 145 82% 48%; /* Radiant Neon Mint / Jade */
	--primary-hover: 145 82% 40%;
	--primary-glow: hsla(145, 82%, 48%, 0.15);
	
	--accent-gold: 38 78% 62%; /* Warm Champagne Gold / Bronze */
	--accent-gold-hover: 38 78% 54%;
	--accent-gold-glow: hsla(38, 78%, 62%, 0.15);
	
	--success: 142 75% 45%;
	--danger: 350 85% 50%;
	--border-color: 158 22% 14%;
	--border-hover: 158 22% 24%;
	
	--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));
	background-image: 
		radial-gradient(circle at 10% 20%, hsla(var(--primary), 0.03) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, hsla(var(--accent-gold), 0.03) 0%, transparent 40%);
	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, select {
	font-family: inherit;
}

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

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

.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 - Modern Pill Navigation */
.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.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.site-header.scrolled {
	height: 70px;
	background: rgba(4, 10, 8, 0.85);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(24, 240, 139, 0.12);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

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

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

.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)), hsl(var(--accent-gold)));
	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(24, 240, 139, 0.08);
	border: 1px solid rgba(24, 240, 139, 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.85);
	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.16, 1, 0.3, 1);
	box-shadow: -10px 0 40px rgba(0,0,0,0.6);
}

.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 - Centered Glassmorphic Apple-style Layout */
.hero-event {
	position: relative;
	min-height: 95vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: radial-gradient(circle at 50% 10%, rgba(24, 240, 139, 0.05) 0%, transparent 60%),
	            hsl(var(--bg-dark));
	color: hsl(var(--text-primary));
}

.hero__inner {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 8rem 2rem 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4rem;
}

.hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 850px;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-title);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: hsl(var(--primary));
	background: hsla(var(--primary), 0.06);
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius-full);
	margin-bottom: 2rem;
	border: 1px solid hsla(var(--primary), 0.15);
}

.hero__eyebrow-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: hsl(var(--primary));
	box-shadow: 0 0 10px hsl(var(--primary));
	animation: pulse-gold-event 2s infinite;
}

@keyframes pulse-gold-event {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(1.3); }
}

.hero__title {
	font-family: var(--font-title);
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: -0.02em;
	color: hsl(var(--text-primary));
}

.hero__title em {
	font-style: normal;
	font-weight: 700;
	background: linear-gradient(135deg, hsl(var(--accent-gold)) 0%, #fff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	font-size: 0.85em;
	margin-top: 0.5rem;
}

.hero__title strong {
	font-weight: 900;
	background: linear-gradient(135deg, #FFFFFF 30%, hsl(var(--primary)) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero__desc {
	font-size: 1.15rem;
	color: hsl(var(--text-secondary));
	max-width: 680px;
	margin-bottom: 3rem;
	line-height: 1.75;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 3rem;
	justify-content: center;
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 2rem;
	justify-content: center;
	width: 100%;
}

.hero__trust-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: hsl(var(--text-secondary));
}

.hero__trust-icon {
	color: hsl(var(--accent-gold));
	font-size: 1.1rem;
}

/* Hero Centered Showcase Image Frame */
.hero__visual {
	position: relative;
	width: 100%;
	max-width: 800px;
	aspect-ratio: 16/10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero__visual::after {
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	background: radial-gradient(circle, hsla(var(--primary), 0.12) 0%, transparent 70%);
	filter: blur(50px);
	z-index: 1;
	pointer-events: none;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(24, 240, 139, 0.2);
	overflow: hidden;
	box-shadow: 
		0 30px 80px rgba(0, 0, 0, 0.7),
		inset 0 0 20px rgba(255, 255, 255, 0.02);
	z-index: 2;
}

.hero-carousel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hero__badge-vip, .hero__badge-wallet {
	position: absolute;
	background: rgba(10, 20, 16, 0.8);
	border: 1px solid hsla(var(--accent-gold), 0.3);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	padding: 0.85rem 1.5rem;
	border-radius: var(--radius-md);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: all 0.3s ease;
}

.hero__badge-vip:hover, .hero__badge-wallet:hover {
	border-color: hsl(var(--primary));
	transform: scale(1.05);
}

.hero__badge-vip {
	top: -2rem;
	right: -1rem;
	animation: floatBadgeEvent 4s ease-in-out infinite;
}

.hero__badge-wallet {
	bottom: -2rem;
	left: -1rem;
	animation: floatBadgeEvent 4s ease-in-out infinite;
	animation-delay: 2s;
}

.hero__badge-title {
	font-family: var(--font-body);
	font-size: 0.7rem;
	color: hsl(var(--text-muted));
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.hero__badge-value {
	font-family: var(--font-title);
	font-size: 1.15rem;
	color: #fff;
	font-weight: 700;
	margin-top: 0.2rem;
}

.hero__badge-value--primary {
	color: hsl(var(--accent-gold));
}

@keyframes floatBadgeEvent {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.info-strip {
	background: hsla(var(--primary), 0.03);
	border: 1px solid rgba(24, 240, 139, 0.1);
	padding: 1.25rem 2rem;
	text-align: center;
	font-size: 0.9rem;
	color: hsl(var(--text-secondary));
	max-width: 1200px;
	margin: 2rem auto;
	border-radius: var(--radius-md);
}

/* Event Content Sections */
.main-content {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 100px;
	width: 100%;
}

.event-section {
	padding: 7rem 0;
	width: 100%;
}

.section-header {
	text-align: center;
	margin-bottom: 5rem;
	padding: 0 1rem;
}

.section-header__label {
	display: inline-block;
	font-family: var(--font-title);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: hsl(var(--primary));
	margin-bottom: 1.25rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid hsl(var(--primary));
}

.section-header__title {
	font-family: var(--font-title);
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	margin-bottom: 1.25rem;
	color: #fff;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.section-header__title em {
	font-style: italic;
	font-weight: 400;
	color: hsl(var(--accent-gold));
}

.section-header__desc {
	max-width: 620px;
	margin: 0 auto;
	color: hsl(var(--text-secondary));
	font-size: 1.05rem;
	line-height: 1.6;
}

/* Grid abstractions */
.grid {
	display: grid;
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Alternating Horizontal Layout for place-cards on Desktop */
@media (min-width: 851px) {
	#featured-events .grid--3 {
		display: flex;
		flex-direction: column;
		gap: 4.5rem;
	}
	
	#featured-events .place-card {
		display: grid;
		grid-template-columns: 1.2fr 1fr;
		grid-template-areas: "card-img card-content";
		align-items: stretch;
		border-radius: var(--radius-lg);
		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.04);
		overflow: hidden;
		min-height: 380px;
	}
	
	#featured-events .place-card:nth-child(even) {
		grid-template-columns: 1fr 1.2fr;
		grid-template-areas: "card-content card-img";
	}
	
	#featured-events .place-card__img-wrapper {
		grid-area: card-img;
		height: 100%;
		border-radius: 0;
	}
	
	#featured-events .place-card__content {
		grid-area: card-content;
		padding: 3.5rem 3rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/* Place Cards Styling */
.place-card {
	background: hsl(var(--bg-card));
	border: 1px solid hsl(var(--border-color));
	border-radius: var(--radius-md);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.place-card:hover {
	transform: translateY(-6px);
	border-color: rgba(24, 240, 139, 0.25);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(24, 240, 139, 0.06);
}

.place-card__img-wrapper {
	position: relative;
	height: 240px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
}

.place-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.place-card:hover .place-card__img {
	transform: scale(1.05);
}

.place-card__badge {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	background: rgba(4, 10, 8, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: hsl(var(--primary));
	border: 1px solid rgba(24, 240, 139, 0.25);
	padding: 0.45rem 1.15rem;
	border-radius: var(--radius-full);
	font-family: var(--font-title);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	z-index: 3;
}

.place-card__rating {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: rgba(4, 10, 8, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.45rem 0.9rem;
	border-radius: var(--radius-full);
	font-family: var(--font-title);
	font-size: 0.78rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	z-index: 3;
}

.place-card__rating-star {
	color: hsl(var(--accent-gold));
}

.place-card__content {
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.place-card__title {
	font-family: var(--font-title);
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.85rem;
}

.place-card__desc {
	color: hsl(var(--text-secondary));
	font-size: 0.95rem;
	line-height: 1.65;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.place-card__amenities {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
}

.place-card__amenity {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid hsl(var(--border-color));
	padding: 0.35rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.72rem;
	font-weight: 600;
	color: hsl(var(--text-secondary));
}

.place-card__footer {
	display: flex;
	gap: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	padding-top: 1.5rem;
	margin-top: auto;
}

/* Feature/Why Us Card */
.card--feature {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
	border: 1px solid rgba(24, 240, 139, 0.05);
	border-left: 4px solid hsl(var(--primary));
	padding: 2.5rem;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	border-radius: var(--radius-md);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card--feature:hover {
	transform: translateY(-5px);
	border-color: rgba(24, 240, 139, 0.2);
	border-left-color: hsl(var(--accent-gold));
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(24, 240, 139, 0.06);
}

.card--feature .card__icon {
	width: 56px;
	height: 56px;
	background: rgba(24, 240, 139, 0.05);
	border: 1px solid rgba(24, 240, 139, 0.15);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: hsl(var(--primary));
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.card--feature:hover .card__icon {
	transform: scale(1.1) rotate(-6deg);
	color: hsl(var(--accent-gold));
	background: rgba(229, 169, 77, 0.05);
	border-color: rgba(229, 169, 77, 0.15);
}

.card__title {
	font-family: var(--font-title);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #fff;
}

.card__desc {
	color: hsl(var(--text-secondary));
	font-size: 0.95rem;
	line-height: 1.65;
}

/* Destination Card */
.dest-card {
	position: relative;
	height: 380px;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card:hover {
	transform: translateY(-8px);
	border-color: rgba(24, 240, 139, 0.25);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.5),
		0 0 25px rgba(24, 240, 139, 0.08);
}

.dest-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card:hover .dest-card__img {
	transform: scale(1.08);
}

.dest-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(4, 10, 8, 0.95) 10%, rgba(4, 10, 8, 0.4) 50%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.25rem 2rem;
	transition: all 0.4s ease;
}

.dest-card:hover .dest-card__overlay {
	background: linear-gradient(0deg, rgba(4, 10, 8, 0.98) 15%, rgba(4, 10, 8, 0.55) 55%, transparent 100%);
}

.dest-card__title {
	font-family: var(--font-title);
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 0.5rem;
	font-weight: 800;
	transition: color 0.3s ease;
}

.dest-card:hover .dest-card__title {
	color: hsl(var(--accent-gold));
}

.dest-card__tagline {
	color: hsl(var(--text-secondary));
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.dest-card__meta {
	font-family: var(--font-title);
	font-size: 0.8rem;
	color: hsl(var(--primary));
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
}

/* FAQ Accordion Styling */
.faq-section {
	margin-bottom: 80px;
}

.faq-list {
	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.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card.active {
	border-color: rgba(24, 240, 139, 0.25);
	box-shadow: 
		0 10px 30px rgba(0, 0, 0, 0.3),
		0 0 20px rgba(24, 240, 139, 0.04);
}

.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-question:hover {
	color: hsl(var(--primary));
}

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

.faq-card.active .faq-icon {
	transform: rotate(180deg);
	stroke: hsl(var(--accent-gold));
}

.faq-answer-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.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;
	border-top: 1px solid rgba(255, 255, 255, 0.02);
	padding-top: 16px;
}

/* Contact Grid Layout */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info__item {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 2.25rem;
	background: rgba(255, 255, 255, 0.01);
	padding: 1.5rem;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.02);
	transition: all 0.3s ease;
}

.contact-info__item:hover {
	border-color: rgba(24, 240, 139, 0.15);
	background: rgba(24, 240, 139, 0.01);
}

.contact-info__icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-sm);
	background: rgba(24, 240, 139, 0.05);
	border: 1px solid rgba(24, 240, 139, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: hsl(var(--primary));
	transition: all 0.3s ease;
}

.contact-info__item:hover .contact-info__icon {
	color: hsl(var(--accent-gold));
	border-color: rgba(229, 169, 77, 0.2);
	background: rgba(229, 169, 77, 0.05);
}

.contact-info__label {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.25rem;
	color: hsl(var(--text-muted));
}

.contact-info__value {
	font-size: 1rem;
	color: #fff;
	margin: 0;
	font-weight: 500;
	word-break: break-word;
	overflow-wrap: break-word;
}

.contact-info__value a {
	transition: color 0.2s ease;
}

.contact-info__value a:hover {
	color: hsl(var(--primary));
}

.contact-form-wrap {
	background: hsl(var(--bg-card));
	border: 1px solid hsl(var(--border-color));
	padding: 3.5rem;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Contact page specific containers */
.contact-container {
	max-width: 850px;
	margin: 0 auto;
	padding: 40px 24px 100px;
	width: 100%;
}

.contact-card {
	background: hsl(var(--bg-card));
	border: 1px solid hsl(var(--border-color));
	padding: 3.5rem;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.95rem 2.25rem;
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--radius-full);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-hover)) 100%);
	color: #040a08 !important;
	box-shadow: 0 4px 16px hsla(var(--primary), 0.25);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px hsla(var(--primary), 0.4);
}

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

.form-group label {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

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

.form-control:focus {
	outline: none;
	border-color: hsl(var(--primary));
	box-shadow: 0 0 12px rgba(24, 240, 139, 0.15);
	background: rgba(4, 10, 8, 0.6);
}

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

select.form-control {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2318f08b%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-position: right 18px center;
	background-size: 12px;
	padding-right: 40px;
	cursor: pointer;
}

select.form-control option {
	background-color: #030806;
	color: #fff;
}

.success-msg {
	display: none;
	padding: 1.5rem;
	background: rgba(24, 240, 139, 0.05);
	border: 1px solid hsl(var(--primary));
	border-radius: var(--radius-md);
	text-align: center;
	color: #FFF;
	margin-top: 1.5rem;
	font-weight: 500;
	font-size: 15px;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 2.25rem;
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--radius-full);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}

.btn--primary {
	background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-hover)) 100%);
	color: #040a08 !important;
	box-shadow: 0 4px 16px hsla(var(--primary), 0.25);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px hsla(var(--primary), 0.45);
	filter: brightness(1.1);
}

.btn--secondary {
	background: transparent;
	color: hsl(var(--primary)) !important;
	border-color: hsla(var(--primary), 0.4);
}

.btn--secondary:hover {
	background: hsla(var(--primary), 0.08);
	border-color: hsl(var(--primary));
	transform: translateY(-2px);
}

.btn--sm {
	padding: 0.65rem 1.5rem;
	font-size: 0.8rem;
}

/* Footer Section */
.site-footer {
	background: #020604;
	border-top: 1px solid hsl(var(--border-color));
	padding: 80px 0 40px;
	font-size: 14.5px;
	color: hsl(var(--text-secondary));
}

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

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

.footer-about h3 {
	font-size: 19px;
	margin-bottom: 20px;
	color: #fff;
}

.footer-about p {
	margin-bottom: 16px;
	line-height: 1.7;
}

.footer-links h3 {
	font-size: 19px;
	margin-bottom: 20px;
	color: #fff;
}

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

.footer-link {
	color: hsl(var(--text-secondary));
}

.footer-link:hover {
	color: hsl(var(--primary));
	padding-left: 6px;
}

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

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

.age-limit-badge {
	border: 2px solid hsl(var(--danger));
	color: hsl(var(--danger));
	font-weight: 800;
	font-size: 14px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-full);
	flex-shrink: 0;
	box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
}

.responsible-disclosure-text {
	max-width: 550px;
	font-size: 12.5px;
	line-height: 1.5;
	color: hsl(var(--text-muted));
}

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

/* Cookie Consent Banner */
.cookie-banner {
	position: fixed;
	bottom: 30px;
	right: 30px;
	max-width: 420px;
	z-index: 150;
	background: rgba(10, 20, 16, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(24, 240, 139, 0.15);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	display: none;
	flex-direction: column;
	gap: 20px;
	animation: slideUp 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.cookie-content h3 {
	font-size: 19px;
	margin-bottom: 8px;
	color: #fff;
}

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

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

.cookie-btn {
	flex: 1;
	padding: 12px;
	border-radius: var(--radius-md);
	font-weight: 700;
	font-size: 14.5px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	font-family: var(--font-title);
}

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

.cookie-btn-accept:hover {
	filter: brightness(1.1);
}

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

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

/* 18+ Age Gate Modal */
.age-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(2, 6, 4, 0.9);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	z-index: 1000;
	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);
	max-width: 500px;
	width: 100%;
	padding: 44px;
	text-align: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
	animation: modalScale 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	overflow: hidden;
}

@keyframes modalScale {
	from {
		transform: scale(0.95);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

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

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

.age-modal h2 {
	font-size: 30px;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

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

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

.age-btn {
	flex: 1;
	padding: 14px 20px;
	border-radius: var(--radius-md);
	font-weight: 700;
	font-size: 15.5px;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
	font-family: var(--font-title);
}

.age-btn-accept {
	background: hsl(var(--primary));
	color: #040a08;
	border: none;
	box-shadow: 0 4px 15px rgba(24, 240, 139, 0.2);
}

.age-btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(24, 240, 139, 0.4);
	filter: brightness(1.1);
}

.age-btn-decline {
	background: rgba(255, 255, 255, 0.03);
	color: hsl(var(--text-secondary));
	border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.age-error-msg {
	display: none;
	flex-direction: column;
	align-items: center;
}

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

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

/* Subpage styling (About, Contact, Policies) */
.subpage-hero {
	padding: 180px 0 60px;
	background: radial-gradient(circle at 50% 0%, rgba(24, 240, 139, 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.3);
}

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

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

/* Mobile-Only Casino Block Styles */
.mobile-only-casino-block {
	display: none;
	background: hsl(var(--bg-dark));
	padding: 60px 0 1000px 0;
}

.showcase-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 24px;
}

.showcase-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-lg);
	overflow: visible;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 24px 32px;
	gap: 32px;
	position: relative;
}

.showcase-card:hover {
	transform: translateY(-4px);
	border-color: rgba(24, 240, 139, 0.3);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.6),
		0 0 25px rgba(24, 240, 139, 0.08);
}

.card-num {
	position: absolute;
	top: -12px;
	left: -12px;
	width: 38px;
	height: 38px;
	background: linear-gradient(135deg, hsl(var(--accent-gold)) 0%, hsl(var(--accent-gold-hover)) 100%);
	color: hsl(var(--bg-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 800;
	font-size: 16px;
	z-index: 10;
	border: 2px solid hsl(var(--bg-dark));
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.card-badge {
	position: absolute;
	top: -12px;
	right: 32px;
	background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-hover)) 100%);
	color: hsl(var(--bg-dark));
	font-weight: 800;
	font-size: 11px;
	padding: 4px 14px;
	border-radius: var(--radius-full);
	z-index: 5;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.card-image-wrapper {
	position: relative;
	width: 120px;
	height: 120px;
	flex-shrink: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.card-info {
	padding: 0;
	display: grid;
	grid-template-areas: 
		"header actions"
		"desc actions";
	grid-template-columns: 1fr 200px;
	gap: 12px 30px;
	align-items: center;
	flex: 1;
	position: relative;
	z-index: 3;
}

.card-header-row {
	grid-area: header;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}

.card-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

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

.rating-value {
	font-weight: 800;
	font-size: 16px;
	color: hsl(var(--accent-gold));
}

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

.card-tags {
	grid-area: tags;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

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

.card-desc {
	grid-area: desc;
	font-size: 14px;
	color: hsl(var(--text-secondary));
	margin-bottom: 0;
	line-height: 1.6;
}

.card-actions {
	grid-area: actions;
	width: 100%;
}

.play-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 13px;
	background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
	color: #040a08 !important;
	font-weight: 800;
	font-size: 15px;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 0 15px rgba(0, 255, 135, 0.4);
	position: relative;
	overflow: hidden;
	animation: pulseGlow 2s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 8px rgba(0, 255, 135, 0.4), 0 0 0 0px rgba(0, 255, 135, 0.3);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 0 20px rgba(0, 255, 135, 0.7), 0 0 0 6px rgba(0, 255, 135, 0);
		transform: scale(1.025);
	}
	100% {
		box-shadow: 0 0 8px rgba(0, 255, 135, 0.4), 0 0 0 0px rgba(0, 255, 135, 0.3);
		transform: scale(1);
	}
}

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

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

.play-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 25px rgba(0, 255, 135, 0.9);
	background: linear-gradient(135deg, #60efff 0%, #00ff87 100%);
	filter: brightness(1.15);
}

/* Mobile Collapsed / Expandable Container */
.mobile-collapsed {
	max-height: none;
	opacity: 1;
	overflow: visible;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

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

@media (max-width: 800px) {
	:root {
		--header-height: 70px;
	}
	
	.nav-menu {
		display: none;
	}
	
	.hamburger {
		display: block;
	}
	
	.site-header {
		background: rgba(4, 10, 8, 0.9);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
	}
	
	.mobile-only-casino-block {
		display: block !important;
		padding-top: calc(var(--header-height) + 30px) !important;
		padding-bottom: 1000px !important;
	}
	
	.mobile-only-casino-block .section-header__desc {
		display: none !important;
	}
	
	.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, padding-top 1s ease;
		border-top: none;
		padding-top: 0;
	}
	
	.mobile-collapsed.is-expanded {
		max-height: 30000px !important;
		opacity: 1 !important;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding-top: 60px !important;
		margin-top: 30px;
		overflow: visible !important;
	}
	
	.showcase-grid {
		gap: 16px;
	}
	
	.showcase-card {
		display: grid;
		grid-template-columns: 80px 1fr;
		grid-template-rows: auto auto auto;
		padding: 18px;
		gap: 12px 18px;
		border-radius: var(--radius-md);
		align-items: center;
	}
	
	.card-image-wrapper {
		grid-column: 1;
		grid-row: 1 / span 2;
		width: 80px;
		height: 80px;
		border-radius: var(--radius-sm);
		align-self: start;
	}
	
	.card-info {
		display: contents;
	}
	
	.card-header-row {
		grid-area: auto;
		grid-column: 2;
		grid-row: 1;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		gap: 8px;
	}
	
	.card-title {
		font-size: 17px;
	}
	
	.card-rating {
		gap: 4px;
	}
	
	.rating-value {
		font-size: 14px;
	}
	
	.stars-svg svg {
		width: 11px;
		height: 11px;
	}
	
	.card-tags {
		display: none;
	}
	
	.tag {
		font-size: 9px;
		padding: 2px 6px;
	}
	
	.card-desc {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		grid-area: auto;
		grid-column: 2;
		grid-row: 2;
		font-size: 13px;
		line-height: 1.5;
		color: hsl(var(--text-secondary));
		margin: 4px 0 0 0;
		align-self: start;
	}
	
	.card-actions {
		grid-area: auto;
		grid-column: 1 / span 2;
		grid-row: 3;
		margin-top: 4px;
		width: 100%;
	}
	
	.play-btn {
		width: 100%;
		padding: 11px;
		font-size: 13.5px;
	}

	.hero-event {
		padding: 100px 0 20px;
		min-height: auto;
	}
	
	.hero__inner {
		padding: 4rem 1.5rem;
		gap: 2.5rem;
	}
	
	.hero__visual {
		display: none; /* Hide visual on mobile to keep layout compact */
	}
	
	.grid--2, .grid--3, .grid--4 {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.place-card__img-wrapper {
		height: 200px;
	}
	
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	.contact-info__item {
		padding: 1.25rem;
		gap: 1rem;
	}
	
	.contact-form-wrap {
		padding: 2rem;
	}

	.contact-container {
		padding: 20px 16px 60px;
	}
	
	.contact-card {
		padding: 2rem;
	}
	
	.form-group-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.footer-disclosures {
		flex-direction: column;
		gap: 12px;
	}
	
	.cookie-banner {
		left: 15px;
		right: 15px;
		bottom: 15px;
		max-width: calc(100% - 30px);
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.main-content {
		padding: 0 12px 60px;
	}
	
	.section-header {
		margin-bottom: 3rem;
	}
	
	.place-card__content {
		padding: 1.5rem;
	}
	
	.card--feature {
		padding: 1.5rem;
		flex-direction: column;
		gap: 1rem;
	}
	
	.contact-form-wrap {
		padding: 1.25rem 1rem;
	}
	
	.contact-card {
		padding: 1.25rem 1rem;
	}
}
