/* @import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..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');

.how-to-join {
	padding: 6rem 2rem;
	background-color: #0C1221;
	position: relative;

}

.join-content {
	/* font-family: "Iceland", serif; */
	font-family: "Jura", sans-serif;
	max-width: 1200px;
	margin: 0 auto;
}

.requirements {
	margin-bottom: 4rem;
}

.requirements h3 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	color: #ffffff;
}

.requirements-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	list-style: none;
	padding: 0;
}

.requirements-list li {
	background-color: hsla(222, 47%, 11%, 1);
	border-radius: 0.5rem;
	border: 1px solid rgba(255, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.requirements-list li:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.requirement-link {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	color: inherit;
	text-decoration: none;
	width: 100%;
	height: 100%;
}

.requirement-icon {
	font-size: 1.5rem;
	min-width: 2rem;
}

.requirement-details h4 {
	color: #ffffff;
	margin: 0 0 0.5rem 0;
	font-size: 1.2rem;
}

.requirement-details p {
	color: #cccccc;
	margin: 0;
	font-size: 0.9rem;
}

.join-steps {
	margin-bottom: 4rem;
}

.join-steps h3 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2rem;
	color: #ffffff;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.step-card {
	background-color: hsla(222, 47%, 11%, 1);
	padding: 2rem;
	border-radius: 0.5rem;
	text-align: center;
	position: relative;
	border: 1px solid rgba(255, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}

.step-card:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.step-number {
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: white;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-weight: bold;
}

.step-card h4 {
	color: #ffffff;
	margin: 0 0 1rem 0;
	font-size: 1.2rem;
}

.step-card p {
	color: #cccccc;
	margin: 0;
	font-size: 0.9rem;
}

.join-cta {
	text-align: center;
	margin-top: 3rem;
}

.join-discord-button {
	display: inline-block;
	padding: 1rem 3rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	border-radius: 0.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.join-discord-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.section-titles {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 3rem;
	font-weight: 500px;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

}

/* Navigation styles */
.zc-hero-tabs-container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	height: 70px;
	width: 100%;
	background: rgba(19, 28, 53, 0.95);
}

.zc-hero-tab-container,
.zc-hero-tab {
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	position: relative;
}

.zc-hero-tab,
.zc-hero-tab-container .zc-hero-tab {
	width: 100%;
	height: 100%;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease-in-out;
}

/* Dropdown adjustments */
.dropdown-content {
	display: none;
	position: absolute;
	background: rgba(13, 24, 56, 0.95);
	width: 160px;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	border: 1px solid rgba(255, 0, 0, 0.1);
	border-radius: 8px;
	z-index: 100;
	overflow: hidden;
}

.dropdown-content a {
	padding: 12px 24px;
	color: #ffffff;
	text-decoration: none;
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	position: relative;
	transition: all 0.3s ease;
	background: linear-gradient(45deg, #ff0000, #ff6b6b) no-repeat;
	background-size: 0 100%;
	background-position: 0 0;
}

.dropdown-content a:hover {
	color: #ffffff;
	background-size: 100% 100%;
	transform: translateX(5px);
}

.zc-hero-tab-container:hover .dropdown-content {
	display: block;
}

/* Applications Section Styles */
.applications-section {
	background-color: #0C1221;
	padding: 4rem 2rem;
	position: relative;
}

.applications-container {
	max-width: 1200px;
	margin: 0 auto;
}

.applications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	padding: 2rem 0;
}

.application-card {
	perspective: 1000px;
	height: 400px;
}

.application-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	cursor: pointer;
}

.application-card:hover .application-card-inner {
	transform: rotateY(180deg);
}

.application-front, .application-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
	overflow: hidden;
}

.application-front {
	background-color: hsla(222, 47%, 11%, 1);
	border: 1px solid rgba(255, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

.application-back {
	background-color: hsla(222, 47%, 11%, 1);
	border: 1px solid rgba(255, 0, 0, 0.1);
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.application-back::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.1;
	z-index: 0;
}

.application-back.whitelist::before {
	background-image: url('/Files/Images/Zion\ CIty.png');
}

.application-back.zcpd::before {
	background-image: url('/Files/Images/el-gallery/gallery17.png');
}

.application-back.zims::before {
	background-image: url('/Files/Images/el-gallery/gallery11.png');
}

.application-back > * {
	position: relative;
	z-index: 1;
}

.application-icon {
	width: 150px;
	height: 180px;
	margin-bottom: 1.5rem;
}

.application-title {
	color: #ffffff;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.application-description {
	color: #cccccc;
	font-size: 0.9rem;
	line-height: 1.6;
}

.apply-button {
	display: inline-block;
	padding: 0.8rem 2rem;
	margin-top: 1.5rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.apply-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Media Queries for Applications Section */
@media screen and (max-width: 768px) {
	.applications-grid {
		grid-template-columns: 1fr;
	}
	
	.application-card {
		height: 350px;
	}
}

/* Add these media queries at the end of your existing CSS */

/* General responsive adjustments */
@media screen and (max-width: 1200px) {
	.articles {
		grid-template-columns: repeat(2, 1fr);
		padding-inline: 20px;
	}

	.zioninfo {
		font-size: 100%;
		padding-top: 80px;
	}

	.zionlogo3 {
		width: 400px;
	}

	.content h2 {
		font-size: 6em;
	}
}

@media screen and (max-width: 992px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.social ul {
		gap: 20px;
	}

	.social ul li a {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 30px;
		margin: 0 20px;
	}

	.content h2 {
		font-size: 5em;
	}

	.zionlogo3 {
		width: 350px;
	}
}

@media screen and (max-width: 768px) {
	.articles {
		grid-template-columns: 1fr;
	}

	.zc-hero-tabs-container {
		height: auto;
		flex-direction: column;
	}

	.zc-hero-tab {
		padding: 15px 0;
	}

	.intro button {
		padding: 0.5em 1.2em;
		font-size: 16px;
		margin-bottom: 10px;
	}

	.content h2 {
		font-size: 4em;
	}

	.zioninfo {
		font-size: 90%;
		padding-top: 60px;
		text-align: center;
	}

	.zionlogo3 {
		width: 300px;
	}

	.social ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.requirements-list,
	.steps-grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 576px) {
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.content h2 {
		font-size: 3em;
	}

	.zionlogo3 {
		width: 250px;
	}

	.social ul li a {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 24px;
		margin: 0 15px;
	}

	.join-discord-button {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}

	.section-titles {
		font-size: 2rem;
	}

	.back-to-top {
		width: 50px;
		height: 50px;
		font-size: 20px;
		bottom: 20px;
		right: 20px;
	}
}

/* Preloader responsive */
@media screen and (max-width: 480px) {
	#preloader .content {
		top: 20%;
	}

	.feature-card {
		padding: 1.5rem;
	}

	.feature-card h2 {
		font-size: 1.3rem;
	}

	.article-body {
		padding: 15px;
	}

	.article-body h2 {
		font-size: 1.5rem;
	}

	.footer p {
		font-size: 1.1rem;
	}

	.footer-logo {
		width: 50px;
		height: 50px;
	}
}

/* Fix for very small screens */
@media screen and (max-width: 320px) {
	.content h2 {
		font-size: 2.5em;
	}

	.zionlogo3 {
		width: 200px;
	}

	.social ul li a {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 20px;
		margin: 0 10px;
	}

	.section-titles {
		font-size: 1.5rem;
	}
}

/* Fix for landscape mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
	.zc-hero-tabs {
		min-height: 120vh;
	}

	.content {
		top: 30%;
	}

	.social ul {
		top: 80%;
	}
}

/* High-resolution screens */
@media screen and (min-width: 1400px) {
	.content h2 {
		font-size: 10em;
	}

	.zionlogo3 {
		width: 600px;
	}

	.articles {
		max-width: 1400px;
	}
}

/* Patch Notes Section */
.patch-notes-section {
	background-color: #0C1221;
	padding: 4rem 2rem;
	position: relative;
}

.patch-notes-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.gallery-container {
	padding-right: 2rem;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.enlarged-image-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
	text-align: center;
}

.enlarged-image-content {
	margin: auto;
	display: block;
	width: 90%;
	max-width: 900px;
	border-radius: 15px;
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.close:hover,
.close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

.gallery-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.gallery-image:hover {
	transform: scale(1.05);
}

.patch-notes {
	background-color: hsla(222, 47%, 11%, 1);
	border-radius: 12px;
	padding: 2rem;
}

.patch-notes-list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.patch-note {
	background-color: #0f1729;
	border-radius: 8px;
	padding: 1.5rem;
	border: 1px solid rgba(255, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.patch-note:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.patch-tag {
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 0.5rem;
}

.patch-note h3 {
	color: #ffffff;
	margin: 0.5rem 0;
	font-size: 1.5rem;
}

.patch-date {
	color: #cccccc;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.patch-content h4 {
	color: #ff6b6b;
	margin: 1rem 0 0.5rem;
}

.patch-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.patch-content ul li {
	color: #cccccc;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.patch-content ul li::before {
	content: "•";
	color: #ff6b6b;
	position: absolute;
	left: 0;
}

.iframe {
	position: relative;
}

.about-us {
	background-color: #0C1221;
	padding: 6rem 2rem;
	color: #ffffff;
	position: relative;
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.server-history {
	position: relative;
}

.history-content {
	background-color: hsla(222, 47%, 11%, 1);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.history-content:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.milestone-list {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
}

.milestone-list::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, #ff0000, #ff6b6b);
}

.milestone {
	padding-left: 2rem;
	margin-bottom: 2rem;
	position: relative;
}

.milestone::before {
	content: '';
	position: absolute;
	left: -5px;
	top: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
}

.milestone-date {
	font-size: 0.9rem;
	color: #ff6b6b;
	margin-bottom: 0.5rem;
}

.milestone-title {
	font-size: 1.2rem;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.milestone-description {
	color: #cccccc;
	font-size: 0.95rem;
	line-height: 1.6;
}

.team-preview {
	background-color: hsla(222, 47%, 11%, 1);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid rgba(255, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.team-preview:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.team-members {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}

.team-member {
	text-align: center;
}

.member-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	border: 2px solid #ff0000;
	padding: 3px;
}

.member-name {
	color: #ffffff;
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
}

.member-role {
	color: #ff6b6b;
	font-size: 0.9rem;

}


.view-team-button {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: linear-gradient(45deg, #ff0000, #ff6b6b);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	margin-top: 2rem;
	transition: all 0.3s ease;
	align-content: end;
}

.view-team-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

@media screen and (max-width: 992px) {
	.about-grid {
		gap: 2rem;
	}

	.team-members {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.history-content,
	.team-preview {
		padding: 1.5rem;
	}
}

@media screen and (max-width: 576px) {
	.team-members {
		grid-template-columns: 1fr;
	}

	.milestone {
		padding-left: 1.5rem;
	}

	.milestone-title {
		font-size: 1.1rem;
	}
}

.district-zion {
	margin-top: 4rem;
	text-align: center;
	padding: 2rem;
	background-color: hsla(222, 47%, 11%, 1);
	border-radius: 12px;
	border: 1px solid rgba(255, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.district-zion:hover {
	transform: translateY(-5px);
	border-color: #ff0000;
	box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.district-logo {
	width: 120px;
	height: auto;
	margin-bottom: 1.5rem;
}

.powered-by {
	font-size: 1.2rem;
	color: #ff6b6b;
	margin-bottom: 1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.district-description {
	color: #cccccc;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.district-zion {
		margin-top: 3rem;
		padding: 1.5rem;
	}

	.district-logo {
		width: 100px;
	}

	.powered-by {
		font-size: 1rem;
	}
}

.zioncity-logo {
	width: 300px;
	height: auto;
	margin-bottom: 1.5rem;
}

/* Custom dialog box styles */
.custom-dialog {
	display: none;
	position: fixed;
	top: -100px;
	/* Initial position for drop effect */
	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;
	/* Hidden by default */
	transition: top 0.5s ease, opacity 0.5s ease;
	/* Smooth drop effect */
}

.custom-dialog.show {
	top: 15px;
	/* Final position for drop effect */
	opacity: 1;
	/* Make it visible */
}

.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);
	/* Teal color gradient */
}

#join-discord-btn {
	background: linear-gradient(45deg, #7289da, #002aff);
	/* Discord color gradient */
}

/* Server info styles */
.server-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 50px;
	color: white;
	font-family: "Jura", sans-serif;
	/* font-family: "Turret Road", serif; */
}

/* Player status styles */
.player-status {
	text-align: center;
}

.status-text {
	font-size: 1.2rem;
	color: #ffffff;
	font-weight: bold;

}

/* Player count container styles */
.player-count-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Player icon styles */
.player-icon {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

/* Player count styles */
.player-count {
	font-size: 1.2rem;
	color: #ffffff;
	font-weight: 600;
	padding-right: 10px;
}

.site-content {
	overflow: hidden;
	position: relative;
}

.notification-center {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 5px;
	z-index: 1000;
	margin-left: 35px;
	margin-top: 10px;
}

.notification-center.online {
	background-color: rgba(0, 128, 0, 0.7);
	/* Green for online */
}

.notification-center.offline {
	background-color: rgba(128, 0, 0, 0.7);
	/* Red for offline */
}

/* Add these responsive styles at the end of the file */

@media screen and (max-width: 1200px) {
	.how-to-join {
		padding: 4rem 1.5rem;
	}

	.requirements-list,
	.steps-grid {
		gap: 1.5rem;
	}

	.patch-notes-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gallery-container {
		padding-right: 0;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 992px) {

	.requirements h3,
	.join-steps h3 {
		font-size: 1.8rem;
	}

	.requirement-details h4 {
		font-size: 1.1rem;
	}

	.step-card h4 {
		font-size: 1.1rem;
	}

	.join-discord-button {
		font-size: 1.1rem;
		padding: 0.8rem 2.5rem;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-image {
		height: 180px;
	}

	.patch-note h3 {
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 768px) {
	.section-titles {
		font-size: 2.5rem;
	}

	.requirements-list,
	.steps-grid {
		grid-template-columns: 1fr;
	}

	.requirement-link {
		padding: 1.2rem;
	}

	.step-card {
		padding: 1.5rem;
	}

	.gallery-grid {
		gap: 0.8rem;
	}

	.gallery-image {
		height: 160px;
	}

	.patch-note {
		padding: 1.2rem;
	}

	.patch-content ul li {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 576px) {
	.section-titles {
		font-size: 2rem;
	}

	.requirements h3,
	.join-steps h3 {
		font-size: 1.6rem;
	}

	.requirement-icon {
		font-size: 1.2rem;
		min-width: 1.8rem;
	}

	.step-number {
		width: 1.8rem;
		height: 1.8rem;
	}

	.join-discord-button {
		width: 100%;
		text-align: center;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.gallery-image {
		height: 200px;
	}

	.patch-tag {
		font-size: 0.7rem;
	}
}

@media screen and (max-width: 320px) {
	.section-titles {
		font-size: 1.8rem;
	}

	.requirement-details h4 {
		font-size: 1rem;
	}

	.requirement-details p {
		font-size: 0.8rem;
	}

	.step-card h4 {
		font-size: 1rem;
	}

	.step-card p {
		font-size: 0.8rem;
	}

	.patch-note h3 {
		font-size: 1.2rem;
	}

}

/*.box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  background: #0C1221;
}

.box {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  animation: animate 20s linear infinite;
}

@keyframes animate {
  0% {
    transform: perspective(1000px) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) rotateY(360deg);
  }
}

.box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * 45deg)) translate(400px);
  -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004);
}

.box span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff; /* Smaller border */
/*border-radius: 10px; /* Adjusted border-radius */
/*object-fit: cover; /* Ensures the image fits within the box */
/*/}