body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #1a1a2e;
	/* Deep navy background */
	color: #eaeaea;
	/* Soft white text */
	box-sizing: border-box;
	font-size: 16px;
	scroll-behavior: smooth;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	background-color: #16213e;
	/* Dark blue header */
	color: #eaeaea;
	padding: 20px 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
	top: 0;
	z-index: 10;
	position: sticky;
}

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

.logo {
	font-size: 2.5rem;
	font-weight: bold;
	text-transform: uppercase;
	color: #e94560;
	/* Vibrant pink for logo */
	text-decoration: none;
}

.logo a {
	color: #e94560;
	text-decoration: none;
}

.thankyou-container {
	height: 100vh;
}



nav a,
.thank-you-links a {
	color: #c4c4c4;
	/* Soft gray navigation links */
	text-decoration: none;
	margin: 0 15px;
	font-weight: bold;
	transition: color 0.3s, transform 0.3s;
}

nav a:hover,
.thank-you-links a:hover {
	color: #e94560;
	/* Highlight on hover */
	transform: scale(1.1);
}


.thank-you-links a {
	margin: 0;
}

.hero {
	text-align: center;
	padding: 120px 20px;
	background: linear-gradient(to bottom, #16213e, #0f3460);
	color: #eaeaea;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(233, 69, 96, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
}

.hero img {
	width: 100%;
	max-width: 600px;
	margin: 20px 0;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.hero h1 {
	font-size: 4.5rem;
	color: #e94560;
	margin-bottom: 20px;
	animation: slideInFromTop 1s ease-out;
}

@keyframes slideInFromTop {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero p {
	font-size: 1.5rem;
	color: #c4c4c4;
	line-height: 2;
	animation: fadeIn 2s ease-out;
}

.games-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	margin: 50px 0;
	padding: 20px;
	background: #1a1a2e;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.game-card {
	background-color: #16213e;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
	width: 300px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.game-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 15px;
}

.game-card h3 {
	color: #e94560;
	margin-bottom: 10px;
	font-size: 1.8rem;
}

.game-card p {
	color: #c4c4c4;
	font-size: 1.1rem;
	margin-bottom: 20px;
	line-height: 1.6;
}

.game-btn {
	display: inline-block;
	padding: 10px 25px;
	background-color: #e94560;
	color: #eaeaea;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s, transform 0.3s;
}

.game-btn:hover {
	background-color: #ff5973;
	transform: scale(1.05);
}

.review-section {
	padding: 50px 20px;
	background: linear-gradient(to bottom, #16213e, #1a1a2e);
	color: #eaeaea;
	text-align: center;
	border-radius: 10px;
	margin: 50px 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.review-section h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #e94560;
}

.review {
	background-color: #0f3460;
	border-radius: 15px;
	padding: 25px;
	margin: 20px auto;
	max-width: 500px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.review img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 15px;
	border: 3px solid #e94560;
	display: block;
	margin: 0 auto;
}

.review p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #c4c4c4;
}

footer {
	background-color: #16213e;
	color: #c4c4c4;
	text-align: center;
	padding: 40px 0;
	border-top: 5px solid #e94560;
}

footer a {
	color: #e94560;
	text-decoration: none;
	font-weight: bold;
}

footer a:hover {
	text-decoration: underline;
}

/* Contact Form Styles */
#contact {
	padding: 40px 20px;
	background: linear-gradient(to bottom, #16213e, #1a1a2e);
	border-radius: 15px;
	color: #eaeaea;
	text-align: center;
	margin: 50px auto;
	max-width: 600px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

#contact h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #e94560;
}

#contact form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

#contact label {
	font-size: 1.2rem;
	font-weight: bold;
	color: #eaeaea;
	text-align: left;
	width: 100%;
	max-width: 400px;
}

#contact input {
	width: 100%;
	max-width: 400px;
	padding: 12px;
	border: 1px solid #e94560;
	border-radius: 5px;
	background-color: #1a1a2e;
	color: #eaeaea;
	font-size: 1rem;
}

#contact input::placeholder {
	color: #c4c4c4;
}

#contact button {
	padding: 12px 20px;
	background-color: #e94560;
	color: #eaeaea;
	border: none;
	border-radius: 5px;
	font-weight: bold;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.3s;
}

#contact button:hover {
	background-color: #ff5973;
	transform: scale(1.05);
}

/* Cookie Modal Styles */
.modal {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 300px;
	background-color: rgba(25, 25, 50, 0.9);
	padding: 20px;
	border-radius: 10px;
	z-index: 1000;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.modal-content {
	color: #eaeaea;
	font-size: 1rem;
	line-height: 1.5;
}

.modal-content p {
	margin: 0;
}

.intro img {
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	display: block;
}