/* Play Unity Games - New Zealand Social Gaming Platform */

/* CSS Variables - Modern Blue/Cyan & Orange Color Palette */
:root {
	--playunitygames-primary: #0ea5e9;
	--playunitygames-primary-dark: #0284c7;
	--playunitygames-primary-light: #38bdf8;
	--playunitygames-secondary: #f97316;
	--playunitygames-accent: #22c55e;
	--playunitygames-success: #16a34a;
	--playunitygames-warning: #eab308;
	--playunitygames-error: #dc2626;

	--playunitygames-gray-50: #f8fafc;
	--playunitygames-gray-100: #f1f5f9;
	--playunitygames-gray-200: #e2e8f0;
	--playunitygames-gray-300: #cbd5e1;
	--playunitygames-gray-400: #94a3b8;
	--playunitygames-gray-500: #64748b;
	--playunitygames-gray-600: #475569;
	--playunitygames-gray-700: #334155;
	--playunitygames-gray-800: #1e293b;
	--playunitygames-gray-900: #0f172a;

	--playunitygames-white: #ffffff;
	--playunitygames-black: #000000;

	--playunitygames-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--playunitygames-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--playunitygames-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--playunitygames-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--playunitygames-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

	--playunitygames-gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
	--playunitygames-gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
	--playunitygames-gradient-hero: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
	--playunitygames-gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);

	--playunitygames-border-radius: 12px;
	--playunitygames-border-radius-lg: 16px;
	--playunitygames-border-radius-xl: 24px;

	--playunitygames-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;

	--playunitygames-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--playunitygames-transition-fast: all 0.15s ease;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--playunitygames-font-family);
	line-height: 1.6;
	color: var(--playunitygames-gray-700);
	background: var(--playunitygames-gray-50);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1rem;
	color: var(--playunitygames-gray-900);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

h1 { font-size: 2.5rem; letter-spacing: -0.025em; }
h2 { font-size: 2rem; letter-spacing: -0.02em; }
h3 { font-size: 1.625rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
	h1 { font-size: 1.875rem; }
	h2 { font-size: 1.625rem; }
	h3 { font-size: 1.375rem; }
	h4 { font-size: 1.125rem; }
}

p {
	margin-bottom: 1rem;
	color: var(--playunitygames-gray-600);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

a {
	color: var(--playunitygames-primary);
	text-decoration: none;
	transition: var(--playunitygames-transition-fast);
}

a:hover {
	color: var(--playunitygames-primary-dark);
	text-decoration: underline;
}

ul, ol {
	margin-bottom: 1rem;
	padding-left: 1.75rem;
}

li {
	margin-bottom: 0.5rem;
	color: var(--playunitygames-gray-600);
}

/* Container */
.playunitygames-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (max-width: 768px) {
	.playunitygames-container {
		padding: 0 1rem;
	}
}

/* Main Content */
.playunitygames-main {
	min-height: calc(100vh - 80px);
}

/* Navbar */
.playunitygames-navbar {
	background: var(--playunitygames-white);
	box-shadow: var(--playunitygames-shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--playunitygames-transition);
}

.playunitygames-navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.875rem 0;
}

.playunitygames-navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--playunitygames-gray-900);
	text-decoration: none;
	letter-spacing: -0.01em;
}

.playunitygames-navbar-brand:hover {
	text-decoration: none;
	color: var(--playunitygames-primary);
}

.playunitygames-navbar-logo {
	height: 42px;
	width: auto;
}

.playunitygames-navbar-menu {
	display: flex;
	list-style: none;
	gap: 1.75rem;
	align-items: center;
	margin: 0;
	padding: 0;
}

.playunitygames-navbar-link {
	color: var(--playunitygames-gray-700);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.5rem 0;
	position: relative;
	transition: var(--playunitygames-transition-fast);
	text-decoration: none;
}

.playunitygames-navbar-link:hover {
	color: var(--playunitygames-primary);
	text-decoration: none;
}

.playunitygames-navbar-link.active {
	color: var(--playunitygames-primary);
}

.playunitygames-navbar-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--playunitygames-gradient-primary);
	border-radius: 2px;
}

.playunitygames-navbar-cta {
	background: var(--playunitygames-gradient-primary);
	color: var(--playunitygames-white);
	padding: 0.625rem 1.5rem;
	border-radius: var(--playunitygames-border-radius);
	font-weight: 700;
	font-size: 0.9375rem;
	transition: var(--playunitygames-transition-fast);
	text-decoration: none;
	box-shadow: var(--playunitygames-shadow);
}

.playunitygames-navbar-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--playunitygames-shadow-md);
	text-decoration: none;
	color: var(--playunitygames-white);
}

/* Mobile Toggle */
.playunitygames-navbar-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	z-index: 1001;
}

.playunitygames-navbar-toggle-bar {
	width: 26px;
	height: 3px;
	background: var(--playunitygames-gray-900);
	border-radius: 3px;
	transition: var(--playunitygames-transition-fast);
}

.playunitygames-navbar-toggle.active .playunitygames-navbar-toggle-bar:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.playunitygames-navbar-toggle.active .playunitygames-navbar-toggle-bar:nth-child(2) {
	opacity: 0;
}

.playunitygames-navbar-toggle.active .playunitygames-navbar-toggle-bar:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
	.playunitygames-navbar-toggle {
		display: flex;
	}

	.playunitygames-navbar-menu {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--playunitygames-white);
		flex-direction: column;
		padding: 5rem 1.5rem 2rem;
		gap: 1.25rem;
		box-shadow: var(--playunitygames-shadow-xl);
		transition: var(--playunitygames-transition);
		align-items: flex-start;
		overflow-y: auto;
	}

	.playunitygames-navbar-menu.active {
		right: 0;
	}

	.playunitygames-navbar-link {
		font-size: 1rem;
		width: 100%;
		padding: 0.625rem 0;
	}

	.playunitygames-navbar-cta {
		width: 100%;
		text-align: center;
		margin-top: 0.75rem;
		padding: 0.75rem 1.5rem;
	}
}

/* Sections */
.playunitygames-section {
	padding: 4.5rem 0;
}

.playunitygames-section-alt {
	background: var(--playunitygames-white);
}

@media (max-width: 768px) {
	.playunitygames-section {
		padding: 3rem 0;
	}
}

/* Hero Section */
.playunitygames-hero {
	background: var(--playunitygames-gradient-hero);
	padding: 5.5rem 0;
	position: relative;
	overflow: hidden;
}

.playunitygames-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,160L48,149.3C96,139,192,117,288,117.3C384,117,480,139,576,154.7C672,171,768,181,864,170.7C960,160,1056,128,1152,122.7C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	opacity: 0.6;
}

.playunitygames-hero-content {
	text-align: center;
	position: relative;
	z-index: 1;
}

.playunitygames-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
	padding: 0.625rem 1.25rem;
	border-radius: 50px;
	color: var(--playunitygames-white);
	font-weight: 700;
	font-size: 0.9375rem;
	margin-bottom: 1.75rem;
	box-shadow: var(--playunitygames-shadow);
}

.playunitygames-hero-title {
	font-size: 3.25rem;
	color: var(--playunitygames-white);
	margin-bottom: 1.25rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	font-weight: 800;
	letter-spacing: -0.03em;
}

.playunitygames-hero-subtitle {
	font-size: 1.1875rem;
	color: rgba(255, 255, 255, 0.96);
	max-width: 700px;
	margin: 0 auto 2.25rem;
	line-height: 1.65;
}

.playunitygames-hero-cta {
	display: inline-block;
	background: var(--playunitygames-white);
	color: var(--playunitygames-primary);
	padding: 0.875rem 2.25rem;
	border-radius: var(--playunitygames-border-radius);
	font-weight: 700;
	font-size: 1.0625rem;
	transition: var(--playunitygames-transition-fast);
	box-shadow: var(--playunitygames-shadow-lg);
	text-decoration: none;
}

.playunitygames-hero-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--playunitygames-shadow-xl);
	text-decoration: none;
	color: var(--playunitygames-primary-dark);
}

@media (max-width: 768px) {
	.playunitygames-hero {
		padding: 4rem 0;
	}

	.playunitygames-hero-title {
		font-size: 2.125rem;
	}

	.playunitygames-hero-subtitle {
		font-size: 1rem;
	}
}

/* Features Grid */
.playunitygames-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 1.75rem;
	margin-top: 2.5rem;
}

@media (max-width: 768px) {
	.playunitygames-features-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* Feature Card */
.playunitygames-feature-card {
	background: var(--playunitygames-white);
	padding: 2.25rem;
	border-radius: var(--playunitygames-border-radius-lg);
	box-shadow: var(--playunitygames-shadow);
	transition: var(--playunitygames-transition);
	border: 2px solid transparent;
}

.playunitygames-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--playunitygames-shadow-lg);
	border-color: var(--playunitygames-primary-light);
}

.playunitygames-feature-icon {
	width: 64px;
	height: 64px;
	background: var(--playunitygames-gradient-primary);
	border-radius: var(--playunitygames-border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	box-shadow: var(--playunitygames-shadow);
}

.playunitygames-feature-icon i {
	font-size: 1.75rem;
	color: var(--playunitygames-white);
}

.playunitygames-feature-title {
	font-size: 1.375rem;
	margin-bottom: 0.875rem;
	color: var(--playunitygames-gray-900);
}

.playunitygames-feature-desc {
	color: var(--playunitygames-gray-600);
	line-height: 1.65;
}

/* Games Grid */
.playunitygames-games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 2rem;
	margin-top: 2.5rem;
}

@media (max-width: 768px) {
	.playunitygames-games-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}
}

/* Game Card */
.playunitygames-game-card {
	background: var(--playunitygames-white);
	border-radius: var(--playunitygames-border-radius-lg);
	overflow: hidden;
	box-shadow: var(--playunitygames-shadow);
	transition: var(--playunitygames-transition);
	position: relative;
}

.playunitygames-game-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--playunitygames-shadow-xl);
}

.playunitygames-game-card.featured {
	border: 3px solid var(--playunitygames-secondary);
}

.playunitygames-game-badge {
	position: absolute;
	top: 0.875rem;
	right: 0.875rem;
	background: var(--playunitygames-gradient-secondary);
	color: var(--playunitygames-white);
	padding: 0.4375rem 0.875rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.8125rem;
	box-shadow: var(--playunitygames-shadow);
	z-index: 10;
}

.playunitygames-game-image {
	width: 100%;
	height: 210px;
	overflow: hidden;
	background: var(--playunitygames-gray-100);
}

.playunitygames-game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--playunitygames-transition);
}

.playunitygames-game-card:hover .playunitygames-game-image img {
	transform: scale(1.06);
}

.playunitygames-game-content {
	padding: 1.875rem;
}

.playunitygames-game-title {
	font-size: 1.375rem;
	margin-bottom: 0.875rem;
	color: var(--playunitygames-gray-900);
}

.playunitygames-game-desc {
	color: var(--playunitygames-gray-600);
	margin-bottom: 1.25rem;
	line-height: 1.65;
}

.playunitygames-game-stats {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.playunitygames-game-stats span {
	display: flex;
	align-items: center;
	gap: 0.4375rem;
	color: var(--playunitygames-gray-500);
	font-size: 0.8125rem;
}

.playunitygames-game-stats i {
	color: var(--playunitygames-secondary);
}

.playunitygames-game-play {
	width: 100%;
	background: var(--playunitygames-gradient-primary);
	color: var(--playunitygames-white);
	border: none;
	padding: 0.875rem;
	border-radius: var(--playunitygames-border-radius);
	font-weight: 700;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: var(--playunitygames-transition-fast);
	box-shadow: var(--playunitygames-shadow);
}

.playunitygames-game-play:hover {
	transform: translateY(-2px);
	box-shadow: var(--playunitygames-shadow-md);
}

/* Buttons */
.playunitygames-btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	border-radius: var(--playunitygames-border-radius);
	font-weight: 700;
	text-align: center;
	transition: var(--playunitygames-transition-fast);
	cursor: pointer;
	border: none;
	text-decoration: none;
	box-shadow: var(--playunitygames-shadow);
	font-size: 0.9375rem;
}

.playunitygames-btn-primary {
	background: var(--playunitygames-gradient-primary);
	color: var(--playunitygames-white);
}

.playunitygames-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--playunitygames-shadow-md);
	text-decoration: none;
	color: var(--playunitygames-white);
}

.playunitygames-btn-secondary {
	background: var(--playunitygames-white);
	color: var(--playunitygames-primary);
	border: 2px solid var(--playunitygames-primary);
}

.playunitygames-btn-secondary:hover {
	background: var(--playunitygames-primary);
	color: var(--playunitygames-white);
	text-decoration: none;
}

/* Alerts */
.playunitygames-alert {
	padding: 1.25rem;
	border-radius: var(--playunitygames-border-radius);
	margin: 1.25rem 0;
	border-left: 4px solid;
}

.playunitygames-alert-info {
	background: rgba(14, 165, 233, 0.1);
	border-color: var(--playunitygames-primary);
	color: var(--playunitygames-gray-800);
}

.playunitygames-alert-success {
	background: rgba(22, 163, 74, 0.1);
	border-color: var(--playunitygames-success);
	color: var(--playunitygames-gray-800);
}

.playunitygames-alert-error {
	background: rgba(220, 38, 38, 0.1);
	border-color: var(--playunitygames-error);
	color: var(--playunitygames-gray-800);
}

/* Forms */
.playunitygames-form-group {
	margin-bottom: 1.25rem;
}

.playunitygames-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 700;
	color: var(--playunitygames-gray-800);
	font-size: 0.9375rem;
}

.playunitygames-form-control {
	width: 100%;
	padding: 0.875rem;
	border: 2px solid var(--playunitygames-gray-300);
	border-radius: var(--playunitygames-border-radius);
	font-size: 0.9375rem;
	transition: var(--playunitygames-transition-fast);
	font-family: inherit;
}

.playunitygames-form-control:focus {
	outline: none;
	border-color: var(--playunitygames-primary);
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.playunitygames-form-control.error {
	border-color: var(--playunitygames-error);
}

.playunitygames-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.25rem;
}

/* Contact Page Specific */
.playunitygames-contact-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 2.5rem;
	margin-top: 2.5rem;
}

@media (max-width: 968px) {
	.playunitygames-contact-content {
		grid-template-columns: 1fr;
	}
}

.playunitygames-contact-info-card,
.playunitygames-contact-form-card {
	background: var(--playunitygames-white);
	padding: 2.25rem;
	border-radius: var(--playunitygames-border-radius-lg);
	box-shadow: var(--playunitygames-shadow);
}

.playunitygames-contact-detail-item {
	display: flex;
	gap: 1.25rem;
	margin-bottom: 1.75rem;
}

.playunitygames-contact-detail-icon {
	width: 52px;
	height: 52px;
	background: var(--playunitygames-gradient-primary);
	border-radius: var(--playunitygames-border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.playunitygames-contact-detail-icon i {
	color: var(--playunitygames-white);
	font-size: 1.125rem;
}

.playunitygames-contact-detail-content h4 {
	margin-bottom: 0.375rem;
	color: var(--playunitygames-gray-900);
}

.playunitygames-contact-detail-content p {
	margin: 0;
	color: var(--playunitygames-gray-600);
}

/* Footer */
.playunitygames-footer {
	background: var(--playunitygames-gray-900);
	color: var(--playunitygames-gray-300);
	padding: 4rem 0 1.75rem;
	margin-top: 4.5rem;
}

.playunitygames-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

.playunitygames-footer-section h3 {
	color: var(--playunitygames-white);
	margin-bottom: 1.25rem;
	font-size: 1.125rem;
}

.playunitygames-footer-section p {
	color: var(--playunitygames-gray-400);
	margin-bottom: 0.625rem;
	line-height: 1.65;
}

.playunitygames-footer-section a {
	color: var(--playunitygames-gray-400);
	transition: var(--playunitygames-transition-fast);
}

.playunitygames-footer-section a:hover {
	color: var(--playunitygames-primary-light);
}

.playunitygames-disclaimer {
	border-top: 1px solid var(--playunitygames-gray-800);
	padding-top: 1.75rem;
	margin-bottom: 1.75rem;
}

.playunitygames-disclaimer p {
	font-size: 0.8125rem;
	color: var(--playunitygames-gray-400);
	margin-bottom: 0.875rem;
	line-height: 1.65;
}

.playunitygames-footer-bottom {
	text-align: center;
	padding-top: 1.75rem;
	border-top: 1px solid var(--playunitygames-gray-800);
}

.playunitygames-footer-bottom p {
	color: var(--playunitygames-gray-500);
	font-size: 0.8125rem;
	margin: 0;
}

/* Cookie Popup */
.playunitygames-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: var(--playunitygames-white);
	box-shadow: var(--playunitygames-shadow-xl);
	padding: 1.75rem;
	z-index: 9999;
	transition: var(--playunitygames-transition);
	border-top: 3px solid var(--playunitygames-primary);
}

.playunitygames-cookie-popup.show {
	bottom: 0;
}

.playunitygames-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.75rem;
}

@media (max-width: 768px) {
	.playunitygames-cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}
}

.playunitygames-cookie-content h4 {
	margin-bottom: 0.375rem;
	color: var(--playunitygames-gray-900);
}

.playunitygames-cookie-content p {
	margin: 0;
	color: var(--playunitygames-gray-600);
	font-size: 0.9375rem;
}

.playunitygames-cookie-link {
	color: var(--playunitygames-primary);
	text-decoration: underline;
}

.playunitygames-cookie-actions {
	flex-shrink: 0;
}

.playunitygames-cookie-accept {
	background: var(--playunitygames-gradient-primary);
	color: var(--playunitygames-white);
	border: none;
	padding: 0.75rem 1.75rem;
	border-radius: var(--playunitygames-border-radius);
	font-weight: 700;
	cursor: pointer;
	transition: var(--playunitygames-transition-fast);
	box-shadow: var(--playunitygames-shadow);
	font-size: 0.9375rem;
}

.playunitygames-cookie-accept:hover {
	transform: translateY(-2px);
	box-shadow: var(--playunitygames-shadow-md);
}

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

.playunitygames-mb-5 {
	margin-bottom: 2.5rem;
}

.playunitygames-mt-5 {
	margin-top: 2.5rem;
}

/* Page-Specific Hero Sections */
.playunitygames-games-hero,
.playunitygames-about-hero,
.playunitygames-contact-hero,
.playunitygames-privacy-hero,
.playunitygames-terms-hero,
.playunitygames-cookies-hero {
	background: var(--playunitygames-gradient-hero);
	padding: 4rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.playunitygames-games-hero::before,
.playunitygames-about-hero::before,
.playunitygames-contact-hero::before,
.playunitygames-privacy-hero::before,
.playunitygames-terms-hero::before,
.playunitygames-cookies-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,160L48,149.3C96,139,192,117,288,117.3C384,117,480,139,576,154.7C672,171,768,181,864,170.7C960,160,1056,128,1152,122.7C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	opacity: 0.6;
}

.playunitygames-games-hero-content,
.playunitygames-about-hero-content,
.playunitygames-contact-hero-content,
.playunitygames-privacy-hero-content,
.playunitygames-terms-hero-content,
.playunitygames-cookies-hero-content {
	position: relative;
	z-index: 1;
}

.playunitygames-games-hero-content h1,
.playunitygames-about-hero-content h1,
.playunitygames-contact-hero-content h1,
.playunitygames-privacy-hero-content h1,
.playunitygames-terms-hero-content h1,
.playunitygames-cookies-hero-content h1 {
	color: var(--playunitygames-white);
	margin-bottom: 0.875rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.playunitygames-games-hero-subtitle,
.playunitygames-about-hero-subtitle,
.playunitygames-contact-hero-subtitle,
.playunitygames-privacy-hero-subtitle,
.playunitygames-terms-hero-subtitle,
.playunitygames-cookies-hero-subtitle {
	color: rgba(255, 255, 255, 0.96);
	font-size: 1.0625rem;
	margin-bottom: 0.4375rem;
}

.playunitygames-privacy-hero-date,
.playunitygames-terms-hero-date,
.playunitygames-cookies-hero-date,
.playunitygames-contact-hero-date {
	color: rgba(255, 255, 255, 0.87);
	font-size: 0.9375rem;
}

.playunitygames-games-hero-icon,
.playunitygames-about-hero-icon,
.playunitygames-contact-hero-icon,
.playunitygames-privacy-hero-icon,
.playunitygames-terms-hero-icon,
.playunitygames-cookies-hero-icon {
	font-size: 3.75rem;
	color: var(--playunitygames-white);
	margin-bottom: 0.875rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* CTA Content */
.playunitygames-cta-content {
	text-align: center;
	max-width: 780px;
	margin: 0 auto;
}

.playunitygames-cta-content h2 {
	margin-bottom: 1.25rem;
}

.playunitygames-cta-actions {
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	margin-top: 1.75rem;
	flex-wrap: wrap;
}

/* Legal Pages Content */
.playunitygames-privacy-content,
.playunitygames-terms-content,
.playunitygames-cookies-content,
.playunitygames-about-content {
	max-width: 880px;
	margin: 0 auto;
}

.playunitygames-privacy-section,
.playunitygames-terms-section,
.playunitygames-cookies-section,
.playunitygames-about-section {
	margin-bottom: 2.5rem;
}

.playunitygames-privacy-section h2,
.playunitygames-terms-section h2,
.playunitygames-cookies-section h2,
.playunitygames-about-section h2 {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1.25rem;
	color: var(--playunitygames-gray-900);
}

.playunitygames-privacy-section h3,
.playunitygames-terms-section h3,
.playunitygames-cookies-section h3 {
	margin-top: 1.25rem;
	margin-bottom: 0.875rem;
	color: var(--playunitygames-gray-800);
}

/* Message Display */
.playunitygames-message {
	margin: 1.75rem 0;
	animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Loading State */
.playunitygames-btn-loading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
}

/* Game Stats Section */
.playunitygames-games-stats {
	display: flex;
	justify-content: center;
	gap: 2.5rem;
	margin-top: 1.75rem;
	flex-wrap: wrap;
}

.playunitygames-stat-item {
	text-align: center;
}

.playunitygames-stat-number {
	display: block;
	font-size: 2.375rem;
	font-weight: 800;
	color: var(--playunitygames-white);
	margin-bottom: 0.4375rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.playunitygames-stat-label {
	display: block;
	color: rgba(255, 255, 255, 0.91);
	font-weight: 700;
	font-size: 0.9375rem;
}

/* Cookie Management */
.playunitygames-cookie-management {
	max-width: 780px;
	margin: 1.75rem auto;
}

.playunitygames-cookie-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem;
	background: var(--playunitygames-gray-50);
	border-radius: var(--playunitygames-border-radius);
	margin-bottom: 0.875rem;
}

@media (max-width: 768px) {
	.playunitygames-cookie-option {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.875rem;
	}
}

.playunitygames-cookie-info h3 {
	margin-bottom: 0.375rem;
	font-size: 1.0625rem;
}

.playunitygames-cookie-info p {
	margin: 0;
	font-size: 0.9375rem;
}

.playunitygames-cookie-toggle {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.playunitygames-cookie-toggle input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.playunitygames-cookie-toggle label {
	font-weight: 700;
	color: var(--playunitygames-gray-700);
	cursor: pointer;
	font-size: 0.9375rem;
}

/* Responsive Typography */
@media (max-width: 480px) {
	html {
		font-size: 15px;
	}
}

/* Print Styles */
@media print {
	.playunitygames-navbar,
	.playunitygames-footer,
	.playunitygames-cookie-popup,
	.playunitygames-cta-actions {
		display: none;
	}
}

