/* Add these new CSS rules to your existing stylesheet */

/* ===== SERVER STATUS WIDGET ===== */
.server-status-widget {
	position: absolute;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, rgba(4, 16, 23, 0.95), rgba(9, 41, 61, 0.95));
	border: 2px solid #1e7a9e;
	border-radius: 8px;
	padding: 20px 30px;
	min-width: 400px;
	box-shadow: 0 0 20px rgba(30, 122, 158, 0.3), inset 0 0 15px rgba(122, 239, 255, 0.1);
	z-index: 10;
	animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

	0%,
	100% {
		box-shadow: 0 0 20px rgba(30, 122, 158, 0.3), inset 0 0 15px rgba(122, 239, 255, 0.1);
	}

	50% {
		box-shadow: 0 0 30px rgba(30, 122, 158, 0.5), inset 0 0 20px rgba(122, 239, 255, 0.2);
	}
}

.status-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(122, 239, 255, 0.2);
}

.status-title {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #7aeaff;
}

.online-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #cbff3f;
}

.status-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #f0f;
	animation: statusBlink 1.5s ease-in-out infinite;
}

.status-dot.online {
	background-color: #cbff3f;
	box-shadow: 0 0 8px #cbff3f;
}

@keyframes statusBlink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.status-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.status-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10px;
	background: rgba(9, 29, 43, 0.5);
	border-radius: 5px;
	border: 1px solid rgba(122, 239, 255, 0.1);
}

.status-label {
	font-size: 12px;
	color: #889cad;
	margin-bottom: 5px;
	text-transform: uppercase;
	font-weight: 600;
}

.status-value {
	font-size: 16px;
	font-weight: 700;
	color: #7aeaff;
	text-shadow: 0 0 8px rgba(122, 239, 255, 0.3);
}

@media (max-width: 768px) {
	.server-status-widget {
		min-width: 90%;
		top: 100px;
		padding: 15px 20px;
	}

	.status-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

/* ===== ABOUT SERVER SECTION ===== */
.about-content {
	padding: 40px 0;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 50px;
}

.about-card {
	background: linear-gradient(135deg, rgba(4, 16, 23, 0.8), rgba(9, 41, 61, 0.8));
	border: 1px solid rgba(122, 239, 255, 0.2);
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(122, 239, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.about-card:hover::before {
	left: 100%;
}

.about-card:hover {
	border-color: rgba(122, 239, 255, 0.5);
	box-shadow: 0 0 20px rgba(122, 239, 255, 0.2), inset 0 0 15px rgba(122, 239, 255, 0.05);
	transform: translateY(-5px);
}

.card-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.card-title {
	font-size: 16px;
	font-weight: 700;
	color: #7aeaff;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.card-value {
	font-size: 20px;
	font-weight: 700;
	color: #cbff3f;
	margin-bottom: 10px;
	text-shadow: 0 0 8px rgba(203, 255, 63, 0.3);
}

.card-desc {
	font-size: 13px;
	color: #889cad;
	line-height: 1.5;
}

/* Server Details Section */
.server-details-section {
	background: rgba(9, 29, 43, 0.6);
	border: 1px solid rgba(122, 239, 255, 0.2);
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
}

.details-header {
	font-size: 18px;
	font-weight: 700;
	color: #7aeaff;
	text-transform: uppercase;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(122, 239, 255, 0.3);
}

.details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	background: rgba(4, 16, 23, 0.5);
	border-radius: 5px;
	border-left: 3px solid #cbff3f;
}

.detail-label {
	font-size: 14px;
	color: #889cad;
	font-weight: 600;
}

.detail-value {
	font-size: 16px;
	font-weight: 700;
	color: #cbff3f;
	text-shadow: 0 0 8px rgba(203, 255, 63, 0.3);
}

/* PvP System Section */
.pvp-system-section {
	background: rgba(9, 41, 61, 0.5);
	border: 1px solid rgba(30, 122, 158, 0.3);
	border-radius: 8px;
	padding: 30px;
}

.system-header {
	font-size: 18px;
	font-weight: 700;
	color: #7aeaff;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.system-desc {
	font-size: 14px;
	color: #ccc;
	line-height: 1.8;
}

/* ===== FAQ SECTION ===== */
.section6 {
	background-image: url('../images/bg-section-2.png');
}

.faq-container {
	display: grid;
	gap: 15px;
	margin-top: 40px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	background: linear-gradient(135deg, rgba(4, 16, 23, 0.8), rgba(9, 41, 61, 0.8));
	border: 1px solid rgba(122, 239, 255, 0.2);
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active {
	border-color: rgba(122, 239, 255, 0.5);
	box-shadow: 0 0 15px rgba(122, 239, 255, 0.2);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	cursor: pointer;
	background: linear-gradient(135deg, rgba(9, 29, 43, 0.6), rgba(9, 41, 61, 0.6));
	transition: all 0.3s ease;
	user-select: none;
}

.faq-question:hover {
	background: linear-gradient(135deg, rgba(9, 41, 61, 0.8), rgba(14, 51, 77, 0.8));
}

.faq-text {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	flex: 1;
}

.faq-arrow {
	font-size: 24px;
	color: #7aeaff;
	transition: transform 0.3s ease;
	font-weight: 700;
	margin-left: 20px;
}

.faq-item.active .faq-arrow {
	transform: rotate(45deg);
	color: #cbff3f;
}

.faq-answer {
	display: none;
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	display: block;
	padding: 20px;
	max-height: 500px;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer p {
	font-size: 14px;
	color: #ccc;
	line-height: 1.8;
	margin: 0;
}

/* ===== MEDIA SECTION (UPDATED) ===== */
.section7 {
	background-image: url('../images/bg-section-6.jpg');
}

.media-tabs {
	justify-content: center;
	margin-bottom: 40px;
}

/* ===== FOOTER IMPROVEMENTS ===== */
.footerMenu {
	background: rgba(4, 16, 23, 0.95);
	padding: 50px 40px 30px;
	border-top: 2px solid rgba(122, 239, 255, 0.2);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 30px;
	align-items: flex-start;
}

.footerMenu-block {
	flex: 1;
	min-width: 200px;
}

.f-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.f-menu-title {
	font-size: 14px;
	font-weight: 700;
	color: #7aeaff;
	text-transform: uppercase;
	margin-bottom: 15px;
	display: block;
}

.f-menu li {
	margin-bottom: 10px;
	font-size: 13px;
}

.f-menu a {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.f-menu a:hover {
	color: #7aeaff;
	text-shadow: 0 0 8px rgba(122, 239, 255, 0.5);
	transform: translateX(3px);
}

.email-support {
	font-size: 12px;
	color: #889cad;
	margin-bottom: 5px;
	display: block;
}

.support-link {
	color: #cbff3f !important;
	font-weight: 600;
}

.support-link:hover {
	text-shadow: 0 0 8px rgba(203, 255, 63, 0.5) !important;
}

/* ===== COMMUNITY LINKS SECTION ===== */
.community-links-block {
	flex: 1;
	min-width: 250px;
	background: rgba(9, 41, 61, 0.5);
	border: 1px solid rgba(122, 239, 255, 0.2);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
}

.community-header {
	font-size: 14px;
	font-weight: 700;
	color: #7aeaff;
	text-transform: uppercase;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(122, 239, 255, 0.2);
}

.social-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 15px;
	background: linear-gradient(135deg, rgba(4, 16, 23, 0.6), rgba(9, 41, 61, 0.6));
	border: 1px solid rgba(122, 239, 255, 0.2);
	border-radius: 5px;
	color: #ccc;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
}

.social-link:hover {
	background: linear-gradient(135deg, rgba(9, 41, 61, 0.8), rgba(14, 51, 77, 0.8));
	border-color: #7aeaff;
	color: #7aeaff;
	box-shadow: 0 0 10px rgba(122, 239, 255, 0.3);
	transform: translateY(-2px);
}

.social-link .icon-container {
	width: 18px;
	height: 18px;
}

.social-link.discord:hover {
	border-color: #5865f2;
	color: #5865f2;
}

.social-link.facebook:hover {
	border-color: #1877f2;
	color: #1877f2;
}

.social-link.youtube:hover {
	border-color: #ff0000;
	color: #ff0000;
}

.footer-logo {
	text-align: center;
	padding: 20px 0;
}

.footer-logo img {
	max-width: 100px;
	height: auto;
}

.copyrights {
	text-align: center;
	font-size: 12px;
	color: #667d8d;
	padding-top: 20px;
	border-top: 1px solid rgba(122, 239, 255, 0.1);
}

.copyrights a {
	color: #7aeaff;
	text-decoration: none;
}

.copyrights a:hover {
	text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footerMenu {
		padding: 40px 20px 25px;
		gap: 20px;
	}

	.footerMenu-block {
		flex: 0 1 calc(50% - 10px);
	}

	.community-links-block {
		flex: 0 1 100%;
		margin-top: 10px;
	}
}

@media (max-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.details-grid {
		grid-template-columns: 1fr;
	}

	.server-details-section,
	.pvp-system-section {
		padding: 20px;
	}

	.faq-container {
		max-width: 100%;
	}

	.faq-question {
		padding: 15px;
	}

	.faq-text {
		font-size: 14px;
	}

	.faq-arrow {
		font-size: 20px;
		margin-left: 10px;
	}

	.faq-answer {
		padding: 0 15px;
	}

	.faq-item.active .faq-answer {
		padding: 15px;
	}

	.footerMenu {
		flex-direction: column;
		gap: 25px;
	}

	.footerMenu-block {
		flex: 0 1 auto;
	}

	.community-links-block {
		flex: 0 1 auto;
	}

	.social-links {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	.social-link {
		flex: 0 1 calc(50% - 5px);
	}
}

@media (max-width: 480px) {
	.status-content {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.status-item {
		padding: 8px;
	}

	.status-label {
		font-size: 11px;
	}

	.status-value {
		font-size: 14px;
	}

	.about-card {
		padding: 20px 15px;
	}

	.card-icon {
		font-size: 32px;
	}

	.card-title {
		font-size: 14px;
	}

	.card-value {
		font-size: 16px;
	}

	.card-desc {
		font-size: 12px;
	}

	.faq-question {
		padding: 12px;
		flex-direction: column;
		text-align: center;
	}

	.faq-text {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.faq-arrow {
		margin-left: 0;
		font-size: 18px;
	}

	.social-links {
		gap: 8px;
	}

	.social-link {
		font-size: 12px;
		padding: 8px 10px;
	}

	.social-link .icon-container {
		width: 16px;
		height: 16px;
	}

	.footerMenu {
		padding: 30px 15px 20px;
	}

	.f-menu-title {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.f-menu li {
		font-size: 12px;
		margin-bottom: 8px;
	}
}

/* ===== GENERAL IMPROVEMENTS ===== */
.section-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 40px;
	text-shadow: 0 0 20px rgba(122, 239, 255, 0.2);
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
	position: relative;
	z-index: 1;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.section-container {
		padding: 40px 20px;
	}
}


/* ===== FAQ SECTION FIX ===== */
/* Make section6 expand with content instead of fixed height */
.section6 {
	min-height: auto !important;
	height: auto !important;
	padding-bottom: 60px;
}

/* Optional: If you want to ensure consistent spacing */
.section6 .section-container {
	padding-bottom: 40px;
}

/* Ensure footer doesn't overlap */
.section6 {
	display: flex;
	flex-direction: column;
}

.section6 .section-container {
	flex: 1;
}

/* FAQ container should expand properly */
.faq-container {
	margin-bottom: 30px;
}

/* Make sure each FAQ item displays properly */
.faq-item {
	margin-bottom: 15px;
}

.faq-answer {
	padding: 20px;
	background: rgba(9, 29, 43, 0.8);
	border-top: 1px solid rgba(122, 239, 255, 0.2);
}

/* Ensure section doesn't have fixed viewport height */
@media (max-width: 1024px) {
	.section6 {
		min-height: auto;
		height: auto;
	}
}

@media (max-width: 768px) {
	.section6 {
		min-height: auto;
		height: auto;
		padding-bottom: 40px;
	}
}
