.top-container {
	max-width: 1200px;
	margin: 0 auto 40px auto;
	text-align: center;
}

.top-header {
	background-color: rgb(216, 196, 174);
	padding: 30px;
	border-radius: 10px;
}

.top-title {
	font-size: 36px;
	color: #333;
	margin: 0;
}

.sponsors-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.sponsor-card {
	background-color: #ffffff;
	border: 2px solid #dddddd;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	box-sizing: border-box;
	flex: 0 0 23%;
	max-width: 23%;
	transition: transform 0.3s ease;
}

.sponsor-card:hover {
	transform: translateY(-5px);
}

.sponsor-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}

.sponsor-icon {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	width: 250px;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.sponsor-icon img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.sponsor-level {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	padding: 5px 10px;
	border-radius: 5px;
}

.sponsor-name {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #333;
}

.sponsor-url {
	font-size: 14px;
	color: #0077cc;
	text-decoration: none;
	word-wrap: break-word;
}

.sponsor-url:hover {
	text-decoration: underline;
}

.social-links {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.social-link {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
}

.social-link:hover {
	color: #0077cc;
}

.social-icon {
	width: 24px;
	height: 24px;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
	.sponsor-card {
		flex: 0 0 31%;
		max-width: 31%;
	}
}

@media (max-width: 900px) {
	.sponsor-card {
		flex: 0 0 48%;
		max-width: 48%;
	}
}

@media (max-width: 600px) {
	.sponsor-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* Sponsor Level Styles */
.platinum .sponsor-level {
	background-color: #c0c0c0; /* Silver background */
	color: #ffffff; /* White text */
	text-shadow: 1px 1px 2px #000000;
	font-size: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.gold .sponsor-level {
	color: #ffd700; /* Gold text */
}

.silver .sponsor-level {
	color: #c0c0c0; /* Silver text */
}
