/*
    ░█████╗░░█████╗░██████╗░██╗░░██╗██╗░░░██╗
    ██╔══██╗██╔══██╗██╔══██╗██║░░██║██║░░░██║
    ███████║███████║██║░░██║███████║██║░░░██║
    ██╔══██║██╔══██║██║░░██║██╔══██║██║░░░██║
    ██║ ░██║██║░░██║██████╔╝██║░░██║╚██████╔╝
    ╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝░╚═════╝░
*/

/* @import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Iceland&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=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&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');
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap'); */

/* Navigation Bar Styles */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(15, 23, 41, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 0 0;
	border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.nav-logo {
	height: 80px;
}

.nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: #ffffff;
	text-decoration: none;
	font-family: "Jura", sans-serif;
	font-size: 1.1rem;
	position: relative;
	transition: color 0.3s ease;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: #ff6b6b;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-button {
	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;
}

.nav-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgb(255, 0, 0);
	color: #000000;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
}

.menu-toggle span {
	width: 30px;
	height: 3px;
	background: #ffffff;
	transition: all 0.3s ease;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.nav-links {
		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;
	}

	.nav-links.active {
		display: flex;
	}

	.nav-link::after {
		bottom: -2px;
	}
}

body {
	font-family: "Quicksand", sans-serif;
	background-color: #0f1729;
	margin: 0;
	padding: 20px;
	color: #ffffff;
	padding-top: 80px;
	/* Add space for fixed navbar */
}

.back-button {
	font-family: sans-serif;
	font-weight: 400;
	position: fixed;
	top: 20px;
	left: 20px;
	padding: 10px 20px;
	font-size: 1rem;
	color: #fff;
	background-color: transparent;
	border: 2px solid #ff0000;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.back-button:hover {
	background-color: #ff0000;
}

section {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.content {
	position: relative;
	top: 20%
}

.content h2 {
	color: #fff;
	font-size: 8em;
	position: absolute;
	transform: translate(-50%, -50%);
}

.content h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #ff0000;
}

.content h2:nth-child(2) {
	color: #ff0000;
	animation: animate 4s ease-in-out infinite;
}

.zioninfo {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	max-width: 90%;
	display: flex;
	font-size: x-large;
	font-family: "Jura", sans-serif;
	/* font-family: "Tektur", serif; */
	color: #c2c2c2;
	padding-top: 250px;
}

.button {
	position: absolute;
	bottom: 10%;
}

.real-btn {
	height: 50px;
	margin: 5px;
	width: 100%;
	background: transparent;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	align-items: center;
	font-family: Consolas, Courier New, monospace;
	border: solid #404c5d 1px;
	font-size: 20px;
	color: rgb(161, 161, 161);
	-webkit-transition: 500ms;
	transition: 500ms;
	border-radius: 5px;
	-webkit-box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
		inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
	box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b,
		inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
}

button:hover {
	-webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
	box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
	color: #d6d6d6;
	-webkit-transition: 500ms;
	transition: 500ms;
}

button:active {
	-webkit-box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
	box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
	color: #d6d6d6;
	-webkit-transition: 100ms;
	transition: 100ms;
}

@keyframes animate {

	0%,
	100% {
		clip-path: polygon(0% 45%,
				16% 44%,
				33% 50%,
				54% 60%,
				70% 61%,
				84% 59%,
				100% 52%,
				100% 100%,
				0% 100%);
	}

	50% {
		clip-path: polygon(0% 60%,
				15% 65%,
				34% 66%,
				51% 62%,
				67% 50%,
				84% 45%,
				100% 46%,
				100% 100%,
				0% 100%);
	}
}

.rules-container {
	padding: 120px 20px 40px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.rules-title {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 2rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.rules-section {
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid hsla(0, 100%, 50%, 0.1);
}

.notice-title {
	font-size: 2.5rem;
	color: #ff6b6b;
	margin-bottom: 1.5rem;
	text-align: center;
}

.rules-heading {
	font-size: 2.5rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 2rem 0;
	text-align: center;
}

.rule-title {
	font-size: 1.6rem;
	color: #ff6b6b;
	margin: 1.5rem 0 1rem;
}

.rules-section p {
	margin-bottom: 1rem;
	color: #ffffff;
}

.rules-section ul {
	list-style-type: none;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.rules-section ul li {
	margin-bottom: 0.5rem;
	position: relative;
	color: #ffffff;
}

.rules-section ul li:before {
	content: "•";
	color: #ff6b6b;
	position: absolute;
	left: -1.5rem;
}

.rules-headings {
	font-size: 2.5rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 2rem 0;
	text-align: center;
}

.rule-titles {
	font-size: 2rem;
	color: #fa3636;
	margin: 1.5rem 0 1rem;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
}

.cta-button {
	padding: 0.8rem 2rem;
	border-radius: 0.3rem;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.primary {
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: #ffffff;
}

.cta-button1 {
	padding: 0.8rem 2rem;
	border-radius: 0.3rem;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.primary1 {
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: #ffffff;
}

.cta-buttonss {
	display: flex;
	gap: 1rem;
}

.secondary {
	background: transparent;
	border: 2px solid #ff0000;
	color: #ffffff;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.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);
}

.footer {
	color: #ffffff;
	text-align: center;
	padding: 20px 0;
	position: relative;
	bottom: 0;
	width: 100%;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	margin-top: 16px;
	width: 27px;
	height: 27px;
}

.footer p {
	margin: 0;
	font-size: 1.7rem;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
	font-weight: 600;
	margin-bottom: 5px;
	color: #fff;
	text-decoration: none;
}

.footer a {
	text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.zionlogo3 {
	width: 500px;
	margin-bottom: 90px;
}

/* Custom dialog box styles */
.custom-dialog {
	display: none;
	position: fixed;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #000000;
	color: white;
	padding: 20px;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
	z-index: 1001;
	font-family: Arial, sans-serif;
	text-align: center;
	border-radius: 10px 10px;
	opacity: 0;
	transition: top 0.5s ease, opacity 0.5s ease;
}

.custom-dialog.show {
	top: 15px;
	opacity: 1;
}

.dialog-logo {
	width: 140px;
	margin-bottom: 10px;
}

.dialog-buttons {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 3px;
	padding-inline: 10px;
}

.dialog-button {
	margin-right: 10px;
	padding: 10px 20px;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: #ffffff;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	font-family: fantasy;
	letter-spacing: 1px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dialog-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.dialog-button:last-child {
	margin-right: 0;
}

.dialog-button:active {
	box-shadow: inset 4px 4px 12px #ff0019, inset -4px -4px 12px #ff0019;
}

#close-btn:active {
	box-shadow: inset 4px 4px 12px #1900ff, inset -4px -4px 12px #1900ff;
}

#contact-dev-btn {
	background: linear-gradient(45deg, #00aaff, #00ffaa);
}

#join-discord-btn {
	background: linear-gradient(45deg, #7289da, #002aff);
}

/* Add these responsive styles at the end of the file */
@media screen and (max-width: 1200px) {
	.rules-container {
		padding: 100px 15px 40px;
	}

	.rules-title {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 992px) {
	.rules-heading {
		font-size: 2rem;
	}

	.rule-title {
		font-size: 1.6rem;
	}

	.zioninfo {
		font-size: 90%;
		padding: 20px;
	}
}

@media screen and (max-width: 768px) {
	.content h2 {
		font-size: 4em;
	}

	.zionlogo3 {
		width: 300px;
	}

	.rules-section {
		padding: 1.5rem;
	}

	.notice-title {
		font-size: 2rem;
	}

	.rules-section p {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 576px) {
	.rules-title {
		font-size: 2rem;
	}

	.rules-heading {
		font-size: 1.8rem;
	}

	.rule-title {
		font-size: 1.4rem;
	}

	.back-button {
		font-size: 0.8rem;
		padding: 8px 16px;
		position: absolute;
	}
}

@media screen and (max-width: 320px) {
	.rules-title {
		font-size: 1.8rem;
	}

	.rules-heading {
		font-size: 1.6rem;
	}

	.rule-title {
		font-size: 1.2rem;
	}

	.rules-section p {
		font-size: 0.85rem;
	}
}

.trail-dot {
	width: 8px;
	height: 8px;
	background: rgba(255, 0, 0, 0.5);
	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(1px);
}

.trail-dot:nth-child(2n) {
	background: rgba(255, 30, 30, 0.4);
	width: 6px;
	height: 6px;
}

.trail-dot:nth-child(3n) {
	background: rgba(255, 60, 60, 0.3);
	width: 4px;
	height: 4px;
}

.trail-dot:nth-child(4n) {
	background: rgba(255, 90, 90, 0.2);
	width: 3px;
	height: 3px;
}