/* SocialTeamClub.com - Norway Social Gaming Platform */

/* CSS Variables - Fresh Teal/Cyan/Orange Color Palette */
:root {
	--funvibeworld-primary: #0891b2;
	--funvibeworld-primary-dark: #0e7490;
	--funvibeworld-primary-light: #22d3ee;
	--funvibeworld-secondary: #f97316;
	--funvibeworld-accent: #06b6d4;
	--funvibeworld-success: #10b981;
	--funvibeworld-warning: #fbbf24;
	--funvibeworld-error: #ef4444;

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

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

	--funvibeworld-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06);
	--funvibeworld-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
	--funvibeworld-shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
	--funvibeworld-shadow-lg: 0 20px 40px -6px rgba(0, 0, 0, 0.2);
	--funvibeworld-shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.25);

	--funvibeworld-gradient-primary: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
	--funvibeworld-gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
	--funvibeworld-gradient-hero: linear-gradient(145deg, #0e7490 0%, #0891b2 30%, #06b6d4 70%, #22d3ee 100%);
	--funvibeworld-gradient-accent: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);

	--funvibeworld-border-radius: 14px;
	--funvibeworld-border-radius-lg: 20px;
	--funvibeworld-border-radius-xl: 28px;

	--funvibeworld-font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;

	--funvibeworld-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--funvibeworld-transition-fast: all 0.25s ease-out;
	--funvibeworld-transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
	font-family: var(--funvibeworld-font-family);
	line-height: 1.7;
	color: var(--funvibeworld-gray-700);
	background: linear-gradient(180deg, var(--funvibeworld-gray-50) 0%, var(--funvibeworld-white) 100%);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 3rem; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
	h1 { font-size: 2.125rem; }
	h2 { font-size: 1.75rem; }
	h3 { font-size: 1.4rem; }
	h4 { font-size: 1.15rem; }
}

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

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

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

ul, ol {
	margin-bottom: 1.125rem;
	padding-left: 1.875rem;
}

li {
	margin-bottom: 0.625rem;
	color: var(--funvibeworld-gray-600);
}

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

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

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

/* Navbar */
.funvibeworld-navbar {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	box-shadow: var(--funvibeworld-shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--funvibeworld-transition);
	border-bottom: 1px solid var(--funvibeworld-gray-100);
}

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

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

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

.funvibeworld-navbar-logo {
	height: 48px;
	width: auto;
	transition: var(--funvibeworld-transition-bounce);
}

.funvibeworld-navbar-brand:hover .funvibeworld-navbar-logo {
	transform: scale(1.05) rotate(-3deg);
}

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

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

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

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

.funvibeworld-navbar-link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--funvibeworld-gradient-primary);
	border-radius: 3px;
	animation: slideIn 0.3s ease-out;
}

.funvibeworld-navbar-cta {
	background: var(--funvibeworld-gradient-primary);
	color: var(--funvibeworld-white);
	padding: 0.75rem 1.75rem;
	border-radius: var(--funvibeworld-border-radius);
	font-weight: 700;
	font-size: 1rem;
	transition: var(--funvibeworld-transition);
	text-decoration: none;
	box-shadow: var(--funvibeworld-shadow);
	position: relative;
	overflow: hidden;
}

.funvibeworld-navbar-cta::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: 0.5s;
}

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

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

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

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

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

.funvibeworld-navbar-toggle.active .funvibeworld-navbar-toggle-bar:nth-child(2) {
	opacity: 0;
	transform: translateX(-10px);
}

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

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

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

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

	.funvibeworld-navbar-link {
		font-size: 1.0625rem;
		width: 100%;
		padding: 0.75rem 0;
	}

	.funvibeworld-navbar-cta {
		width: 100%;
		text-align: center;
		margin-top: 1rem;
		padding: 0.875rem 1.75rem;
	}
}

/* Sections */
.funvibeworld-section {
	padding: 5.5rem 0;
	position: relative;
}

.funvibeworld-section-alt {
	background: var(--funvibeworld-white);
	box-shadow: inset 0 1px 0 var(--funvibeworld-gray-100), inset 0 -1px 0 var(--funvibeworld-gray-100);
}

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

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

.funvibeworld-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,197.3C960,213,1056,203,1152,181.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
	opacity: 0.8;
	animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(-20px); }
}

.funvibeworld-hero::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	animation: floatBubble 20s ease-in-out infinite;
}

@keyframes floatBubble {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-30px, 30px) scale(1.1); }
}

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

.funvibeworld-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	color: var(--funvibeworld-white);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 2rem;
	box-shadow: var(--funvibeworld-shadow);
	border: 1px solid rgba(255,255,255,0.3);
	animation: fadeInDown 0.8s ease-out;
}

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

.funvibeworld-hero-title {
	font-size: 3.75rem;
	color: var(--funvibeworld-white);
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	font-weight: 900;
	letter-spacing: -0.03em;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.funvibeworld-hero-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.95);
	max-width: 720px;
	margin: 0 auto 2.5rem;
	line-height: 1.75;
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.funvibeworld-hero-cta {
	display: inline-block;
	background: var(--funvibeworld-white);
	color: var(--funvibeworld-primary);
	padding: 1.125rem 2.75rem;
	border-radius: var(--funvibeworld-border-radius);
	font-weight: 800;
	font-size: 1.125rem;
	transition: var(--funvibeworld-transition);
	box-shadow: var(--funvibeworld-shadow-lg);
	text-decoration: none;
	animation: fadeInUp 0.8s ease-out 0.6s both;
	position: relative;
	overflow: hidden;
}

.funvibeworld-hero-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: var(--funvibeworld-primary-light);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
	opacity: 0.3;
}

.funvibeworld-hero-cta:hover::before {
	width: 300px;
	height: 300px;
}

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

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

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

	.funvibeworld-hero-subtitle {
		font-size: 1.1rem;
	}
}

/* Features Grid */
.funvibeworld-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

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

/* Feature Card */
.funvibeworld-feature-card {
	background: var(--funvibeworld-white);
	padding: 2.5rem;
	border-radius: var(--funvibeworld-border-radius-lg);
	box-shadow: var(--funvibeworld-shadow);
	transition: var(--funvibeworld-transition);
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
}

.funvibeworld-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--funvibeworld-gradient-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

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

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

.funvibeworld-feature-icon {
	width: 72px;
	height: 72px;
	background: var(--funvibeworld-gradient-primary);
	border-radius: var(--funvibeworld-border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	box-shadow: var(--funvibeworld-shadow);
	transition: var(--funvibeworld-transition-bounce);
}

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

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

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

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

/* Games Grid */
.funvibeworld-games-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

@media (max-width: 768px) {
	.funvibeworld-games-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-top: 2rem;
	}
}

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

.funvibeworld-game-card:hover {
	transform: translateY(-10px) scale(1.01);
	box-shadow: var(--funvibeworld-shadow-xl);
}

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

.funvibeworld-game-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--funvibeworld-gradient-secondary);
	color: var(--funvibeworld-white);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.875rem;
	box-shadow: var(--funvibeworld-shadow);
	z-index: 10;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.funvibeworld-game-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--funvibeworld-gray-100) 0%, var(--funvibeworld-gray-200) 100%);
}

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

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

.funvibeworld-game-content {
	padding: 2rem;
}

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

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

.funvibeworld-game-stats {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

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

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

.funvibeworld-game-play {
	width: 100%;
	background: var(--funvibeworld-gradient-primary);
	color: var(--funvibeworld-white);
	border: none;
	padding: 1rem;
	border-radius: var(--funvibeworld-border-radius);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--funvibeworld-transition);
	box-shadow: var(--funvibeworld-shadow);
	position: relative;
	overflow: hidden;
}

.funvibeworld-game-play::after {
	content: '→';
	position: absolute;
	right: 1rem;
	opacity: 0;
	transform: translateX(-10px);
	transition: var(--funvibeworld-transition-fast);
}

.funvibeworld-game-play:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.funvibeworld-game-play:hover {
	transform: translateY(-3px);
	box-shadow: var(--funvibeworld-shadow-md);
	padding-right: 2.5rem;
}

/* Buttons */
.funvibeworld-btn {
	display: inline-block;
	padding: 1rem 2.25rem;
	border-radius: var(--funvibeworld-border-radius);
	font-weight: 700;
	text-align: center;
	transition: var(--funvibeworld-transition);
	cursor: pointer;
	border: none;
	text-decoration: none;
	box-shadow: var(--funvibeworld-shadow);
	font-size: 1rem;
	position: relative;
	overflow: hidden;
}

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

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

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

.funvibeworld-btn-secondary:hover {
	background: var(--funvibeworld-primary);
	color: var(--funvibeworld-white);
	text-decoration: none;
	transform: translateY(-3px);
}

/* Alerts */
.funvibeworld-alert {
	padding: 1.75rem 2rem;
	border-radius: var(--funvibeworld-border-radius-lg);
	margin: 1.5rem 0;
	border-left: 5px solid;
	animation: slideInLeft 0.5s ease-out;
	position: relative;
	overflow: hidden;
}

.funvibeworld-alert h4 {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
}

.funvibeworld-alert h4 i {
	font-size: 1.25rem;
}

.funvibeworld-alert p {
	margin-bottom: 0;
	line-height: 1.75;
}

.funvibeworld-alert p:not(:last-child) {
	margin-bottom: 0.75rem;
}

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

.funvibeworld-alert-info {
	background: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
	border-color: var(--funvibeworld-primary);
	color: var(--funvibeworld-gray-800);
	box-shadow: var(--funvibeworld-shadow-sm);
}

.funvibeworld-alert-info::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(30%, -30%);
}

.funvibeworld-alert-info h4 {
	color: var(--funvibeworld-primary-dark);
}

.funvibeworld-alert-success {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
	border-color: var(--funvibeworld-success);
	color: var(--funvibeworld-gray-800);
	box-shadow: var(--funvibeworld-shadow-sm);
}

.funvibeworld-alert-success h4 {
	color: var(--funvibeworld-success);
}

.funvibeworld-alert-error {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
	border-color: var(--funvibeworld-error);
	color: var(--funvibeworld-gray-800);
	box-shadow: var(--funvibeworld-shadow-sm);
}

.funvibeworld-alert-error h4 {
	color: var(--funvibeworld-error);
}

/* Forms */
.funvibeworld-form-group {
	margin-bottom: 1.5rem;
}

.funvibeworld-form-label {
	display: block;
	margin-bottom: 0.625rem;
	font-weight: 700;
	color: var(--funvibeworld-gray-800);
	font-size: 1rem;
}

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

.funvibeworld-form-control:focus {
	outline: none;
	border-color: var(--funvibeworld-primary);
	box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
}

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

.funvibeworld-form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 1.5rem;
}

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

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

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

.funvibeworld-contact-detail-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

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

.funvibeworld-contact-detail-item:hover .funvibeworld-contact-detail-icon {
	transform: scale(1.1) rotate(-5deg);
}

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

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

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

/* Footer */
.funvibeworld-footer {
	background: linear-gradient(180deg, var(--funvibeworld-gray-900) 0%, var(--funvibeworld-gray-800) 100%);
	color: var(--funvibeworld-gray-300);
	padding: 5rem 0 2rem;
	margin-top: 5rem;
	position: relative;
}

.funvibeworld-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--funvibeworld-gradient-primary);
}

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

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

.funvibeworld-footer-section p {
	color: var(--funvibeworld-gray-400);
	margin-bottom: 0.75rem;
	line-height: 1.75;
}

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

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

.funvibeworld-disclaimer {
	border-top: 1px solid var(--funvibeworld-gray-700);
	padding-top: 2rem;
	margin-bottom: 2rem;
}

.funvibeworld-disclaimer p {
	font-size: 0.875rem;
	color: var(--funvibeworld-gray-400);
	margin-bottom: 1rem;
	line-height: 1.75;
}

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

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

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

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

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

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

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

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

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

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

.funvibeworld-cookie-accept {
	background: var(--funvibeworld-gradient-primary);
	color: var(--funvibeworld-white);
	border: none;
	padding: 0.875rem 2rem;
	border-radius: var(--funvibeworld-border-radius);
	font-weight: 700;
	cursor: pointer;
	transition: var(--funvibeworld-transition);
	box-shadow: var(--funvibeworld-shadow);
	font-size: 1rem;
}

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

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

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

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

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

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

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

.funvibeworld-games-hero-content h1,
.funvibeworld-about-hero-content h1,
.funvibeworld-contact-hero-content h1,
.funvibeworld-privacy-hero-content h1,
.funvibeworld-terms-hero-content h1,
.funvibeworld-cookies-hero-content h1 {
	color: var(--funvibeworld-white);
	margin-bottom: 1rem;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: fadeInUp 0.6s ease-out;
}

.funvibeworld-games-hero-subtitle,
.funvibeworld-about-hero-subtitle,
.funvibeworld-contact-hero-subtitle,
.funvibeworld-privacy-hero-subtitle,
.funvibeworld-terms-hero-subtitle,
.funvibeworld-cookies-hero-subtitle {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	animation: fadeInUp 0.6s ease-out 0.1s both;
}

.funvibeworld-privacy-hero-date,
.funvibeworld-terms-hero-date,
.funvibeworld-cookies-hero-date,
.funvibeworld-contact-hero-date {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	animation: fadeInUp 0.6s ease-out 0.2s both;
}

.funvibeworld-games-hero-icon,
.funvibeworld-about-hero-icon,
.funvibeworld-contact-hero-icon,
.funvibeworld-privacy-hero-icon,
.funvibeworld-terms-hero-icon,
.funvibeworld-cookies-hero-icon {
	font-size: 4rem;
	color: var(--funvibeworld-white);
	margin-bottom: 1rem;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
	0% { transform: scale(0); opacity: 0; }
	50% { transform: scale(1.15); }
	100% { transform: scale(1); opacity: 1; }
}

/* CTA Content */
.funvibeworld-cta-content {
	text-align: center;
	margin: 0 auto;
}

.funvibeworld-cta-content h2 {
	margin-bottom: 1.5rem;
}

.funvibeworld-cta-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 2rem;
	flex-wrap: wrap;
}

/* Legal Pages Content */
.funvibeworld-privacy-content,
.funvibeworld-terms-content,
.funvibeworld-cookies-content,
.funvibeworld-about-content {
	margin: 0 auto;
}

.funvibeworld-privacy-section,
.funvibeworld-terms-section,
.funvibeworld-cookies-section,
.funvibeworld-about-section {
	margin-bottom: 2rem;
	background: var(--funvibeworld-white);
	padding: 2rem 2.5rem;
	border-radius: var(--funvibeworld-border-radius-lg);
	box-shadow: var(--funvibeworld-shadow);
	border: 1px solid var(--funvibeworld-gray-100);
	transition: var(--funvibeworld-transition);
	position: relative;
	overflow: hidden;
}

.funvibeworld-privacy-section::before,
.funvibeworld-terms-section::before,
.funvibeworld-cookies-section::before,
.funvibeworld-about-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--funvibeworld-gradient-primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.funvibeworld-privacy-section:hover::before,
.funvibeworld-terms-section:hover::before,
.funvibeworld-cookies-section:hover::before,
.funvibeworld-about-section:hover::before {
	opacity: 1;
}

.funvibeworld-privacy-section:hover,
.funvibeworld-terms-section:hover,
.funvibeworld-cookies-section:hover,
.funvibeworld-about-section:hover {
	box-shadow: var(--funvibeworld-shadow-md);
	transform: translateX(3px);
}

@media (max-width: 768px) {
	.funvibeworld-privacy-section,
	.funvibeworld-terms-section,
	.funvibeworld-cookies-section,
	.funvibeworld-about-section {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}
}

.funvibeworld-privacy-section h2,
.funvibeworld-terms-section h2,
.funvibeworld-cookies-section h2,
.funvibeworld-about-section h2 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	color: var(--funvibeworld-gray-900);
	font-size: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--funvibeworld-gray-100);
}

.funvibeworld-privacy-section h2 i,
.funvibeworld-terms-section h2 i,
.funvibeworld-cookies-section h2 i,
.funvibeworld-about-section h2 i {
	color: var(--funvibeworld-primary);
	font-size: 1.25rem;
	width: 40px;
	height: 40px;
	background: rgba(8, 145, 178, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.funvibeworld-privacy-section h3,
.funvibeworld-terms-section h3,
.funvibeworld-cookies-section h3 {
	margin-top: 1.75rem;
	margin-bottom: 0.875rem;
	color: var(--funvibeworld-gray-800);
	font-size: 1.15rem;
	font-weight: 700;
	padding-left: 0.75rem;
	border-left: 3px solid var(--funvibeworld-primary-light);
}

.funvibeworld-privacy-section p,
.funvibeworld-terms-section p,
.funvibeworld-cookies-section p {
	color: var(--funvibeworld-gray-600);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.funvibeworld-privacy-section ul,
.funvibeworld-terms-section ul,
.funvibeworld-cookies-section ul {
	background: var(--funvibeworld-gray-50);
	padding: 1.25rem 1.25rem 1.25rem 2.5rem;
	border-radius: var(--funvibeworld-border-radius);
	margin: 1rem 0;
	border: 1px solid var(--funvibeworld-gray-100);
}

.funvibeworld-privacy-section li,
.funvibeworld-terms-section li,
.funvibeworld-cookies-section li {
	color: var(--funvibeworld-gray-700);
	margin-bottom: 0.625rem;
	line-height: 1.7;
	position: relative;
}

.funvibeworld-privacy-section li:last-child,
.funvibeworld-terms-section li:last-child,
.funvibeworld-cookies-section li:last-child {
	margin-bottom: 0;
}

.funvibeworld-privacy-section li::marker,
.funvibeworld-terms-section li::marker,
.funvibeworld-cookies-section li::marker {
	color: var(--funvibeworld-primary);
}

.funvibeworld-privacy-section a,
.funvibeworld-terms-section a,
.funvibeworld-cookies-section a {
	color: var(--funvibeworld-primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dashed var(--funvibeworld-primary-light);
	transition: var(--funvibeworld-transition-fast);
}

.funvibeworld-privacy-section a:hover,
.funvibeworld-terms-section a:hover,
.funvibeworld-cookies-section a:hover {
	color: var(--funvibeworld-primary-dark);
	border-bottom-color: var(--funvibeworld-primary);
}

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

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

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

/* Game Stats Section */
.funvibeworld-games-stats {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

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

.funvibeworld-stat-number {
	display: block;
	font-size: 2.75rem;
	font-weight: 900;
	color: var(--funvibeworld-white);
	margin-bottom: 0.5rem;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: countUp 1s ease-out;
}

@keyframes countUp {
	from { transform: scale(0.5); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.funvibeworld-stat-label {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
	font-size: 1rem;
}

/* Cookie Management */
.funvibeworld-cookie-management {
	max-width: 800px;
	margin: 2.5rem auto;
	text-align: left;
}

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

.funvibeworld-cookie-option:hover {
	border-color: var(--funvibeworld-primary-light);
	box-shadow: var(--funvibeworld-shadow);
	transform: translateY(-2px);
}

.funvibeworld-cookie-option:last-child {
	margin-bottom: 0;
}

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

.funvibeworld-cookie-info h3 {
	margin-bottom: 0.5rem;
	font-size: 1.15rem;
	color: var(--funvibeworld-gray-900);
}

.funvibeworld-cookie-info p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--funvibeworld-gray-600);
	line-height: 1.6;
}

.funvibeworld-cookie-toggle {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	flex-shrink: 0;
}

.funvibeworld-cookie-toggle input[type="checkbox"] {
	width: 22px;
	height: 22px;
	cursor: pointer;
	accent-color: var(--funvibeworld-primary);
	border-radius: 4px;
}

.funvibeworld-cookie-toggle input[type="checkbox"]:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.funvibeworld-cookie-toggle label {
	font-weight: 700;
	color: var(--funvibeworld-primary);
	cursor: pointer;
	font-size: 0.95rem;
	padding: 0.5rem 1rem;
	background: rgba(8, 145, 178, 0.1);
	border-radius: 50px;
	transition: var(--funvibeworld-transition-fast);
}

.funvibeworld-cookie-toggle input[type="checkbox"]:disabled + label {
	color: var(--funvibeworld-gray-500);
	background: var(--funvibeworld-gray-100);
	cursor: not-allowed;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Large Tablet / Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
	.funvibeworld-features-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

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

	.funvibeworld-hero-title {
		font-size: 3rem;
	}

	.funvibeworld-hero-subtitle {
		font-size: 1.2rem;
	}
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
	/* Typography */
	h1 { font-size: 2rem; }
	h2 { font-size: 1.625rem; }
	h3 { font-size: 1.25rem; }

	/* Container */
	.funvibeworld-container {
		padding: 0 1rem;
	}

	/* Hero */
	.funvibeworld-hero {
		padding: 4rem 0;
	}

	.funvibeworld-hero-badge {
		font-size: 0.875rem;
		padding: 0.625rem 1.25rem;
		margin-bottom: 1.5rem;
	}

	.funvibeworld-hero-title {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.funvibeworld-hero-subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
		padding: 0 0.5rem;
	}

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

	/* Sections */
	.funvibeworld-section {
		padding: 3rem 0;
	}

	/* Feature Cards */
	.funvibeworld-feature-card {
		padding: 1.75rem;
	}

	.funvibeworld-feature-icon {
		width: 60px;
		height: 60px;
	}

	.funvibeworld-feature-icon i {
		font-size: 1.5rem;
	}

	/* Game Cards */
	.funvibeworld-game-content {
		padding: 1.5rem;
	}

	.funvibeworld-game-title {
		font-size: 1.25rem;
	}

	.funvibeworld-game-image {
		height: 180px;
	}

	/* Footer */
	.funvibeworld-footer {
		padding: 3rem 0 1.5rem;
		margin-top: 3rem;
	}

	.funvibeworld-footer-content {
		gap: 2rem;
	}

	/* Page Heroes */
	.funvibeworld-games-hero,
	.funvibeworld-about-hero,
	.funvibeworld-contact-hero,
	.funvibeworld-privacy-hero,
	.funvibeworld-terms-hero,
	.funvibeworld-cookies-hero {
		padding: 3.5rem 0;
	}

	.funvibeworld-games-hero-icon,
	.funvibeworld-about-hero-icon,
	.funvibeworld-contact-hero-icon,
	.funvibeworld-privacy-hero-icon,
	.funvibeworld-terms-hero-icon,
	.funvibeworld-cookies-hero-icon {
		font-size: 3rem;
	}

	/* Stats */
	.funvibeworld-games-stats {
		gap: 2rem;
	}

	.funvibeworld-stat-number {
		font-size: 2rem;
	}

	/* Alerts */
	.funvibeworld-alert {
		padding: 1.25rem 1.5rem;
	}

	.funvibeworld-alert h4 {
		font-size: 1rem;
		flex-wrap: wrap;
	}

	/* Buttons */
	.funvibeworld-btn {
		padding: 0.875rem 1.75rem;
		font-size: 0.9375rem;
	}

	/* CTA Actions */
	.funvibeworld-cta-actions {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.funvibeworld-cta-actions .funvibeworld-btn {
		width: 100%;
		max-width: 280px;
	}

	/* Contact Cards */
	.funvibeworld-contact-info-card,
	.funvibeworld-contact-form-card {
		padding: 1.5rem;
	}

	.funvibeworld-contact-detail-icon {
		width: 48px;
		height: 48px;
	}

	.funvibeworld-contact-detail-icon i {
		font-size: 1rem;
	}

	.funvibeworld-contact-detail-item {
		gap: 1rem;
	}

	/* Form Row */
	.funvibeworld-form-row {
		grid-template-columns: 1fr;
	}

	/* Cookie Popup */
	.funvibeworld-cookie-popup {
		padding: 1.5rem;
	}

	.funvibeworld-cookie-accept {
		width: 100%;
		padding: 0.875rem 1.5rem;
	}
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	/* Typography */
	h1 { font-size: 1.75rem; }
	h2 { font-size: 1.5rem; }
	h3 { font-size: 1.125rem; }

	/* Container */
	.funvibeworld-container {
		padding: 0 0.875rem;
	}

	/* Navbar */
	.funvibeworld-navbar-brand {
		font-size: 1.25rem;
		gap: 0.5rem;
	}

	.funvibeworld-navbar-logo {
		height: 40px;
	}

	.funvibeworld-navbar-menu {
		width: 100%;
		padding: 5rem 1.25rem 2rem;
	}

	/* Hero */
	.funvibeworld-hero {
		padding: 3rem 0;
	}

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

	.funvibeworld-hero-title {
		font-size: 1.625rem;
		line-height: 1.3;
	}

	.funvibeworld-hero-subtitle {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.funvibeworld-hero-cta {
		padding: 0.875rem 1.75rem;
		font-size: 0.9375rem;
		width: 100%;
		max-width: 280px;
	}

	/* Sections */
	.funvibeworld-section {
		padding: 2.5rem 0;
	}

	/* Grids - Single column */
	.funvibeworld-features-grid,
	.funvibeworld-games-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		margin-top: 2rem;
	}

	/* Feature Cards */
	.funvibeworld-feature-card {
		padding: 1.5rem;
	}

	.funvibeworld-feature-icon {
		width: 56px;
		height: 56px;
	}

	.funvibeworld-feature-icon i {
		font-size: 1.375rem;
	}

	.funvibeworld-feature-title {
		font-size: 1.25rem;
	}

	/* Game Cards */
	.funvibeworld-game-content {
		padding: 1.25rem;
	}

	.funvibeworld-game-title {
		font-size: 1.125rem;
	}

	.funvibeworld-game-desc {
		font-size: 0.9375rem;
	}

	.funvibeworld-game-image {
		height: 160px;
	}

	.funvibeworld-game-badge {
		font-size: 0.75rem;
		padding: 0.375rem 0.75rem;
	}

	.funvibeworld-game-stats {
		gap: 1rem;
	}

	.funvibeworld-game-stats span {
		font-size: 0.8125rem;
	}

	/* Page Heroes */
	.funvibeworld-games-hero,
	.funvibeworld-about-hero,
	.funvibeworld-contact-hero,
	.funvibeworld-privacy-hero,
	.funvibeworld-terms-hero,
	.funvibeworld-cookies-hero {
		padding: 2.5rem 0;
	}

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

	.funvibeworld-games-hero-subtitle,
	.funvibeworld-about-hero-subtitle,
	.funvibeworld-contact-hero-subtitle,
	.funvibeworld-privacy-hero-subtitle,
	.funvibeworld-terms-hero-subtitle,
	.funvibeworld-cookies-hero-subtitle {
		font-size: 1rem;
	}

	/* Stats */
	.funvibeworld-games-stats {
		gap: 1.5rem;
	}

	.funvibeworld-stat-number {
		font-size: 1.75rem;
	}

	.funvibeworld-stat-label {
		font-size: 0.875rem;
	}

	/* Legal Sections */
	.funvibeworld-privacy-section,
	.funvibeworld-terms-section,
	.funvibeworld-cookies-section,
	.funvibeworld-about-section {
		padding: 1.25rem;
		margin-bottom: 1rem;
	}

	.funvibeworld-privacy-section h2,
	.funvibeworld-terms-section h2,
	.funvibeworld-cookies-section h2,
	.funvibeworld-about-section h2 {
		font-size: 1.25rem;
		gap: 0.5rem;
		flex-wrap: wrap;
	}

	.funvibeworld-privacy-section h2 i,
	.funvibeworld-terms-section h2 i,
	.funvibeworld-cookies-section h2 i,
	.funvibeworld-about-section h2 i {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}

	.funvibeworld-privacy-section h3,
	.funvibeworld-terms-section h3,
	.funvibeworld-cookies-section h3 {
		font-size: 1.0625rem;
	}

	.funvibeworld-privacy-section ul,
	.funvibeworld-terms-section ul,
	.funvibeworld-cookies-section ul {
		padding: 1rem 1rem 1rem 2rem;
	}

	/* Alerts */
	.funvibeworld-alert {
		padding: 1rem 1.25rem;
	}

	.funvibeworld-alert h4 {
		font-size: 0.9375rem;
	}

	.funvibeworld-alert p {
		font-size: 0.875rem;
	}

	/* Contact */
	.funvibeworld-contact-content {
		gap: 1.5rem;
		margin-top: 2rem;
	}

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

	.funvibeworld-contact-detail-item {
		gap: 0.875rem;
		margin-bottom: 1.5rem;
	}

	.funvibeworld-contact-detail-icon {
		width: 44px;
		height: 44px;
	}

	.funvibeworld-contact-detail-content h4 {
		font-size: 1rem;
	}

	.funvibeworld-contact-detail-content p {
		font-size: 0.875rem;
	}

	/* Forms */
	.funvibeworld-form-control {
		padding: 0.875rem;
		font-size: 1rem;
	}

	/* Footer */
	.funvibeworld-footer {
		padding: 2.5rem 0 1.5rem;
		margin-top: 2rem;
	}

	.funvibeworld-footer-content {
		gap: 1.5rem;
	}

	.funvibeworld-footer-section h3 {
		font-size: 1.125rem;
		margin-bottom: 1rem;
	}

	.funvibeworld-footer-section p {
		font-size: 0.875rem;
	}

	.funvibeworld-disclaimer p {
		font-size: 0.8125rem;
	}

	/* Cookie Options */
	.funvibeworld-cookie-option {
		padding: 1.25rem;
	}

	.funvibeworld-cookie-info h3 {
		font-size: 1rem;
	}

	.funvibeworld-cookie-info p {
		font-size: 0.875rem;
	}

	/* Buttons */
	.funvibeworld-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
		width: 100%;
	}

	.funvibeworld-cta-actions {
		gap: 0.75rem;
	}

	.funvibeworld-cta-actions .funvibeworld-btn {
		max-width: none;
	}

	/* Cookie Popup */
	.funvibeworld-cookie-popup {
		padding: 1.25rem;
	}

	.funvibeworld-cookie-content h4 {
		font-size: 1rem;
	}

	.funvibeworld-cookie-content p {
		font-size: 0.875rem;
	}
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
	html {
		font-size: 13px;
	}

	.funvibeworld-container {
		padding: 0 0.75rem;
	}

	.funvibeworld-hero-title {
		font-size: 1.5rem;
	}

	.funvibeworld-hero-badge {
		font-size: 0.75rem;
	}

	.funvibeworld-feature-card,
	.funvibeworld-game-content {
		padding: 1rem;
	}

	.funvibeworld-privacy-section,
	.funvibeworld-terms-section,
	.funvibeworld-cookies-section {
		padding: 1rem;
	}

	.funvibeworld-games-stats {
		flex-direction: column;
		gap: 1rem;
	}
}

/* Landscape orientation on small devices */
@media (max-height: 500px) and (orientation: landscape) {
	.funvibeworld-hero {
		padding: 2.5rem 0;
	}

	.funvibeworld-hero-badge {
		margin-bottom: 1rem;
	}

	.funvibeworld-hero-title {
		font-size: 1.75rem;
		margin-bottom: 0.75rem;
	}

	.funvibeworld-hero-subtitle {
		margin-bottom: 1.5rem;
	}

	.funvibeworld-navbar-menu {
		padding-top: 4rem;
	}
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.funvibeworld-navbar-logo {
		image-rendering: -webkit-optimize-contrast;
	}
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.funvibeworld-hero::before,
	.funvibeworld-hero::after {
		animation: none;
	}
}

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

	.funvibeworld-hero {
		background: none;
		color: #000;
		padding: 1rem 0;
	}

	.funvibeworld-hero-title,
	.funvibeworld-hero-subtitle {
		color: #000;
		text-shadow: none;
	}

	.funvibeworld-feature-card,
	.funvibeworld-game-card {
		box-shadow: none;
		border: 1px solid #ccc;
		break-inside: avoid;
	}
}

/* Scroll Reveal Animation */
.funvibeworld-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.funvibeworld-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Gradient Text */
.funvibeworld-gradient-text {
	background: var(--funvibeworld-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
	.funvibeworld-btn,
	.funvibeworld-game-play,
	.funvibeworld-navbar-cta,
	.funvibeworld-cookie-accept {
		min-height: 48px;
	}

	.funvibeworld-navbar-link {
		padding: 0.875rem 0;
	}

	.funvibeworld-feature-card:hover,
	.funvibeworld-game-card:hover {
		transform: none;
	}

	.funvibeworld-feature-card:active,
	.funvibeworld-game-card:active {
		transform: scale(0.98);
	}
}
