/* SocialGameCrew.org - Modern Mediterranean Design for Greece */

/* CSS Variables - Cool Mediterranean Theme */
:root {
	--socialgamecrew-primary: #0066cc;
	--socialgamecrew-primary-dark: #0052a3;
	--socialgamecrew-secondary: #00b894;
	--socialgamecrew-accent: #74b9ff;
	--socialgamecrew-success: #00d2d3;
	--socialgamecrew-warning: #fdcb6e;
	--socialgamecrew-error: #d63031;
	--socialgamecrew-dark: #2c3e50;
	--socialgamecrew-darker: #1a252f;

	--socialgamecrew-gray-50: #f8f9fa;
	--socialgamecrew-gray-100: #ecf0f1;
	--socialgamecrew-gray-200: #dfe6e9;
	--socialgamecrew-gray-300: #b2bec3;
	--socialgamecrew-gray-400: #95a5a6;
	--socialgamecrew-gray-500: #7f8c8d;
	--socialgamecrew-gray-600: #636e72;
	--socialgamecrew-gray-700: #2d3436;
	--socialgamecrew-gray-800: #212529;
	--socialgamecrew-gray-900: #0e1214;

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

	--socialgamecrew-shadow-sm: 0 2px 4px rgba(0, 102, 204, 0.08);
	--socialgamecrew-shadow: 0 4px 12px rgba(0, 102, 204, 0.12);
	--socialgamecrew-shadow-md: 0 8px 20px rgba(0, 102, 204, 0.15);
	--socialgamecrew-shadow-lg: 0 15px 35px rgba(0, 102, 204, 0.18);
	--socialgamecrew-shadow-xl: 0 20px 50px rgba(0, 102, 204, 0.22);

	--socialgamecrew-gradient-primary: linear-gradient(120deg, #0066cc 0%, #00b894 100%);
	--socialgamecrew-gradient-secondary: linear-gradient(120deg, #00b894 0%, #74b9ff 100%);
	--socialgamecrew-gradient-accent: linear-gradient(120deg, #74b9ff 0%, #00d2d3 100%);
	--socialgamecrew-gradient-dark: linear-gradient(120deg, #2c3e50 0%, #1a252f 100%);

	--socialgamecrew-radius: 8px;
	--socialgamecrew-radius-lg: 16px;
	--socialgamecrew-radius-xl: 24px;

	--socialgamecrew-transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	--socialgamecrew-transition-fast: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
	font-family: 'Roboto', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.7;
	color: var(--socialgamecrew-gray-700);
	background: var(--socialgamecrew-gray-50);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.3;
	color: var(--socialgamecrew-dark);
	margin-bottom: 1.2rem;
	letter-spacing: -0.02em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1.2rem;
	color: var(--socialgamecrew-gray-600);
	font-size: 1rem;
	line-height: 1.75;
}

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

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

/* Container */
.socialgamecrew-container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Top Banner */
.socialgamecrew-top-banner {
	background: var(--socialgamecrew-gradient-dark);
	color: var(--socialgamecrew-white);
	padding: 8px 0;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
}

.socialgamecrew-top-banner p {
	margin: 0;
	color: var(--socialgamecrew-gray-200);
}

/* Navigation */
.socialgamecrew-navbar {
	background: var(--socialgamecrew-white);
	box-shadow: var(--socialgamecrew-shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0.8rem 0;
}

.socialgamecrew-navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.socialgamecrew-navbar-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--socialgamecrew-dark);
	transition: var(--socialgamecrew-transition-fast);
}

.socialgamecrew-navbar-brand:hover {
	color: var(--socialgamecrew-primary);
	transform: scale(1.01);
}

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

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

.socialgamecrew-navbar-link {
	color: var(--socialgamecrew-gray-700);
	font-weight: 500;
	padding: 0.6rem 0;
	position: relative;
	transition: var(--socialgamecrew-transition-fast);
	font-size: 0.95rem;
}

.socialgamecrew-navbar-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--socialgamecrew-gradient-primary);
	transition: var(--socialgamecrew-transition);
	transform: translateX(-50%);
}

.socialgamecrew-navbar-link:hover,
.socialgamecrew-navbar-link.socialgamecrew-active {
	color: var(--socialgamecrew-primary);
}

.socialgamecrew-navbar-link:hover::after,
.socialgamecrew-navbar-link.socialgamecrew-active::after {
	width: 100%;
}

.socialgamecrew-navbar-cta {
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	padding: 0.7rem 1.6rem;
	border-radius: var(--socialgamecrew-radius);
	font-weight: 600;
	transition: var(--socialgamecrew-transition);
	box-shadow: var(--socialgamecrew-shadow-sm);
	font-size: 0.95rem;
}

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

/* Mobile Menu Toggle */
.socialgamecrew-navbar-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.socialgamecrew-navbar-toggle-bar {
	width: 28px;
	height: 3px;
	background: var(--socialgamecrew-primary);
	border-radius: 3px;
	transition: var(--socialgamecrew-transition);
}

/* Sections */
.socialgamecrew-section {
	padding: 90px 0;
}

.socialgamecrew-section-sm {
	padding: 65px 0;
}

/* Hero Section */
.socialgamecrew-hero {
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	padding: 120px 0 100px;
	position: relative;
	overflow: hidden;
}

.socialgamecrew-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,160L48,181.3C96,203,192,245,288,240C384,235,480,181,576,170.7C672,160,768,192,864,186.7C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,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.4;
}

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

.socialgamecrew-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.18);
	padding: 0.6rem 1.2rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.8rem;
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.socialgamecrew-hero-title {
	font-size: 3.2rem;
	margin-bottom: 1.6rem;
	color: var(--socialgamecrew-white);
	font-weight: 700;
}

.socialgamecrew-hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2.2rem;
	color: rgba(255, 255, 255, 0.93);
	line-height: 1.75;
}

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

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

/* Text Utilities */
.socialgamecrew-text-center {
	text-align: center;
}

.socialgamecrew-mb-5 {
	margin-bottom: 3.5rem;
}

.socialgamecrew-mt-5 {
	margin-top: 3.5rem;
}

.socialgamecrew-mt-4 {
	margin-top: 2.5rem;
}

.socialgamecrew-mt-3 {
	margin-top: 1.5rem;
}

.socialgamecrew-mt-2 {
	margin-top: 1rem;
}

/* Buttons */
.socialgamecrew-btn {
	display: inline-block;
	padding: 0.95rem 2.2rem;
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	border-radius: var(--socialgamecrew-radius);
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: var(--socialgamecrew-transition);
	box-shadow: var(--socialgamecrew-shadow);
	text-align: center;
	font-size: 1rem;
}

.socialgamecrew-btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--socialgamecrew-shadow-lg);
	color: var(--socialgamecrew-white);
}

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

.socialgamecrew-btn-secondary:hover {
	background: var(--socialgamecrew-primary);
	color: var(--socialgamecrew-white);
}

.socialgamecrew-btn-primary {
	background: var(--socialgamecrew-gradient-primary);
}

/* Feature Grid */
.socialgamecrew-features {
	background: var(--socialgamecrew-white);
}

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

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

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

.socialgamecrew-feature-icon {
	width: 64px;
	height: 64px;
	background: var(--socialgamecrew-gradient-primary);
	border-radius: var(--socialgamecrew-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.8rem;
	font-size: 1.8rem;
	color: var(--socialgamecrew-white);
}

.socialgamecrew-feature-title {
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
	color: var(--socialgamecrew-dark);
}

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

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

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

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

.socialgamecrew-game-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--socialgamecrew-shadow-xl);
	border-color: var(--socialgamecrew-primary);
}

.socialgamecrew-game-badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	padding: 0.5rem 1.1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: var(--socialgamecrew-shadow);
}

.socialgamecrew-game-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	position: relative;
}

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

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

.socialgamecrew-game-content {
	padding: 1.8rem;
}

.socialgamecrew-game-title {
	font-size: 1.4rem;
	margin-bottom: 0.8rem;
	color: var(--socialgamecrew-dark);
}

.socialgamecrew-game-desc {
	color: var(--socialgamecrew-gray-600);
	margin-bottom: 1.2rem;
	line-height: 1.7;
	font-size: 0.95rem;
}

.socialgamecrew-game-stats {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
	color: var(--socialgamecrew-gray-500);
}

.socialgamecrew-game-play {
	width: 100%;
	padding: 1rem;
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	border: none;
	border-radius: var(--socialgamecrew-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--socialgamecrew-transition);
	box-shadow: var(--socialgamecrew-shadow-sm);
	font-size: 1rem;
}

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

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

/* Categories */
.socialgamecrew-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3.5rem;
}

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

.socialgamecrew-category-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--socialgamecrew-shadow-lg);
	border-color: var(--socialgamecrew-primary);
}

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

.socialgamecrew-category-games {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
	margin-top: 1.2rem;
}

.socialgamecrew-game-tag {
	background: var(--socialgamecrew-gray-100);
	color: var(--socialgamecrew-gray-700);
	padding: 0.45rem 0.9rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
}

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

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

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

.socialgamecrew-stat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--socialgamecrew-shadow-lg);
	border-color: var(--socialgamecrew-primary);
}

.socialgamecrew-stat-number {
	display: block;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--socialgamecrew-primary);
	margin-bottom: 0.6rem;
}

.socialgamecrew-stat-label {
	display: block;
	color: var(--socialgamecrew-gray-600);
	font-size: 1rem;
	font-weight: 500;
}

.socialgamecrew-stat-icon {
	margin-top: 1.2rem;
	font-size: 1.6rem;
	color: var(--socialgamecrew-primary);
	opacity: 0.25;
}

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

.socialgamecrew-alert-info {
	background: rgba(0, 210, 211, 0.08);
	border-color: var(--socialgamecrew-success);
	color: var(--socialgamecrew-gray-700);
}

.socialgamecrew-alert-success {
	background: rgba(0, 210, 211, 0.08);
	border-color: var(--socialgamecrew-success);
	color: var(--socialgamecrew-gray-700);
}

.socialgamecrew-alert-danger {
	background: rgba(214, 48, 49, 0.08);
	border-color: var(--socialgamecrew-error);
	color: var(--socialgamecrew-gray-700);
}

/* Footer */
.socialgamecrew-footer {
	background: var(--socialgamecrew-gradient-dark);
	color: var(--socialgamecrew-gray-200);
	padding: 70px 0 35px;
	margin-top: 90px;
}

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

.socialgamecrew-footer-section h3 {
	color: var(--socialgamecrew-white);
	margin-bottom: 1.8rem;
	font-size: 1.2rem;
}

.socialgamecrew-footer-section p {
	color: var(--socialgamecrew-gray-300);
	margin-bottom: 0.8rem;
	line-height: 1.75;
}

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

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

.socialgamecrew-disclaimer {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.socialgamecrew-disclaimer p {
	color: var(--socialgamecrew-gray-300);
	font-size: 0.9rem;
	line-height: 1.75;
}

.socialgamecrew-footer-bottom {
	text-align: center;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.socialgamecrew-footer-bottom p {
	color: var(--socialgamecrew-gray-400);
	font-size: 0.9rem;
	margin: 0;
}

/* Cookie Popup */
.socialgamecrew-cookie-popup {
	position: fixed;
	bottom: 35px;
	right: 35px;
	max-width: 420px;
	z-index: 9999;
	display: none;
}

.socialgamecrew-cookie-content {
	background: var(--socialgamecrew-white);
	padding: 1.8rem;
	border-radius: var(--socialgamecrew-radius-lg);
	box-shadow: var(--socialgamecrew-shadow-xl);
	border: 2px solid var(--socialgamecrew-primary);
}

.socialgamecrew-cookie-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--socialgamecrew-dark);
	margin-bottom: 0.8rem;
}

.socialgamecrew-cookie-text {
	color: var(--socialgamecrew-gray-600);
	margin-bottom: 1.2rem;
	line-height: 1.65;
	font-size: 0.95rem;
}

.socialgamecrew-cookie-buttons {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.socialgamecrew-cookie-accept {
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	padding: 0.8rem 1.6rem;
	border: none;
	border-radius: var(--socialgamecrew-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--socialgamecrew-transition);
	box-shadow: var(--socialgamecrew-shadow-sm);
}

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

.socialgamecrew-cookie-policy {
	color: var(--socialgamecrew-primary);
	padding: 0.8rem 1.2rem;
	font-weight: 600;
	transition: var(--socialgamecrew-transition-fast);
}

/* Modal */
.socialgamecrew-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	padding: 25px;
}

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

.socialgamecrew-modal-header {
	padding: 1.8rem;
	border-bottom: 1px solid var(--socialgamecrew-gray-200);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--socialgamecrew-gradient-primary);
}

.socialgamecrew-modal-title {
	margin: 0;
	color: var(--socialgamecrew-white);
	font-size: 1.4rem;
}

.socialgamecrew-modal-close {
	background: transparent;
	border: none;
	font-size: 2rem;
	color: var(--socialgamecrew-white);
	cursor: pointer;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--socialgamecrew-transition-fast);
}

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

.socialgamecrew-modal-body {
	padding: 0;
	height: calc(90vh - 90px);
}

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

/* Forms */
.socialgamecrew-form-group {
	margin-bottom: 1.8rem;
}

.socialgamecrew-form-label {
	display: block;
	margin-bottom: 0.6rem;
	font-weight: 600;
	color: var(--socialgamecrew-dark);
}

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

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

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

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

/* Contact Pages */
.socialgamecrew-contact-content {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 3.5rem;
	margin-top: 3.5rem;
}

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

.socialgamecrew-contact-info-card h3,
.socialgamecrew-contact-form-card h3 {
	color: var(--socialgamecrew-dark);
	margin-bottom: 1.8rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.socialgamecrew-contact-detail-item {
	display: flex;
	gap: 1.2rem;
	margin-bottom: 1.8rem;
	padding-bottom: 1.8rem;
	border-bottom: 1px solid var(--socialgamecrew-gray-200);
}

.socialgamecrew-contact-detail-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

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

.socialgamecrew-contact-detail-content h4 {
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
	color: var(--socialgamecrew-dark);
}

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

.socialgamecrew-contact-form-desc {
	color: var(--socialgamecrew-gray-600);
	margin-bottom: 2.2rem;
}

/* Hero Variations */
.socialgamecrew-about-hero,
.socialgamecrew-games-hero,
.socialgamecrew-contact-hero,
.socialgamecrew-terms-hero,
.socialgamecrew-privacy-hero,
.socialgamecrew-cookies-hero {
	background: var(--socialgamecrew-gradient-primary);
	color: var(--socialgamecrew-white);
	padding: 90px 0;
	text-align: center;
}

.socialgamecrew-about-hero-content,
.socialgamecrew-games-hero-content,
.socialgamecrew-contact-hero-content,
.socialgamecrew-terms-hero-content,
.socialgamecrew-privacy-hero-content,
.socialgamecrew-cookies-hero-content {
	max-width: 820px;
	margin: 0 auto;
}

.socialgamecrew-about-hero-icon,
.socialgamecrew-games-hero-icon,
.socialgamecrew-contact-hero-icon,
.socialgamecrew-terms-hero-icon,
.socialgamecrew-privacy-hero-icon,
.socialgamecrew-cookies-hero-icon {
	width: 85px;
	height: 85px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.8rem;
	font-size: 2.6rem;
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.socialgamecrew-about-hero-subtitle,
.socialgamecrew-games-hero-subtitle,
.socialgamecrew-contact-hero-subtitle,
.socialgamecrew-terms-hero-subtitle,
.socialgamecrew-privacy-hero-subtitle,
.socialgamecrew-cookies-hero-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.93);
	margin-bottom: 1.2rem;
}

.socialgamecrew-legal-subtitle {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
}

/* Hero Stats for Games Page */
.socialgamecrew-hero-stats-grid {
	display: flex;
	justify-content: center;
	gap: 3.5rem;
	margin-top: 2.5rem;
}

.socialgamecrew-hero-stat-item {
	text-align: center;
}

.socialgamecrew-hero-stat-number {
	font-size: 2.2rem;
	color: var(--socialgamecrew-white);
	font-weight: 700;
}

.socialgamecrew-hero-stat-label {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}

/* Overview Cards */
.socialgamecrew-overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 3.5rem;
}

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

.socialgamecrew-overview-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--socialgamecrew-shadow-lg);
	border-color: var(--socialgamecrew-primary);
}

.socialgamecrew-overview-icon {
	width: 64px;
	height: 64px;
	background: var(--socialgamecrew-gradient-primary);
	border-radius: var(--socialgamecrew-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	font-size: 1.8rem;
	color: var(--socialgamecrew-white);
}

/* Legal Content */
.socialgamecrew-terms-content,
.socialgamecrew-privacy-content,
.socialgamecrew-cookies-content {
	max-width: 920px;
	margin: 0 auto;
}

.socialgamecrew-terms-section,
.socialgamecrew-privacy-section,
.socialgamecrew-cookies-section {
	background: var(--socialgamecrew-white);
	padding: 2.8rem;
	border-radius: var(--socialgamecrew-radius-lg);
	box-shadow: var(--socialgamecrew-shadow);
	margin-bottom: 2.5rem;
	border: 1px solid var(--socialgamecrew-gray-200);
}

.socialgamecrew-legal-h4 {
	font-size: 1.2rem;
	color: var(--socialgamecrew-dark);
	margin-top: 1.8rem;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.socialgamecrew-legal-list {
	list-style: none;
	padding-left: 0;
}

.socialgamecrew-legal-list li {
	padding-left: 1.8rem;
	margin-bottom: 0.8rem;
	position: relative;
	color: var(--socialgamecrew-gray-600);
	line-height: 1.75;
}

.socialgamecrew-legal-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--socialgamecrew-primary);
	font-weight: 700;
}

.socialgamecrew-legal-list-plain {
	list-style: none;
	padding-left: 0;
}

.socialgamecrew-legal-list-plain li {
	color: var(--socialgamecrew-gray-600);
	margin-bottom: 0.6rem;
	line-height: 1.7;
}

.socialgamecrew-legal-list-spaced {
	list-style: none;
	padding-left: 0;
}

.socialgamecrew-legal-list-spaced li {
	padding-left: 1.8rem;
	margin-bottom: 1.2rem;
	position: relative;
	color: var(--socialgamecrew-gray-600);
	line-height: 1.75;
}

.socialgamecrew-legal-list-spaced li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--socialgamecrew-primary);
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1;
}

.socialgamecrew-legal-section-content {
	background: var(--socialgamecrew-gray-100);
	padding: 1.8rem;
	border-radius: var(--socialgamecrew-radius);
	border-left: 4px solid var(--socialgamecrew-primary);
	margin: 1.2rem 0;
}

.socialgamecrew-legal-intro-text {
	font-size: 1.1rem;
	color: var(--socialgamecrew-gray-600);
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

/* Content Utilities */
.socialgamecrew-content-center {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.socialgamecrew-content-medium {
	max-width: 920px;
	margin: 0 auto;
}

.socialgamecrew-content-narrow {
	max-width: 720px;
	margin: 0 auto;
}

.socialgamecrew-flex-center {
	display: flex;
	justify-content: center;
	gap: 1.2rem;
	flex-wrap: wrap;
}

.socialgamecrew-flex-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1.2rem 1.8rem;
	background: var(--socialgamecrew-white);
	border-radius: var(--socialgamecrew-radius);
	box-shadow: var(--socialgamecrew-shadow-sm);
}

.socialgamecrew-icon-large {
	font-size: 1.6rem;
	color: var(--socialgamecrew-primary);
}

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

/* Responsive Design */
@media (max-width: 968px) {
	h1 { font-size: 2.3rem; }
	h2 { font-size: 1.9rem; }
	h3 { font-size: 1.6rem; }
	
	.socialgamecrew-hero {
		padding: 70px 0 60px;
	}
	
	.socialgamecrew-hero-title {
		font-size: 2.4rem;
	}
	
	.socialgamecrew-section {
		padding: 70px 0;
	}
	
	.socialgamecrew-contact-content {
		grid-template-columns: 1fr;
	}
	
	.socialgamecrew-hero-stats-grid {
		gap: 1.8rem;
	}
}

@media (max-width: 768px) {
	.socialgamecrew-navbar-toggle {
		display: flex;
	}
	
	.socialgamecrew-navbar-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--socialgamecrew-white);
		flex-direction: column;
		gap: 0;
		padding: 1.2rem 0;
		box-shadow: var(--socialgamecrew-shadow-lg);
		max-height: 0;
		overflow: hidden;
		transition: var(--socialgamecrew-transition);
	}
	
	.socialgamecrew-navbar-menu.socialgamecrew-active {
		max-height: 500px;
	}
	
	.socialgamecrew-navbar-menu li {
		width: 100%;
	}
	
	.socialgamecrew-navbar-link {
		display: block;
		padding: 1.1rem 1.8rem;
		border-bottom: 1px solid var(--socialgamecrew-gray-200);
		font-size: 1rem;
	}
	
	.socialgamecrew-navbar-cta {
		margin: 1.2rem 1.8rem;
		display: block;
		text-align: center;
	}
	
	.socialgamecrew-hero-title {
		font-size: 2rem;
	}
	
	.socialgamecrew-hero-subtitle {
		font-size: 1.05rem;
	}
	
	.socialgamecrew-features-grid,
	.socialgamecrew-games-grid,
	.socialgamecrew-categories-grid {
		grid-template-columns: 1fr;
	}
	
	.socialgamecrew-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.socialgamecrew-cookie-popup {
		left: 18px;
		right: 18px;
		bottom: 18px;
		max-width: none;
	}
	
	.socialgamecrew-form-row {
		grid-template-columns: 1fr;
	}
	
	.socialgamecrew-hero-stats-grid {
		flex-direction: column;
		gap: 1.2rem;
	}
	
	.socialgamecrew-footer-content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	
	h1 { font-size: 1.9rem; }
	h2 { font-size: 1.7rem; }
	h3 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
	.socialgamecrew-container {
		padding: 0 18px;
	}
	
	.socialgamecrew-hero-title {
		font-size: 1.7rem;
	}
	
	.socialgamecrew-section {
		padding: 50px 0;
	}
	
	.socialgamecrew-stats-grid {
		grid-template-columns: 1fr;
	}
	
	.socialgamecrew-feature-card,
	.socialgamecrew-game-card,
	.socialgamecrew-category-card {
		padding: 1.8rem;
	}
	
	.socialgamecrew-contact-info-card,
	.socialgamecrew-contact-form-card,
	.socialgamecrew-terms-section,
	.socialgamecrew-privacy-section,
	.socialgamecrew-cookies-section {
		padding: 1.8rem;
	}
	
	.socialgamecrew-btn {
		padding: 0.85rem 1.8rem;
		font-size: 0.95rem;
	}
	
	.socialgamecrew-modal-content {
		max-width: 100%;
		border-radius: 0;
	}
	
	.socialgamecrew-navbar-brand {
		font-size: 1.2rem;
	}
	
	.socialgamecrew-navbar-logo {
		height: 38px;
	}
}

