/* TeamGamio.org - Canadian Free Gaming Platform (English) */

/* CSS Variables - Modern Fresh Color Palette */
:root {
	--teamgamio-primary: #0ea5e9;
	--teamgamio-primary-dark: #0284c7;
	--teamgamio-primary-light: #38bdf8;
	--teamgamio-secondary: #8b5cf6;
	--teamgamio-accent: #ec4899;
	--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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--teamgamio-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--teamgamio-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--teamgamio-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

	--teamgamio-gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
	--teamgamio-gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	--teamgamio-gradient-hero: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #8b5cf6 100%);
	--teamgamio-gradient-accent: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);

	--teamgamio-border-radius: 8px;
	--teamgamio-border-radius-lg: 12px;
	--teamgamio-border-radius-xl: 16px;

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

	--teamgamio-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--teamgamio-transition-fast: all 0.15s ease-in-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-800);
	background-color: 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.2;
	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.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

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);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

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

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

/* Navigation - Clean Modern Design */
.teamgamio-navbar {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: var(--teamgamio-shadow);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--teamgamio-transition);
	border-bottom: 1px solid var(--teamgamio-gray-200);
}

.teamgamio-navbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	min-height: 70px;
}

.teamgamio-navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--teamgamio-gray-900);
	text-decoration: none;
	letter-spacing: -0.5px;
}

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

.teamgamio-navbar-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: var(--teamgamio-primary);
	border: none;
	border-radius: var(--teamgamio-border-radius);
	cursor: pointer;
	padding: 10px;
	transition: var(--teamgamio-transition-fast);
	box-shadow: var(--teamgamio-shadow-sm);
}

.teamgamio-navbar-toggle:hover {
	background: var(--teamgamio-primary-dark);
	transform: scale(1.05);
}

.teamgamio-navbar-toggle-bar {
	width: 24px;
	height: 3px;
	background: var(--teamgamio-white);
	border-radius: 3px;
	transition: var(--teamgamio-transition);
}

.teamgamio-navbar-menu {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
}

.teamgamio-navbar-link {
	color: var(--teamgamio-gray-700);
	font-weight: 600;
	padding: 0.65rem 1rem;
	border-radius: var(--teamgamio-border-radius);
	position: relative;
	transition: var(--teamgamio-transition);
	font-size: 0.95rem;
}

.teamgamio-navbar-link:hover {
	background: var(--teamgamio-gray-100);
	color: var(--teamgamio-primary);
}

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

.teamgamio-navbar-cta {
	background: var(--teamgamio-gradient-accent);
	color: var(--teamgamio-white);
	padding: 0.65rem 1.25rem;
	border-radius: var(--teamgamio-border-radius-lg);
	font-weight: 700;
	transition: var(--teamgamio-transition);
	box-shadow: var(--teamgamio-shadow);
	border: none;
	font-size: 0.95rem;
}

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

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

	.teamgamio-navbar-menu {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		background: var(--teamgamio-white);
		flex-direction: column;
		padding: 1.5rem;
		box-shadow: var(--teamgamio-shadow-lg);
		transform: translateY(-120%);
		opacity: 0;
		visibility: hidden;
		transition: var(--teamgamio-transition);
		z-index: 1000;
		gap: 0.5rem;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}

	.teamgamio-navbar-menu.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.teamgamio-navbar-menu li {
		width: 100%;
	}

	.teamgamio-navbar-link {
		display: block;
		width: 100%;
		padding: 0.85rem 1.25rem;
		text-align: center;
		font-size: 1rem;
	}

	.teamgamio-navbar-link:hover {
		background: var(--teamgamio-primary);
		color: var(--teamgamio-white);
	}

	.teamgamio-navbar-cta {
		text-align: center;
		display: block;
		padding: 0.85rem 1.25rem;
		margin-top: 0.5rem;
	}

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

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

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

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

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

/* Hero Section - Modern Gradient Design */
.teamgamio-hero {
	background: var(--teamgamio-gradient-hero);
	color: var(--teamgamio-white);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.teamgamio-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	transform: rotate(-15deg);
}

.teamgamio-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.teamgamio-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.teamgamio-hero-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
	line-height: 1.1;
	color: var(--teamgamio-white);
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.teamgamio-hero-subtitle {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	color: var(--teamgamio-white);
	opacity: 0.95;
	font-weight: 400;
	line-height: 1.7;
}

.teamgamio-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	background: var(--teamgamio-white);
	color: var(--teamgamio-primary);
	padding: 1rem 2rem;
	border-radius: var(--teamgamio-border-radius-lg);
	font-size: 1.0625rem;
	font-weight: 700;
	text-decoration: none;
	transition: var(--teamgamio-transition);
	box-shadow: var(--teamgamio-shadow-lg);
}

.teamgamio-hero-cta:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: var(--teamgamio-shadow-xl);
	color: var(--teamgamio-primary);
}

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

.teamgamio-feature-card {
	background: var(--teamgamio-white);
	padding: 2rem 1.5rem;
	border-radius: var(--teamgamio-border-radius-xl);
	text-align: center;
	box-shadow: var(--teamgamio-shadow);
	transition: var(--teamgamio-transition);
	border: 2px solid transparent;
}

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

.teamgamio-feature-icon {
	width: 64px;
	height: 64px;
	background: var(--teamgamio-gradient-primary);
	border-radius: var(--teamgamio-border-radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	font-size: 1.75rem;
	color: var(--teamgamio-white);
	box-shadow: var(--teamgamio-shadow);
}

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

.teamgamio-feature-desc {
	color: var(--teamgamio-gray-600);
	line-height: 1.6;
	font-size: 0.9375rem;
}

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

.teamgamio-game-card {
	background: var(--teamgamio-white);
	border-radius: var(--teamgamio-border-radius-xl);
	overflow: hidden;
	box-shadow: var(--teamgamio-shadow);
	transition: var(--teamgamio-transition);
	position: relative;
	border: 2px solid transparent;
}

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

.teamgamio-game-card.featured {
	border-color: var(--teamgamio-accent);
}

.teamgamio-game-badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: var(--teamgamio-gradient-accent);
	color: var(--teamgamio-white);
	padding: 0.375rem 1rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	z-index: 1;
	text-transform: uppercase;
	box-shadow: var(--teamgamio-shadow);
}

.teamgamio-game-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	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.5rem;
}

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

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

.teamgamio-game-stats {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	color: var(--teamgamio-gray-500);
}

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

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

/* Buttons */
.teamgamio-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--teamgamio-border-radius-lg);
	font-weight: 700;
	text-decoration: none;
	transition: var(--teamgamio-transition);
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

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

.teamgamio-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--teamgamio-shadow-md);
	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);
}

/* Footer */
.teamgamio-footer {
	background: var(--teamgamio-gray-900);
	color: var(--teamgamio-white);
	padding: 3rem 0 1.25rem;
	border-top: 4px solid var(--teamgamio-primary);
}

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

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

.teamgamio-footer-section p {
	margin-bottom: 0.5rem;
	color: var(--teamgamio-gray-300);
	font-size: 0.875rem;
}

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

.teamgamio-footer-section a:hover {
	color: var(--teamgamio-white);
	text-decoration: underline;
}

.teamgamio-disclaimer {
	background: var(--teamgamio-gray-800);
	padding: 1.5rem;
	border-radius: var(--teamgamio-border-radius-lg);
	margin-bottom: 1.5rem;
	border-left: 4px solid var(--teamgamio-accent);
}

.teamgamio-disclaimer p {
	margin-bottom: 0.625rem;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--teamgamio-gray-200);
}

.teamgamio-disclaimer a {
	color: var(--teamgamio-accent);
	font-weight: 600;
}

.teamgamio-footer-bottom {
	border-top: 1px solid var(--teamgamio-gray-700);
	padding-top: 1.5rem;
	text-align: center;
	font-size: 0.8125rem;
	color: var(--teamgamio-gray-300);
}

/* Cookie Popup */
.teamgamio-cookie-popup {
	position: fixed;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	max-width: 500px;
	background: var(--teamgamio-white);
	padding: 1.5rem;
	border-radius: var(--teamgamio-border-radius-xl);
	box-shadow: var(--teamgamio-shadow-xl);
	z-index: 9999;
	transform: translateY(120px);
	opacity: 0;
	transition: var(--teamgamio-transition);
	border: 3px solid var(--teamgamio-primary);
}

.teamgamio-cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
}

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

.teamgamio-cookie-content h4 {
	margin-bottom: 0.625rem;
	color: var(--teamgamio-gray-900);
	font-size: 1.125rem;
}

.teamgamio-cookie-content p {
	margin-bottom: 0.375rem;
	color: var(--teamgamio-gray-600);
	font-size: 0.875rem;
	line-height: 1.6;
}

.teamgamio-cookie-actions {
	display: flex;
	gap: 0.75rem;
}

.teamgamio-cookie-accept {
	background: var(--teamgamio-gradient-primary);
	color: var(--teamgamio-white);
	padding: 0.75rem 1.5rem;
	border-radius: var(--teamgamio-border-radius);
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: var(--teamgamio-transition);
	flex: 1;
}

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

.teamgamio-cookie-link {
	color: var(--teamgamio-primary);
	font-weight: 600;
	font-size: 0.875rem;
}

/* Form Styles */
.teamgamio-form-group {
	margin-bottom: 1.5rem;
}

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

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

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

.teamgamio-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

/* Alert Styles */
.teamgamio-alert {
	padding: 1rem 1.25rem;
	border-radius: var(--teamgamio-border-radius-lg);
	margin-bottom: 1rem;
	border-left: 4px solid;
	font-size: 0.9375rem;
}

.teamgamio-alert-info {
	background: #e0f2fe;
	border-color: var(--teamgamio-primary);
	color: #075985;
}

.teamgamio-alert-success {
	background: #d1fae5;
	border-color: var(--teamgamio-success);
	color: #065f46;
}

.teamgamio-alert-error {
	background: #fee2e2;
	border-color: var(--teamgamio-error);
	color: #991b1b;
}

/* Contact & Legal Pages Hero */
.teamgamio-contact-hero,
.teamgamio-privacy-hero,
.teamgamio-terms-hero,
.teamgamio-cookies-hero,
.teamgamio-about-hero,
.teamgamio-games-hero {
	background: var(--teamgamio-gradient-hero);
	color: var(--teamgamio-white);
	text-align: center;
	padding: 4rem 0;
}

.teamgamio-contact-hero-icon,
.teamgamio-privacy-hero-icon,
.teamgamio-terms-hero-icon,
.teamgamio-cookies-hero-icon,
.teamgamio-about-hero-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: var(--teamgamio-border-radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	font-size: 1.875rem;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.teamgamio-contact-hero h1,
.teamgamio-privacy-hero h1,
.teamgamio-terms-hero h1,
.teamgamio-cookies-hero h1,
.teamgamio-about-hero h1,
.teamgamio-games-hero-content h1 {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
	color: var(--teamgamio-white);
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.teamgamio-contact-hero-subtitle,
.teamgamio-privacy-hero-subtitle,
.teamgamio-terms-hero-subtitle,
.teamgamio-cookies-hero-subtitle,
.teamgamio-about-hero-subtitle,
.teamgamio-games-hero-subtitle {
	font-size: 1.0625rem;
	color: var(--teamgamio-white);
	opacity: 0.95;
	font-weight: 400;
}

.teamgamio-contact-hero-date,
.teamgamio-privacy-hero-date,
.teamgamio-terms-hero-date,
.teamgamio-cookies-hero-date {
	font-size: 0.875rem;
	color: var(--teamgamio-white);
	opacity: 0.85;
	margin-top: 0.375rem;
}

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

.teamgamio-contact-info-card,
.teamgamio-contact-form-card {
	background: var(--teamgamio-white);
	padding: 2rem;
	border-radius: var(--teamgamio-border-radius-xl);
	box-shadow: var(--teamgamio-shadow);
	border-top: 4px solid var(--teamgamio-primary);
}

.teamgamio-contact-info-card h3,
.teamgamio-contact-form-card h3 {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1.5rem;
	color: var(--teamgamio-gray-900);
}

.teamgamio-contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.teamgamio-contact-detail-item {
	display: flex;
	gap: 1rem;
}

.teamgamio-contact-detail-icon {
	width: 46px;
	height: 46px;
	background: var(--teamgamio-gradient-primary);
	border-radius: var(--teamgamio-border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teamgamio-white);
	font-size: 1.125rem;
	flex-shrink: 0;
}

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

.teamgamio-contact-detail-content p {
	margin-bottom: 0;
	color: var(--teamgamio-gray-600);
	font-size: 0.875rem;
}

.teamgamio-form-description {
	color: var(--teamgamio-gray-600);
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

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

.teamgamio-privacy-section,
.teamgamio-terms-section,
.teamgamio-cookies-section,
.teamgamio-about-section {
	margin-bottom: 2.5rem;
	padding: 2rem;
	background: var(--teamgamio-white);
	border-radius: var(--teamgamio-border-radius-xl);
	box-shadow: var(--teamgamio-shadow);
	border-left: 4px solid var(--teamgamio-primary);
}

.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);
	font-size: 1.375rem;
}

.teamgamio-privacy-section h3,
.teamgamio-terms-section h3,
.teamgamio-cookies-section h3 {
	color: var(--teamgamio-gray-800);
	margin: 1.5rem 0 0.75rem 0;
	font-size: 1.125rem;
}

.teamgamio-privacy-section p,
.teamgamio-terms-section p,
.teamgamio-cookies-section p,
.teamgamio-about-section p {
	margin-bottom: 0.75rem;
	line-height: 1.7;
	color: var(--teamgamio-gray-700);
}

.teamgamio-privacy-section ul,
.teamgamio-terms-section ul,
.teamgamio-cookies-section ul,
.teamgamio-about-section ul {
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
}

.teamgamio-privacy-section li,
.teamgamio-terms-section li,
.teamgamio-cookies-section li,
.teamgamio-about-section li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	color: var(--teamgamio-gray-700);
}

.teamgamio-privacy-section a,
.teamgamio-terms-section a,
.teamgamio-cookies-section a {
	color: var(--teamgamio-primary);
	font-weight: 600;
}

.teamgamio-privacy-section a:hover,
.teamgamio-terms-section a:hover,
.teamgamio-cookies-section a:hover {
	text-decoration: underline;
}

/* Games Page Specific */
.teamgamio-games-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
}

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

.teamgamio-stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.375rem;
}

.teamgamio-stat-label {
	font-size: 0.875rem;
	opacity: 0.9;
}

.teamgamio-popular-games,
.teamgamio-game-stats-section {
	background: var(--teamgamio-gray-50);
}

.teamgamio-all-games,
.teamgamio-community-features {
	background: var(--teamgamio-white);
}

.teamgamio-disclaimer-section {
	background: var(--teamgamio-gray-50);
}

.teamgamio-disclaimer-content {
	max-width: 900px;
	margin: 0 auto;
}

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

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

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

.teamgamio-mt-4 {
	margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.teamgamio-hero-title {
		font-size: 2rem;
	}

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

	.teamgamio-features-grid {
		grid-template-columns: 1fr;
	}

	.teamgamio-games-grid {
		grid-template-columns: 1fr;
	}

	.teamgamio-contact-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.teamgamio-form-row {
		grid-template-columns: 1fr;
	}

	.teamgamio-cookie-popup {
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.75rem;
		padding: 1.25rem;
	}

	.teamgamio-cookie-actions {
		flex-direction: column;
	}

	.teamgamio-games-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.teamgamio-privacy-section,
	.teamgamio-terms-section,
	.teamgamio-cookies-section,
	.teamgamio-about-section {
		padding: 1.5rem;
	}

	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.375rem; }
}

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

.teamgamio-btn-loading .fa-spin {
	animation: teamgamio-spin 1s linear infinite;
}

@keyframes teamgamio-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Form Error State */
.teamgamio-form-control.error {
	border-color: var(--teamgamio-error);
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Category Game Tags */
.teamgamio-category-games {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.teamgamio-game-tag {
	background: var(--teamgamio-gray-100);
	color: var(--teamgamio-gray-700);
	padding: 0.3125rem 0.875rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid var(--teamgamio-gray-200);
}

/* Testimonials */
.teamgamio-testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--teamgamio-gray-200);
}

.teamgamio-author-avatar {
	width: 46px;
	height: 46px;
	background: var(--teamgamio-gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teamgamio-white);
	font-size: 1.125rem;
}

.teamgamio-author-info h4 {
	margin-bottom: 0.125rem;
	color: var(--teamgamio-gray-900);
	font-size: 1rem;
}

.teamgamio-author-info span {
	color: var(--teamgamio-gray-500);
	font-size: 0.8125rem;
}

/* News/Updates Cards */
.teamgamio-news-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--teamgamio-gradient-primary);
	border-radius: var(--teamgamio-border-radius);
	color: var(--teamgamio-white);
	margin-bottom: 1rem;
}

.teamgamio-news-day {
	font-size: 1.625rem;
	font-weight: 800;
	line-height: 1;
}

.teamgamio-news-month {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
}

.teamgamio-news-content h3 {
	margin-bottom: 0.625rem;
}

.teamgamio-news-link {
	color: var(--teamgamio-primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: 0.625rem;
}

.teamgamio-news-link:hover {
	text-decoration: underline;
}

/* Highlight Stats */
.teamgamio-highlight-stats {
	display: flex;
	gap: 1rem;
	margin-top: 0.75rem;
	flex-wrap: wrap;
}

.teamgamio-highlight-stats span {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--teamgamio-gray-600);
	font-size: 0.8125rem;
}

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

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

.teamgamio-cta-content p {
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.teamgamio-cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Cookie Management Styles */
.teamgamio-cookie-management {
	max-width: 650px;
	margin: 2rem auto;
}

.teamgamio-cookie-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	margin-bottom: 1rem;
	background: var(--teamgamio-white);
	border: 2px solid var(--teamgamio-gray-200);
	border-radius: var(--teamgamio-border-radius-lg);
	box-shadow: var(--teamgamio-shadow-sm);
	transition: var(--teamgamio-transition);
}

.teamgamio-cookie-option:hover {
	box-shadow: var(--teamgamio-shadow);
	border-color: var(--teamgamio-primary);
}

.teamgamio-cookie-info h3 {
	margin: 0 0 0.375rem 0;
	color: var(--teamgamio-gray-900);
	font-size: 1.0625rem;
}

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

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

.teamgamio-cookie-toggle input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--teamgamio-primary);
	cursor: pointer;
}

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

/* Message Display */
.teamgamio-message {
	margin: 1.25rem 0;
}

@media (max-width: 640px) {
	.teamgamio-cookie-option {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	.teamgamio-cta-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.teamgamio-cta-actions .teamgamio-btn {
		width: 100%;
		justify-content: center;
	}
}

