/* FriendsPlay.net - Modern Minimalistic Design */

/* CSS Variables */
:root {
	--primary: #667eea;
	--primary-dark: #5a67d8;
	--secondary: #764ba2;
	--accent: #f093fb;
	--success: #4ade80;
	--warning: #fbbf24;
	--error: #f87171;

	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-700: #374151;
	--gray-800: #1f2937;
	--gray-900: #111827;

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

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

	--gradient-primary: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--secondary) 100%
	);
	--gradient-accent: linear-gradient(
		135deg,
		var(--accent) 0%,
		var(--primary) 100%
	);
	--gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	--gradient-silver: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
	--gradient-bronze: linear-gradient(135deg, #d97706 0%, #b45309 100%);

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

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

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

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: var(--gray-800);
	background-color: var(--gray-50);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--gray-900);
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 2rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1.125rem;
}

p {
	margin-bottom: 1rem;
	color: var(--gray-600);
}

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

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

/* Lists */
.features-list {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

.features-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--gray-200);
	color: var(--gray-600);
}

.features-list li:last-child {
	border-bottom: none;
}

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

.section {
	padding: 5rem 0;
}

.section-sm {
	padding: 3rem 0;
}

/* Navigation */
.navbar {
	background: var(--white);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--gray-200);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
	margin-bottom: 0;
}

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

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--gray-900);
}

.navbar-brand span {
	color: var(--primary);
}

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

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

.navbar-link {
	color: var(--gray-600);
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.navbar-link:hover,
.navbar-link.active {
	color: var(--primary);
	background: var(--gray-100);
	text-decoration: none;
}

.navbar-cta {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius-lg);
	font-weight: 600;
	transition: var(--transition);
	box-shadow: var(--shadow-md);
}

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

.navbar-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.navbar-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--gray-600);
	margin: 5px 0;
	transition: var(--transition);
	border-radius: 1px;
}

/* Hero Section */
.hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 8rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	animation: fadeInUp 1s ease-out;
}

.hero-badge {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius-xl);
	font-size: 1rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-badge i {
	font-size: 1.25rem;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 900;
	margin-bottom: 2rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease-out 0.4s both;
	color: var(--white);
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 3rem;
	opacity: 0.95;
	font-weight: 400;
	line-height: 1.6;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease-out 0.6s both;
	color: var(--white);
}

.hero-cta {
	background: var(--white);
	color: var(--primary);
	padding: 1.25rem 2.5rem;
	border-radius: var(--border-radius-xl);
	font-weight: 700;
	font-size: 1.25rem;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: var(--transition);
	box-shadow: var(--shadow-xl);
	text-decoration: none;
	animation: fadeInUp 1s ease-out 0.8s both;
	position: relative;
	overflow: hidden;
}

.hero-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.5s;
}

.hero-cta:hover::before {
	left: 100%;
}

.hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	color: var(--primary);
	text-decoration: none;
}

.hero-cta i {
	font-size: 1.125rem;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

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

.hero-badge {
	background: rgba(255, 255, 255, 0.2);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius-lg);
	font-size: 0.875rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.hero-title {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	font-weight: 400;
}

.hero-cta {
	background: var(--white);
	color: var(--primary);
	padding: 1rem 2rem;
	border-radius: var(--border-radius-lg);
	font-weight: 700;
	font-size: 1.125rem;
	display: inline-block;
	transition: var(--transition);
	box-shadow: var(--shadow-lg);
}

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

/* Features Section */
.features {
	background: var(--white);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--gray-200);
}

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

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

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

/* Enhanced Games Section */
.games {
	background: var(--gray-50);
}

.games-header {
	text-align: center;
	margin-bottom: 3rem;
}

.games-subtitle {
	color: var(--gray-600);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

.games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.game-card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--gray-200);
	position: relative;
}

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

.game-image {
	width: 100%;
	height: 200px;
	background: var(--gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 3rem;
	position: relative;
	overflow: hidden;
}

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

.game-image::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	transform: translateX(-100%);
	transition: var(--transition);
}

.game-card:hover .game-image::before {
	transform: translateX(100%);
}

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

.game-content {
	padding: 1.5rem;
}

.game-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: var(--gray-900);
}

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

.game-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.game-category {
	background: var(--gray-100);
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius);
	font-weight: 500;
}

.game-play {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

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

.game-play i {
	font-size: 1.125rem;
}

/* Game Categories */
.game-categories {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.category-filter {
	background: var(--white);
	border: 2px solid var(--gray-200);
	color: var(--gray-600);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius-lg);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}

.category-filter:hover,
.category-filter.active {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--gray-50);
}

/* Categories Grid */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.category-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--gray-200);
	position: relative;
	overflow: hidden;
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.category-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.category-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

.category-card p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.category-games {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.game-tag {
	background: var(--gray-100);
	color: var(--gray-600);
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius);
	font-size: 0.875rem;
	font-weight: 500;
}

.category-link {
	background: var(--gradient-primary);
	color: var(--white) !important;
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition);
}

.category-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
	color: var(--white) !important;
	text-decoration: none;
}

/* Enhanced About Section */
.about {
	background: var(--white);
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-icon {
	width: 120px;
	height: 120px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--gray-50);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--gray-600);
	font-weight: 500;
}

/* Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.stat-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	text-align: center;
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.stat-card .stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.stat-card .stat-label {
	color: var(--gray-600);
	font-weight: 500;
	margin-bottom: 1rem;
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: var(--white);
	font-size: 1.5rem;
}

.stat-icon i {
	color: var(--white) !important;
}

/* Enhanced Contact Section */
.contact {
	background: var(--gray-50);
}

.contact-info {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	margin-bottom: 2rem;
}

.contact-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
}

.contact-method-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.25rem;
}

.contact-method-content h4 {
	margin-bottom: 0.5rem;
	color: var(--gray-900);
}

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

.contact-form {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 1.5rem;
}

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

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

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-error {
	color: var(--error);
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

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

/* Enhanced Buttons */
.btn {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	font-size: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

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

.btn-secondary {
	background: var(--gray-600);
}

.btn-success {
	background: var(--success);
}

.btn-warning {
	background: var(--warning);
}

.btn-danger {
	background: var(--error);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

/* Enhanced Footer */
.footer {
	background: var(--gray-900);
	color: var(--white);
	padding: 3rem 0 2rem;
}

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

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

.footer-section p,
.footer-section a {
	color: var(--gray-300);
	margin-bottom: 0.5rem;
}

.footer-section a:hover {
	color: var(--white);
}

.footer-bottom {
	border-top: 1px solid var(--gray-700);
	padding-top: 2rem;
	text-align: center;
	color: var(--gray-400);
}

.disclaimer {
	background: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	margin-top: 2rem;
	margin-bottom: 2rem;
}

/* Enhanced Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	backdrop-filter: blur(5px);
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	max-width: 90vw;
	max-height: 90vh;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.modal-header {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
	color: var(--white) !important;
}

.modal-close {
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	transition: var(--transition);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.modal-body {
	padding: 0;
	height: calc(100% - 80px);
}

.modal-iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-xl);
	z-index: 1001;
	max-width: 400px;
	margin: 0 auto;
	display: none;
}

.cookie-content {
	text-align: center;
}

.cookie-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

.cookie-text {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

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

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

.cookie-policy {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.cookie-policy:hover {
	background: var(--primary);
	color: var(--white);
}

/* Enhanced Game Page Styles */
.game-page {
	background: var(--gray-50);
	min-height: 100vh;
}

/* Main Page Additional Styles */
.community-highlights {
	background: var(--white);
}

.highlights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.highlight-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	text-align: center;
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
}

.highlight-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.highlight-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.highlight-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

.highlight-card p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.highlight-stats {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.highlight-stats span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gray-100);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	font-size: 0.875rem;
	color: var(--gray-600);
	font-weight: 500;
}

.highlight-stats i {
	color: var(--primary);
}

/* Testimonials Section */
.testimonials {
	background: var(--gray-50);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.testimonial-content {
	margin-bottom: 1.5rem;
}

.testimonial-content p {
	color: var(--gray-700);
	font-style: italic;
	line-height: 1.6;
	font-size: 1.125rem;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

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

.author-info h4 {
	color: var(--gray-900);
	margin: 0 0 0.25rem 0;
	font-size: 1.125rem;
}

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

/* Latest News Section */
.latest-news {
	background: var(--white);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.news-card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	overflow: hidden;
	transition: var(--transition);
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.news-date {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 1rem;
	text-align: center;
	min-width: 80px;
}

.news-day {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.news-month {
	display: block;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.news-content {
	padding: 1.5rem;
}

.news-content h3 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.news-content p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.news-link {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition);
}

.news-link:hover {
	color: var(--primary-dark);
	transform: translateX(5px);
}

/* All Games Section */
.all-games {
	background: var(--gray-50);
}

.all-games .games-grid {
	margin-bottom: 3rem;
}

.all-games .games-grid:last-child {
	margin-bottom: 0;
}

.all-games h3 {
	color: var(--gray-800);
	margin: 2rem 0 1rem;
	font-size: 1.75rem;
	text-align: center;
	background: var(--white);
	padding: 1rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
}

/* Additional Game Page Styles */
.game-section {
	margin-bottom: 4rem;
}

.game-section:last-child {
	margin-bottom: 0;
}

.game-section h2 {
	color: var(--gray-900);
	margin-bottom: 2rem;
	text-align: center;
	font-size: 2.5rem;
}

.game-section h3 {
	color: var(--gray-800);
	margin: 2rem 0 1rem;
	font-size: 1.75rem;
}

.game-section p {
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.game-section ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.game-section li {
	color: var(--gray-600);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* Game Grid Enhancements */
.games-grid.featured {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.games-grid.popular {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Game Card Enhancements */
.game-card.featured {
	border: 2px solid var(--primary);
	position: relative;
}

.game-card.featured::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

/* Game Stats Enhancements */
.game-stats {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	color: var(--gray-500);
	flex-wrap: wrap;
	gap: 0.5rem;
}

.game-stats span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--gray-100);
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius);
	font-weight: 500;
}

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

/* Games Hero Section */
.games-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
}

.games-hero-content h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.games-hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.games-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.games-stats .stat-item {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.games-stats .stat-number {
	color: var(--white);
}

.games-stats .stat-label {
	color: rgba(255, 255, 255, 0.8);
}

/* Popular Games Section */
.popular-games {
	background: var(--white);
}

.game-card.featured {
	position: relative;
}

.game-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--gradient-gold);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 1;
}

.game-stats {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	color: var(--gray-500);
}

.game-stats span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.game-page-header {
	background: var(--white);
	padding: 2rem 0;
	border-bottom: 1px solid var(--gray-200);
}

.game-page-title {
	font-size: 2.5rem;
	color: var(--gray-900);
	margin-bottom: 0.5rem;
}

.game-page-subtitle {
	color: var(--gray-600);
	font-size: 1.125rem;
}

.game-page-content {
	padding: 3rem 0;
}

.game-embed {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	margin-bottom: 2rem;
}

.game-embed-header {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.game-embed-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.game-embed-close {
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.game-embed-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

.game-embed-body {
	height: 600px;
}

.game-embed-iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Enhanced About Page Styles */
.about-page {
	background: var(--white);
}

/* About Hero Section */
.about-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
}

.about-hero-content h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.about-hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.about-hero-icon {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3rem;
	backdrop-filter: blur(10px);
}

/* About Mission Section */
.about-mission {
	background: var(--white);
}

.about-mission-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-mission-text h2 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
}

.about-mission-text p {
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.about-mission-visual {
	text-align: center;
}

.about-mission-card {
	width: 200px;
	height: 200px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	color: var(--white);
	font-size: 4rem;
	box-shadow: var(--shadow-lg);
}

/* About Features Section */
.about-features {
	background: var(--gray-50);
}

/* About Team Section */
.about-team {
	background: var(--white);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.team-card {
	text-align: center;
	padding: 2rem;
	background: var(--gray-50);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
}

.team-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.team-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.team-card h3 {
	color: var(--gray-900);
	margin-bottom: 1rem;
}

.team-card p {
	color: var(--gray-600);
	margin: 0;
}

/* About Community Section */
.about-community {
	background: var(--gray-50);
}

.community-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.community-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.community-feature {
	text-align: center;
	padding: 1.5rem;
}

.community-feature i {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.community-feature h4 {
	color: var(--gray-900);
	margin-bottom: 0.5rem;
}

.community-feature p {
	color: var(--gray-600);
	margin: 0;
}

.community-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

/* About Disclaimer Section */
.about-disclaimer {
	background: var(--white);
}

.about-page-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
}

.about-page-hero h1 {
	color: var(--white);
	margin-bottom: 1rem;
}

.about-page-hero p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

.about-page-content {
	padding: 4rem 0;
}

.about-section {
	margin-bottom: 4rem;
}

.about-section:last-child {
	margin-bottom: 0;
}

.about-section h2 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	text-align: center;
}

.about-section p {
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.about-values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.about-value {
	text-align: center;
	padding: 2rem;
	background: var(--gray-50);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
}

.about-value-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.about-value h3 {
	color: var(--gray-900);
	margin-bottom: 1rem;
}

.about-value p {
	color: var(--gray-600);
	margin: 0;
}

/* Enhanced Contact Page Styles */
.contact-page {
	background: var(--gray-50);
}

/* Contact Page Specific Styles */
.contact-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
	border-bottom: 1px solid var(--gray-200);
}

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

.contact-hero-icon {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero-icon i {
	font-size: 3rem;
	color: var(--white);
}

.contact-hero h1 {
	color: var(--white);
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-hero-subtitle {
	color: var(--white);
	font-size: 1.375rem;
	margin-bottom: 1rem;
	line-height: 1.5;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-hero-date {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	font-weight: 500;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-overview {
	background: var(--white);
	padding: 4rem 0;
}

.contact-overview .overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.contact-overview .overview-card {
	text-align: center;
	padding: 2rem;
	background: var(--white);
	border-radius: var(--border-radius-xl);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contact-overview .overview-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.contact-overview .overview-card:hover::before {
	transform: scaleX(1);
}

.contact-overview .overview-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.contact-overview .overview-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: all 0.3s ease;
}

.contact-overview .overview-icon i {
	font-size: 2rem;
	color: var(--white);
}

.contact-overview .overview-card:hover .overview-icon {
	transform: scale(1.1) rotate(5deg);
}

.contact-overview .overview-card h3 {
	color: var(--gray-900);
	font-size: 1.375rem;
	font-weight: 700;
	margin-bottom: 1rem;
	transition: color 0.3s ease;
}

.contact-overview .overview-card:hover h3 {
	color: var(--primary);
}

.contact-overview .overview-card p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
	font-size: 1rem;
}

.contact-main {
	background: var(--gray-50);
	padding: 4rem 0;
}

.contact-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.contact-info-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

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

.contact-info-card h3 {
	color: var(--gray-900);
	margin-bottom: 2rem;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-info-card h3 i {
	color: var(--primary);
	font-size: 1.25rem;
}

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

.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.contact-detail-item:hover {
	background: var(--white);
	transform: translateX(5px);
	box-shadow: var(--shadow);
	border-color: var(--primary);
}

.contact-detail-icon {
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

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

.contact-detail-item:hover .contact-detail-icon {
	background: var(--primary-dark);
	transform: scale(1.1);
}

.contact-detail-content h4 {
	color: var(--gray-900);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

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

.contact-detail-content a {
	color: var(--primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-detail-content a:hover {
	color: var(--primary-dark);
}

.contact-extra-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-extra-card {
	background: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.contact-extra-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.contact-extra-card h4 {
	color: var(--gray-900);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-extra-card h4 i {
	color: var(--primary);
	font-size: 1rem;
}

.contact-extra-card p {
	color: var(--gray-600);
	line-height: 1.5;
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
}

.contact-form-section {
	display: flex;
	flex-direction: column;
}

.contact-form-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

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

.contact-form-card h3 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-form-card h3 i {
	color: var(--primary);
	font-size: 1.25rem;
}

.form-description {
	color: var(--gray-600);
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

.form-group {
	margin-bottom: 1.5rem;
}

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

.form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--gray-200);
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--white);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control::placeholder {
	color: var(--gray-400);
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 0.9375rem;
	color: var(--gray-600);
	line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
	margin-top: 0.125rem;
}

.checkbox-label .checkmark {
	width: 18px;
	height: 18px;
	border: 2px solid var(--gray-300);
	border-radius: 3px;
	display: inline-block;
	position: relative;
	transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
	background: var(--primary);
	border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
	content: "✓";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white);
	font-size: 12px;
	font-weight: bold;
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
	border: none;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-secondary {
	background: var(--white);
	color: var(--primary);
	border: 2px solid var(--primary);
	padding: 0.875rem 1.75rem;
	border-radius: var(--border-radius);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-secondary:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/* Form Response Messages */
#form-response {
	margin-top: 1.5rem;
}

.alert {
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid transparent;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.alert-success {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.3);
	color: #166534;
}

.alert-danger {
	background: rgba(239, 68, 68, 0.1);
	border-color: rgba(239, 68, 68, 0.3);
	color: #991b1b;
}

.alert i {
	font-size: 1.125rem;
	margin-top: 0.125rem;
}

.alert strong {
	font-weight: 600;
}

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

.btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none !important;
}

.contact-cta {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.contact-cta .cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.contact-cta .cta-content h2 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-cta .cta-content p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.25rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

/* Legacy contact styles for backward compatibility */
.contact {
	background: var(--gray-50);
}

.contact h1 {
	color: var(--gray-900);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.contact p {
	color: var(--gray-600);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.contact-info {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
}

.contact-info h3 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.contact-info p {
	color: var(--gray-600);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-info i {
	color: var(--primary);
	min-width: 20px;
	font-size: 1.125rem;
}

.contact-info a {
	color: var(--primary);
	text-decoration: none;
}

.contact-info a:hover {
	color: var(--primary-dark);
}

.contact-form {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
}

.contact-form h3 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.contact-hero p {
	color: var(--white);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact-form-container {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}

.contact-form-container h2 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	text-align: center;
}

/* Form Row */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

/* Form Group with Error State */
.form-group.has-error .form-control {
	border-color: var(--error);
}

.form-group.has-error .form-error {
	display: block;
}

.form-error {
	display: none;
	color: var(--error);
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* Submit Button States */
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.btn:disabled:hover {
	transform: none;
	box-shadow: var(--shadow-md);
}

/* Contact Form Styles */
.contact-form-container {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}

.contact-form-container h2 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	text-align: center;
}

/* Form Row */
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

/* Form Group with Error State */
.form-group.has-error .form-control {
	border-color: var(--error);
}

.form-group.has-error .form-error {
	display: block;
}

.form-error {
	display: none;
	color: var(--error);
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* Submit Button States */
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.btn:disabled:hover {
	transform: none;
	box-shadow: var(--shadow-md);
}

.contact-page-hero {
	background: var(--white);
	padding: 4rem 0;
	text-align: center;
	border-bottom: 1px solid var(--gray-200);
}

.contact-page-hero h1 {
	color: var(--gray-900);
	margin-bottom: 1rem;
}

.contact-page-hero p {
	color: var(--gray-600);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

.contact-page-content {
	padding: 4rem 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.contact-info-section {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}

.contact-info-section h2 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
}

.contact-form-section {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}

.contact-form-section h2 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
}

/* Enhanced Privacy Policy & Terms Pages */
.legal-page {
	background: var(--white);
}

/* Terms Page Styles */
.terms-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 8rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.terms-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.terms-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.terms-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp 1s ease-out;
}

.terms-hero-content h1 {
	color: var(--white);
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease-out 0.2s both;
}

.terms-hero-subtitle {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.5rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	font-weight: 400;
	line-height: 1.6;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.terms-hero-icon {
	width: 140px;
	height: 140px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3.5rem;
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: slideInUp 0.8s ease-out 0.6s both;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.terms-hero-content h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.terms-hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 2rem;
}

.terms-hero-icon {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3rem;
	backdrop-filter: blur(10px);
}

.terms-overview {
	background: var(--white);
	padding: 6rem 0;
	position: relative;
}

.terms-overview::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, var(--gray-50), transparent);
}

.overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 4rem;
	position: relative;
	z-index: 1;
}

.overview-card {
	background: var(--white);
	padding: 3rem 2rem;
	border-radius: var(--border-radius-xl);
	text-align: center;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--gray-200);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.overview-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.overview-card:hover::before {
	transform: scaleX(1);
}

.overview-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.overview-icon {
	width: 100px;
	height: 100px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 2.5rem;
	position: relative;
	transition: all 0.3s ease;
}

.overview-icon::after {
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	background: var(--gradient-primary);
	border-radius: 50%;
	opacity: 0.3;
	z-index: -1;
	transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
	transform: scale(1.1);
}

.overview-card:hover .overview-icon::after {
	transform: scale(1.2);
	opacity: 0.5;
}

.overview-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	text-align: center;
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
}

.overview-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.overview-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.overview-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--gray-900);
}

.overview-card p {
	color: var(--gray-600);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.overview-card ul {
	list-style: none;
	padding: 0;
	text-align: left;
}

.overview-card li {
	color: var(--gray-600);
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--gray-200);
	position: relative;
	padding-left: 1.5rem;
}

.overview-card li:before {
	content: "✓";
	color: var(--success);
	font-weight: bold;
	position: absolute;
	left: 0;
}

.overview-card li:last-child {
	border-bottom: none;
}

.terms-detailed {
	background: var(--gray-50);
	padding: 6rem 0;
	position: relative;
}

.terms-detailed::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, var(--white), transparent);
}

.terms-content {
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.terms-section {
	margin-bottom: 4rem;
	background: var(--white);
	padding: 3rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.terms-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	transform: scaleY(0);
	transition: transform 0.4s ease;
}

.terms-section:hover::before {
	transform: scaleY(1);
}

.terms-section:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
}

.terms-section h2 {
	color: var(--gray-900);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--gray-200);
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 2rem;
	font-weight: 700;
	position: relative;
}

.terms-section h2::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.terms-section:hover h2::after {
	width: 100px;
}

.terms-section h2 i {
	color: var(--primary);
	font-size: 1.5rem;
	background: var(--gray-100);
	padding: 1rem;
	border-radius: 50%;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.terms-section:hover h2 i {
	background: var(--primary);
	color: var(--white);
	transform: rotate(360deg);
}

.terms-section p {
	color: var(--gray-600);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
	transition: color 0.3s ease;
}

.terms-section:hover p {
	color: var(--gray-700);
}

.commitment-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.commitment-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.commitment-item:hover::before {
	transform: scaleY(1);
}

.commitment-item:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.commitment-item i {
	color: var(--primary);
	font-size: 1.25rem;
	min-width: 20px;
}

.commitment-item span {
	color: var(--gray-700);
	font-weight: 500;
}

/* Missing Cookies Page Styles */
.duration-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.duration-type h4 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.duration-type h4 i {
	color: var(--primary);
	font-size: 1.125rem;
}

.duration-type ul {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.duration-type li {
	color: var(--gray-600);
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.cookies-cta {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cookies-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.cookies-cta .cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.cookies-cta .cta-content h2 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cookies-cta .cta-content p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.25rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.third-party-cookies {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.third-party-details {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
	padding: 1rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
}

.third-party-details span {
	color: var(--gray-700);
	font-size: 0.875rem;
	line-height: 1.5;
}

.lifespan-item {
	background: var(--white);
	padding: 1rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	text-align: center;
	transition: all 0.3s ease;
}

.lifespan-item:hover {
	background: var(--gray-50);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.lifespan-time {
	display: block;
	color: var(--primary);
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.lifespan-desc {
	display: block;
	color: var(--gray-600);
	font-size: 0.875rem;
	line-height: 1.4;
}

.contact-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

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

.contact-method i {
	color: var(--primary);
	font-size: 1.5rem;
	min-width: 24px;
	margin-top: 0.125rem;
}

.contact-method div h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	margin-top: 0;
	font-size: 1.125rem;
	font-weight: 600;
}

.contact-method div p {
	color: var(--gray-600);
	line-height: 1.5;
	margin: 0;
}

.contact-method div a {
	color: var(--primary);
	text-decoration: none;
}

.contact-method div a:hover {
	color: var(--primary-dark);
}

.cookies-disclaimer {
	background: var(--gray-50);
	padding: 4rem 0;
}

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

.disclaimer-content .alert {
	flex-direction: column;
	border-left: 4px solid var(--primary);
	background: rgba(59, 130, 246, 0.1);
	border-color: var(--primary);
	color: var(--primary-dark);
}

.disclaimer-content .alert h4 {
	color: var(--primary-dark);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.disclaimer-content .alert h4 i {
	color: var(--primary);
}

.disclaimer-content .alert p {
	margin: 0;
	line-height: 1.6;
}

.responsibilities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2.5rem;
	margin-top: 2.5rem;
}

.responsibility-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-xl);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.responsibility-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.responsibility-card:hover::before {
	transform: scaleX(1);
}

.responsibility-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: var(--primary);
}

.responsibility-card h4 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.responsibility-card h4 i {
	color: var(--primary);
	font-size: 1.125rem;
	background: var(--gray-100);
	padding: 0.75rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.responsibility-card:hover h4 i {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.1);
}

.responsibility-card p {
	color: var(--gray-600);
	line-height: 1.7;
	margin: 0;
	font-size: 1.0625rem;
	transition: color 0.3s ease;
}

.responsibility-card:hover p {
	color: var(--gray-700);
}

/* Privacy Policy Page Styles */
.privacy-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 8rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.privacy-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.privacy-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.privacy-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp 1s ease-out;
}

.privacy-hero-content h1 {
	color: var(--white);
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease-out 0.2s both;
}

.privacy-hero-subtitle {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.5rem;
	max-width: 600px;
	margin: 0 auto 1rem;
	font-weight: 400;
	line-height: 1.6;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.privacy-hero-date {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	font-style: italic;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.privacy-hero-icon {
	width: 140px;
	height: 140px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3.5rem;
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: slideInUp 0.8s ease-out 0.8s both;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.privacy-hero-content h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.privacy-hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 1rem;
}

.privacy-hero-date {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	font-style: italic;
}

.privacy-hero-icon {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3rem;
	backdrop-filter: blur(10px);
}

.privacy-overview {
	background: var(--white);
	padding: 6rem 0;
	position: relative;
}

.privacy-overview::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, var(--gray-50), transparent);
}

.privacy-detailed {
	background: var(--gray-50);
	position: relative;
}

.privacy-detailed::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, var(--white), transparent);
}

.privacy-content {
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.privacy-section {
	margin-bottom: 4rem;
	background: var(--white);
	padding: 3rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.privacy-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	transform: scaleY(0);
	transition: transform 0.4s ease;
}

.privacy-section:hover::before {
	transform: scaleY(1);
}

.privacy-section:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
}

.privacy-section h2 {
	color: var(--gray-900);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--gray-200);
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 2rem;
	font-weight: 700;
	position: relative;
}

.privacy-section h2::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.privacy-section:hover h2::after {
	width: 100px;
}

.privacy-section h2 i {
	color: var(--primary);
	background: var(--gray-100);
	padding: 1rem;
	border-radius: 50%;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.privacy-section:hover h2 i {
	background: var(--primary);
	color: var(--white);
	transform: rotate(360deg);
}

.privacy-section h3 {
	color: var(--gray-800);
	margin: 2rem 0 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.privacy-section h3 i {
	color: var(--primary);
	font-size: 1.25rem;
	background: var(--gray-100);
	padding: 0.75rem;
	border-radius: 50%;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.privacy-section:hover h3 i {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.1);
}

.privacy-section p {
	color: var(--gray-600);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
	transition: color 0.3s ease;
}

.privacy-section:hover p {
	color: var(--gray-700);
}

.info-collection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.info-type {
	background: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
}

.info-type h3 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.info-type h3 i {
	color: var(--primary);
}

.info-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
}

.info-item i {
	color: var(--primary);
	font-size: 1.125rem;
	min-width: 20px;
	margin-top: 0.125rem;
}

.info-item span {
	color: var(--gray-700);
	line-height: 1.5;
}

/* Cookies Page Styles */
.cookies-hero {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 8rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.cookies-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.cookies-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp 1s ease-out;
}

.cookies-hero-content h1 {
	color: var(--white);
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease-out 0.2s both;
}

.cookies-hero-subtitle {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.5rem;
	max-width: 600px;
	margin: 0 auto 1rem;
	font-weight: 400;
	line-height: 1.6;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.cookies-hero-date {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	font-style: italic;
	animation: fadeInUp 1s ease-out 0.6s both;
}

.cookies-hero-icon {
	width: 140px;
	height: 140px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3.5rem;
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: slideInUp 0.8s ease-out 0.8s both;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cookies-hero-content h1 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: 1rem;
}

.cookies-hero-subtitle {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto 1rem;
}

.cookies-hero-date {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	font-style: italic;
}

.cookies-hero-icon {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: var(--white);
	font-size: 3rem;
	backdrop-filter: blur(10px);
}

.cookies-overview {
	background: var(--white);
	padding: 6rem 0;
	position: relative;
}

.cookies-overview::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, var(--gray-50), transparent);
}

.cookies-detailed {
	background: var(--gray-50);
	padding: 6rem 0;
	position: relative;
}

.cookies-detailed::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: linear-gradient(to bottom, var(--white), transparent);
}

.cookies-content {
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.cookies-section {
	margin-bottom: 4rem;
	background: var(--white);
	padding: 3rem;
	border-radius: var(--border-radius-xl);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cookies-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	transform: scaleY(0);
	transition: transform 0.4s ease;
}

.cookies-section:hover::before {
	transform: scaleY(1);
}

.cookies-section:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
}

.cookies-section h2 {
	color: var(--gray-900);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--gray-200);
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 2rem;
	font-weight: 700;
	position: relative;
}

.cookies-section h2::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.cookies-section:hover h2::after {
	width: 100px;
}

.cookies-section h2 i {
	color: var(--primary);
	font-size: 1.5rem;
	background: var(--gray-100);
	padding: 1rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.cookies-section:hover h2 i {
	background: var(--primary);
	color: var(--white);
	transform: rotate(360deg);
}

.cookies-section h3 {
	color: var(--gray-800);
	margin: 2rem 0 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.5rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.cookies-section h3 i {
	color: var(--primary);
	font-size: 1.25rem;
	background: var(--gray-100);
	padding: 0.75rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.cookies-section:hover h3 i {
	background: var(--primary);
	color: var(--white);
	transform: scale(1.1);
}

.cookies-section h4 {
	color: var(--gray-700);
	margin: 1.5rem 0 1rem;
	font-size: 1.25rem;
	font-weight: 600;
	transition: color 0.3s ease;
}

.cookies-section:hover h4 {
	color: var(--gray-800);
}

.cookies-section p {
	color: var(--gray-600);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
	transition: color 0.3s ease;
}

.cookies-section:hover p {
	color: var(--gray-700);
}

.cookies-section ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.cookies-section li {
	color: var(--gray-600);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.cookie-explanation {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.explanation-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
}

.explanation-item i {
	color: var(--primary);
	font-size: 1.5rem;
	min-width: 24px;
	margin-top: 0.125rem;
}

.explanation-item div h4 {
	color: var(--gray-900);
	margin-bottom: 0.5rem;
}

.explanation-item div p {
	color: var(--gray-600);
	margin: 0;
	line-height: 1.5;
}

.cookie-categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.cookie-category {
	background: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
}

.category-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.category-header i {
	color: var(--warning);
	font-size: 1.25rem;
}

.category-header h3 {
	color: var(--gray-900);
	margin: 0;
}

.cookie-category p {
	color: var(--gray-600);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.category-examples h4 {
	color: var(--gray-700);
	margin-bottom: 0.75rem;
}

.category-examples ul {
	margin: 0;
	padding-left: 1.5rem;
}

.category-examples li {
	color: var(--gray-600);
	margin-bottom: 0.5rem;
	line-height: 1.5;
}

.legal-page-hero {
	background: var(--gray-50);
	padding: 4rem 0;
	text-align: center;
	border-bottom: 1px solid var(--gray-200);
}

.legal-page-hero h1 {
	color: var(--gray-900);
	margin-bottom: 1rem;
}

.legal-page-hero p {
	color: var(--gray-600);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

.legal-page-content {
	padding: 4rem 0;
	max-width: 800px;
	margin: 0 auto;
}

.legal-section {
	margin-bottom: 3rem;
}

.legal-section h2 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--gray-200);
}

.legal-section h3 {
	color: var(--gray-800);
	margin: 1.5rem 0 1rem;
}

.legal-section p {
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.legal-section ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.legal-section li {
	color: var(--gray-600);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* Enhanced Loading States */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: var(--white);
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3000;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: var(--white);
	animation: spin 1s ease-in-out infinite;
}

/* Enhanced Notifications */
.notification {
	position: fixed;
	top: 2rem;
	right: 2rem;
	background: var(--white);
	border-radius: var(--border-radius-lg);
	padding: 1rem 1.5rem;
	box-shadow: var(--shadow-xl);
	z-index: 1002;
	max-width: 400px;
	transform: translateX(100%);
	transition: var(--transition);
}

.notification.show {
	transform: translateX(0);
}

.notification.success {
	border-left: 4px solid var(--success);
}

.notification.error {
	border-left: 4px solid var(--error);
}

.notification.warning {
	border-left: 4px solid var(--warning);
}

.notification.info {
	border-left: 4px solid var(--primary);
}

.notification-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.notification-title {
	font-weight: 600;
	color: var(--gray-900);
}

.notification-close {
	background: none;
	border: none;
	color: var(--gray-400);
	cursor: pointer;
	font-size: 1.25rem;
	padding: 0;
	line-height: 1;
}

.notification-message {
	color: var(--gray-600);
	line-height: 1.5;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
	.container {
		padding: 0 2rem;
	}

	.about-mission-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-mission-visual {
		order: -1;
	}

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

	.overview-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.commitment-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.responsibilities-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.info-collection-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.cookie-explanation {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.cookie-categories {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.highlights-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.news-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	}

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

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

	.navbar-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		flex-direction: column;
		padding: 1rem;
		box-shadow: var(--shadow-lg);
		border-top: 1px solid var(--gray-200);
	}

	.navbar-menu.active {
		display: flex;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.games-hero-content h1,
	.about-hero-content h1,
	.contact-hero h1,
	.terms-hero-content h1,
	.privacy-hero-content h1,
	.cookies-hero-content h1 {
		font-size: 2.5rem;
	}

	.terms-hero,
	.privacy-hero,
	.cookies-hero {
		padding: 4rem 0;
		min-height: auto;
	}

	.terms-hero-icon,
	.privacy-hero-icon,
	.cookies-hero-icon {
		width: 100px;
		height: 100px;
		font-size: 2.5rem;
	}

	.overview-card,
	.terms-section,
	.privacy-section,
	.cookies-section {
		padding: 2rem;
	}

	.commitment-item,
	.responsibility-card {
		padding: 1.5rem;
	}

	/* New components mobile responsive */
	.terms-cta,
	.privacy-highlights {
		padding: 3rem 0;
	}

	.privacy-highlight,
	.third-party-item,
	.cookie-lifespan,
	.management-options,
	.impact-grid,
	.update-process,
	.usage-grid,
	.cookie-types,
	.sharing-reasons,
	.security-features,
	.retention-timeline,
	.user-rights,
	.commitment-content {
		padding: 1.5rem;
	}

	.lifespan-grid,
	.management-option,
	.update-step,
	.timeline-item,
	.right-item {
		padding: 1rem;
	}

	.duration-type,
	.usage-card,
	.cookie-type,
	.sharing-reason,
	.security-feature,
	.impact-item {
		padding: 1.5rem;
	}

	.cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.cta-actions .btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	/* New cookies components mobile responsive */
	.cookies-cta {
		padding: 3rem 0;
	}

	.duration-types {
		grid-template-columns: 1fr;
	}

	.third-party-cookies {
		grid-template-columns: 1fr;
	}

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

	.contact-methods {
		grid-template-columns: 1fr;
	}

	.cookies-disclaimer {
		padding: 3rem 0;
	}

	/* New contact components mobile responsive */
	.contact-hero {
		padding: 4rem 0;
	}

	.contact-hero-icon {
		width: 100px;
		height: 100px;
		font-size: 2.5rem;
	}

	.contact-hero h1 {
		font-size: 2.5rem;
	}

	.contact-hero-subtitle {
		font-size: 1.25rem;
	}

	.contact-overview {
		padding: 3rem 0;
	}

	.contact-overview .overview-grid {
		grid-template-columns: 1fr;
	}

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

	.contact-info-card,
	.contact-form-card {
		padding: 2rem;
	}

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

	.contact-cta {
		padding: 3rem 0;
	}

	.contact-cta .cta-content h2 {
		font-size: 2rem;
	}

	.cta-actions {
		flex-direction: column;
		align-items: center;
	}

	.section {
		padding: 3rem 0;
	}

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

	.categories-grid {
		grid-template-columns: 1fr;
	}

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

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

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

	.overview-grid {
		grid-template-columns: 1fr;
	}

	.commitment-grid {
		grid-template-columns: 1fr;
	}

	.responsibilities-grid {
		grid-template-columns: 1fr;
	}

	.info-collection-grid {
		grid-template-columns: 1fr;
	}

	.cookie-explanation {
		grid-template-columns: 1fr;
	}

	.cookie-categories {
		grid-template-columns: 1fr;
	}

	.modal-content {
		max-width: 95vw;
		max-height: 95vh;
	}

	.cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.game-embed-body {
		height: 400px;
	}

	.about-mission-card {
		width: 150px;
		height: 150px;
		font-size: 3rem;
	}

	.community-cta,
	.cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		display: flex;
	}

	.terms-hero-icon,
	.privacy-hero-icon,
	.cookies-hero-icon {
		width: 100px;
		height: 100px;
		font-size: 2.5rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.games-hero-content h1,
	.about-hero-content h1,
	.contact-hero h1,
	.terms-hero-content h1,
	.privacy-hero-content h1,
	.cookies-hero-content h1 {
		font-size: 2rem;
	}

	.container {
		padding: 0 1rem;
	}

	.feature-card,
	.game-card,
	.category-card,
	.stat-card,
	.team-card,
	.overview-card,
	.commitment-item,
	.responsibility-card,
	.info-type,
	.explanation-item,
	.cookie-category {
		padding: 1.5rem;
	}

	.game-categories {
		flex-direction: column;
		align-items: center;
	}

	.category-filter {
		width: 100%;
		max-width: 300px;
	}

	.notification {
		right: 1rem;
		left: 1rem;
		max-width: none;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: 1fr;
	}

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

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

	.about-mission-card {
		width: 120px;
		height: 120px;
		font-size: 2.5rem;
	}

	.hero-badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	.navbar-container {
		padding: 0.5rem 0;
	}

	.navbar .container {
		display: block;
	}

	.navbar-brand {
		font-size: 1.25rem;
	}

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

	.terms-hero-icon,
	.privacy-hero-icon,
	.cookies-hero-icon {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}

	.overview-icon,
	.commitment-item i,
	.info-item i {
		font-size: 1.5rem;
	}

	/* New contact components mobile responsive for smallest screens */
	.contact-hero {
		padding: 3rem 0;
	}

	.contact-hero-icon {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}

	.contact-hero h1 {
		font-size: 2rem;
	}

	.contact-hero-subtitle {
		font-size: 1.125rem;
	}

	.contact-overview {
		padding: 2rem 0;
	}

	.contact-overview .overview-card {
		padding: 1.5rem;
	}

	.contact-overview .overview-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.contact-info-card,
	.contact-form-card {
		padding: 1.5rem;
	}

	.contact-detail-item {
		padding: 0.75rem;
	}

	.contact-detail-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.contact-cta {
		padding: 2rem 0;
	}

	.contact-cta .cta-content h2 {
		font-size: 1.75rem;
	}

	.contact-cta .cta-content p {
		font-size: 1.125rem;
	}

	.game-stats {
		flex-direction: column;
		align-items: stretch;
	}

	.game-stats span {
		justify-content: center;
	}

	.sharing-reasons,
	.security-features,
	.commitment-grid,
	.lifespan-grid,
	.impact-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
	}
}

/* Enhanced Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

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

@keyframes slideInUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
	animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
	animation: fadeInRight 0.6s ease-out;
}

.slide-in-up {
	animation: slideInUp 0.4s ease-out;
}

/* Enhanced Utility Classes */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

.mb-1 {
	margin-bottom: 0.5rem;
}
.mb-2 {
	margin-bottom: 1rem;
}
.mb-3 {
	margin-bottom: 1.5rem;
}
.mb-4 {
	margin-bottom: 2rem;
}
.mb-5 {
	margin-bottom: 3rem;
}

.mt-1 {
	margin-top: 0.5rem;
}
.mt-2 {
	margin-top: 1rem;
}
.mt-3 {
	margin-top: 1.5rem;
}
.mt-4 {
	margin-top: 2rem;
}
.mt-5 {
	margin-top: 3rem;
}

.p-1 {
	padding: 0.5rem;
}
.p-2 {
	padding: 1rem;
}
.p-3 {
	padding: 1.5rem;
}
.p-4 {
	padding: 2rem;
}
.p-5 {
	padding: 3rem;
}

.d-none {
	display: none;
}
.d-block {
	display: block;
}
.d-flex {
	display: flex;
}
.d-grid {
	display: grid;
}

.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around;
}

.align-center {
	align-items: center;
}
.align-start {
	align-items: flex-start;
}
.align-end {
	align-items: flex-end;
}

.w-full {
	width: 100%;
}
.h-full {
	height: 100%;
}

.rounded {
	border-radius: var(--border-radius);
}
.rounded-lg {
	border-radius: var(--border-radius-lg);
}
.rounded-xl {
	border-radius: var(--border-radius-xl);
}

.shadow {
	box-shadow: var(--shadow);
}
.shadow-md {
	box-shadow: var(--shadow-md);
}
.shadow-lg {
	box-shadow: var(--shadow-lg);
}
.shadow-xl {
	box-shadow: var(--shadow-xl);
}

/* Enhanced Alert Styles */
.alert {
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	border-left: 4px solid;
}

.alert-info {
	background: rgba(102, 126, 234, 0.1);
	color: var(--primary);
	border-left-color: var(--primary);
}

.alert-success {
	background: rgba(74, 222, 128, 0.1);
	color: var(--success);
	border-left-color: var(--success);
}

.alert-warning {
	background: rgba(251, 191, 36, 0.1);
	color: var(--warning);
	border-left-color: var(--warning);
}

.alert-danger {
	background: rgba(248, 113, 113, 0.1);
	color: var(--error);
	border-left-color: var(--error);
}

/* Enhanced Card Styles */
.card {
	background: var(--white);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	overflow: hidden;
}

.card-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--gray-200);
	background: var(--gray-50);
}

.card-body {
	padding: 1.5rem;
}

.card-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--gray-200);
	background: var(--gray-50);
}

/* Enhanced Table Styles */
.table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}

.table th,
.table td {
	padding: 0.75rem;
	text-align: left;
	border-bottom: 1px solid var(--gray-200);
}

.table th {
	background: var(--gray-50);
	font-weight: 600;
	color: var(--gray-900);
}

.table tbody tr:hover {
	background: var(--gray-50);
}

/* Enhanced Badge Styles */
.badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: var(--border-radius);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.badge-primary {
	background: var(--primary);
	color: var(--white);
}

.badge-secondary {
	background: var(--secondary);
	color: var(--white);
}

.badge-success {
	background: var(--success);
	color: var(--white);
}

.badge-warning {
	background: var(--warning);
	color: var(--white);
}

.badge-danger {
	background: var(--error);
	color: var(--white);
}

/* Enhanced Progress Bar */
.progress {
	width: 100%;
	height: 8px;
	background: var(--gray-200);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.progress-bar {
	height: 100%;
	background: var(--gradient-primary);
	border-radius: var(--border-radius);
	transition: width 0.3s ease;
}

/* Enhanced Tooltip */
.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltip-text {
	visibility: hidden;
	width: 200px;
	background: var(--gray-900);
	color: var(--white);
	text-align: center;
	border-radius: var(--border-radius);
	padding: 0.5rem;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -100px;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 0.875rem;
}

.tooltip:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
	background: var(--gray-300);
	border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gray-400);
}

/* Enhanced Focus States */
*:focus {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
	.game-card:hover,
	.feature-card:hover,
	.category-card:hover,
	.stat-card:hover,
	.team-card:hover {
		transform: none;
	}

	.btn:hover,
	.game-play:hover,
	.category-link:hover {
		transform: none;
		text-decoration: none;
	}

	.navbar-link:hover,
	.navbar-cta:hover {
		transform: none;
	}
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.navbar-logo,
	.feature-icon,
	.category-icon,
	.stat-icon,
	.team-icon {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}
}

/* Print Styles */
@media print {
	.navbar,
	.footer,
	.cookie-popup,
	.modal {
		display: none !important;
	}

	.hero,
	.games-hero,
	.about-hero,
	.contact-hero {
		background: white !important;
		color: black !important;
	}

	.section {
		padding: 1rem 0;
	}
}

/* Enhanced Selection */
::selection {
	background: var(--primary);
	color: var(--white);
}

::-moz-selection {
	background: var(--primary);
	color: var(--white);
}

/* Additional Utility Classes */
.text-primary {
	color: var(--primary);
}
.text-secondary {
	color: var(--secondary);
}
.text-success {
	color: var(--success);
}
.text-warning {
	color: var(--warning);
}
.text-danger {
	color: var(--error);
}
.text-muted {
	color: var(--gray-500);
}

.bg-primary {
	background-color: var(--primary);
}
.bg-secondary {
	background-color: var(--secondary);
}
.bg-success {
	background-color: var(--success);
}
.bg-warning {
	background-color: var(--warning);
}
.bg-danger {
	background-color: var(--error);
}
.bg-light {
	background-color: var(--gray-50);
}

.border-primary {
	border-color: var(--primary);
}
.border-secondary {
	border-color: var(--secondary);
}
.border-success {
	border-color: var(--success);
}
.border-warning {
	border-color: var(--warning);
}
.border-danger {
	border-color: var(--error);
}

/* Flexbox Utilities */
.flex {
	display: flex;
}
.flex-col {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-nowrap {
	flex-wrap: nowrap;
}

.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.items-stretch {
	align-items: stretch;
}

.justify-center {
	justify-content: center;
}
.justify-start {
	justify-content: flex-start;
}
.justify-end {
	justify-content: flex-end;
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around;
}

/* Grid Utilities */
.grid {
	display: grid;
}
.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-1 {
	gap: 0.25rem;
}
.gap-2 {
	gap: 0.5rem;
}
.gap-3 {
	gap: 0.75rem;
}
.gap-4 {
	gap: 1rem;
}
.gap-5 {
	gap: 1.25rem;
}
.gap-6 {
	gap: 1.5rem;
}
.gap-8 {
	gap: 2rem;
}
.gap-10 {
	gap: 2.5rem;
}

/* Position Utilities */
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.fixed {
	position: fixed;
}
.sticky {
	position: sticky;
}

.top-0 {
	top: 0;
}
.right-0 {
	right: 0;
}
.bottom-0 {
	bottom: 0;
}
.left-0 {
	left: 0;
}

/* Z-index Utilities */
.z-0 {
	z-index: 0;
}
.z-10 {
	z-index: 10;
}
.z-20 {
	z-index: 20;
}
.z-30 {
	z-index: 30;
}
.z-40 {
	z-index: 40;
}
.z-50 {
	z-index: 50;
}

/* Overflow Utilities */
.overflow-hidden {
	overflow: hidden;
}
.overflow-auto {
	overflow: auto;
}
.overflow-scroll {
	overflow: scroll;
}

/* Cursor Utilities */
.cursor-pointer {
	cursor: pointer;
}
.cursor-default {
	cursor: default;
}
.cursor-not-allowed {
	cursor: not-allowed;
}

/* User Select Utilities */
.select-none {
	user-select: none;
}
.select-text {
	user-select: text;
}
.select-all {
	user-select: all;
}

/* Visibility Utilities */
.visible {
	visibility: visible;
}
.invisible {
	visibility: hidden;
}

/* Opacity Utilities */
.opacity-0 {
	opacity: 0;
}
.opacity-25 {
	opacity: 0.25;
}
.opacity-50 {
	opacity: 0.5;
}
.opacity-75 {
	opacity: 0.75;
}
.opacity-100 {
	opacity: 1;
}

/* Additional Missing Styles */
.section-sm {
	padding: 2rem 0;
}

.section-sm .features-grid {
	margin-top: 2rem;
}

.mb-5 {
	margin-bottom: 3rem;
}

.mt-4 {
	margin-top: 2rem;
}

.mt-5 {
	margin-top: 3rem;
}

/* Enhanced Mobile Hero Styles */
@media (max-width: 768px) {
	.hero {
		padding: 4rem 0;
		min-height: auto;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.hero-cta {
		padding: 1rem 2rem;
		font-size: 1.125rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 3rem 0;
	}

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

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.hero-cta {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
		width: 100%;
		justify-content: center;
	}

	.hero-badge {
		font-size: 0.875rem;
		padding: 0.5rem 1rem;
	}

	.terms-hero,
	.privacy-hero,
	.cookies-hero {
		padding: 3rem 0;
	}

	.terms-hero-content h1,
	.privacy-hero-content h1,
	.cookies-hero-content h1 {
		font-size: 2rem;
	}

	.terms-hero-subtitle,
	.privacy-hero-subtitle,
	.cookies-hero-subtitle {
		font-size: 1.125rem;
	}

	.terms-hero-icon,
	.privacy-hero-icon,
	.cookies-hero-icon {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}

	.overview-card,
	.terms-section,
	.privacy-section,
	.cookies-section {
		padding: 1.5rem;
	}

	.commitment-item,
	.responsibility-card {
		padding: 1rem;
	}

	.overview-icon {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}

	/* New components mobile responsive for smallest screens */
	.terms-cta,
	.privacy-highlights {
		padding: 2rem 0;
	}

	.cta-content h2 {
		font-size: 2rem;
	}

	.cta-content p {
		font-size: 1.125rem;
	}

	.privacy-highlight,
	.third-party-item,
	.cookie-lifespan,
	.management-options,
	.impact-grid,
	.update-process,
	.usage-grid,
	.cookie-types,
	.sharing-reasons,
	.security-features,
	.retention-timeline,
	.user-rights,
	.commitment-content {
		padding: 1rem;
	}

	.lifespan-grid,
	.management-option,
	.update-step,
	.timeline-item,
	.right-item {
		padding: 0.75rem;
	}

	.duration-type,
	.usage-card,
	.cookie-type,
	.sharing-reason,
	.security-feature,
	.impact-item {
		padding: 1rem;
	}

	.usage-icon,
	.third-party-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.step-number {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}

	.timeline-dot {
		width: 16px;
		height: 16px;
	}

	.browser-links {
		flex-direction: column;
		align-items: stretch;
	}

	.browser-links a {
		text-align: center;
		justify-content: center;
	}

	/* New cookies components mobile responsive for smallest screens */
	.cookies-cta {
		padding: 2rem 0;
	}

	.cookies-cta .cta-content h2 {
		font-size: 2rem;
	}

	.cookies-cta .cta-content p {
		font-size: 1.125rem;
	}

	.duration-types {
		grid-template-columns: 1fr;
	}

	.third-party-cookies {
		grid-template-columns: 1fr;
	}

	.lifespan-grid {
		grid-template-columns: 1fr;
	}

	.contact-methods {
		grid-template-columns: 1fr;
	}

	.cookies-disclaimer {
		padding: 2rem 0;
	}
}

/* Enhanced Game Badge Styles */
.game-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--gradient-primary);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius);
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 10;
}

/* Enhanced Game Image Styles */
.game-image {
	width: 100%;
	height: 200px;
	background: var(--gradient-primary);
	border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 4rem;
	position: relative;
}

.game-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Enhanced Game Content Styles */
.game-content {
	padding: 1.5rem;
}

.game-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1rem;
}

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

/* Enhanced Category Games Styles */
.category-games {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

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

/* Enhanced Category Link Styles */
.category-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	margin-top: 1rem;
	transition: var(--transition);
}

.category-link:hover {
	color: var(--primary-dark);
	transform: translateX(5px);
}

/* Enhanced Alert Styles */
.alert {
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	border-left: 4px solid;
}

.alert-info {
	background: rgba(59, 130, 246, 0.1);
	border-color: var(--primary);
	color: var(--primary-dark);
}

.alert-success {
	background: rgba(34, 197, 94, 0.1);
	border-color: var(--success);
	color: var(--success-dark);
}

.alert-warning {
	background: rgba(245, 158, 11, 0.1);
	border-color: var(--warning);
	color: var(--warning-dark);
}

.alert-danger {
	background: rgba(239, 68, 68, 0.1);
	border-color: var(--error);
	color: var(--error-dark);
}

/* Missing Terms Page Styles */
.terms-cta {
	background: var(--gradient-primary);
	color: var(--white);
	padding: 4rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.terms-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.1) 0%,
		rgba(118, 75, 162, 0.1) 100%
	);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.cta-content h2 {
	color: var(--white);
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-content p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.25rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

.cta-actions .btn {
	padding: 1rem 2rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: var(--border-radius-lg);
	transition: all 0.3s ease;
}

.cta-actions .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Missing Privacy Page Styles */
.privacy-highlights {
	background: var(--white);
	padding: 4rem 0;
}

.privacy-highlight {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.privacy-highlight::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.privacy-highlight:hover::before {
	transform: scaleY(1);
}

.privacy-highlight:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-lg);
}

.privacy-highlight h3 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.privacy-highlight p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

.third-party-item {
	background: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.third-party-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.third-party-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.third-party-content h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.third-party-content p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

/* Missing Cookies Page Styles */
.cookie-lifespan {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	margin-bottom: 2rem;
	margin-top: 2rem;
}

.lifespan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.duration-type {
	background: var(--gray-50);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	text-align: center;
	transition: all 0.3s ease;
}

.duration-type:hover {
	background: var(--white);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.duration-type h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.duration-type p {
	color: var(--gray-600);
	font-size: 0.875rem;
	margin: 0;
	line-height: 1.5;
}

.management-options {
	background: var(--white);
	margin-bottom: 2rem;
}

.management-option {
	background: var(--gray-50);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.management-option:hover {
	background: var(--white);
	box-shadow: var(--shadow);
	transform: translateX(5px);
}

.management-option h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.management-option p {
	color: var(--gray-600);
	font-size: 0.875rem;
	margin: 0;
	line-height: 1.5;
}

.browser-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.browser-links a {
	color: var(--primary);
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	background: var(--gray-100);
	border-radius: var(--border-radius);
	transition: all 0.3s ease;
}

.browser-links a:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.impact-item {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	text-align: center;
	transition: all 0.3s ease;
}

.impact-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.impact-item h4 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.impact-item p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

.update-process {
	background: var(--white);
	margin-bottom: 2rem;
}

.update-step {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.update-step:hover {
	background: var(--white);
	box-shadow: var(--shadow);
	transform: translateX(5px);
}

.step-number {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 700;
	font-size: 1.125rem;
	flex-shrink: 0;
}

.step-content h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	margin-top: 0;
	font-size: 1.125rem;
	font-weight: 600;
}

.step-content p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

.usage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.usage-card {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	text-align: center;
	transition: all 0.3s ease;
}

.usage-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.usage-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--white);
	font-size: 2rem;
}

.usage-card h4 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.usage-card p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

.cookie-types {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.cookie-type {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.cookie-type:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.cookie-type ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cookie-type h4 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.cookie-type p {
	color: var(--gray-600);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.sharing-reasons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.sharing-reason {
	background: var(--white);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.sharing-reason:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.sharing-reason h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.sharing-reason p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
	font-size: 0.875rem;
}

.security-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.security-feature {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	text-align: center;
	transition: all 0.3s ease;
}

.security-feature:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.security-feature h4 {
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.security-feature p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

.retention-timeline {
	margin-bottom: 2rem;
}

.timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
}

.timeline-item:hover {
	background: var(--white);
	box-shadow: var(--shadow);
	transform: translateX(5px);
}

.timeline-dot {
	width: 20px;
	height: 20px;
	background: var(--gradient-primary);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 0.5rem;
}

.timeline-content h4 {
	color: var(--gray-900);
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.timeline-content p {
	color: var(--gray-600);
	line-height: 1.6;
	margin: 0;
}

.user-rights {
	margin-bottom: 2rem;
}

.right-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--gray-50);
	border-radius: var(--border-radius);
	border: 1px solid var(--gray-200);
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.right-item:hover {
	background: var(--white);
	box-shadow: var(--shadow);
	transform: translateX(5px);
}

.right-item i {
	color: var(--primary);
	font-size: 2rem;
	min-width: 20px;
}

.right-item span {
	color: var(--gray-700);
	font-weight: 500;
}

.right-item div h4,
.right-item div p {
	margin-bottom: 0;
	margin-top: 0;
	font-size: 1.2rem;
}

.commitment-content {
	background: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--gray-200);
	margin-bottom: 2rem;
}

.commitment-content h3 {
	color: var(--gray-900);
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
}

.commitment-content p {
	color: var(--gray-600);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.commitment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.grid-250 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.commitment-item {
	background: var(--gray-50);
	padding: 1.5rem;
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--gray-200);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.commitment-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	transform: scaleY(0);
	transition: transform 0.3s ease;
}

.commitment-item:hover::before {
	transform: scaleY(1);
}

.commitment-item:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}
