/* PlayTogetherWorld.org - Modern German Gaming Platform Styles */

/* CSS Variables for consistent theming */
:root {
	--playtogetherworld-primary: #2e8b57;
	--playtogetherworld-secondary: #ff6b35;
	--playtogetherworld-accent: #4ecdc4;
	--playtogetherworld-dark: #2c3e50;
	--playtogetherworld-light: #f8f9fa;
	--playtogetherworld-white: #ffffff;
	--playtogetherworld-gray: #6c757d;
	--playtogetherworld-light-gray: #e9ecef;
	--playtogetherworld-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--playtogetherworld-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
	--playtogetherworld-border-radius: 12px;
	--playtogetherworld-transition: all 0.3s ease;
}

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

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--playtogetherworld-dark);
	background-color: var(--playtogetherworld-white);
	overflow-x: hidden;
}

/* Typography with responsive clamp */
h1 {
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h2 {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

h3 {
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

h4 {
	font-size: clamp(1rem, 2.5vw, 1.1rem);
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

/* Fix Bootstrap's font-size issue */
html {
	font-size: 16px !important;
}

/* Responsive font sizing */
@media (max-width: 768px) {
	html {
		font-size: 16px !important;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 15px !important;
	}
}

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

/* Navigation */
.playtogetherworld-navbar {
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary) 0%,
		var(--playtogetherworld-accent) 100%
	);
	box-shadow: var(--playtogetherworld-shadow);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--playtogetherworld-transition);
}

.playtogetherworld-navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 1rem 0; */
	height: 80px;
}

.playtogetherworld-navbar-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--playtogetherworld-white);
	font-weight: 700;
	font-size: 1.5rem;
}

.playtogetherworld-navbar-logo {
	height: 40px;
	width: auto;
	margin-right: 10px;
}

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

.playtogetherworld-navbar-link {
	color: var(--playtogetherworld-white);
	text-decoration: none;
	font-weight: 500;
	transition: var(--playtogetherworld-transition);
	padding: 0.5rem 1rem;
	border-radius: var(--playtogetherworld-border-radius);
}

.playtogetherworld-navbar-link:hover,
.playtogetherworld-navbar-link.active {
	background-color: rgba(255, 255, 255, 0.2);
	color: var(--playtogetherworld-white);
}

.playtogetherworld-navbar-cta {
	background: var(--playtogetherworld-secondary);
	color: var(--playtogetherworld-white);
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: var(--playtogetherworld-border-radius);
	font-weight: 600;
	transition: var(--playtogetherworld-transition);
	box-shadow: var(--playtogetherworld-shadow);
}

.playtogetherworld-navbar-cta:hover {
	background: #e55a2b;
	transform: translateY(-2px);
	box-shadow: var(--playtogetherworld-shadow-lg);
	color: var(--playtogetherworld-white);
}

/* Mobile Navigation */
.playtogetherworld-navbar-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.playtogetherworld-navbar-toggle-bar {
	width: 25px;
	height: 3px;
	background-color: var(--playtogetherworld-white);
	margin: 3px 0;
	transition: var(--playtogetherworld-transition);
	border-radius: 2px;
}

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

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

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

/* Main Content */
main {
	margin-top: 72px;
}

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

.playtogetherworld-section-sm {
	padding: 2rem 0;
}

/* Hero Section */
.playtogetherworld-hero {
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary) 0%,
		var(--playtogetherworld-accent) 100%
	);
	color: var(--playtogetherworld-white);
	text-align: center;
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.playtogetherworld-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="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

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

.playtogetherworld-hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	backdrop-filter: blur(10px);
}

.playtogetherworld-hero-title {
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.playtogetherworld-hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.playtogetherworld-hero-cta {
	display: inline-block;
	background: var(--playtogetherworld-secondary);
	color: var(--playtogetherworld-white);
	text-decoration: none;
	padding: 1rem 2rem;
	border-radius: var(--playtogetherworld-border-radius);
	font-weight: 600;
	font-size: 1.1rem;
	transition: var(--playtogetherworld-transition);
	box-shadow: var(--playtogetherworld-shadow);
}

.playtogetherworld-hero-cta:hover {
	background: #e55a2b;
	transform: translateY(-3px);
	box-shadow: var(--playtogetherworld-shadow-lg);
	color: var(--playtogetherworld-white);
}

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

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

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

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

.playtogetherworld-feature-title {
	color: var(--playtogetherworld-dark);
	margin-bottom: 1rem;
}

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

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

.playtogetherworld-category-card {
	background: var(--playtogetherworld-white);
	padding: 2rem;
	border-radius: var(--playtogetherworld-border-radius);
	box-shadow: var(--playtogetherworld-shadow);
	transition: var(--playtogetherworld-transition);
	border: 1px solid var(--playtogetherworld-light-gray);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

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

.playtogetherworld-category-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-secondary),
		#ff8c69
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	color: var(--playtogetherworld-white);
	font-size: 1.5rem;
}

.playtogetherworld-category-games {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.playtogetherworld-game-tag {
	background: var(--playtogetherworld-light);
	color: var(--playtogetherworld-dark);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
}

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

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

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

.playtogetherworld-game-card.featured {
	border: 2px solid var(--playtogetherworld-secondary);
	position: relative;
}

.playtogetherworld-game-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--playtogetherworld-secondary);
	color: var(--playtogetherworld-white);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 2;
}

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

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

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

.playtogetherworld-game-content {
	padding: 1.5rem;
}

.playtogetherworld-game-title {
	color: var(--playtogetherworld-dark);
	margin-bottom: 0.75rem;
}

.playtogetherworld-game-desc {
	color: var(--playtogetherworld-gray);
	margin-bottom: 1rem;
	line-height: 1.5;
	overflow: hidden;
	display: -webkit-box; /* Required for -webkit-line-clamp to work */
	-webkit-box-orient: vertical; /* Required for -webkit-line-clamp to work */
	-webkit-line-clamp: 3; /* Limit to 3 lines */
	/* For modern browsers supporting the standard line-clamp property */
	line-clamp: 3;
}

.playtogetherworld-game-stats {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--playtogetherworld-gray);
}

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

.playtogetherworld-game-play {
	width: 100%;
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary),
		var(--playtogetherworld-accent)
	);
	color: var(--playtogetherworld-white);
	border: none;
	padding: 0.75rem 1rem;
	border-radius: var(--playtogetherworld-border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--playtogetherworld-transition);
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.playtogetherworld-game-play:hover {
	background: linear-gradient(135deg, #267a4a, #3bb5ad);
	transform: translateY(-2px);
}

/* Buttons */
.playtogetherworld-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: var(--playtogetherworld-border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: var(--playtogetherworld-transition);
	border: none;
	cursor: pointer;
	text-align: center;
}

.playtogetherworld-btn-primary {
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary),
		var(--playtogetherworld-accent)
	);
	color: var(--playtogetherworld-white);
}

.playtogetherworld-btn-primary:hover {
	background: linear-gradient(135deg, #267a4a, #3bb5ad);
	transform: translateY(-2px);
	box-shadow: var(--playtogetherworld-shadow);
	color: var(--playtogetherworld-white);
}

.playtogetherworld-btn-secondary {
	background: var(--playtogetherworld-light);
	color: var(--playtogetherworld-dark);
	border: 2px solid var(--playtogetherworld-primary);
}

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

/* Contact Form */
.playtogetherworld-contact-form {
	background: var(--playtogetherworld-white);
	padding: 2rem;
	border-radius: var(--playtogetherworld-border-radius);
	box-shadow: var(--playtogetherworld-shadow);
	border: 1px solid var(--playtogetherworld-light-gray);
}

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

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

.playtogetherworld-form-control {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid var(--playtogetherworld-light-gray);
	border-radius: var(--playtogetherworld-border-radius);
	font-size: 1rem;
	transition: var(--playtogetherworld-transition);
}

.playtogetherworld-form-control:focus {
	outline: none;
	border-color: var(--playtogetherworld-primary);
	box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

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

/* Footer */
.playtogetherworld-footer {
	background: var(--playtogetherworld-dark);
	color: var(--playtogetherworld-white);
	padding: 3rem 0 1rem;
}

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

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

.playtogetherworld-footer-section p {
	margin-bottom: 0.5rem;
	opacity: 0.8;
}

.playtogetherworld-footer-section a {
	color: var(--playtogetherworld-accent);
	text-decoration: none;
	transition: var(--playtogetherworld-transition);
}

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

.playtogetherworld-disclaimer {
	background: rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	border-radius: var(--playtogetherworld-border-radius);
	margin-bottom: 2rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.playtogetherworld-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	opacity: 0.8;
}

/* Cookie Popup */
.playtogetherworld-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: var(--playtogetherworld-white);
	border: 2px solid var(--playtogetherworld-primary);
	border-radius: var(--playtogetherworld-border-radius);
	box-shadow: var(--playtogetherworld-shadow-lg);
	z-index: 10000;
	display: none;
	max-width: 500px;
	margin: 0 auto;
}

.playtogetherworld-cookie-content {
	padding: 1.5rem;
}

.playtogetherworld-cookie-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--playtogetherworld-dark);
}

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

.playtogetherworld-cookie-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

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

.playtogetherworld-cookie-accept:hover {
	background: #267a4a;
}

.playtogetherworld-cookie-policy {
	color: var(--playtogetherworld-primary);
	text-decoration: none;
	font-weight: 500;
}

.playtogetherworld-cookie-policy:hover {
	color: #267a4a;
}

/* Modal */
.playtogetherworld-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: var(--playtogetherworld-transition);
}

.playtogetherworld-modal.active {
	opacity: 1;
	visibility: visible;
}

.playtogetherworld-modal-content {
	background: var(--playtogetherworld-white);
	border-radius: var(--playtogetherworld-border-radius);
	width: 90%;
	max-width: 1000px;
	max-height: 90vh;
	overflow: hidden;
	transform: scale(0.9);
	transition: var(--playtogetherworld-transition);
}

.playtogetherworld-modal.active .playtogetherworld-modal-content {
	transform: scale(1);
}

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

.playtogetherworld-modal-title {
	margin: 0;
	font-size: 1.25rem;
}

.playtogetherworld-modal-close {
	background: none;
	border: none;
	color: var(--playtogetherworld-white);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 4px;
	transition: var(--playtogetherworld-transition);
}

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

.playtogetherworld-modal-body {
	padding: 0;
}

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

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

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
	.playtogetherworld-navbar-menu {
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		background: var(--playtogetherworld-primary);
		flex-direction: column;
		padding: 2rem;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: var(--playtogetherworld-transition);
		box-shadow: var(--playtogetherworld-shadow);
	}

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

	.playtogetherworld-navbar-toggle {
		display: flex;
	}

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

	.playtogetherworld-hero-title {
		font-size: clamp(2rem, 8vw, 2.5rem);
	}

	.playtogetherworld-features-grid,
	.playtogetherworld-categories-grid,
	.playtogetherworld-games-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

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

	.playtogetherworld-footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.playtogetherworld-cookie-buttons {
		flex-direction: column;
		align-items: stretch;
	}

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

	.playtogetherworld-modal-iframe {
		height: 60vh;
	}
}

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

	.playtogetherworld-hero {
		padding: 3rem 0;
	}

	.playtogetherworld-section {
		padding: 2rem 0;
	}

	.playtogetherworld-feature-card,
	.playtogetherworld-category-card,
	.playtogetherworld-game-content {
		padding: 1.5rem;
	}

	.playtogetherworld-cookie-popup {
		left: 10px;
		right: 10px;
	}
}

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

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

@keyframes fa-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Alert Messages */
.playtogetherworld-message {
	padding: 1rem;
	border-radius: var(--playtogetherworld-border-radius);
	margin-top: 1rem;
	font-weight: 500;
}

.alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.alert-danger {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

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

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

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

.playtogetherworld-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin-bottom: 0.5rem;
}

.playtogetherworld-stat-number-black {
	color: black;
}

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

.playtogetherworld-stat-label-white {
	color: white;
}

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

/* Contact Info Cards */
.playtogetherworld-contact-info-card {
	background: var(--playtogetherworld-white);
	padding: 2rem;
	border-radius: var(--playtogetherworld-border-radius);
	box-shadow: var(--playtogetherworld-shadow);
	border: 1px solid var(--playtogetherworld-light-gray);
	margin-bottom: 2rem;
}

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

.playtogetherworld-contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.playtogetherworld-contact-detail-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary),
		var(--playtogetherworld-accent)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--playtogetherworld-white);
	font-size: 1.2rem;
	flex-shrink: 0;
}

.playtogetherworld-contact-detail-content h4 {
	margin-bottom: 0.25rem;
	color: var(--playtogetherworld-dark);
}

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

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

.playtogetherworld-contact-detail-content a:hover {
	color: #267a4a;
}

/* Overview Cards */
.playtogetherworld-overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

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

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

.playtogetherworld-overview-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-secondary),
		#ff8c69
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: var(--playtogetherworld-white);
	font-size: 1.5rem;
}

/* CTA Section */
.playtogetherworld-cta-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

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

/* Hero Variations */
.playtogetherworld-games-hero {
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-accent) 0%,
		var(--playtogetherworld-primary) 100%
	);
	color: var(--playtogetherworld-white);
	text-align: center;
	padding: 4rem 0;
}

.playtogetherworld-games-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.playtogetherworld-games-hero-subtitle {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.playtogetherworld-games-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

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

.playtogetherworld-stat-item .playtogetherworld-stat-number {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.playtogetherworld-stat-item .playtogetherworld-stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
}

.playtogetherworld-contact-hero {
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-secondary) 0%,
		#ff8c69 100%
	);
	color: var(--playtogetherworld-white);
	text-align: center;
	padding: 4rem 0;
}

.playtogetherworld-contact-hero-content {
	max-width: 600px;
	margin: 0 auto;
}

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

.playtogetherworld-contact-hero-subtitle {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.playtogetherworld-contact-hero-date {
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Form Description */
.playtogetherworld-form-description {
	color: var(--playtogetherworld-gray);
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

/* Disclaimer Section */
.playtogetherworld-disclaimer-section {
	background: var(--playtogetherworld-light);
	padding: 2rem 0;
}

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

.alert-info {
	background: #d1ecf1;
	color: #0c5460;
	border: 1px solid #bee5eb;
	padding: 1rem;
	border-radius: var(--playtogetherworld-border-radius);
	margin: 0;
}

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

.playtogetherworld-highlight-card {
	background: var(--playtogetherworld-white);
	padding: 2rem;
	border-radius: var(--playtogetherworld-border-radius);
	box-shadow: var(--playtogetherworld-shadow);
	transition: var(--playtogetherworld-transition);
	border: 1px solid var(--playtogetherworld-light-gray);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

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

.playtogetherworld-highlight-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary),
		var(--playtogetherworld-accent)
	);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: var(--playtogetherworld-white);
	font-size: 1.5rem;
}

.playtogetherworld-highlight-stats {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--playtogetherworld-gray);
	flex-wrap: wrap;
}

.playtogetherworld-highlight-stats span {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

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

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

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

.playtogetherworld-testimonial-content {
	margin-bottom: 1.5rem;
	font-style: italic;
	color: var(--playtogetherworld-gray);
	line-height: 1.6;
}

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

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

.playtogetherworld-author-info h4 {
	margin-bottom: 0.25rem;
	color: var(--playtogetherworld-dark);
}

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

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

.playtogetherworld-news-card {
	background: var(--playtogetherworld-white);
	padding: 2rem;
	border-radius: var(--playtogetherworld-border-radius);
	box-shadow: var(--playtogetherworld-shadow);
	transition: var(--playtogetherworld-transition);
	border: 1px solid var(--playtogetherworld-light-gray);
	display: flex;
	gap: 1rem;
}

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

.playtogetherworld-news-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--playtogetherworld-primary);
	color: var(--playtogetherworld-white);
	padding: 1rem;
	border-radius: var(--playtogetherworld-border-radius);
	min-width: 80px;
	text-align: center;
}

.playtogetherworld-news-day {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

.playtogetherworld-news-month {
	font-size: 0.9rem;
	opacity: 0.9;
}

.playtogetherworld-news-content h3 {
	margin-bottom: 0.75rem;
	color: var(--playtogetherworld-dark);
}

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

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

.playtogetherworld-news-link:hover {
	color: #267a4a;
}

/* Community Features */
.playtogetherworld-community-features {
	background: var(--playtogetherworld-light);
	padding: 4rem 0;
}

/* Latest News */
.playtogetherworld-latest-news {
	background: var(--playtogetherworld-white);
	padding: 4rem 0;
}

/* Community Section */
.playtogetherworld-community {
	background: linear-gradient(
		135deg,
		var(--playtogetherworld-primary) 0%,
		var(--playtogetherworld-accent) 100%
	);
	color: var(--playtogetherworld-white);
	text-align: center;
	padding: 4rem 0;
}

.playtogetherworld-community h2,
.playtogetherworld-community p {
	color: var(--playtogetherworld-white);
}

.playtogetherworld-community .playtogetherworld-btn {
	background: var(--playtogetherworld-white);
	color: var(--playtogetherworld-primary);
}

.playtogetherworld-community .playtogetherworld-btn:hover {
	background: var(--playtogetherworld-light);
	color: var(--playtogetherworld-primary);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
	.playtogetherworld-games-stats {
		gap: 2rem;
	}

	.playtogetherworld-game-image img {
		object-fit: contain;
	}

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

	.playtogetherworld-news-card {
		flex-direction: column;
		text-align: center;
	}

	.playtogetherworld-news-date {
		align-self: center;
	}

	.playtogetherworld-testimonial-author {
		flex-direction: column;
		text-align: center;
	}

	.playtogetherworld-highlight-stats {
		justify-content: center;
	}
}

/* Fade In Up Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
	opacity: 1;
	transform: translateY(0);
}
