@font-face {
	font-family: 'Bangers';
	src: url('../fonts/Bangers-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	font-family: 'Bangers', sans-serif;
	background-color: #120f1f;
	color: #ffffff;
	scroll-behavior: smooth;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	max-width: 1200px;
	padding: 0 16px;
	margin: auto;
}

/* ===== Header ===== */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #1a132e;
	border-bottom: 2px solid #ffdd57;
	z-index: 1000;
	padding: 10px 0;
	animation: slideDown 0.4s ease-out;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 48px;
	border-radius: 8px;
}

.main-nav ul {
	display: flex;
	gap: 24px;
	list-style: none;
}

.main-nav a {
	color: #ffdd57;
	font-weight: bold;
	padding: 8px 12px;
	transition: background 0.3s, color 0.3s;
	border-radius: 6px;
}

.main-nav a:hover,
.main-nav a.active {
	background-color: #ffdd57;
	color: #1a132e;
}

/* ===== Footer ===== */
.site-footer {
	background-color: #1a132e;
	color: #ccc;
	padding: 40px 20px;
	text-align: center;
	border-top: 2px solid #ff3c3c;
}

.site-footer address {
	font-style: normal;
	margin: 10px 0;
	line-height: 1.6;
}

.footer-links {
	margin-top: 20px;
}

.footer-links p {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ffdd57;
	margin: 20px 10px;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #ffffff;
}

#back-to-top {
	margin-top: 20px;
	padding: 10px 20px;
	background-color: #ff3c3c;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s;
}

#back-to-top:hover {
	background-color: #e02b2b;
}

/* ===== Animations ===== */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
@media (max-width: 768px) {
	.main-nav ul {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}

	.site-header .container {
		flex-direction: column;
	}

	.logo img {
		height: 40px;
	}
}

@media (max-width: 480px) {
	.main-nav a {
		font-size: 14px;
		padding: 6px 10px;
	}

	#back-to-top {
		font-size: 14px;
		padding: 8px 16px;
	}
}
.section-title {
	font-size: 2.2rem;
	color: #ffdd57;
	text-align: center;
	margin-bottom: 40px;
	text-shadow: 1px 1px #000;
	line-height: 1.3;
}
@media (max-width: 480px) {
	.section-title {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}
}
.thankyou-section {
	background: radial-gradient(circle at center, #1e0d1f 0%, #0f070f 100%);
	color: #fff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 20px;
}

.thankyou-container {
	max-width: 700px;
	padding: 40px;
	background-color: #2a1a2c;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(255, 80, 80, 0.2);
	animation: fadeIn 1s ease-in-out;
}

.thankyou-title {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #ffde59;
}

.thankyou-message {
	font-size: 1.05rem;
	color: #ddd;
	margin-bottom: 30px;
	line-height: 1.7;
}

.cta-button {
	background-color: #ff3c3c;
	color: #fff;
	padding: 12px 28px;
	border: none;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: background 0.3s ease;
}

.cta-button:hover {
	background-color: #ff1e1e;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile adaptation */
@media (max-width: 480px) {
	.thankyou-title {
		font-size: 1.5rem;
	}

	.thankyou-message {
		font-size: 1rem;
	}

	.thankyou-container {
		padding: 30px 20px;
	}
}
/* === Privacy Policy Page Styles === */

.policy-section {
	padding: 80px 20px 60px;
	background-color: #0e0e0e;
	color: #f5f5f5;
	font-family: 'Orbitron', sans-serif;
	line-height: 1.7;
}

.policy-section h1 {
	font-size: 2.5rem;
	color: #ffeb3b;
	margin-bottom: 30px;
	text-align: center;
	text-transform: uppercase;
}

.policy-section h2 {
	font-size: 1.6rem;
	color: #ffc107;
	margin-top: 40px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.policy-section p {
	font-size: 1rem;
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	color: #ddd;
}

.policy-section a {
	color: #4fc3f7;
	text-decoration: underline;
}

.policy-section a:hover {
	color: #81d4fa;
}

/* A little animation on scroll */
.policy-section {
	transform: translateY(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.policy-section.animate-on-scroll.visible {
	opacity: 1;
	transform: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.policy-section h1 {
		font-size: 2rem;
	}

	.policy-section h2 {
		font-size: 1.3rem;
	}

	.policy-section p {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.policy-section {
		padding: 60px 15px 40px;
	}

	.policy-section h1 {
		font-size: 1.6rem;
	}

	.policy-section h2 {
		font-size: 1.15rem;
	}

	.policy-section p {
		font-size: 0.9rem;
	}
}
