:root {
	--primary-color: #31427C;
	--secondary-color: #D3CBC9;
	--accent-color: #90EE90;
}

body {
	font-family: 'Century Gothic', Arial, sans-serif;
	background-color: var(--secondary-color);
}

.marquee-container {
	width: 600px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	color: var(--secondary-color);
	font-size: 18pt;
	font-weight: bold;
	padding: 10px 0;
}

.marquee-content {
	display: inline-block;
	animation: marquee-scroll 15s linear infinite;
}

@keyframes marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.header-section {
	background-color: var(--primary-color);
	border: 2px solid #000;
}

.nav-section {
	background-color: var(--primary-color);
	padding: 10px 0;
}

.nav-link-custom {
	color: var(--secondary-color) !important;
	text-decoration: none;
	padding: 5px 10px;
	border-radius: 4px;
	transition: all 0.3s ease;
	font-size: 16px;
	display: inline-block;
}

.nav-link-custom:hover {
	background-color: rgba(211, 203, 201, 0.2);
	color: var(--accent-color) !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.nav-link-custom.active {
	background-color: var(--accent-color);
	color: var(--primary-color) !important;
	font-weight: bold;
}

.mobile-header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: var(--primary-color);
}


.mobile-site-stats {
	color: var(--secondary-color);
	font-size: 0.9rem;
}

.sidebar {
	background-color: var(--primary-color);
	border: 1px solid #000;
	min-height: 480px;
	padding: 15px;
}

.main-content {
	background-color: var(--secondary-color);
	border: 1px solid #000;
	min-height: 480px;
	padding: 20px;
}

.stats-title {
	color: var(--secondary-color);
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.stat-item {
	color: var(--secondary-color);
	margin-bottom: 10px;
}

.sponsor-link, .family-link {
	color: var(--secondary-color) !important;
	text-decoration: none;
	display: block;
	padding: 2px 0;
	font-size: 14px;
	transition: all 0.3s ease;
}

.sponsor-link:hover, .family-link:hover {
	color: var(--accent-color) !important;
	transform: translateX(5px);
	text-shadow: 0 0 5px rgba(144, 238, 144, 0.5);
}

.section-title {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 20px;
}

.feature-list li {
	margin-bottom: 8px;
	color: var(--primary-color);
}

.join-link {
	color: var(--primary-color) !important;
	font-weight: bold;
	text-decoration: none;
	padding: 10px 20px;
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	transition: all 0.3s ease;
	display: inline-block;
}

.join-link:hover {
	background-color: var(--primary-color);
	color: var(--secondary-color) !important;
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(49, 66, 124, 0.3);
}

.banner-img {
	max-width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.banner-img:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-section {
	background-color: var(--primary-color);
	color: var(--secondary-color);
	padding: 20px 0;
}

.accent-text { color: var(--accent-color); }

.knight-image {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card-custom {
	background: transparent;
	border: 2px solid var(--primary-color);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.card-custom:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(49, 66, 124, 0.2);
}

@media (max-width: 768px) {
	.section-title { font-size: 1.5rem; }
	.sidebar { margin-bottom: 20px; }
	.left-sidebar { display: none !important; }
	.knight-image { margin-bottom: 20px; }
	.main-adz0 { display: none; }
	.marquee-container {
		width: 100%;
		line-height: 30px;
		overflow: hidden;
		white-space: nowrap;
		color: var(--secondary-color);
		font-size: 14pt;
		font-weight: bold;
		padding: 5px 0;
	}
}

@media (min-width: 768px) {
	
	.main-adz1 { display: none; }
}
