* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Cinzel", sans-serif;
	background-color: #0f0c29;
	color: #e0e0e0;
	line-height: 1.6;
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

h1,
h2,
h3 {
	font-family: "Orbitron", sans-serif;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

/* Base Heading Styles (can be overridden by specific sections) */
h2 {
	font-size: 2.8em;
	text-transform: uppercase;
	color: #ffd700;
	padding-bottom: 15px;
	position: relative;
	margin-bottom: 40px;
}

h2::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 4px;
	background-color: #ff4500;
	border-radius: 2px;
}

.section {
	padding: 100px 5%;
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
	opacity: 0; /* Initially hidden for animation */
	transition: opacity 0.5s ease-in-out;
}

/* Class added by JavaScript to trigger scroll animations */
.section.visible {
	opacity: 1;
}

.section.dark-bg {
	background-color: #1a0a2e;
}

/* Hero Section Specifics */
.hero-section {
	background: linear-gradient(rgba(15, 12, 41, 0.2), rgba(36, 36, 62, 0.3)),
		url("../images/background.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	position: relative;
	padding: 10px;
	overflow: hidden;
	opacity: 1; /* Hero section is always visible */
}

.hero-section::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle at center,
		rgba(255, 69, 0, 0.1),
		transparent 70%
	);
	animation: pulseGlow 15s infinite alternate;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.phoenix-logo {
	width: 850px;
	height: auto;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	filter: brightness(1.05) contrast(1.08);
	animation: floatUpDown 4s ease-in-out infinite;
	transition: all 0.3s ease;
	cursor: pointer;
}

.phoenix-logo:hover {
	filter: brightness(1.15) contrast(1.12);
	transform: translateY(-8px) scale(1.03);
}

@keyframes floatUpDown {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-12px);
	}
}

.tagline {
	font-family: "Cinzel", serif;
	font-weight: 400;
	font-size: 1.4em;
	margin-bottom: 30px;
	color: #ccc;
	animation: fadeInUp 1s ease-in-out;
}

.prize-pool-image {
	max-width: 350px;
	height: auto;
	margin: 30px auto;
	transition: transform 0.3s ease-in-out;
	animation: scaleIn 1s ease-out;
}

.prize-pool-image:hover {
	transform: scale(1.05);
}

.date-info h3 {
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 1.5em;
	margin-bottom: 40px;
	color: #fff;
	letter-spacing: 1px;
}

:root {
	--background-main: #0a0a1a;
	--primary-red: #ff3333;
	--glow-red-base: rgba(255, 51, 51, 0.8);
	--glow-white: rgba(255, 255, 255, 0.8);
	--text-color: #fff;
	--subtle-color: #ccc;
	--box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

body {
	background-color: var(--background-main);
	color: var(--text-color);
	font-family: "Cinzel", sans-serif;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

.prize-pool-container {
	margin: 15px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid var(--primary-red);
	box-shadow: 0 0 20px var(--glow-red-base);
	background: rgba(0, 0, 0, 0.8);
	padding: 10px 40px;
	border-radius: 30px;
}

.prize-pool-amount {
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 6em;
	color: var(--text-color);
	text-shadow: 0 0 10px var(--glow-white), 0 0 20px var(--primary-red),
		0 0 30px var(--primary-red), 0 0 40px var(--primary-red);
	animation: text-glow 1.5s infinite alternate;
}

.prize-pool-container h3 {
	font-family: "Cinzel", sans-serif;
	font-weight: 700;
	font-size: 2.2em;
	color: var(--text-color);
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Countdown Timer */
.countdown-container {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 50px;
	flex-wrap: wrap;
}

.countdown-box {
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(0, 0, 0, 0.5);
	padding: 20px 25px;
	border-radius: 12px;
	backdrop-filter: blur(5px);
	width: 130px;
	text-align: center;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	animation: fadeIn 1.5s ease-in-out;
	transition: transform 0.3s ease;
}

.countdown-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 25px rgb(173, 0, 0);
}

.countdown-box span {
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 3.2em;
	color: #ff4500;
	text-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
	display: block;
	line-height: 1;
	margin-bottom: 5px;
}

.countdown-box p {
	font-size: 0.9em;
	color: #ccc;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Buttons */
.cta-button {
	background: linear-gradient(45deg, #ff4500, #ffd700);
	color: #0f0c29;
	padding: 18px 35px;
	text-decoration: none;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.4s ease;
	box-shadow: 0 0 25px rgba(255, 69, 0, 0.5);
	display: inline-block;
	font-size: 1.1em;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cta-button:hover {
	transform: translateY(-7px) scale(1.02);
	box-shadow: 0 0 40px rgba(255, 69, 0, 0.7), 0 0 15px rgba(255, 215, 0, 0.8);
	background: linear-gradient(45deg, #ffd700, #ff4500);
}

.cta-button.secondary {
	background: linear-gradient(45deg, #302b63, #24243e);
	color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.cta-button.secondary:hover {
	background: linear-gradient(45deg, #24243e, #302b63);
	transform: translateY(-7px) scale(1.02);
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

/* About Section */
#about {
	background-color: #000000;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
}

#about.visible {
	animation: fadeInUp 1s ease-in-out forwards;
}

#about h2 {
	font-weight: 700;
	font-size: 2.8em;
	text-transform: uppercase;
	color: #c60000;
	padding-bottom: 15px;
	position: relative;
	margin-bottom: 40px;
}

#about h2::after {
	background-color: #ffffff;
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 4px;
	border-radius: 2px;
}

#about p {
	font-family: "Cinzel", serif;
	font-weight: 600;
	font-size: 1.1em;
	max-width: 800px;
	margin: 20px auto 30px auto;
	color: #c0c0c0;
}

/* New styles for the organizers and venue section */
/* New styles for the organizers and venue section */
.organizers-info-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
	margin-top: 50px;
}

.info-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--glow-red);
	box-shadow: 0 0 10px var(--glow-red);
	border-radius: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* This ensures all three boxes are the same size */
	width: 200px;
	text-decoration: none;
	color: inherit;
}

.info-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 15px var(--glow-red), 0 0 25px var(--glow-red);
}

.logo {
	/* Uniform size for all logos */
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 10px;
	border: 2px solid #fff;
	box-shadow: 0 0 8px #fff, inset 0 0 4px #fff;
}

.name {
	font-size: 1.1em;
	font-weight: 700;
	color: var(--secondary-color);
	margin: 0;
	text-transform: uppercase;
}

/* Previous Year Photos - Updated Section */
#photo-gallery {
	background: linear-gradient(rgba(15, 12, 41, 0.2), rgba(36, 36, 62, 0.3)),
		url("../images/background.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
}

#photo-gallery h2 {
	font-family: "Orbitron", sans-serif;
	font-size: 2.8em;
	text-transform: uppercase;
	color: #ffffff;
	padding-bottom: 15px;
	position: relative;
	margin-bottom: 40px;
}

#photo-gallery h2::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 4px;
	background-color: #ff4500;
	border-radius: 2px;
}

/* Image Scroll Container */
.photo-scroll-container {
	width: 100%;
	overflow-x: hidden;
	white-space: nowrap;
	padding: 20px 0;
	cursor: grab;
}

.photo-track {
	display: inline-flex;
	gap: 20px;
	padding: 20px 0;
	animation: scrollPhotos 60s linear infinite;
}

.photo-track:hover {
	animation-play-state: paused;
}

.photo-track img {
	width: 500px;
	height: 300px;
	object-fit: cover;
	border-radius: 12px;
	border: 2px solid #5a5a78;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease, border-color 0.3s ease;
	flex-shrink: 0;
}

.photo-track img:hover {
	transform: translateY(-5px) scale(1.02);
	border-color: #ffd700;
	box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3),
		0 0 20px rgba(255, 69, 0, 0.2);
}

@keyframes scrollPhotos {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* Sponsors Section */
#sponsors {
	background-color: #000000;
	padding-top: 60px;
	padding-bottom: 100px;
	text-align: center;
}

#sponsors h2 {
	color: #c60000;
	margin-top: -50px;
}

#sponsors h2::after {
	background-color: #ffffff;
}

.sponsor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
	justify-items: center;
	align-items: stretch;
}

.sponsor-card {
	/* Decreased opacity of both colors in the gradient even more */
	background: linear-gradient(
		45deg,
		rgba(255, 0, 0, 0.2),
		rgba(200, 0, 0, 0.1)
	);
	/* Decreased opacity of the border color even more */
	border: 1px solid rgba(255, 0, 0, 0.1);
	border-radius: 15px;
	padding: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.sponsor-card:hover {
	transform: translateY(-8px) scale(1.02);
	/* Changed the box-shadow to a glowing red on hover */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.8);
}

.sponsor-logo-container {
	width: 100%;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.sponsor-logo-container img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	filter: none;
	margin-bottom: 0;
}

.sponsor-card h3 {
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 1.3em;
	color: #fff;
	margin-bottom: 5px;
}

.sponsor-card .sponsor-tier {
	font-family: "Cinzel", serif;
	font-weight: 400;
	font-size: 1em;
	margin-top: auto;
}

.sponsor-card .sponsor-tier.gold {
	color: #ffd700;
	text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.sponsor-card .sponsor-tier.silver {
	color: #c0c0c0;
	text-shadow: 0 0 5px rgba(192, 192, 192, 0.5);
}

/* Event Partners Section */
#partners {
	background: linear-gradient(rgba(15, 12, 41, 0.2), rgba(36, 36, 62, 0.3)),
		url("../images/background.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 60px;
	padding-bottom: 100px;
	text-align: center;
}

#partners h2 {
	color: #ffffff;
	margin-top: -50px;
}

#partners h2::after {
	background-color: #ffffff;
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	margin-top: 50px;
	justify-items: center;
	align-items: stretch;
}

.partner-card {
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgb(171, 1, 1);
	border-radius: 15px;
	padding: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 0 15px rgb(171, 1, 1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	width: 220px;
	height: 200px;
}

.partner-card:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgb(171, 1, 1);
}

.partner-logo-container {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.partner-logo-container img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	filter: none;
	margin-bottom: 0;
}

.partner-card h3 {
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 1.1em;
	color: #fff;
	margin-bottom: 5px;
	white-space: normal;
	overflow: hidden;
	height: 3em; /* Sets a fixed height for two lines of text */
	width: 100%;
}

/* Organizers Section - Updated for Carousel */

#organizers {
	background-color: #000000;
	padding-top: 60px;
	padding-bottom: 70px;
	text-align: center;
}

#organizers h2 {
	color: #c60000;
	margin-top: -50px;
}

#organizers h2::after {
	background-color: #ffffff;
}

.organizers-grid {
	display: none; /* Hides the old grid layout */
}

.carousel-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 20px;
	padding-bottom: 10px;
}

.carousel-track {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px; /* Decreased the gap between cards */
	transition: transform 0.5s ease-in-out;
	padding: 0 50px;
}

.organizer-card {
	/* Red box with transparency */
	background: linear-gradient(
		45deg,
		rgba(255, 0, 0, 0.2),
		rgba(200, 0, 0, 0.1)
	);
	/* Red border with transparency */
	border: 1px solid rgba(255, 0, 0, 0.4);
	border-radius: 15px;
	padding: 25px 15px; /* Decreased padding */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	/* Black shadow for the box */
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 200px; /* Decreased width */
	height: 340px; /* Decreased height */
}

.organizer-card:hover {
	transform: translateY(-12px);
	/* Black shadow on hover, slightly more pronounced */
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 0, 0, 0.4);
}

.organizer-card img {
	width: 140px; /* Decreased image size */
	height: 140px;
	border-radius: 7px;
	object-fit: cover;
	margin-bottom: 15px;
	/* Thinner, black border for the photo */
	border: 2px solid #000000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.organizer-card img:hover {
	border-color: #ff4500; /* Original hover color for image border (orange) */
	transform: scale(1.05);
}

.organizer-card h3 {
	font-family: "Cinzel", serif;
	font-weight: 700;
	font-size: 1.2em; /* Decreased font size */
	color: #fff;
	margin-bottom: 5px;
	white-space: nowrap; /* Prevents name from wrapping */
	overflow: hidden; /* Hides overflowing text */
	text-overflow: ellipsis; /* Adds "..." to cut-off text */
	width: 100%; /* Ensures the h3 takes the full width */
}

.organizer-card p {
	font-size: 0.85em; /* Decreased font size */
	color: #ccc;
	font-weight: 300;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s ease;
}

.carousel-btn:hover {
	background: rgba(0, 0, 0, 0.8);
}

.left-btn {
	left: 20px;
}

.right-btn {
	right: 20px;
}

/* Footer */
footer {
	background-color: #0c0922;
	padding: 30px;
	text-align: center;
	color: #888;
	margin-top: auto;
	border-top: 1px solid rgba(255, 69, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pulseGlow {
	0% {
		transform: scale(0.9);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.8;
	}
	100% {
		transform: scale(0.9);
		opacity: 0.5;
	}
}

@keyframes floatUpDown {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0px);
	}
}

@keyframes scrollPhotos {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Responsive Design */
@media (max-width: 1400px) {
	.partner-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 1200px) {
	.sponsor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1024px) {
	.phoenix-logo {
		width: 300px;
	}
	h2 {
		font-size: 2.2em;
	}
	.prize-pool-image {
		max-width: 250px;
	}
	.countdown-box {
		width: 110px;
		padding: 15px;
	}
	.countdown-box span {
		font-size: 2.8em;
	}
	.photo-track img {
		width: 400px;
		height: 250px;
	}
	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.section {
		padding: 60px 3%;
	}
	.phoenix-logo {
		width: 250px;
	}
	h2 {
		font-size: 1.8em;
		margin-bottom: 30px;
	}
	.prize-pool-image {
		max-width: 200px;
	}
	.date-info h3 {
		font-size: 1.2em;
	}
	.countdown-container {
		gap: 15px;
	}
	.countdown-box {
		width: 90px;
		padding: 10px;
	}
	.countdown-box span {
		font-size: 2.2em;
	}
	.cta-button {
		padding: 12px 25px;
		font-size: 1em;
	}
	.sponsor-grid,
	.partner-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.organizers-grid {
		grid-template-columns: 1fr;
	}
	.photo-track img {
		width: 300px;
		height: 180px;
	}
	#photo-gallery {
		padding-bottom: 80px;
	}
}

@media (max-width: 576px) {
	.sponsor-grid,
	.partner-grid {
		grid-template-columns: 1fr;
	}
	.sponsor-card,
	.partner-card {
		height: auto;
	}
}

/* Registration Section with new background */
#registration {
	background: linear-gradient(rgba(15, 12, 41, 0.2), rgba(36, 36, 62, 0.3)),
		url("../images/background.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-bottom: 100px;
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
}

#registration h2 {
	color: #fff; /* This line ensures the main section title is white */
}

/* Download Cards Section */
.download-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
	justify-items: center;
	align-items: stretch;
}

.download-card {
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgb(171, 1, 1);
	border-radius: 15px;
	padding: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 0 15px rgba(171, 1, 1, 0.6);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	height: 100%;
}

.download-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(171, 1, 1, 0.8);
}

.download-card h3 {
	font-size: 1.8em;
	margin-bottom: 10px;
	color: #fff; /* This line ensures the card titles are white */
}

.download-card p {
	font-size: 1em;
	color: #ccc;
	margin-bottom: 20px;
	flex-grow: 1;
}

.download-button {
	background: linear-gradient(45deg, #ffd700, #ff4500);
	color: #0f0c29;
	padding: 12px 25px;
	text-decoration: none;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.4s ease;
	box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
	display: inline-block;
	font-size: 1em;
	letter-spacing: 1px;
}

.download-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 25px rgba(255, 69, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.6);
	background: linear-gradient(45deg, #ff4500, #ffd700);
}

.download-button i {
	margin-right: 8px;
}

/*
 * Footer Styles matching the Organizers Section Theme
 */
.beautiful-footer {
	background-color: #000000;
	padding: 80px 40px;
	font-family: "Montserrat", sans-serif;
	line-height: 1.6;
}

.footer-content {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-box {
	/* Set a transparent red background */
	background: linear-gradient(
		45deg,
		rgba(255, 0, 0, 0.2),
		rgba(200, 0, 0, 0.1)
	);
	border: 1px solid rgb(171, 1, 1);
	border-radius: 15px;
	padding: 30px;
	backdrop-filter: blur(5px);
	box-shadow: 0 0 15px rgba(171, 1, 1, 0.6);
	min-width: 280px;
	width: 45%;
	height: 250px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	text-align: center;
}

.footer-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(171, 1, 1, 0.8);
}

.footer-box h3 {
	font-family: "Cinzel", serif;
	font-weight: 700;
	color: #fff;
	font-size: 1.4em;
	margin-top: 0;
	margin-bottom: 20px;
	border-bottom: 2px solid #ff4500;
	padding-bottom: 10px;
	display: inline-block;
}

.social-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}

.social-icons a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1.8em;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icons a:hover {
	background: linear-gradient(45deg, #ffd700, #ff4500);
	box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
	transform: translateY(-5px) rotate(5deg);
	color: #0a0a1a;
}

.contact-info-box {
	align-items: flex-start;
	text-align: left;
}

.contact-info-box h3 {
	align-self: center;
}

.contact-info-box p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	font-size: 0.9em;
}

.contact-info-box p i {
	font-size: 1.1em;
	margin-right: 10px;
	color: #ffffff;
}

.tagline {
	font-size: 1.1em;
	font-style: italic;
	color: #aaa;
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	font-size: 0.9em;
	color: #888;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.footer-content {
		flex-direction: column;
		align-items: center;
	}
	.footer-box {
		width: 100%;
	}
	.social-icons {
		justify-content: center;
	}
}

/* media queries for responsiveness */
@media (max-width: 480px) {
	.hero-section {
		min-height: 90vh;
		padding: 20px 10px;
	}

	.phoenix-logo {
		width: 200px !important;
	}

	.tagline {
		font-size: 1.1em;
		margin-bottom: 20px;
	}

	.prize-pool-container {
		padding: 8px 20px;
		margin: 10px 0;
	}

	.prize-pool-amount {
		font-size: 3.5em !important;
	}

	.prize-pool-container h3 {
		font-size: 1.4em;
	}

	.date-info h3 {
		font-size: 1em;
		margin-bottom: 20px;
	}

	.countdown-container {
		gap: 10px;
		justify-content: center;
		margin-bottom: 30px;
	}

	.countdown-box {
		width: 70px;
		padding: 8px;
	}

	.countdown-box span {
		font-size: 1.8em;
	}

	.countdown-box p {
		font-size: 0.8em;
	}

	.cta-button {
		padding: 10px 20px;
		font-size: 0.9em;
		margin-top: 20px;
	}

	.section {
		padding: 40px 15px;
	}

	h2 {
		font-size: 1.5em !important;
		margin-bottom: 20px;
	}

	.organizers-info-container {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.info-box {
		width: 150px;
		padding: 15px;
	}

	.logo {
		width: 80px;
		height: 80px;
	}

	.name {
		font-size: 0.9em;
		white-space: normal;
		text-align: center;
		line-height: 1.2;
	}

	.photo-track img {
		width: 250px;
		height: 150px;
	}

	.download-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.download-card {
		padding: 20px 15px;
	}

	.download-card h3 {
		font-size: 1.3em;
	}

	.download-button {
		padding: 10px 18px;
		font-size: 0.9em;
	}

	.footer-box {
		width: 90%;
		height: auto;
		min-height: 200px;
		padding: 20px;
	}

	.social-icons a {
		width: 40px;
		height: 40px;
		font-size: 1.4em;
	}

	.contact-info-box p {
		font-size: 0.8em;
	}

	.carousel-track {
		padding: 0 20px;
		gap: 10px;
	}

	.organizer-card {
		width: 160px;
		height: 280px;
		padding: 15px 10px;
	}

	.organizer-card img {
		width: 100px;
		height: 100px;
	}

	.organizer-card h3 {
		font-size: 1em;
	}

	.organizer-card p {
		font-size: 0.8em;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
	}

	.left-btn {
		left: 5px;
	}

	.right-btn {
		right: 5px;
	}
}

@media (max-width: 768px) and (min-width: 481px) {
	.countdown-container {
		justify-content: center;
		flex-wrap: wrap;
	}

	.organizers-info-container {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}

	.info-box {
		width: 160px;
	}

	.download-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 50px auto 0;
	}

	.carousel-track {
		gap: 12px;
	}

	.organizer-card {
		width: 180px;
		height: 320px;
	}
}

@media (max-width: 768px) and (orientation: landscape) {
	.hero-section {
		min-height: 100vh;
		padding: 15px;
	}

	.countdown-container {
		margin-bottom: 20px;
	}

	.date-info {
		margin-bottom: 15px;
	}

	.prize-pool-container {
		margin: 10px 0;
	}
}

@media (max-width: 350px) {
	.phoenix-logo {
		width: 180px !important;
	}

	.prize-pool-amount {
		font-size: 3em !important;
	}

	.countdown-box {
		width: 60px;
		padding: 6px;
	}

	.countdown-box span {
		font-size: 1.5em;
	}

	.section {
		padding: 30px 10px;
	}

	.organizer-card {
		width: 140px;
		height: 260px;
	}

	.organizer-card img {
		width: 80px;
		height: 80px;
	}

	.footer-box {
		width: 95%;
		padding: 15px;
	}
}

@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}

	.hero-content {
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
	}

	.section {
		width: 100%;
		max-width: 100vw;
		box-sizing: border-box;
	}

	.photo-scroll-container {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}
}

@media (max-width: 576px) {
	.name,
	.organizer-card h3,
	.organizer-card p,
	.sponsor-card h3,
	.partner-card h3 {
		white-space: normal !important;
		word-wrap: break-word;
		hyphens: auto;
	}

	.tagline,
	.date-info h3 {
		word-wrap: break-word;
		hyphens: auto;
	}
}

@media (max-width: 480px) {
	.cta-button {
		min-width: 150px;
		white-space: nowrap;
	}

	.download-button {
		min-width: 120px;
		white-space: nowrap;
	}
}
