/* TeamGamio.com - New Zealand Social Gaming Platform */

/* CSS Variables - Modern Teal/Orange/Blue Color Palette */
:root {
	--teamgamio-primary: #14b8a6;
	--teamgamio-primary-dark: #0d9488;
	--teamgamio-primary-light: #5eead4;
	--teamgamio-secondary: #f97316;
	--teamgamio-accent: #0ea5e9;
	--teamgamio-success: #10b981;
	--teamgamio-warning: #f59e0b;
	--teamgamio-error: #ef4444;

	--teamgamio-gray-50: #fafafa;
	--teamgamio-gray-100: #f5f5f5;
	--teamgamio-gray-200: #e5e5e5;
	--teamgamio-gray-300: #d4d4d4;
	--teamgamio-gray-400: #a3a3a3;
	--teamgamio-gray-500: #737373;
	--teamgamio-gray-600: #525252;
	--teamgamio-gray-700: #404040;
	--teamgamio-gray-800: #262626;
	--teamgamio-gray-900: #171717;

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

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

	--teamgamio-gradient-primary: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
	--teamgamio-gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
	--teamgamio-gradient-hero: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0ea5e9 100%);
	--teamgamio-gradient-accent: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);

	--teamgamio-border-radius: 10px;
	--teamgamio-border-radius-lg: 14px;
	--teamgamio-border-radius-xl: 20px;

	--teamgamio-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;

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

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

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

body {
	font-family: var(--teamgamio-font-family);
	line-height: 1.6;
	color: var(--teamgamio-gray-700);
	background: var(--teamgamio-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(--teamgamio-gray-900);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
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(--teamgamio-gray-600);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

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

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

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

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

/* Container */
.teamgamio-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.teamgamio-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,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,165.3C960,160,1056,128,1152,128C1248,128,1344,160,1392,176L1440,192L1440,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;
}

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

.teamgamio-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(--teamgamio-white);
	font-weight: 600;
	font-size: 0.9375rem;
	margin-bottom: 1.75rem;
	box-shadow: var(--teamgamio-shadow);
}

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

.teamgamio-hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.95);
	max-width: 680px;
	margin: 0 auto 2rem;
	line-height: 1.7;
}

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

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

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

	.teamgamio-hero-title {
		font-size: 2rem;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

.teamgamio-game-card.featured {
	border: 2px solid var(--teamgamio-primary);
}

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

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

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

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

.teamgamio-game-content {
	padding: 1.75rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.teamgamio-alert-info {
	background: rgba(20, 184, 166, 0.08);
	border-color: var(--teamgamio-primary);
	color: var(--teamgamio-gray-800);
}

.teamgamio-alert-success {
	background: rgba(16, 185, 129, 0.08);
	border-color: var(--teamgamio-success);
	color: var(--teamgamio-gray-800);
}

.teamgamio-alert-error {
	background: rgba(239, 68, 68, 0.08);
	border-color: var(--teamgamio-error);
	color: var(--teamgamio-gray-800);
}

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

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

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

.teamgamio-form-control:focus {
	outline: none;
	border-color: var(--teamgamio-primary);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.teamgamio-games-hero::before,
.teamgamio-about-hero::before,
.teamgamio-contact-hero::before,
.teamgamio-privacy-hero::before,
.teamgamio-terms-hero::before,
.teamgamio-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,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,165.3C960,160,1056,128,1152,128C1248,128,1344,160,1392,176L1440,192L1440,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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.teamgamio-stat-label {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
	font-size: 0.9375rem;
}

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

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

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

.teamgamio-cookie-info h3 {
	margin-bottom: 0.4375rem;
	font-size: 1.0625rem;
}

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

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

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

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

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

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

