/* Reset and base styles */

/* @import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Turret+Road:wght@200;300;400;500;700;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(15, 23, 41, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 2px solid rgba(255, 0, 0, 0.3);
	height: 80px;
	/* Fixed height for the navbar */
}

.header-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.brand-logo {
	height: 50px;
	border-radius: 15px;
}

.main-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.menu-item {
	color: #ffffff;
	text-decoration: none;
	font-family: "Jura", sans-serif;
	font-size: 1.1rem;
	position: relative;
	transition: color 0.3s ease;
}

.menu-item::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	transition: width 0.3s ease;
}

.menu-item:hover {
	color: #ff6b6b;
}

.menu-item:hover::after {
	width: 100%;
}

.discord-btn {
	padding: 0.5rem 1.5rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	border: none;
	border-radius: 5px;
	color: white;
	font-family: "Jura", sans-serif;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
}

.discord-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.fab {
	padding-right: 10px;
}

.menu-trigger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 5px;
}

.trigger-line {
	width: 30px;
	height: 3px;
	background: #ffffff;
	transition: all 0.3s ease;
}


/* Responsive Navigation */
@media screen and (max-width: 768px) {
	.menu-trigger {
		display: flex;
	}

	.main-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(15, 23, 41, 0.95);
		flex-direction: column;
		padding: 1rem 0;
		text-align: center;
	}

	.main-menu.active {
		display: flex;
	}

	.menu-item::after {
		bottom: -2px;
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Jura", sans-serif;
	background: #0f1729;
	color: #fff;
	line-height: 1.6;
	padding-top: 80px;
}

/* Guidebook Container */
.guidebook-container {
	display: flex;
	min-height: 100vh;
	background: #0f1729;
}

/* Sidebar Styles */
.sidebar {
	width: 300px;
	background: #0C1221;
	height: 100vh;
	position: fixed;
	overflow-y: auto;
	padding: 20px;
}

.guidebook-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}

.guidebook-header i {
	font-size: 24px;
	color: #fff;
}

.guidebook-header h1 {
	font-size: 2rem;
	color: #ffffff;
	font-weight: 500;
}

.guide-logo {
	width: 50px;
	height: 65px;
	object-fit: contain;
}

/* Navigation Styles */
.guide-navigation {
	margin-bottom: 130px;
	padding-right: 10px;
}

.nav-section span {
	margin-bottom: 8px;
	font-family: "Jura", sans-serif;
	font-size: 1rem;
}

.section-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 4px;

}

.section-toggle:hover {
	background: rgba(255, 70, 70, 0.1);
}

.section-toggle i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.section-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.nav-section.active .section-content {
	max-height: 500px;
	margin-top: 5px;
}

.nav-section.active .section-toggle i {
	transform: rotate(180deg);
}

.nav-link {
	display: block;
	padding: 8px 20px;
	color: #8b8b8b;
	text-decoration: none;
	font-size: 13px;
	transition: all 0.2s ease;
	border-radius: 4px;
	margin: 2px 0;
	font-size: 0.9rem;
}

.nav-link:hover {
	color: #fff;
	background: rgba(255, 0, 0, 0.37);
}

.nav-link.active {
	color: #fff;
	background: rgb(189, 42, 42);
}

/* Content Area */
.guide-content {
	flex: 1;
	margin-left: 300px;
	padding: 40px;
	max-width: calc(100% - 300px);
}

.content-section {
	background: #0C1221;
	padding: 30px;
	margin-bottom: 40px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: none;
}

.content-section:first-child {
	display: block;
}

.content-section h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #fff;
	font-weight: 500;
}

.content-section p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.8;
	color: #8b8b8b;
}

/* Back Button */
.back-button {
	position: fixed;
	top: 120px;
	left: 320px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	z-index: 1000;
	transition: background-color 0.3s;
	width: 40px;
	height: 40px;
}

.back-button:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Scrollbar Styles */
.sidebar::-webkit-scrollbar {
	width: 5px;
}

.sidebar::-webkit-scrollbar-track {
	background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
	.sidebar {
		width: 100%;
		height: auto;
		position: relative;
	}

	.guide-content {
		margin-left: 0;
		max-width: 100%;
		padding: 20px;
	}

	.back-button {
		left: 20px;
	}
}

.container {
	max-width: 800px;
	padding: 20px;
}

.container h1 {
	color: #ff0000;
	margin-bottom: 20px;
	font-size: 2em;
}

.container h2 {
	color: #fff;
	margin-bottom: 15px;
	font-size: 1.5em;
}

.container h4 {
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid rgba(255, 0, 0, 0.3);
	border-radius: 5px;
	background: #1a2234;
	color: #fff;
}

.form-group button {
	background: #ff0000;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-group button:hover {
	background: #cc0000;
}

.hidden {
	display: none;
}

/* FAQ Styles */
.faq-container {
	margin-top: 20px;
}

details {
	background: #1a2234;
	margin-bottom: 10px;
	padding: 15px;
	border-radius: 5px;
	border: 1px solid rgba(255, 0, 0, 0.1);
}

summary {
	cursor: pointer;
	font-weight: bold;
	color: #ff0000;
}

details p {
	margin-top: 10px;
	padding-left: 20px;
}

/* Footer Styles */
footer {
	text-align: center;
	padding: 20px;
	margin-top: 50px;
}

footer p {
	margin: 5px 0;
	color: #666;
}

footer a {
	color: #ff0000;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1000;
	cursor: pointer;
	font-size: 24px;
	box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.back-to-top.visible {
	opacity: 1;
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}


/* Responsive Design */
@media (max-width: 768px) {
	.guidebook-container {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		height: auto;
		position: relative;
		border-right: none;
		border-bottom: 1px solid rgba(255, 0, 0, 0.1);
	}

	.guide-content {
		margin-left: 0;
		padding: 20px;
	}

	.container {
		padding: 10px;
	}

	.back-button {
		position: absolute;
	}
}

@media (max-width: 480px) {
	.container h1 {
		font-size: 1.5em;
	}

	.container h2 {
		font-size: 1.2em;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		font-size: 14px;
	}
}


.zcpd-container {
	width: 60%;
	margin: 50px auto;
	background: #1a2234;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.zcpd-container h1 {
	text-align: center;
	color: #ff2f00;
}

.zcpd-form-group {
	margin-bottom: 20px;
}

.zcpd-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #d4d4d4;
}

.zcpd-form-group input,
.zcpd-form-group textarea,
.zcpd-form-group select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #be2d2d;
	border-radius: 5px;
	background: #1a2234;
	color: #d4d4d4;
}

.zcpd-form-group button {
	padding: 15px 20px;
	background-color: #ff2f00;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.zcpd-form-group button:hover {
	background-color: #7e1500;
}

.zims-container {
	width: 60%;
	margin: 50px auto;
	background: #1a2234;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.zims-container h1 {
	text-align: center;
	color: #ff2f00;
}

.zims-form-group {
	margin-bottom: 20px;
}

.zims-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #d4d4d4;
}

.zims-form-group input,
.zims-form-group textarea,
.zims-form-group select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #f03030;
	border-radius: 5px;
	background: #1a2234;
	color: #d4d4d4;
}

.zims-form-group button {
	padding: 15px 20px;
	background-color: #ff2f00;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.zims-form-group button:hover {
	background-color: #7e1500;
}


.mechanic-container {
	width: 60%;
	margin: 50px auto;
	background: #1a2234;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.mechanic-container h1 {
	text-align: center;
	color: #ff2f00;
}


.mechanic-form-group {
	margin-bottom: 20px;
}

.mechanic-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #d4d4d4;
}

.mechanic-form-group input,
.mechanic-form-group textarea,
.mechanic-form-group select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #f03030;
	border-radius: 5px;
	background: #1a2234;
	color: #d4d4d4;
}

.mechanic-form-group button {
	padding: 15px 20px;
	background-color: #ff2f00;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.mechanic-form-group button:hover {
	background-color: #7e1500;
}


.rzer-container {
	width: 60%;
	margin: 50px auto;
	background: #1a2234;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.rzer-container h1 {
	text-align: center;
	color: #ff2f00;
}

.rzer-form-group {
	margin-bottom: 20px;
}

.rzer-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #d4d4d4;
}

.rzer-form-group input,
.rzer-form-group textarea,
.rzer-form-group select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #f03030;
	border-radius: 5px;
	background: #1a2234;
	color: #d4d4d4;
}

.rzer-form-group button {
	padding: 15px 20px;
	background-color: #ff2f00;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.rzer-form-group button:hover {
	background-color: #7e1500;
}

.news-container {
	width: 60%;
	margin: 50px auto;
	background: #1a2234;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.news-container h1 {
	text-align: center;
	color: #ff2f00;
}

.news-form-group {
	margin-bottom: 20px;
}

.news-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #d4d4d4;
}

.news-form-group input,
.news-form-group textarea,
.news-form-group select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #f03030;
	border-radius: 5px;
	background: #1a2234;
	color: #d4d4d4;
}

.news-form-group button {
	padding: 15px 20px;
	background-color: #ff2f00;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.news-form-group button:hover {
	background-color: #7e1500;
}

.frp-container {
	width: 90%;
	margin: 50px auto;
	background: #1a2234;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	text-align: left;
	color: #fff;
}

.frp-container h1 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.frp-container p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.frp-gallery {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin: 0 auto;
}

.frp-image {
	background: #0f1729;
	padding: 5px;
	border-radius: 0.5rem;
	box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
	transition: all 0.3s ease;
	width: 100%;
}

.frp-image img {
	width: 100%;
	border-radius: 0.5rem;
}

.frp-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.whitelist-container {
	width: 60%;
	margin: 50px auto;
	background: #0f1729;
	padding: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	text-align: center;
}

.whitelist-container h1 {
	text-align: center;
	color: #ff2f00;
}

.whitelist-form-group {
	margin-bottom: 20px;
}

.whitelist-form-group label {
	display: block;
	margin-bottom: 8px;
	color: #d4d4d4;
	text-align: left;
}

.whitelist-form-group input,
.whitelist-form-group textarea,
.whitelist-form-group select {
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #f03030;
	border-radius: 5px;
	background: #0f1729;
	color: #d4d4d4;
}

.whitelist-form-group button {
	padding: 15px 20px;
	background-color: #ff2f00;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	justify-content: left;
}

.whitelist-form-group button:hover {
	background-color: #7e1500;
}

.note {
	margin-top: 20px;
	color: #bbbbbb;
	margin-bottom: 20px;
}

/* Add these responsive styles at the end of the file */

@media screen and (max-width: 1200px) {
	.guidebook-container {
		padding-top: 40px;
	}

	.container {
		max-width: 90%;
	}

	.zcpd-container,
	.zims-container,
	.rzer-container,
	.news-container,
	.whitelist-container {
		width: 80%;
	}
}

@media screen and (max-width: 992px) {
	.sidebar {
		width: 250px;
	}

	.guide-content {
		margin-left: 250px;
		max-width: calc(100% - 250px);
	}

	.guidebook-header h1 {
		font-size: 1.8rem;
	}

	.guide-logo {
		width: 40px;
		height: 52px;
	}

	.zcpd-container,
	.zims-container,
	.rzer-container,
	.news-container,
	.whitelist-container {
		width: 90%;
		padding: 20px;
	}

	.form-group button {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.guidebook-container {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		height: auto;
		position: relative;
		margin-bottom: 20px;
	}

	.guide-content {
		margin-left: 0;
		max-width: 100%;
		padding: 20px;
	}

	.content-section {
		padding: 20px;
	}

	.content-section h2 {
		font-size: 2rem;
	}

	.back-button {
		position: fixed;
		left: 10px;
		top: 10px;
	}

	.zcpd-container,
	.zims-container,
	.rzer-container,
	.news-container,
	.whitelist-container {
		width: 95%;
		margin: 30px auto;
	}

	.form-group label {
		font-size: 0.9rem;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 8px;
	}
}

@media screen and (max-width: 576px) {
	.guidebook-header {
		padding: 10px;
	}

	.guidebook-header h1 {
		font-size: 1.5rem;
	}

	.nav-section span {
		font-size: 0.9rem;
	}

	.nav-link {
		font-size: 0.8rem;
		padding: 6px 15px;
	}

	.content-section h2 {
		font-size: 1.8rem;
	}

	.content-section p {
		font-size: 0.9rem;
	}

	.back-button {
		padding: 6px 12px;
		font-size: 0.9rem;
	}

	.frp-container {
		width: 95%;
		padding: 15px;
	}

	.frp-container h1 {
		font-size: 1.8rem;
	}

	.frp-container p {
		font-size: 1rem;
	}
}

@media screen and (max-width: 320px) {
	.guidebook-header h1 {
		font-size: 1.3rem;
	}

	.guide-logo {
		width: 35px;
		height: 45px;
	}

	.content-section h2 {
		font-size: 1.6rem;
	}

	.form-group button {
		font-size: 0.9rem;
		padding: 12px 16px;
	}
}

.trail-dot {
	width: 1px;
	height: 1px;
	background: rgb(1, 203, 254, 255);
	border-radius: 50%;
	position: fixed;
	pointer-events: none;
	transform: translate(-50%, -50%);
	transition: width 0.2s, height 0.2s;
	z-index: 9999;
	mix-blend-mode: screen;
	filter: blur(0px);
}

.trail-dot:nth-child(2n) {
	background: rgb(1, 203, 254, 255);
	width: 6px;
	height: 6px;
}

.trail-dot:nth-child(3n) {
	background: rgb(1, 203, 254, 255);
	width: 4px;
	height: 4px;
}

.trail-dot:nth-child(4n) {
	background: rgb(1, 203, 254, 255);
	width: 3px;
	height: 3px;
}