/* HappyPlayHub - Modern Gaming Platform Styles */
:root {
	--happyplayhub-primary: #10b981;
	--happyplayhub-primary-dark: #059669;
	--happyplayhub-secondary: #3b82f6;
	--happyplayhub-accent: #f59e0b;
	--happyplayhub-success: #10b981;
	--happyplayhub-warning: #f59e0b;
	--happyplayhub-error: #ef4444;
	--happyplayhub-background: #f8fafc;
	--happyplayhub-surface: #ffffff;
	--happyplayhub-text: #1e293b;
	--happyplayhub-text-muted: #64748b;
	--happyplayhub-border: #e2e8f0;
	--happyplayhub-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--happyplayhub-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	background-color: var(--happyplayhub-background);
	color: var(--happyplayhub-text);
	line-height: 1.6;
	font-weight: 400;
	transition: all 0.3s ease;
}

/* Typography */
.happyplayhub-heading-xl {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	animation: fadeInUp 0.8s ease-out;
}

.happyplayhub-heading-lg {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.025em;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.happyplayhub-heading-md {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.happyplayhub-heading-sm {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.4;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.happyplayhub-text-lg {
	font-size: 1.125rem;
	line-height: 1.7;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.happyplayhub-text-base {
	font-size: 1rem;
	line-height: 1.6;
	transition: all 0.3s ease;
}

.happyplayhub-text-sm {
	font-size: 0.875rem;
	line-height: 1.5;
	transition: all 0.3s ease;
}

/* Layout */
.happyplayhub-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
	animation: fadeIn 1s ease-out;
}

.happyplayhub-section {
	padding: 4rem 0;
	animation: fadeIn 1s ease-out;
}

.happyplayhub-section-sm {
	padding: 2rem 0;
	animation: fadeIn 1s ease-out;
}

/* Hero Section Variants */
.happyplayhub-hero-gradient {
	background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
	color: white;
	text-align: center;
}

.happyplayhub-hero-text {
	max-width: 600px;
	margin: 0 auto;
	opacity: 0.9;
}

/* Section Background Variants */
.happyplayhub-section-bg {
	background: var(--happyplayhub-background);
}

.happyplayhub-section-surface {
	background: var(--happyplayhub-surface);
}

.happyplayhub-section-center {
	text-align: center;
}

/* Features Grid Variants */
.happyplayhub-features-grid-compact {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

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

/* Feature Card Variants */
.happyplayhub-feature-card-content {
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.happyplayhub-feature-card-info {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: var(--happyplayhub-primary);
	padding: 1rem;
	border-radius: 8px;
	margin-top: 2rem;
}

/* Text Center with Margin */
.happyplayhub-text-center-margin {
	margin-top: 3rem;
}

/* Game Thumbnail Variants */
.happyplayhub-game-thumbnail-space {
	filter: hue-rotate(180deg);
}

.happyplayhub-game-thumbnail-dragon {
	filter: hue-rotate(90deg);
}

.happyplayhub-game-thumbnail-racing {
	filter: hue-rotate(270deg);
}

.happyplayhub-game-thumbnail-puzzle {
	filter: hue-rotate(45deg);
}

/* Link Styling */
.happyplayhub-link-primary {
	color: var(--happyplayhub-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.happyplayhub-link-primary:hover {
	color: var(--happyplayhub-primary-dark);
	text-decoration: underline;
}

/* Cookie Consent */
.happyplayhub-cookie-consent-hidden {
	display: none;
}

/* Navigation */
.happyplayhub-navbar {
	background: var(--happyplayhub-surface);
	box-shadow: var(--happyplayhub-shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
	animation: slideDown 0.6s ease-out;
	transition: all 0.3s ease;
}

.happyplayhub-navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 1rem;
	padding-right: 1rem;
	transition: all 0.3s ease;
}

.happyplayhub-navbar-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--happyplayhub-text);
	transition: all 0.3s ease;
	animation: fadeInLeft 0.8s ease-out;
}

.happyplayhub-navbar-brand:hover {
	transform: scale(1.05);
}

.happyplayhub-navbar-logo {
	width: 60px;
	height: auto;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.happyplayhub-navbar-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--happyplayhub-primary);
	transition: all 0.3s ease;
}

.happyplayhub-navbar-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	animation: fadeInRight 0.8s ease-out;
}

.happyplayhub-navbar-link {
	text-decoration: none;
	color: var(--happyplayhub-text);
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.happyplayhub-navbar-link:hover {
	color: var(--happyplayhub-primary);
	background: rgba(16, 185, 129, 0.1);
	transform: translateY(-2px);
}

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

.happyplayhub-navbar-link.active::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--happyplayhub-primary);
	border-radius: 1px;
	animation: expandWidth 0.3s ease-out;
}

.happyplayhub-cta-button {
	background: linear-gradient(
		135deg,
		var(--happyplayhub-primary),
		var(--happyplayhub-secondary)
	);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: var(--happyplayhub-shadow);
	display: inline-block;
	position: relative;
	overflow: hidden;
}

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

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

.happyplayhub-cta-button:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.4);
	color: white;
	text-decoration: none;
}

/* Mobile Navigation */
.happyplayhub-navbar-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.happyplayhub-navbar-toggle:hover {
	background-color: var(--happyplayhub-border);
	transform: scale(1.1);
}

.happyplayhub-navbar-toggle-bar {
	display: block;
	width: 24px;
	height: 3px;
	background-color: var(--happyplayhub-primary);
	margin: 4px 0;
	border-radius: 2px;
	transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.happyplayhub-hero {
	background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
	color: white;
	padding: 6rem 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: fadeIn 1s ease-out;
}

.happyplayhub-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;
	animation: float 6s ease-in-out infinite;
}

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

.happyplayhub-hero-badge {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
	animation: bounceIn 1s ease-out 1s both;
	transition: all 0.3s ease;
}

.happyplayhub-hero-badge:hover {
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.3);
}

.happyplayhub-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	animation: slideInLeft 1s ease-out 1.2s both;
}

.happyplayhub-hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	font-weight: 400;
	animation: slideInRight 1s ease-out 1.4s both;
}

.happyplayhub-hero-cta {
	background: white;
	color: var(--happyplayhub-primary);
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	display: inline-block;
	box-shadow: var(--happyplayhub-shadow-lg);
	animation: fadeInUp 1s ease-out 1.6s both;
	position: relative;
	overflow: hidden;
}

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

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

.happyplayhub-hero-cta:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	color: var(--happyplayhub-primary);
	text-decoration: none;
}

/* Features Section */
.happyplayhub-features {
	background: var(--happyplayhub-surface);
	padding: 5rem 0;
	animation: fadeIn 1s ease-out;
}

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

.happyplayhub-feature-card {
	background: var(--happyplayhub-surface);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: var(--happyplayhub-shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--happyplayhub-border);
	animation: fadeInUp 0.8s ease-out;
	position: relative;
	overflow: hidden;
}

.happyplayhub-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(16, 185, 129, 0.05),
		transparent
	);
	transition: left 0.6s ease;
}

.happyplayhub-feature-card:hover::before {
	left: 100%;
}

.happyplayhub-feature-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--happyplayhub-shadow-lg);
	border-color: var(--happyplayhub-primary);
}

.happyplayhub-feature-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(
		135deg,
		var(--happyplayhub-primary),
		var(--happyplayhub-secondary)
	);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: white;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	animation: bounceIn 0.8s ease-out;
}

.happyplayhub-feature-card:hover .happyplayhub-feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.happyplayhub-feature-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--happyplayhub-text);
	transition: all 0.3s ease;
}

.happyplayhub-feature-card:hover .happyplayhub-feature-title {
	color: var(--happyplayhub-primary);
}

.happyplayhub-feature-desc {
	color: var(--happyplayhub-text-muted);
	line-height: 1.6;
	transition: all 0.3s ease;
}

.happyplayhub-feature-card:hover .happyplayhub-feature-desc {
	color: var(--happyplayhub-text);
}

/* Games Section */
.happyplayhub-games {
	background: var(--happyplayhub-background);
	padding: 5rem 0;
	animation: fadeIn 1s ease-out;
}

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

.happyplayhub-game-card {
	background: var(--happyplayhub-surface);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--happyplayhub-shadow);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--happyplayhub-border);
	animation: fadeInUp 0.8s ease-out;
	position: relative;
}

.happyplayhub-game-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(16, 185, 129, 0.05),
		transparent
	);
	transition: left 0.6s ease;
	z-index: 1;
}

.happyplayhub-game-card:hover::before {
	left: 100%;
}

.happyplayhub-game-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--happyplayhub-shadow-lg);
	border-color: var(--happyplayhub-primary);
}

.happyplayhub-game-thumbnail {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: all 0.4s ease;
}

.happyplayhub-game-card:hover .happyplayhub-game-thumbnail {
	transform: scale(1.05);
}

.happyplayhub-game-content {
	padding: 1.5rem;
	position: relative;
	z-index: 2;
}

.happyplayhub-game-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--happyplayhub-text);
	transition: all 0.3s ease;
}

.happyplayhub-game-card:hover .happyplayhub-game-title {
	color: var(--happyplayhub-primary);
}

.happyplayhub-game-desc {
	color: var(--happyplayhub-text-muted);
	margin-bottom: 1rem;
	font-size: 0.875rem;
	line-height: 1.5;
	transition: all 0.3s ease;
}

.happyplayhub-game-card:hover .happyplayhub-game-desc {
	color: var(--happyplayhub-text);
}

.happyplayhub-game-button {
	background: var(--happyplayhub-primary);
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 0.875rem;
	cursor: pointer;
	width: 100%;
	position: relative;
	overflow: hidden;
}

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

.happyplayhub-game-button:hover::before {
	left: 100%;
}

.happyplayhub-game-button:hover {
	background: var(--happyplayhub-primary-dark);
	color: white;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Game Modal */
.happyplayhub-game-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease-out;
}

.happyplayhub-game-modal-content {
	background: var(--happyplayhub-surface);
	border-radius: 16px;
	width: 90%;
	max-width: 1000px;
	max-height: 90vh;
	box-shadow: var(--happyplayhub-shadow-lg);
	overflow: hidden;
	position: relative;
	animation: scaleIn 0.3s ease-out;
}

.happyplayhub-game-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid var(--happyplayhub-border);
	background: var(--happyplayhub-surface);
}

.happyplayhub-game-modal-header h2 {
	margin: 0;
	color: var(--happyplayhub-text);
	font-size: 1.5rem;
	font-weight: 600;
}

.happyplayhub-game-modal-close {
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--happyplayhub-text-muted);
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.happyplayhub-game-modal-close:hover {
	background: var(--happyplayhub-border);
	color: var(--happyplayhub-text);
	transform: scale(1.1) rotate(90deg);
}

.happyplayhub-game-modal-body {
	padding: 0;
	background: #000;
}

.happyplayhub-game-modal-iframe {
	width: 100%;
	height: 70vh;
	min-height: 500px;
	border: none;
	border-radius: 0;
	display: block;
}

/* Game Embed */
.happyplayhub-game-embed {
	background: var(--happyplayhub-surface);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: var(--happyplayhub-shadow);
	margin: 2rem 0;
	transition: all 0.3s ease;
}

.happyplayhub-game-iframe {
	width: 100%;
	height: 600px;
	border: none;
	border-radius: 12px;
	box-shadow: var(--happyplayhub-shadow);
	transition: all 0.3s ease;
}

/* About Section */
.happyplayhub-about {
	background: var(--happyplayhub-surface);
	padding: 5rem 0;
	animation: fadeIn 1s ease-out;
}

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

.happyplayhub-about-text {
	font-size: 1.125rem;
	color: var(--happyplayhub-text-muted);
	margin-bottom: 2rem;
	line-height: 1.7;
	transition: all 0.3s ease;
}

/* Contact Section */
.happyplayhub-contact {
	background: var(--happyplayhub-background);
	padding: 5rem 0;
	animation: fadeIn 1s ease-out;
}

.happyplayhub-contact-form {
	max-width: 600px;
	margin: 0 auto;
	background: var(--happyplayhub-surface);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: var(--happyplayhub-shadow);
	animation: fadeInUp 1s ease-out;
	transition: all 0.3s ease;
}

.happyplayhub-contact-form:hover {
	box-shadow: var(--happyplayhub-shadow-lg);
	transform: translateY(-2px);
}

.happyplayhub-form-group {
	margin-bottom: 1.5rem;
	animation: fadeInUp 0.8s ease-out;
}

.happyplayhub-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--happyplayhub-text);
	transition: all 0.3s ease;
}

.happyplayhub-form-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid var(--happyplayhub-border);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--happyplayhub-surface);
}

.happyplayhub-form-input:focus {
	outline: none;
	border-color: var(--happyplayhub-primary);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
	transform: translateY(-1px);
}

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

.happyplayhub-form-button {
	background: var(--happyplayhub-primary);
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	position: relative;
	overflow: hidden;
}

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

.happyplayhub-form-button:hover::before {
	left: 100%;
}

.happyplayhub-form-button:hover {
	background: var(--happyplayhub-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.happyplayhub-form-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Footer */
.happyplayhub-footer {
	background: var(--happyplayhub-text);
	color: white;
	padding: 3rem 0 2rem;
	animation: fadeIn 1s ease-out;
}

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

.happyplayhub-footer-section h3 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1.125rem;
	transition: all 0.3s ease;
}

.happyplayhub-footer-section p {
	color: #d1d5db;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.happyplayhub-footer-section a {
	color: #d1d5db;
	text-decoration: none;
	transition: all 0.3s ease;
}

.happyplayhub-footer-section a:hover {
	color: var(--happyplayhub-primary);
	transform: translateX(5px);
}

.happyplayhub-footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	text-align: center;
	color: #9ca3af;
	font-size: 0.875rem;
}

/* Cookie Consent */
.happyplayhub-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--happyplayhub-surface);
	box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	z-index: 1000;
	border-top: 1px solid var(--happyplayhub-border);
	animation: slideUp 0.5s ease-out;
}

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

.happyplayhub-cookie-text {
	color: var(--happyplayhub-text-muted);
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.happyplayhub-cookie-text a {
	color: var(--happyplayhub-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

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

.happyplayhub-cookie-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.happyplayhub-cookie-accept {
	background: var(--happyplayhub-primary);
	color: white;
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.happyplayhub-cookie-accept:hover {
	background: var(--happyplayhub-primary-dark);
	transform: scale(1.05);
}

.happyplayhub-cookie-policy {
	color: var(--happyplayhub-text-muted);
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

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

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

.happyplayhub-mb-1 {
	margin-bottom: 0.25rem;
}
.happyplayhub-mb-2 {
	margin-bottom: 0.5rem;
}
.happyplayhub-mb-3 {
	margin-bottom: 0.75rem;
}
.happyplayhub-mb-4 {
	margin-bottom: 1rem;
}
.happyplayhub-mb-5 {
	margin-bottom: 1.25rem;
}

.happyplayhub-mt-1 {
	margin-top: 0.25rem;
}
.happyplayhub-mt-2 {
	margin-top: 0.5rem;
}
.happyplayhub-mt-3 {
	margin-top: 0.75rem;
}
.happyplayhub-mt-4 {
	margin-top: 1rem;
}
.happyplayhub-mt-5 {
	margin-top: 1.25rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@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 slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes expandWidth {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.happyplayhub-navbar-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--happyplayhub-surface);
		box-shadow: var(--happyplayhub-shadow);
		padding: 1rem;
		flex-direction: column;
		gap: 1rem;
		border-top: 1px solid var(--happyplayhub-border);
	}

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

	.happyplayhub-navbar-toggle {
		display: block;
	}

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

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

	.happyplayhub-features-grid {
		grid-template-columns: 1fr !important;
	}

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

	.happyplayhub-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.happyplayhub-cookie-actions {
		justify-content: center;
	}

	.happyplayhub-game-modal-content {
		width: 95%;
		margin: 1rem;
	}

	.happyplayhub-game-modal-iframe {
		height: 60vh;
		min-height: 400px;
	}
}

@media (max-width: 480px) {
	.happyplayhub-container {
		padding: 0 0.75rem;
	}

	.happyplayhub-hero {
		padding: 4rem 0;
	}

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

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

	.happyplayhub-game-modal-header {
		padding: 1rem 1.5rem;
	}

	.happyplayhub-game-modal-header h2 {
		font-size: 1.25rem;
	}
}
