/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
	--cyan: #00c8ff;
	--gold: #ffd700;
	--red: #ff4444;
	--green: #00ff88;
	--navy: #080a16;
	--navy2: #0b0e1c;
	--navy3: #0e1220;
	--navy4: #121627;
	--text: #c8d8e8;
	--muted: #5a7080;
	--border: rgba(0, 200, 255, 0.13);
	--orange: #ff7b00;
	--card-bg: rgba(15, 18, 32, 0.82);
	--glass: rgba(255, 255, 255, 0.04);
	--shadow-cyan: 0 0 25px rgba(0, 200, 255, 0.18);
	--shadow-orange: 0 0 25px rgba(255, 123, 0, 0.18);
	--radius-xl: 24px;
}

/* ── RESET / BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	background:
		radial-gradient(
			circle at top left,
			rgba(0, 200, 255, 0.08),
			transparent 28%
		),
		radial-gradient(
			circle at bottom right,
			rgba(255, 123, 0, 0.08),
			transparent 28%
		),
		#080a16;
	color: var(--text) !important;
	font-family: "Rajdhani", sans-serif;
	font-size: 15px;
	padding-top: 80px;
	overflow-x: hidden;
	position: relative;
	margin-top: 78px;
}

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: var(--navy2);
}
::-webkit-scrollbar-thumb {
	background: rgba(0, 200, 255, 0.3);
	border-radius: 3px;
}

/* ── TOAST ─────────────────────────────────────────────────── */
#toast {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%) translateY(80px);
	background: var(--navy3);
	border: 1px solid var(--border);
	color: var(--cyan);
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 10px 24px;
	border-radius: 8px;
	z-index: 9999;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
}
#toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
#toast.err {
	color: var(--red);
	border-color: rgba(255, 68, 68, 0.3);
}

/* ══════════════════════════════════════════════════════════════
NAVBAR
══════════════════════════════════════════════════════════════ */
/* =========================================================
NAVBAR
========================================================= */

#mainNav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 78px;
	z-index: 1050;
	background: rgba(8, 10, 22, 0.72);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(0, 200, 255, 0.18);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	box-shadow:
		0 10px 35px rgba(0, 0, 0, 0.45),
		0 0 30px rgba(0, 200, 255, 0.06);
}

/* =========================================================
LOGO
========================================================= */

.nav-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.nav-logo {
	height: 60px;
	width: auto;
	object-fit: contain;
}

/* =========================================================
CENTER NAVIGATION
========================================================= */

.nav-links-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-item {
	list-style: none;
}

.nav-item-link {
	position: relative;
	height: 42px;
	padding: 0 18px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Rajdhani", sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #8a9ab0;
	text-decoration: none;
	transition:
		color 0.25s ease,
		background 0.25s ease,
		transform 0.25s ease;
}

.nav-item-link:hover {
	color: #fff;
	background: rgba(0, 200, 255, 0.08);
	transform: translateY(-2px);
}

.nav-item-link.active {
	color: #fff;
	background: rgba(0, 200, 255, 0.1);
	border: 1px solid rgba(0, 200, 255, 0.18);
	box-shadow: 0 0 20px rgba(0, 200, 255, 0.08);
}

.nav-item-link.active::after {
	content: "";
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--cyan);
}

/* =========================================================
RIGHT SIDE
========================================================= */

.nav-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.drawer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drawer-item {
	list-style: none;
}

/* =========================================================
MOBILE TOGGLER
========================================================= */

.nav-toggler {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 6px;
	background: none;
	border: none;
}

.nav-toggler span {
	display: block;
	width: 23px;
	height: 2px;
	background: #8a9ab0;
	border-radius: 2px;
	transition: background 0.2s ease;
}

.nav-toggler:hover span {
	background: #fff;
}

/* MOBILE DRAWER */

.drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 280px;
	height: 100vh;
	background: #07111f;
	z-index: 1200;
	transform: translateX(-100%);
	transition: 0.3s ease;
}

.drawer.open {
	transform: translateX(0);
}

/* OVERLAY */

.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
}

.drawer-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* =========================================================
OVERLAY
========================================================= */

.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
}

.drawer-overlay.open {
	opacity: 1;
	visibility: visible;
}

/* =========================================================
DRAWER HEADER
========================================================= */

.drawer-head {
	height: 78px;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-logo-img {
	height: 54px;
	width: auto;
	object-fit: contain;
}

/* =========================================================
CLOSE BUTTON
========================================================= */

.drawer-close {
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: 0.25s ease;
}

.drawer-close:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* =========================================================
NAVIGATION
========================================================= */

.drawer-nav {
	padding: 24px 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* LINKS */

.drawer-link {
	height: 54px;
	padding: 0 18px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: #93a7bf;
	font-family: "Rajdhani", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.3s ease;
	border: 1px solid transparent;
}

/* HOVER */

.drawer-link:hover {
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
}

/* ACTIVE */

.drawer-link.active {
	background: rgba(0, 200, 255, 0.08);
	border: 1px solid rgba(0, 200, 255, 0.18);
	color: #fff;
	box-shadow: 0 0 20px rgba(0, 200, 255, 0.08);
}

/* =========================================================
ADMIN BUTTON
========================================================= */

.drawer-admin-btn {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 24px;
	height: 58px;
	width: calc(100% - 28px);
	border: none;
	border-radius: 16px;
	background: linear-gradient(135deg, #00c8ff, #008cff);
	color: #041018;
	font-family: "Rajdhani", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 200, 255, 0.22);
}

.drawer-admin-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(0, 200, 255, 0.35);
}

/* =========================================================
SCROLLBAR
========================================================= */

.drawer::-webkit-scrollbar {
	width: 4px;
}

.drawer::-webkit-scrollbar-thumb {
	background: rgba(0, 200, 255, 0.35);
	border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════════
HERO / GAME SECTIONS
══════════════════════════════════════════════════════════════ */
#hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding-top: 40px;
	display: flex;
	align-items: center;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero-bg-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at top left,
			rgba(0, 200, 255, 0.14),
			transparent 35%
		),
		radial-gradient(
			circle at bottom right,
			rgba(255, 123, 0, 0.14),
			transparent 35%
		);
}

.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 40px 40px;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(0, 200, 255, 0.08);
	border: 1px solid rgba(0, 200, 255, 0.18);
	color: var(--cyan);
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 26px;
}

.hero-title {
	font-size: 72px;
	line-height: 1;
	font-family: "Orbitron", monospace;
	font-weight: 900;
	color: white;
	margin-bottom: 26px;
}

.hero-title span {
	color: var(--cyan);
	text-shadow: 0 0 25px rgba(0, 200, 255, 0.45);
}

.hero-desc {
	font-size: 18px;
	color: #a9b4c7;
	line-height: 1.8;
}
.neon-divider {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--cyan), transparent);
	margin-bottom: 40px;
	opacity: 0.4;
}
.game-section {
	padding: 0 16px;
}

.game-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}
.game-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.bgmi-icon {
	background: rgba(0, 200, 255, 0.12);
	border: 1px solid rgba(0, 200, 255, 0.3);
}
.ff-icon {
	background: rgba(255, 136, 0, 0.12);
	border: 1px solid rgba(255, 136, 0, 0.3);
}
.game-title {
	font-family: "Orbitron", monospace;
	font-weight: 900;
	font-size: 20px;
	letter-spacing: 2px;
}
.bgmi-title {
	color: var(--cyan);
}
.freefire-title {
	color: #b200fe;
}

/* Live Stats Section */

/* =========================================================
TOURNAMENT LIST
========================================================= */

.tournament-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin-top: 30px;
	margin-bottom: 30px;
}

/* =========================================================
CARD
========================================================= */

.tournament-card {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	height: 330px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: 0.4s ease;
}

.tournament-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 0 35px rgba(0, 200, 255, 0.14);
}

.tournament-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}

.tournament-card:hover img {
	transform: scale(1.08);
}
/* =========================================================
OVERLAY
========================================================= */

.tournament-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 26px;
	background: linear-gradient(
		to top,
		rgba(2, 6, 23, 0.96),
		rgba(2, 6, 23, 0.15)
	);
}

.tournament-mode {
	width: max-content;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(0, 200, 255, 0.12);
	border: 1px solid rgba(0, 200, 255, 0.24);
	color: var(--cyan);
	font-size: 11px;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 16px;
}

.purple-mode {
	background: rgba(178, 0, 254, 0.12);
	border-color: rgba(178, 0, 254, 0.28);
	color: #b200fe;
}

.tournament-overlay h3 {
	color: white;

	font-size: 28px;

	margin-bottom: 16px;

	font-family: "Orbitron", monospace;
}

.tournament-meta {
	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 20px;
}

.tournament-meta span {
	color: #d4deea;

	font-size: 14px;
}

/* =========================================================
BUTTON
========================================================= */

.freefire-btn {
	background: #b200fe !important;
}

/* Why Choose Section */
.why-section {
	position: relative;
	padding: 100px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 60px;
}

.why-card {
	position: relative;
	overflow: hidden;

	background: rgba(255, 255, 255, 0.03);

	border: 1px solid rgba(255, 255, 255, 0.06);

	border-radius: 24px;

	padding: 35px 28px;

	transition: 0.35s ease;

	backdrop-filter: blur(14px);
}

.why-card::before {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.04),
		transparent
	);

	transform: translateX(-100%);
	transition: 0.8s;
}

.why-card:hover::before {
	transform: translateX(100%);
}

.why-card:hover {
	transform: translateY(-10px);

	border-color: rgba(0, 200, 255, 0.25);

	box-shadow:
		0 0 30px rgba(0, 200, 255, 0.08),
		0 20px 50px rgba(0, 0, 0, 0.45);
}

.why-icon {
	width: 72px;
	height: 72px;

	border-radius: 20px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(0, 200, 255, 0.08);

	border: 1px solid rgba(0, 200, 255, 0.18);

	color: var(--cyan);

	font-size: 30px;

	margin-bottom: 25px;

	box-shadow: 0 0 20px rgba(0, 200, 255, 0.12);
}

.why-card h3 {
	color: white;

	font-size: 28px;

	margin-bottom: 14px;

	font-family: "Orbitron", monospace;
}

.why-card p {
	color: #9ba8bb;

	line-height: 1.9;

	font-size: 15px;
}

/* RESPONSIVE */

/* OwlCarousel card styles */

.owl-carousel .owl-stage-outer {
	border-radius: 12px;
	overflow: hidden;
}
.carousel-card {
	position: relative;
	height: 260px;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: var(--navy3);
	cursor: pointer;
	transition: 0.4s ease;
}

.carousel-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 0 40px rgba(0, 200, 255, 0.18);
}
.carousel-card .card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}
.carousel-card:hover .card-bg {
	transform: scale(1.04);
}
.card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(8, 10, 22, 0.95) 0%,
		rgba(8, 10, 22, 0.5) 50%,
		transparent 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
}
.card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(0, 200, 255, 0.15);
	border: 1px solid rgba(0, 200, 255, 0.4);
	color: var(--cyan);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 3px 8px;
	border-radius: 4px;
	font-family: "Orbitron", monospace;
}
.card-game-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	padding: 3px 8px;
	border-radius: 4px;
	font-family: "Orbitron", monospace;
	margin-bottom: 6px;
	align-self: flex-start;
}
.badge-bgmi {
	background: rgba(0, 200, 255, 0.15);
	color: var(--cyan);
	border: 1px solid rgba(0, 200, 255, 0.3);
}
.badge-ff {
	background: rgba(255, 136, 0, 0.15);
	color: #ff8800;
	border: 1px solid rgba(255, 136, 0, 0.3);
}
.card-title {
	font-family: "Orbitron", monospace;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.2;
	margin-bottom: 4px;
}
.card-mode {
	font-family: "Rajdhani", sans-serif;
	font-size: 12px;
	color: #8a9ab0;
	letter-spacing: 1px;
}

/* OwlCarousel dot overrides */
.owl-dots {
	margin-top: 14px !important;
	text-align: center;
}
.owl-dots .owl-dot span {
	width: 6px !important;
	height: 6px !important;
	background: rgba(0, 200, 255, 0.25) !important;
	border-radius: 50% !important;
	margin: 0 3px !important;
	transition: all 0.3s !important;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
	background: var(--cyan) !important;
	transform: scale(1.3) !important;
}
.owl-nav {
	display: none !important;
}

/* No tournaments placeholder */
.no-tournaments {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 13px;
	border: 1px dashed rgba(0, 200, 255, 0.1);
	border-radius: 12px;
	font-family: "Rajdhani", sans-serif;
	letter-spacing: 1px;
}

/* Register btn */
.register-btn {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 56px;
	font-family: "Orbitron", monospace;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 2px;
	color: var(--navy);
	background: var(--cyan);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		filter 0.3s ease;
}

/* HOVER */

.register-btn:hover {
	transform: translateY(-4px);

	filter: brightness(1.06);

	box-shadow:
		0 0 20px rgba(0, 200, 255, 0.35),
		0 0 45px rgba(0, 200, 255, 0.18);
}

/* ACTIVE */

.register-btn:active {
	transform: scale(0.97);
}

/* DISABLED */

.register-btn:disabled {
	opacity: 0.35;

	cursor: not-allowed;

	box-shadow: none;
}

/* FREE FIRE */

.register-btn.ff {
	background: #b200fe;

	color: #fff;
}

/* FREE FIRE HOVER */

.register-btn.ff:hover {
	box-shadow:
		0 0 20px rgba(178, 0, 254, 0.35),
		0 0 45px rgba(178, 0, 254, 0.18);
}

/* LIGHT SWEEP EFFECT */

.register-btn::before {
	content: "";

	position: absolute;

	top: 0;
	left: -120%;

	width: 80%;
	height: 100%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.25),
		transparent
	);

	transform: skewX(-25deg);

	transition: 0.7s ease;
}

.register-btn:hover::before {
	left: 140%;
}
/* ══════════════════════════════════════════════════════════════
FAQ  
══════════════════════════════════════════════════════════════ */
.faq-wrapper {
	max-width: 950px;
	margin: 70px auto 0;
}

.faq-item {
	margin-bottom: 22px;
	border-radius: 24px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	transition: 0.35s ease;
}

.faq-item:hover {
	border-color: rgba(0, 200, 255, 0.2);
}

.faq-question {
	position: relative;
	width: 100%;
	border: none;
	background: none;
	padding: 30px 34px;
	color: white;
	text-align: left;
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	transition: 0.3s ease;
	font-family: "Orbitron", monospace;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: 34px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--cyan);
	font-size: 30px;
	transition: 0.35s ease;
}

.faq-item.active .faq-question::after {
	transform: translateY(-50%) rotate(45deg);
}

/* IMPORTANT */

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

/* IMPORTANT */

.faq-answer p {
	padding: 0 34px 30px;
	color: #a7b3c5;
	line-height: 1.9;
	font-size: 15px;
	margin: 0;
}

.faq-item.active {
	border-color: rgba(0, 200, 255, 0.24);
	box-shadow: 0 0 25px rgba(0, 200, 255, 0.05);
}
/* ══════════════════════════════════════════════════════════════
RESULTS
══════════════════════════════════════════════════════════════ */
#results {
	padding: 60px 0;
}
.section-title {
	font-family: "Orbitron", monospace;
	font-weight: 900;
	font-size: 22px;
	letter-spacing: 3px;
	color: #fff;
	text-align: center;
	margin-bottom: 28px;
}
.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: var(--cyan);
	margin: 10px auto 0;
	border-radius: 2px;
}

/* Filter tabs */
.result-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 28px;
}
.result-tab {
	font-family: "Rajdhani", sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--muted);
	background: var(--navy3);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 7px 18px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
}
.result-tab:hover {
	color: #fff;
	border-color: rgba(0, 200, 255, 0.3);
}
.result-tab.active {
	color: var(--cyan);
	border-color: var(--cyan);
	background: rgba(0, 200, 255, 0.08);
}

/* Results grid */
.results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}
.result-card {
	background: var(--navy3);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	overflow: hidden;
	transition:
		border-color 0.2s,
		transform 0.2s;
}
.result-card:hover {
	border-color: rgba(0, 200, 255, 0.25);
	transform: translateY(-2px);
}
.result-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.result-match {
	font-family: "Orbitron", monospace;
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 1px;
}
.result-body {
	display: flex;
	gap: 12px;
	padding: 12px 14px;
	align-items: flex-start;
}
.result-img {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--navy4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
img.result-img {
	display: block;
}
.result-info {
	flex: 1;
	min-width: 0;
}
.result-team {
	font-family: "Orbitron", monospace;
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.result-stats {
	display: flex;
	gap: 14px;
}
.stat {
	text-align: center;
}
.stat-label {
	font-size: 10px;
	color: var(--muted);
	letter-spacing: 1px;
	text-transform: uppercase;
}
.stat-value {
	font-family: "Orbitron", monospace;
	font-weight: 700;
	font-size: 15px;
	margin-top: 2px;
}
.stat-place {
	color: var(--gold);
}
.stat-kills {
	color: var(--red);
}
.stat-pts {
	color: var(--cyan);
}

.empty {
	text-align: center;
	color: var(--muted);
	padding: 40px;
	font-size: 13px;
	letter-spacing: 1px;
	grid-column: 1 / -1;
}

/* Pagination */
.pagination-wrap {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 24px;
}
.page-btn {
	width: 34px;
	height: 34px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--navy3);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--muted);
	font-size: 12px;
	font-family: "Rajdhani", sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}
.page-btn:hover {
	color: #fff;
	border-color: rgba(0, 200, 255, 0.3);
}
.page-btn.active {
	color: var(--cyan);
	border-color: var(--cyan);
	background: rgba(0, 200, 255, 0.08);
}
/* =========================================
RESULTS PAGE CSS
ONLY NEW CSS
REUSES EXISTING UI SYSTEM
========================================= */

/* =========================
RESULTS HERO
========================= */

.results-hero {
	position: relative;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.results-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.results-stat-card {
	padding: 30px 20px;
	text-align: center;
	border-radius: 20px;
	backdrop-filter: blur(12px);
	overflow: hidden;
	position: relative;
}

.results-stat-card h3 {
	font-size: 2rem;
	font-family: "Orbitron", sans-serif;
	color: var(--cyan);
	margin-bottom: 10px;
}

.results-stat-card span {
	color: var(--text);
	font-size: 14px;
	letter-spacing: 1px;
}

/* =========================
FEATURED RESULT
========================= */

.featured-result-section {
	padding: 100px 0;
}

.featured-result-card {
	overflow: hidden;
	border-radius: 30px;
}

.featured-result-banner {
	position: relative;
	height: 420px;
}

.featured-result-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-result-overlay {
	position: absolute;
	top: 20px;
	left: 20px;
}

.featured-result-content {
	padding: 40px;
}

.featured-result-top h2 {
	font-size: 2rem;
	font-family: "Orbitron", sans-serif;
	margin-bottom: 20px;
}

.featured-result-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.featured-result-meta span {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 12px 18px;
	border-radius: 14px;
	font-size: 13px;
}

.featured-result-buttons {
	display: flex;
	gap: 20px;
	margin-top: 35px;
	flex-wrap: wrap;
}

/* =========================================
ULTRA RESULTS PAGE
AAA ESPORTS RESULTS DESIGN
========================================= */

/* =========================
HERO
========================= */

.ultra-results-hero {	
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	isolation: isolate;

}

.hero-dark-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(3, 7, 18, 0.95),
		rgba(3, 7, 18, 0.75),
		rgba(3, 7, 18, 0.95)
	);
	z-index: -1;
}

.hero-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
		rgba(0, 255, 255, 0.25) 1px,
		transparent 1px
	);
	background-size: 30px 30px;
	opacity: 0.2;
	animation: particlesMove 20s linear infinite;
}

@keyframes particlesMove {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-200px);
	}
}

.results-main-title {
	font-size: 5rem;
	font-family: "Orbitron", sans-serif;
	line-height: 1.05;
	margin: 25px 0;
	color: #fff;
}

.results-main-title span {
	color: var(--cyan);
	text-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.results-main-desc {
	max-width: 650px;
	color: var(--text);
	font-size: 18px;
	line-height: 1.8;
}

.live-esports-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 22px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(0, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	color: var(--cyan);
	font-size: 13px;
	letter-spacing: 1px;	
}


.pulse-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff2d55;
	box-shadow: 0 0 15px #ff2d55;
	animation: pulse 1s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.5);
		opacity: 0.5;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.results-hero-buttons {
	display: flex;
	gap: 20px;
	margin-top: 40px;
	flex-wrap: wrap;
}

/* =========================
TICKER
========================= */

.match-ticker-wrapper {
	margin-top: 50px;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	background: rgba(255, 255, 255, 0.03);
}

.ticker-label {
	background: rgba(0, 255, 255, 0.12);
	color: var(--cyan);
	padding: 12px 20px;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 700;
}

.ticker-track {
	overflow: hidden;
	white-space: nowrap;
}

.ticker-move {
	display: inline-block;
	padding: 16px 0;
	animation: tickerMove 18s linear infinite;
	color: #fff;
	font-size: 14px;
}

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

/* =========================
BROADCAST PANEL
========================= */

.broadcast-panel {
	padding: 35px;
	border-radius: 30px;
	backdrop-filter: blur(18px);
	position: relative;
	overflow: hidden;
	margin-top: 30px;
}

.broadcast-panel::before {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	background: rgba(0, 255, 255, 0.08);
	border-radius: 50%;
	top: -120px;
	right: -120px;
}

.broadcast-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 35px;
}

.broadcast-tag {
	color: var(--cyan);
	font-size: 13px;
	letter-spacing: 1px;
}

.broadcast-player {
	display: flex;
	align-items: center;
	gap: 25px;
}

.player-avatar-glow {
	width: 120px;
	height: 120px;
	border-radius: 24px;
	overflow: hidden;
	border: 2px solid rgba(0, 255, 255, 0.35);
	box-shadow: 0 0 35px rgba(0, 255, 255, 0.25);
}

.player-avatar-glow img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.broadcast-player-info h3 {
	font-size: 2rem;
	font-family: "Orbitron", sans-serif;
	margin-bottom: 10px;
}

.broadcast-player-info span {
	color: var(--muted);
}

.broadcast-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.broadcast-stat {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 25px;
	border-radius: 20px;
	text-align: center;
}

.broadcast-stat h4 {
	font-size: 2rem;
	color: var(--cyan);
	font-family: "Orbitron", sans-serif;
	margin-bottom: 8px;
}

.broadcast-stat span {
	font-size: 12px;
	color: var(--muted);
}

/* =========================
MINI LEADERBOARD
========================= */

.mini-leaderboard {
	margin-top: 40px;
}

.mini-team-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.03);
	margin-bottom: 15px;
}

.team-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rank-number {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.rank-number.first {
	background: rgba(255, 215, 0, 0.15);
	color: gold;
}

.rank-number.second {
	background: rgba(192, 192, 192, 0.12);
	color: silver;
}

.rank-number.third {
	background: rgba(205, 127, 50, 0.15);
	color: #cd7f32;
}

/* =========================
CHAMPIONSHIP SHOWCASE
========================= */

.championship-showcase-section {
	padding: 120px 0;
}

.championship-showcase {
	position: relative;
	overflow: hidden;
	border-radius: 40px;
	min-height: 700px;
}

.championship-bg {
	position: absolute;
	inset: 0;
}

.championship-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.championship-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(3, 7, 18, 0.95),
		rgba(3, 7, 18, 0.7),
		rgba(3, 7, 18, 0.95)
	);
}

.championship-content {
	position: relative;
	z-index: 2;
	padding: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 700px;
	gap: 60px;
}

.championship-badge {
	display: inline-flex;
	padding: 12px 22px;
	border-radius: 50px;
	background: rgba(0, 255, 255, 0.08);
	border: 1px solid rgba(0, 255, 255, 0.25);
	color: var(--cyan);
	font-size: 12px;
	letter-spacing: 1px;
}

.championship-left h2 {
	font-size: 4rem;
	font-family: "Orbitron", sans-serif;
	line-height: 1.1;
	margin: 30px 0;
}

.championship-left h2 span {
	color: var(--cyan);
}

.championship-left p {
	max-width: 700px;
	color: var(--text);
	line-height: 1.8;
}

.championship-meta-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-top: 45px;
}

.champ-meta-box {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 28px;
	border-radius: 24px;
}

.champ-meta-box span {
	display: block;
	color: var(--muted);
	font-size: 12px;
	margin-bottom: 10px;
}

.champ-meta-box strong {
	color: #fff;
	font-size: 1.3rem;
}

.championship-buttons {
	display: flex;
	gap: 20px;
	margin-top: 45px;
	flex-wrap: wrap;
}

.winner-trophy-box {
	font-size: 8rem;
	filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
	animation: float 4s ease-in-out infinite;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
}
.winner-trophy-img{
	width:260px;
	max-width:100%;
	object-fit:contain;    
	animation:trophyFloat 4s ease-in-out infinite;
}
/* FLOATING EFFECT */

@keyframes trophyFloat{

	0%{
		transform:translateY(0px);
	}

	50%{
		transform:translateY(-12px);
	}

	100%{
		transform:translateY(0px);
	}

}

/* MOBILE */

@media(max-width:768px){

	.winner-trophy-img{

		width:190px;
	}

}

.winner-team-card {
	margin-top: 30px;
	padding: 35px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

.winner-label {
	color: gold;
	letter-spacing: 1px;
	font-size: 12px;
}

.winner-team-card h3 {
	margin: 18px 0;
	font-family: "Orbitron", sans-serif;
}

.winner-score {
	font-size: 2rem;
	color: var(--cyan);
	font-family: "Orbitron", sans-serif;
}

/* =========================
SCOREBOARD
========================= */

.esports-scoreboard-section {
	padding: 100px 0;
}

.esports-scoreboard {
	padding: 60px;
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.score-team {
	text-align: center;
	flex: 1;
}

.score-team-logo {
	width: 180px;
	height: 180px;
	margin: auto;
	border-radius: 30px;
	overflow: hidden;
	border: 2px solid rgba(0, 255, 255, 0.25);
}

.score-team-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.score-team h3 {
	margin-top: 25px;
	font-family: "Orbitron", sans-serif;
}

.score-team span {
	color: var(--muted);
}

.score-center {
	text-align: center;
	min-width: 350px;
}

.main-score {
	font-size: 6rem;
	font-family: "Orbitron", sans-serif;
	color: var(--cyan);
	text-shadow: 0 0 35px rgba(0, 255, 255, 0.5);
}

.score-meta {
	color: var(--muted);
	letter-spacing: 2px;
}

.score-divider {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 30px 0;
}

.kill-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.kill-stats div {
	text-align: center;
}

.kill-stats strong {
	display: block;
	font-size: 2rem;
	color: #fff;
}

.kill-stats span {
	color: var(--muted);
	font-size: 12px;
}


/* ========================= 
CHAMPIONSHIP RESPONSIVE FIX RESPONSIVE
========================= */

/* LARGE LAPTOP */

@media (max-width: 1400px){

	.championship-content{
		padding: 60px;
		gap: 40px;
	}

	.championship-left h2{
		font-size: 3.5rem;
	}

}

/* TABLET */

@media (max-width: 1200px){

	.championship-showcase{
		min-height: auto;
	}

	.championship-content{

		flex-direction: column;
		align-items: center;
		text-align: center;

		padding: 60px 40px;
		min-height: auto;
	}

	.championship-left{
		width: 100%;
	}

	.championship-left p{
		max-width: 700px;
		margin: auto;
	}

	.championship-meta-grid{
		width: 100%;
	}

	.championship-buttons{
		justify-content: center;
	}

	.championship-right{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

}

/* SMALL TABLET */

@media (max-width: 991px){

	.championship-showcase-section{
		padding: 80px 0;
	}

	.championship-content{
		padding: 50px 30px;
	}

	.championship-left h2{
		font-size: 2.8rem;
		line-height: 1.2;
	}

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

	.winner-team-card{
		width: 100%;
		max-width: 350px;
	}

}

/* MOBILE */

@media (max-width: 768px){

	.championship-showcase{
		border-radius: 25px;
	}

	.championship-content{

		padding: 40px 20px;
		gap: 35px;
	}

	.championship-badge{

		font-size: 10px;
		padding: 10px 18px;
	}

	.championship-left h2{

		font-size: 2rem;
		line-height: 1.3;
		margin: 20px 0;
	}

	.championship-left p{

		font-size: 14px;
		line-height: 1.7;
	}

	.champ-meta-box{

		padding: 22px;
		border-radius: 20px;
		text-align: left;
	}

	.champ-meta-box strong{

		font-size: 1.1rem;
	}

	.winner-trophy-img{

		width: 180px;
	}

	.winner-team-card{

		padding: 28px 24px;
		border-radius: 24px;
	}

	.winner-team-card h3{

		font-size: 1.8rem;
	}

	.winner-score{

		font-size: 1.8rem;
	}

}

/* SMALL MOBILE */

@media (max-width: 480px){

	.championship-content{

		padding: 35px 16px;
	}

	.championship-left h2{

		font-size: 1.7rem;
	}

	.championship-buttons{

		width: 100%;
	}

	.championship-buttons .hero-btn{

		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.winner-trophy-img{

		width: 150px;
	}

}

/* ══════════════════════════════════════════════════════════════
CONTACT, Discrod
══════════════════════════════════════════════════════════════ */
/* =========================================================
CONTACT SECTION
========================================================= */

#contact {
	position: relative;
	padding: 120px 0;
}

.contact-wrapper {
	display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 40px;

	align-items: center;
}

.contact-left {
	max-width: 520px;
}

.contact-tag {
	display: inline-flex;

	padding: 10px 18px;

	border-radius: 999px;

	background: rgba(0, 200, 255, 0.08);

	border: 1px solid rgba(0, 200, 255, 0.18);

	color: var(--cyan);

	font-size: 12px;

	letter-spacing: 2px;

	font-weight: 700;

	margin-bottom: 24px;
}

.contact-title {
	color: white;

	font-size: 58px;

	line-height: 1.1;

	font-family: "Orbitron", monospace;

	margin-bottom: 22px;
}

.contact-title span {
	color: var(--cyan);
}

.contact-desc {
	color: #9ba8bb;

	font-size: 16px;

	line-height: 1.9;
}

.contact-info {
	margin-top: 40px;

	display: flex;

	flex-direction: column;

	gap: 18px;
}

.contact-info-item {
	display: flex;

	align-items: center;

	gap: 18px;

	padding: 18px;

	border-radius: 18px;

	background: rgba(255, 255, 255, 0.03);

	border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-icon {
	width: 60px;

	height: 60px;

	border-radius: 16px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgba(0, 200, 255, 0.08);

	border: 1px solid rgba(0, 200, 255, 0.18);

	font-size: 24px;
}

.contact-info-item span {
	display: block;

	color: #7f91a7;

	font-size: 13px;

	margin-bottom: 6px;
}

.contact-info-item strong {
	color: white;

	font-size: 16px;
}

/* ================= CONTACT FORM ================= */

.contact-form-box{
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 30px;
	padding: 40px;
	backdrop-filter: blur(16px);
}

.contact-form{
	width: 100%;
}

.contact-form-grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	width: 100%;
}

/* INPUT GROUP */

.contact-input-group{
	width: 100%;
	margin-bottom: 22px;
	display: block;
}

.contact-input-group label{
	display: block;
	color: white;
	font-size: 14px;
	letter-spacing: 1px;
}

/* CF7 WRAPPER FIX */

.contact-form .wpcf7-form-control-wrap{
	width: 100%;
	display: block;
}

/* INPUTS */

.contact-input-group input,
.contact-input-group textarea,
.contact-form input,
.contact-form textarea{
	width: 100% !important;
	display: block;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 16px 18px;
	color: white;
	outline: none;
	transition: 0.3s ease;
}

/* TEXTAREA */

.contact-input-group textarea,
.contact-form textarea{
	min-height: 220px;
	resize: none;
}

/* FOCUS */

.contact-input-group input:focus,
.contact-input-group textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus{
	border-color: rgba(0, 200, 255, 0.35);
	box-shadow: 0 0 20px rgba(0, 200, 255, 0.08);
}

/* REMOVE CF7 EXTRA SPACING */

.contact-form p{
	margin: 0 !important;
	width: 100%;
}

/* SUBMIT BUTTON */

.contact-submit-btn{
	width: 100%;
	height: 60px;
	border: none;
	border-radius: 18px;
	background: #b200fe;
	color: #041018;
	font-weight: 700;
	letter-spacing: 2px;
	transition: 0.35s ease;
	cursor: pointer;
	margin-top: 10px;
}

.contact-submit-btn:hover{
	transform: translateY(-4px);
	box-shadow: 0 0 30px rgba(0, 200, 255, 0.25);
}



.wpcf7 form.sent .wpcf7-response-output{
	display: block;
	margin-top: 20px !important;
	padding: 14px 18px !important;
	border-radius: 14px;
	border: 1px solid rgba(0,255,150,0.35) !important;
	background: rgba(0,255,150,0.08);
	color: white !important;
}

/* RESPONSIVE */

@media(max-width:768px){

	.contact-form-box{
		padding: 28px 22px;
	}

	.contact-form-grid{
		grid-template-columns: 1fr;
		gap: 0;
	}

}
/* =========================================================
HERO SECTION
========================================================= */

#hero {
	position: relative;

	overflow: hidden;

	min-height: 100vh;

	padding-top: 40px;

	display: flex;

	align-items: center;
}

/* =========================================================
HERO TOP
========================================================= */

.hero-top {
	position: relative;

	display: grid;

	grid-template-columns: 1fr 720px;

	align-items: center;

	/* min-height:850px; */
}

/* =========================================================
LEFT SIDE
========================================================= */

.hero-content {
	position: relative;
	z-index: 5;
	max-width: 760px;
	padding-left: 20px;
}

.hero-title {
	font-size: 110px;
	line-height: 0.92;
	margin-top: 26px;
	margin-bottom: 30px;
	position: relative;
	z-index: 5;
}

.hero-title span {
	display: block;
	margin-top: 18px;
	color: var(--cyan);
	text-shadow: 0 0 25px rgba(0, 200, 255, 0.35);
}

.hero-desc {
	max-width: 620px;
	color: #9eb0c5;
	font-size: 18px;
	line-height: 2;
}

/* =========================================================
BUTTONS
========================================================= */

.hero-buttons {
	display: flex;
	gap: 18px;
	margin-top: 42px;
}

.hero-btn {
	height: 60px;
	padding: 0 34px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 700;
	transition: 0.35s ease;
	text-decoration: none;
}

.primary-btn {
	background: var(--cyan);
	color: #071018;
}

.primary-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 30px rgba(0, 200, 255, 0.35);
}

.secondary-btn {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	color: white;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1400px) {
	.hero-top {
		grid-template-columns: 1fr 620px;
	}

	.hero-title {
		font-size: 92px;
	}

	.hero-character {
		width: 820px;
	}
}

@media (max-width: 1200px) {
	.hero-top {
		grid-template-columns: 1fr;
	}

	.hero-title {
		font-size: 74px;
	}
}

/* HIDE IMAGE ON MOBILE */

@media (max-width: 992px) {
	#hero {
		min-height: auto;

		padding-top: 110px;

		padding-bottom: 90px;
	}

	.hero-top {
		min-height: auto;
	}

	.hero-content {
		padding-left: 0;
	}

	.hero-title {
		font-size: 58px;
	}

	.hero-desc {
		font-size: 15px;

		line-height: 1.9;
	}

	.hero-buttons {
		flex-direction: column;
	}

	.hero-btn {
		width: 100%;
	}
}
.discord-box {
	position: relative;
	overflow: hidden;
	border-radius: 34px;
	padding: 70px;
	background: linear-gradient(
		135deg,
		rgba(88, 101, 242, 0.18),
		rgba(0, 200, 255, 0.08)
	);

	border: 1px solid rgba(255, 255, 255, 0.08);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;

	backdrop-filter: blur(18px);

	box-shadow:
		0 0 40px rgba(88, 101, 242, 0.12),
		0 25px 70px rgba(0, 0, 0, 0.45);
}

.discord-box::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(88, 101, 242, 0.12);
	top: -250px;
	right: -100px;
	filter: blur(80px);
}

.discord-tag {
	display: inline-flex;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: white;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 26px;
}

.discord-content {
	position: relative;
	z-index: 2;
}

.discord-content h2 {
	color: white;
	font-size: 54px;
	line-height: 1.1;
	margin-bottom: 24px;
	font-family: "Orbitron", monospace;
	max-width: 700px;
}

.discord-content h2 span {
	color: #8ea1ff;
}

.discord-content p {
	color: #d3d9e4;
	font-size: 17px;
	line-height: 1.9;
	max-width: 620px;
}

.discord-stats {
	display: flex;
	gap: 22px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.discord-stat {
	min-width: 140px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-stat strong {
	display: block;
	color: #B200FE;
	font-size: 28px;
	margin-bottom: 6px;
}

.discord-stat span {
	color: #d5dcec;
	font-size: 13px;
}

.discord-action {
	position: relative;
	z-index: 2;
	min-width: 260px;
}

.discord-btn {
	width: 260px;
	height: 70px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: #5865f2;
	color: white;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 2px;
	transition: 0.35s ease;
	box-shadow: 0 0 30px rgba(88, 101, 242, 0.35);
}

.discord-btn:hover {
	transform: translateY(-6px) scale(1.03);
	color: white;
}

.discord-btn i {
	font-size: 24px;
}

.discord-online {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #d3d9e4;
	font-size: 14px;
}

.online-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #00ff88;
	box-shadow: 0 0 14px #00ff88;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.discord-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.discord-section {
		padding: 90px 0;
	}

	.discord-box {
		padding: 40px 28px;
		border-radius: 26px;
	}

	.discord-content h2 {
		font-size: 34px;
	}

	.discord-content p {
		font-size: 15px;
	}

	.discord-stats {
		flex-direction: column;
	}

	.discord-stat {
		width: 100%;
	}

	.discord-btn {
		width: 85%;
	}

	.discord-action {
		width: 85%;
	}
}
/* ══════════════════════════════════════════════════════════════
FOOTER
══════════════════════════════════════════════════════════════ */
/* =========================================================
FOOTER
========================================================= */

.main-footer {
	position: relative;
	padding: 100px 0 30px;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	background-image: url('../images/footer-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* =========================================================
TOP
========================================================= */

.footer-top {
	display: grid;

	grid-template-columns: 2fr 1fr 1fr 1.2fr;

	gap: 50px;

	padding-bottom: 60px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================================================
BRAND
========================================================= */

.footer-logo {
	display: flex;

	align-items: center;

	gap: 18px;

	margin-bottom: 24px;
}

.footer-logo img {
	width: auto;
	height: 100px;
	object-fit: contain;
}

.footer-logo h3 {
	color: white;

	font-size: 22px;

	margin-bottom: 6px;

	font-family: "Orbitron", monospace;
}

.footer-logo span {
	color: #7f91a7;

	font-size: 13px;
}

.footer-desc {
	color: #9ba8bb;

	line-height: 1.9;

	font-size: 15px;

	max-width: 420px;
}

/* =========================================================
SOCIALS
========================================================= */

.footer-socials {
	display: flex;

	gap: 14px;

	margin-top: 30px;
}

.footer-socials a {
	width: 48px;

	height: 48px;

	border-radius: 16px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgba(255, 255, 255, 0.03);

	border: 1px solid rgba(255, 255, 255, 0.06);

	color: white;

	transition: 0.35s ease;
}

.footer-socials a:hover {
	transform: translateY(-5px);

	background: rgba(0, 200, 255, 0.08);

	border-color: rgba(0, 200, 255, 0.24);

	color: var(--cyan);

	box-shadow: 0 0 25px rgba(0, 200, 255, 0.12);
}

/* =========================================================
LINKS
========================================================= */

.footer-links h4,
.footer-contact h4 {
	color: #00c8ff;
	font-size: 18px;
	margin-bottom: 28px;
	font-family: "Orbitron", monospace;
}

.footer-links ul {
	list-style: none;

	padding: 0;

	margin: 0;
}

.footer-links li {
	margin-bottom: 16px;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: 0.3s ease;
}

.footer-links a:hover {
	color: var(--cyan);

	padding-left: 6px;
}

/* =========================================================
CONTACT
========================================================= */

.footer-contact-item {
	margin-bottom: 22px;
}

.footer-contact-item span {
	display: block;

	color: #7f91a7;

	font-size: 13px;

	margin-bottom: 8px;
}

.footer-contact-item strong {
	color: white;

	font-size: 15px;
}

/* =========================================================
BOTTOM
========================================================= */

.footer-bottom {
	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 20px;

	padding-top: 28px;
}

.footer-bottom p {
	color: #7f91a7;

	font-size: 13px;
}

.footer-bottom span {
	color: var(--cyan);
}

/* =========================================================
RESPONSIVE
========================================================= */

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

@media (max-width: 768px) {
	.main-footer {
		padding: 80px 0 30px;
	}

	.footer-top {
		grid-template-columns: 1fr;

		gap: 40px;
	}

	.footer-bottom {
		flex-direction: column;

		text-align: center;
	}

	.footer-logo {
		align-items: flex-start;
	}
}

@media (max-width: 420px) {
	.footer-logo {
		flex-direction: column;
	}

	.footer-socials {
		flex-wrap: wrap;
	}
}

/* ══════════════════════════════════════════════════════════════
MODALS
══════════════════════════════════════════════════════════════ */
.custom-modal {
	background: var(--navy3);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.modal-bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2100;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	overflow-y: auto;
}
.modal-bg.show {
	display: flex;
}
.modal {
	background: var(--navy3);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px;
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.modal-title {
	font-family: "Orbitron", monospace;
	font-weight: 900;
	font-size: 15px;
	color: var(--cyan);
	letter-spacing: 2px;
	margin-bottom: 20px;
}
.reg-modal {
	max-width: 440px;
}
.reg-tourn-info {
	background: var(--navy4);
	border: 1px solid rgba(0, 200, 255, 0.12);
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 18px;
}
.reg-tourn-name {
	font-family: "Orbitron", monospace;
	font-weight: 700;
	font-size: 13px;
	color: #fff;
	margin-bottom: 4px;
}
.reg-tourn-meta {
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 1px;
}

/* Form */
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.form-full {
	grid-column: 1 / -1;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.form-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted);
}
.form-input {
	background: var(--navy4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 7px;
	padding: 9px 12px;
	color: #fff;
	font-family: "Rajdhani", sans-serif;
	font-size: 14px;
	transition: border-color 0.2s;
	width: 100%;
}
.form-input:focus {
	outline: none;
	border-color: rgba(0, 200, 255, 0.5);
	box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.08);
}
.form-input option {
	background: var(--navy3);
}
.img-preview {
	width: 100%;
	max-height: 120px;
	object-fit: cover;
	border-radius: 6px;
	margin-top: 8px;
	border: 1px solid var(--border);
}
.form-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 20px;
}

/* Reg success */
.reg-success {
	text-align: center;
	padding: 12px 0;
}
.reg-success-icon {
	font-size: 48px;
	margin-bottom: 12px;
}
.reg-success-title {
	font-family: "Orbitron", monospace;
	font-weight: 900;
	font-size: 16px;
	color: var(--cyan);
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.reg-success-msg {
	color: var(--text);
	font-size: 14px;
	line-height: 1.6;
}

/* Buttons */
.btn-pe {
	font-family: "Rajdhani", sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 9px 20px;
	border-radius: 7px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: all 0.2s;
}
.btn-cyan {
	background: var(--cyan);
	color: var(--navy);
	border-color: var(--cyan);
}
.btn-cyan:hover {
	opacity: 0.85;
}
.btn-outline {
	background: transparent;
	color: var(--text);
	border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}
.btn-red {
	background: rgba(255, 68, 68, 0.1);
	color: var(--red);
	border-color: rgba(255, 68, 68, 0.3);
}
.btn-red:hover {
	background: rgba(255, 68, 68, 0.2);
}
.btn-green {
	background: rgba(0, 255, 136, 0.1);
	color: var(--green);
	border-color: rgba(0, 255, 136, 0.3);
}
.btn-green:hover {
	background: rgba(0, 255, 136, 0.2);
}
.btn-sm {
	padding: 6px 12px;
	font-size: 11px;
}

@media (max-width: 576px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
}
/* ==========================
TOURNAMENT SUMMARY MODAL
========================== */

.registration-summary {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	background: var(--navy4);
	border: 1px solid rgba(0, 200, 255, 0.12);
	border-radius: 8px;
}

.summary-item span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted);
}

.summary-item strong {
	font-family: "Orbitron", monospace;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-align: right;
}

.registration-note {
	background: rgba(0, 200, 255, 0.05);
	border: 1px solid rgba(0, 200, 255, 0.15);
	border-radius: 8px;
	padding: 14px;
	font-size: 13px;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 20px;
}

#selectedTournamentName {
	color: var(--cyan);
}

#selectedTournamentGame {
	text-transform: uppercase;
}
/* _____________________________________________
Contact Page
__________________________________________________ */
/* =========================================================
CONTACT HERO
========================================================= */

.contact-hero {
	position: relative;

	overflow: hidden;

	padding: 40px 0 110px;

	background:
		radial-gradient(circle at left, rgba(0, 200, 255, 0.12), transparent 30%),
		#020617;
}

/* =========================================================
GRID
========================================================= */

.contact-grid {
	position: absolute;

	inset: 0;

	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

	background-size: 60px 60px;

	opacity: 0.15;
}

/* =========================================================
GLOW
========================================================= */

.contact-glow {
	position: absolute;

	width: 420px;

	height: 420px;

	border-radius: 50%;

	background: rgba(0, 200, 255, 0.12);

	filter: blur(120px);

	left: -100px;

	top: -100px;
}

/* =========================================================
WRAPPER
========================================================= */

.contact-hero-wrapper {
	position: relative;

	z-index: 2;

	display: grid;

	grid-template-columns: 1fr 420px;

	gap: 80px;

	align-items: center;
}

/* =========================================================
LEFT
========================================================= */

.contact-left {
	max-width: 760px;
}

.contact-title {
	font-size: 88px;

	line-height: 0.95;

	margin: 30px 0;

	color: #fff;

	font-family: "Orbitron", monospace;
}

.contact-title span {
	display: block;

	margin-top: 16px;

	color: var(--cyan);

	text-shadow: 0 0 25px rgba(0, 200, 255, 0.35);
}

.contact-desc {
	color: #97a8bb;

	font-size: 18px;

	line-height: 2;

	max-width: 680px;
}

/* =========================================================
BUTTONS
========================================================= */

.contact-buttons {
	display: flex;

	gap: 18px;

	margin-top: 40px;
}

/* =========================================================
RIGHT CARD
========================================================= */

.contact-card {
	padding: 40px;

	border-radius: 28px;

	background: rgba(255, 255, 255, 0.03);

	border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-card-icon {
	width: 82px;

	height: 82px;

	border-radius: 24px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgba(0, 200, 255, 0.08);

	border: 1px solid rgba(0, 200, 255, 0.18);

	font-size: 34px;

	margin-bottom: 28px;
}

.contact-card h3 {
	color: #fff;

	font-size: 28px;

	line-height: 1.4;

	margin-bottom: 18px;

	font-family: "Orbitron", monospace;
}

.contact-card p {
	color: #97a8bb;

	line-height: 1.9;

	margin-bottom: 32px;
}

/* =========================================================
STATS
========================================================= */

.support-stats {
	display: flex;

	gap: 40px;
}

.support-stats strong {
	display: block;

	color: var(--cyan);

	font-size: 34px;

	margin-bottom: 8px;

	font-family: "Orbitron", monospace;
}

.support-stats span {
	color: #97a8bb;

	font-size: 14px;

	text-transform: uppercase;

	letter-spacing: 1px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
	.contact-hero-wrapper {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.contact-hero {
		padding: 68px 0 90px;
	}

	.contact-title {
		font-size: 52px;

		line-height: 1.1;
	}

	.contact-desc {
		font-size: 15px;

		line-height: 1.9;
	}

	.contact-buttons {
		flex-direction: column;
	}
}

/* =========================================
TOURNAMENT PAGE CSS
ONLY NEW CSS — REUSES EXISTING SYSTEM
========================================= */

/* =========================================
TOURNAMENT CARD UPGRADE
========================================= */

.tournament-grid-card {
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

.tournament-grid-card:hover {
	transform: translateY(-10px);

	border-color: rgba(0, 200, 255, 0.25);

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.45),
		0 0 40px rgba(0, 200, 255, 0.08);
}

/* IMAGE ZOOM */

.tournament-thumb {
	overflow: hidden;
}

.tournament-thumb img {
	transition: transform 0.5s ease;
}

.tournament-grid-card:hover .tournament-thumb img {
	transform: scale(1.08);
}
/* =========================================
TEAM INFO
========================================= */

.team-info {
	display: flex;

	align-items: center;

	gap: 14px;
}

.team-avatar {
	width: 46px;

	height: 46px;

	border-radius: 14px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: rgba(0, 200, 255, 0.1);

	border: 1px solid rgba(0, 200, 255, 0.18);

	color: var(--cyan);

	font-weight: 700;

	font-family: "Orbitron", monospace;
}

.team-meta strong {
	display: block;

	color: #fff;

	font-size: 14px;
}

.team-meta span {
	color: var(--muted);

	font-size: 11px;

	letter-spacing: 1px;
}
/* =========================================
BUTTON SHINE EFFECT
========================================= */

.hero-btn,
.register-btn {
	position: relative;

	overflow: hidden;
}

.hero-btn::before,
.register-btn::before {
	content: "";

	position: absolute;

	top: 0;

	left: -100%;

	width: 100%;

	height: 100%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);

	transition: 0.6s;
}

.hero-btn:hover::before,
.register-btn:hover::before {
	left: 100%;
}
.section-divider {
	width: 100%;

	height: 1px;

	margin: 100px 0;

	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 200, 255, 0.2),
		transparent
	);
} /* =========================================
FILTER BUTTONS
========================================= */
/* 
.filter-wrapper {
display: flex;

flex-wrap: wrap;

gap: 14px;

justify-content: center;
}

.filter-btn {
border: none;

background: rgba(255, 255, 255, 0.04);

border: 1px solid rgba(255, 255, 255, 0.08);

color: #fff;

padding: 12px 22px;

border-radius: 50px;

font-size: 13px;

font-weight: 600;

letter-spacing: 1px;

transition: 0.3s ease;
} */
.filter-wrapper{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:14px;
}

.filter-btn{
	position:relative;
	overflow:hidden;
	border:none;
	background:rgba(255,255,255,0.04);
	border:1px solid rgba(255,255,255,0.08);
	color:#fff;
	padding:12px 24px;
	border-radius:50px;
	font-size:13px;
	font-weight:700;
	letter-spacing:1px;
	transition:.3s ease;
	backdrop-filter:blur(12px);
}

.filter-btn:hover{
	transform:translateY(-3px);
	border-color:rgba(0,200,255,0.35);
	box-shadow:0 0 20px rgba(0,200,255,0.12);
}

.filter-btn.active{
	background:linear-gradient(135deg,var(--cyan),#00ffd5);
	color:#000;
	border-color:transparent;
	box-shadow:0 0 30px rgba(0,200,255,0.4);
}

.filter-btn::before{
	content:'';
	position:absolute;
	top:0;
	left:-100%;
	width:100%;
	height:100%;
	background:linear-gradient(120deg,transparent,rgba(255,255,255,0.25),transparent);
	transition:.6s;
}

.filter-btn:hover::before{
	left:100%;
}

.live-btn.active{
	background:linear-gradient(135deg,#ff0055,#ff3366);
	color:#fff;
	box-shadow:0 0 25px rgba(255,0,85,0.45);
}

.tournament-carousel{
	position:relative;
}

.tournament-item{
	padding:10px;
}

.tournament-carousel .owl-dots{
	margin-top:40px;
	text-align:center;
}

.tournament-carousel .owl-dot span{
	width:12px;
	height:12px;
	margin:0 8px;
	background:rgba(255,255,255,0.15);
	border-radius:50%;
	transition:.3s ease;
}

.tournament-carousel .owl-dot.active span{
	width:34px;
	border-radius:50px;
	background:var(--cyan);
	box-shadow:0 0 18px rgba(0,200,255,0.35);
}

.owl-stage{
	display:flex;
}

.owl-item{
	display:flex;
}

.tournament-grid-card{
	height:100%;
}
/* CAROUSEL NAV */

.tournament-carousel .owl-nav{
	margin-top:40px;
	display:flex;
	justify-content:center;
	gap:16px;
}

.tournament-carousel .owl-nav button{
	width:52px !important;
	height:52px !important;
	border-radius:50% !important;
	border:1px solid rgba(255,255,255,0.08) !important;
	background:rgba(255,255,255,0.04) !important;
	color:#fff !important;
	font-size:16px !important;
	transition:.3s ease;
}

.tournament-carousel .owl-nav button:hover{
	background:var(--cyan) !important;
	color:#000 !important;
	transform:translateY(-3px);
	box-shadow:0 0 20px rgba(0,200,255,0.3);
}

.tournament-carousel .owl-nav button.disabled{
	opacity:.35;
	cursor:not-allowed;
}

/* ACTIVE */

.filter-btn.active {
	background: var(--cyan);

	color: #000;

	box-shadow: 0 0 25px rgba(0, 200, 255, 0.35);
}

/* HOVER */

.filter-btn:hover {
	transform: translateY(-2px);

	border-color: rgba(0, 200, 255, 0.35);
}
/* =========================================
PROCESS SECTION
========================================= */

.process-section {
	position: relative;

	padding: 0px 0;
}

/* =========================================
ROADMAP
========================================= */

.process-roadmap {
	position: relative;

	max-width: 1000px;

	margin: 80px auto 0;
}

/* CENTER LINE */

.process-roadmap::before {
	content: "";

	position: absolute;

	left: 40px;

	top: 0;

	width: 2px;

	height: 100%;

	background: linear-gradient(
		to bottom,
		rgba(0, 200, 255, 0.1),
		rgba(0, 200, 255, 0.5),
		rgba(0, 200, 255, 0.1)
	);
}

/* =========================================
STEP
========================================= */

.process-step {
	position: relative;

	display: flex;

	gap: 30px;

	margin-bottom: 60px;
}

/* =========================================
ICON
========================================= */

.process-icon {
	position: relative;

	min-width: 80px;

	width: 80px;

	height: 80px;

	border-radius: 50%;

	background: linear-gradient(
		135deg,
		rgba(0, 200, 255, 0.15),
		rgba(0, 200, 255, 0.05)
	);

	border: 1px solid rgba(0, 200, 255, 0.25);

	display: flex;

	align-items: center;

	justify-content: center;

	color: var(--cyan);

	font-size: 28px;

	box-shadow: 0 0 25px rgba(0, 200, 255, 0.12);

	z-index: 2;
}

/* =========================================
CONTENT
========================================= */

.process-content {
	flex: 1;

	background: rgba(255, 255, 255, 0.03);

	border: 1px solid rgba(255, 255, 255, 0.06);

	border-radius: 24px;

	padding: 30px;

	backdrop-filter: blur(14px);

	transition: 0.3s ease;
}

.process-content:hover {
	transform: translateY(-5px);

	border-color: rgba(0, 200, 255, 0.2);

	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* =========================================
STEP NUMBER
========================================= */

.process-count {
	display: inline-block;

	margin-bottom: 12px;

	color: var(--cyan);

	font-size: 12px;

	font-weight: 700;

	letter-spacing: 2px;
}

/* =========================================
TITLE
========================================= */

.process-content h3 {
	font-size: 26px;

	margin-bottom: 14px;

	color: #fff;
}

/* =========================================
TEXT
========================================= */

.process-content p {
	color: var(--muted);

	line-height: 1.8;

	font-size: 15px;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 768px) {
	.process-roadmap::before {
		left: 28px;
	}

	.process-step {
		gap: 18px;
	}

	.process-icon {
		width: 56px;

		height: 56px;

		min-width: 56px;

		font-size: 18px;
	}

	.process-content {
		padding: 22px;
	}

	.process-content h3 {
		font-size: 20px;
	}
}
.tournament-hero {
	position: relative;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.hero-stat-card {
	padding: 30px 20px;
	text-align: center;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(14px);
	background-color: #b200fe;
	background: rgba(178, 0, 254, 0.15);
	border: 1px solid rgba(178, 0, 254, 0.5);

	box-shadow: 0 0 15px rgba(178, 0, 254, 0.4);
}

.hero-stat-card h3 {
	font-size: 2rem;
	font-family: "Orbitron", sans-serif;
	color: rgb(208, 102, 255);
	margin-bottom: 10px;
}

.hero-stat-card span {
	color: var(--text);
	font-size: 14px;
	letter-spacing: 1px;
}

/* =========================
FILTERS
========================= */

.tournament-filters-section {
	padding: 30px 0;
}

.filter-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.filter-btn {
	border: 1px solid rgba(0, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	padding: 12px 22px;
	border-radius: 50px;
	transition: 0.3s;
	font-size: 14px;
	font-weight: 600;
	backdrop-filter: blur(12px);
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--cyan);
	color: #000;
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.live-btn {
	border-color: rgba(255, 0, 80, 0.5);
	color: #ff4d6d;
}

/* =========================
FEATURED TOURNAMENT
========================= */
/* FEATURED CARD */
.featured-card {
	display: flex;
	flex-direction: row;
	background: #111827;
	border: 1px solid rgba(0, 200, 255, 0.15);
	border-radius: 16px;
	overflow: hidden;
}

/* THUMBNAIL */
.featured-thumb{
	position:relative;
	width:300px;
	min-width:300px;
	flex-shrink:0;
}

.featured-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 280px;
}

.featured-thumb-fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 50%, #111827 95%);
}

.featured-thumb .status-live {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #ff2d55;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}

/* CONTENT */
.featured-content{
	flex:1;
	min-width:0;
	max-width:1100px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding:28px 30px 28px 12px;
	gap:24px;
}

/* TITLE + COUNTDOWN ROW */
.featured-top-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.featured-sub {
	font-size: 10px;
	color: rgba(255,255,255,0.45);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.featured-title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.25;
}

/* COUNTDOWN */
.countdown-box {
	text-align: center;
	background: rgba(0, 200, 255, 0.07);
	border: 1px solid rgba(0, 200, 255, 0.2);
	border-radius: 10px;
	padding: 10px 14px;
	flex-shrink: 0; /* never shrink the countdown */
}

.countdown-label {
	display: block;
	font-size: 9px;
	color: rgba(255,255,255,0.4);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.countdown-box h3 {
	font-size: 20px;
	font-weight: 700;
	color: #00c8ff;
	letter-spacing: 2px;
	margin: 0;
	white-space: nowrap;
}

/* STATS GRID */
.featured-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.fstat {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 8px;
	padding: 8px 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0; /* prevent overflow */
}

.fstat-label {
	font-size: 9px;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.fstat-value {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fstat-value.gold { color: #ffd700; }

/* SLOTS */
.slots-wrapper { width: 100%; }

.slots-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 7px;
	font-size: 11px;
	color: rgba(255,255,255,0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.slots-count { color: #00c8ff; font-weight: 600; }

.slots-progress {
	background: rgba(255,255,255,0.08);
	border-radius: 99px;
	height: 5px;
	overflow: hidden;
}

.slots-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #00c8ff, #7b2ff7);
	border-radius: 99px;
}

.slots-note {
	font-size: 10px;
	color: rgba(255,255,255,0.28);
	margin-top: 5px;
}

/* =========================================
FEATURED BUTTONS
========================================= */

.featured-buttons{
	display:flex;
	align-items:center;
	gap:14px;
	margin-top:6px;
}

/* BASE */

.featured-buttons .hero-btn{
	position:relative;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:52px;
	padding:0 28px;
	border-radius:14px;
	font-size:12px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
	text-decoration:none;
	cursor:pointer;
	transition:all .25s ease;
	overflow:hidden;
	white-space:nowrap;
}

/* PRIMARY */

.featured-buttons .primary-btn{
	min-width:220px;
	background:
		linear-gradient(
			135deg,
			#00c8ff,
			#18bfff
		);
	color:#041018;
	border:none;
	box-shadow:
		0 10px 30px rgba(0,200,255,0.18);
}

.featured-buttons .primary-btn:hover{
	transform:translateY(-2px);
	box-shadow:
		0 14px 35px rgba(0,200,255,0.28);
}

/* SECONDARY */

.featured-buttons .secondary-btn{
	min-width:170px;
	background:rgba(255,255,255,0.03);
	color:#fff;
	border:1px solid rgba(255,255,255,0.12);
	backdrop-filter:blur(10px);
}

.featured-buttons .secondary-btn:hover{
	background:rgba(255,255,255,0.06);
	border-color:rgba(0,200,255,0.3);
	transform:translateY(-2px);
}

/* =========================================
DESKTOP ONLY IMPROVEMENTS
========================================= */
/* =========================================
DESKTOP LAYOUT BALANCE
========================================= */

@media(min-width:1200px){

	.featured-card{
		align-items:stretch;
	}

	.featured-content{
		width:100%;
	}

	.featured-stats-grid{
		max-width:820px;
	}

	.slots-wrapper{
		max-width:820px;
	}

	.featured-buttons{
		margin-top:4px;
	}

}
@media(min-width:901px){

	.featured-buttons{
		justify-content:flex-start;
	}

	.featured-buttons .hero-btn{
		width:auto;
		flex:none;
	}

}
/* =====================
TABLET (641px–900px)
===================== */
@media (max-width: 900px) {

	.featured-thumb {
		width: 260px;
		min-width: 200px;
	}

	.featured-content {
		padding: 20px 16px;
	}

	.featured-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-title {
		font-size: 16px;
	}

	.countdown-box h3 {
		font-size: 18px;
	}

}

/* =====================
MOBILE (max 640px)
===================== */
@media (max-width: 640px) {

	.featured-card {
		flex-direction: column;
	}

	.featured-thumb {
		width: 100%;
		min-width: unset;
		height: 200px;
	}

	.featured-thumb img {
		min-height: unset;
		height: 200px;
	}

	/* fade bottom on mobile */
	.featured-thumb-fade {
		background: linear-gradient(to bottom, transparent 40%, #111827 100%);
	}

	.featured-content {
		padding: 20px 16px;
	}

	.featured-top-row {
		flex-direction: column;
		gap: 12px;
	}

	/* countdown full width on mobile */
	.countdown-box {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 16px;
	}

	.countdown-label {
		margin-bottom: 0;
	}

	.countdown-box h3 {
		font-size: 22px;
	}

	.featured-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.featured-buttons {
		flex-direction: column;
	}

}
/* =========================
TOURNAMENT GRID
========================= */

.tournament-grid-section {
	padding: 100px 0;
}

.tournament-grid-card {
	overflow: hidden;
	border-radius: 24px;
	transition: 0.4s;
	height: 100%;
}

.tournament-grid-card:hover {
	transform: translateY(-8px);
}

.tournament-thumb {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.tournament-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.tournament-grid-card:hover img {
	transform: scale(1.08);
}

.tournament-thumb span {
	position: absolute;
	top: 16px;
	left: 16px;
}

.tournament-grid-content {
	padding: 25px;
}

.tournament-top {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
}

.tournament-top h3 {
	font-size: 1.2rem;
	font-family: "Orbitron", sans-serif;
}

.tournament-grid-meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 25px;
}

.tournament-grid-meta div {
	background: rgba(255, 255, 255, 0.03);
	padding: 12px;
	border-radius: 12px;
	font-size: 13px;
}

.mini-progress {
	width: 100%;
	height: 8px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.06);
	margin-top: 25px;
	overflow: hidden;
}

.mini-progress-bar {
	width: 75%;
	height: 100%;
	background: linear-gradient(90deg, var(--cyan), #00ff88);
}

.mini-progress-bar.second {
	width: 50%;
}

.card-buttons {
	margin-top: 25px;
}

/* =========================
LEADERBOARD
========================= */

.leaderboard-section {
	padding: 20px 0;
}

.leaderboard-table {
	overflow: hidden;
	border-radius: 24px;
}

.leaderboard-head,
.leaderboard-row {
	display: grid;
	grid-template-columns: 0.6fr 2fr 1fr 1fr 1fr;
	gap: 20px;
	align-items: center;
	padding: 22px 30px;
}

.leaderboard-head {
	background: rgba(255, 255, 255, 0.03);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-family: "Orbitron", sans-serif;
	color: var(--cyan);
}

.leaderboard-row {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rank {
	font-family: "Orbitron", sans-serif;
	font-size: 1.2rem;
}

.first {
	color: gold;
}

.second {
	color: silver;
}

.team-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mvp-badge {
	background: rgba(255, 215, 0, 0.12);
	color: gold;
	padding: 5px 12px;
	border-radius: 30px;
	font-size: 11px;
}

/* =========================
WINNERS
========================= */

.winner-section {
	padding: 100px 0;
}

.winner-card {
	overflow: hidden;
	border-radius: 24px;
	transition: 0.4s;
}

.winner-card:hover {
	transform: translateY(-10px);
}

.winner-top {
	height: 220px;
	overflow: hidden;
}

.winner-top img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.winner-content {
	padding: 25px;
}

.winner-content h3 {
	font-family: "Orbitron", sans-serif;
	margin-bottom: 15px;
}

.winner-content p {
	color: var(--cyan);
	margin-bottom: 10px;
}

.winner-tournament {
	margin-top: 18px;
	color: var(--muted);
	font-size: 13px;
}

/* =========================
RESPONSIVE
========================= */

/* =========================================
MOBILE LEADERBOARD
========================================= */

@media (max-width:991px){

	.leaderboard-table{

		overflow-x:auto;

		border-radius:24px;
	}

	.leaderboard-head,
	.leaderboard-row{

		min-width:700px;
	}

}

@media (max-width: 767px) {
	.hero-stats-grid {
		margin-top: 40px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.featured-banner {
		height: 280px;
	}

	.featured-content {
		padding: 25px;
	}

	.tournament-grid-meta {
		grid-template-columns: -1fr;
	}

	.featured-buttons {
		flex-direction: column;
	}

	.featured-buttons .hero-btn {
		width: 100%;
	}
}

/* -----------------------------------
Result Style  
--------------------------------------
*/
/* =========================================
RESULTS PAGE CSS
ONLY NEW CSS
REUSES EXISTING UI SYSTEM
========================================= */

/* =========================
RESULTS HERO
========================= */

.results-hero {
	position: relative;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.results-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.results-stat-card {
	padding: 30px 20px;
	text-align: center;
	border-radius: 20px;
	backdrop-filter: blur(12px);
	overflow: hidden;
	position: relative;
}

.results-stat-card h3 {
	font-size: 2rem;
	font-family: "Orbitron", sans-serif;
	color: var(--cyan);
	margin-bottom: 10px;
}

.results-stat-card span {
	color: var(--text);
	font-size: 14px;
	letter-spacing: 1px;
}

/* =========================
FEATURED RESULT
========================= */

.featured-result-section {
	padding: 100px 0;
}

.featured-result-card {
	overflow: hidden;
	border-radius: 30px;
}

.featured-result-banner {
	position: relative;
	height: 420px;
}

.featured-result-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-result-overlay {
	position: absolute;
	top: 20px;
	left: 20px;
}

.featured-result-content {
	padding: 40px;
}

.featured-result-top h2 {
	font-size: 2rem;
	font-family: "Orbitron", sans-serif;
	margin-bottom: 20px;
}

.featured-result-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.featured-result-meta span {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 12px 18px;
	border-radius: 14px;
	font-size: 13px;
}

.featured-result-buttons {
	display: flex;
	gap: 20px;
	margin-top: 35px;
	flex-wrap: wrap;
}

/* =========================
RESULT FILTERS
========================= */

.result-filter-section {
	padding: 30px 0 70px;
}

/* =========================
RESULT GRID
========================= */

.results-grid-section {
	padding: 40px 0 100px;
}

.result-grid-card {
	border-radius: 24px;
	overflow: hidden;
	transition: 0.4s;
	height: 100%;
}

.result-grid-card:hover {
	transform: translateY(-10px);
}

.result-grid-thumb {
	position: relative;
	height: 240px;
	overflow: hidden;
}

.result-grid-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s;
}

.result-grid-card:hover img {
	transform: scale(1.08);
}

.result-grid-thumb span {
	position: absolute;
	top: 18px;
	left: 18px;
}

.result-grid-content {
	padding: 25px;
}

.result-grid-top {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
}

.result-grid-top h3 {
	font-size: 1.2rem;
	font-family: "Orbitron", sans-serif;
}

.result-grid-meta {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 25px;
}

.result-grid-meta div {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 12px 15px;
	border-radius: 14px;
	font-size: 13px;
	color: var(--text);
}

/* =========================
PODIUM
========================= */

.podium-section {
	padding: 100px 0;
}

.podium-wrapper {
	display: flex;
	justify-content: center;
	align-items: end;
	gap: 30px;
	margin-top: 60px;
	flex-wrap: wrap;
}

.podium-card {
	width: 300px;
	text-align: center;
	padding: 40px 25px;
	border-radius: 24px;
	transition: 0.4s;
}

.podium-card:hover {
	transform: translateY(-10px);
}

.podium-card.first {
	min-height: 420px;
	border: 1px solid rgba(255, 215, 0, 0.3);
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.podium-card.second {
	min-height: 360px;
}

.podium-card.third {
	min-height: 320px;
}

.podium-rank {
	font-size: 3rem;
	margin-bottom: 20px;
}

.podium-card h3 {
	font-family: "Orbitron", sans-serif;
	margin-bottom: 15px;
}

.podium-card span {
	color: var(--cyan);
	display: block;
	margin-bottom: 12px;
}

/* =========================
MVP SECTION
========================= */

.mvp-section {
	padding: 100px 0;
}

.mvp-card {
	padding: 40px;
	border-radius: 30px;
}

.mvp-image {
	height: 100%;
	overflow: hidden;
	border-radius: 24px;
}

.mvp-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mvp-content {
	padding-left: 20px;
}

.mvp-content h2 {
	font-size: 3rem;
	font-family: "Orbitron", sans-serif;
	margin: 20px 0;
}

.mvp-content p {
	color: var(--text);
	margin-bottom: 30px;
}

.mvp-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.mvp-stat-box {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 25px;
	border-radius: 20px;
	text-align: center;
}

.mvp-stat-box h3 {
	color: var(--cyan);
	font-family: "Orbitron", sans-serif;
	margin-bottom: 10px;
}

.mvp-stat-box span {
	font-size: 13px;
	color: var(--text);
}

/* =========================
TIMELINE
========================= */

.timeline-section {
	padding: 100px 0;
}

.timeline-wrapper {
	max-width: 900px;
	margin: auto;
	position: relative;
}

.timeline-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 18px;
	width: 2px;
	height: 100%;
	background: rgba(0, 255, 255, 0.2);
}

.timeline-item {
	position: relative;
	padding-left: 60px;
	margin-bottom: 40px;
}

.timeline-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 20px var(--cyan);
	position: absolute;
	left: 10px;
	top: 25px;
}

.timeline-content {
	padding: 25px;
	border-radius: 20px;
}

.timeline-content h3 {
	font-family: "Orbitron", sans-serif;
	margin-bottom: 12px;
}

.timeline-content p {
	color: var(--text);
	margin: 0;
}

/* =========================
STATUS BADGES
========================= */

.status-completed {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	background: rgba(0, 255, 120, 0.12);
	border: 1px solid rgba(0, 255, 120, 0.35);
	color: #00ff88;
	box-shadow: 0 0 15px rgba(0, 255, 120, 0.15);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
	.featured-result-top {
		flex-direction: column;
	}

	.podium-wrapper {
		align-items: stretch;
	}

	.mvp-content {
		padding-left: 0;
		padding-top: 30px;
	}
}

@media (max-width: 767px) {
	.results-stats-grid {
		margin-top: 40px;
	}

	.hero-title {
		font-size: 2.4rem;
	}

	.featured-result-banner {
		height: 280px;
	}

	.featured-result-content {
		padding: 25px;
	}

	.featured-result-buttons {
		flex-direction: column;
	}

	.featured-result-buttons .hero-btn {
		width: 100%;
	}

	.mvp-stats-grid {
		grid-template-columns: 1fr;
	}

	.podium-card {
		width: 100%;
	}
}
body,.entry-title a,:root .has-primary-color {
	color:#ffffff !important;
}
ul#menu-desktop-menu li a {
	text-decoration: none;
	color: #8a9ab0;
}

/* Login Page */
/* ================= AUTH SECTION ================= */

.esports-auth-section{
	position: relative;
	min-height: 100vh;
	background: #080B17;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 120px 0;
}

.auth-bg-glow{
	position: absolute;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(0,255,255,0.12), transparent 70%);
	top: -200px;
	right: -200px;
	z-index: 0;
}

.auth-wrapper{
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 80px;
	align-items: center;
}

.auth-tag{
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid rgba(0,255,255,0.2);
	border-radius: 50px;
	color: #00d9ff;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 30px;
}

.auth-content h1{
	font-size: 72px;
	line-height: 1.1;
	font-weight: 800;
	color: #fff;
	margin-bottom: 25px;
	font-family: 'Orbitron', sans-serif;
}

.auth-content h1 span{
	color: #00d9ff;
}

.auth-content p{
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255,255,255,0.7);
	max-width: 600px;
}

.auth-features{
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.auth-feature{
	display: flex;
	align-items: center;
	gap: 15px;
	color: #fff;
}

.auth-feature i{
	width: 48px;
	height: 48px;
	background: rgba(0,217,255,0.1);
	border: 1px solid rgba(0,217,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	color: #00d9ff;
}

.auth-card{
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(18px);
	border-radius: 30px;
	padding: 45px;
	box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.auth-card-top h2{
	color: #fff;
	font-size: 36px;
	margin-bottom: 10px;
}

.auth-card-top p{
	color: rgba(255,255,255,0.6);
	margin-bottom: 35px;
}

.auth-input-wrap select{	
	width: 100%;
	height: 62px;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
	padding: 0 20px 0 55px;
	color: #fff;
	outline: none;
}

.auth-input-group label{
	display: block;
	color: #fff;
	margin-bottom: 12px;
	font-size: 14px;
}

.auth-input-wrap{
	position: relative;
}

.auth-input-wrap i{
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255,255,255,0.5);
}

.auth-input-wrap input{
	width: 100%;
	height: 62px;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
	padding: 0 20px 0 55px;
	color: #fff;
	outline: none;
}

.auth-input-wrap input:focus{
	border-color: #00d9ff;
}

.auth-options{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.remember-me{
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.7);
	font-size: 14px;
}

.auth-options a{
	color: #00d9ff;
	text-decoration: none;
	font-size: 14px;
}

.auth-submit-btn{
	width: 100%;
	height: 62px;
	border: none;
	border-radius: 16px;
	background: linear-gradient(90deg,#00d9ff,#0066ff);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: 0.3s;
}

.auth-submit-btn:hover{
	transform: translateY(-3px);
}

.auth-bottom{
	margin-top: 28px;
	text-align: center;
	color: rgba(255,255,255,0.6);
}

.auth-bottom a{
	color: #00d9ff;
	text-decoration: none;
	font-weight: 600;
}

@media(max-width:991px){

	.auth-wrapper{
		grid-template-columns: 1fr;
	}

	.auth-content{
		text-align: center;
	}

	.auth-content p{
		margin: auto;
	}

	.auth-features{
		align-items: center;
	}

}

@media(max-width:576px){

	.auth-card{
		padding: 30px 22px;
	}

	.auth-content h1{
		font-size: 46px;
	}

}

/* Back to top Button */
/* ================= BACK TO TOP ================= */

.back-to-top{
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border: none;
	border-radius: 18px;
	background: linear-gradient(135deg,#00d9ff,#b200fe);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);

	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);

	transition: all 0.35s ease;
}

.back-to-top.show{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover{
	transform: translateY(-5px);
	box-shadow: 0 0 30px rgba(0,217,255,0.4);
}
.sub-filter-wrapper{
	display:none;
}

/* Whats App Community Button */
.community-wrapper{
	position:fixed;
	right:20px;
	bottom:100px;
	z-index:9999;
}

.community-float-btn {
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	font-size: 42px;
	box-shadow: 0 10px 30px rgba(37,211,102,.35);
	transition: .3s;
}

.community-float-btn:hover{
	transform:scale(1.08);
	color:#fff;
}

.community-popup{

	position:absolute;

	right:75px;
	bottom:10px;

	background:#fff;
	color:#111;

	padding:12px 16px;

	border-radius:14px;

	min-width:240px;

	font-size:14px;
	font-weight:600;

	box-shadow:
		0 10px 30px rgba(0,0,0,.15);

	opacity:0;
	visibility:hidden;

	transform:translateX(20px);

	transition:.4s ease;
}

.community-popup.show{

	opacity:1;
	visibility:visible;

	transform:translateX(0);

}

.community-popup:after{

	content:'';

	position:absolute;

	right:-8px;
	bottom:18px;

	width:16px;
	height:16px;

	background:#fff;

	transform:rotate(45deg);

}

@media(max-width:768px){

	.community-wrapper{
		right:15px;
		bottom:90px;
	}

	.community-popup{

		min-width:200px;
		font-size:13px;

	}

}
/* Discord Button New Css */
.discord-btn{
	display:inline-flex;
	align-items:center;
	gap:10px;

	padding:14px 24px;

	background:linear-gradient(
		135deg,
		#0d1117,
		#161b22
	);

	border:1px solid rgba(37,211,102,.5);
	border-radius:16px;

	color:#fff;
	text-decoration:none;

	box-shadow:
		0 0 20px rgba(37,211,102,.25),
		0 0 40px rgba(37,211,102,.15);

	transition:.3s ease;

	animation:communityGlow 2s infinite;
}

.discord-btn:hover{
	transform:translateY(-5px) scale(1.03);
	color:#fff;
}

.discord-btn i{
	font-size:24px;
	color:#25D366;
}
.community-icon i{ 
	font-size:28px; color:#fff;
}
.community-content{ 
	display:flex; 
	flex-direction:column;
	line-height:1.2;
}
.community-label{ 
	font-size:11px; 
	color:#25D366; 
	font-weight:700; 
	letter-spacing:1px; 
}
@keyframes communityGlow{
	0%{
		box-shadow:0 0 15px rgba(37,211,102,.2);
	}
	50%{
		box-shadow:
			0 0 30px rgba(37,211,102,.6),
			0 0 60px rgba(37,211,102,.3);
	}
	100%{
		box-shadow:0 0 15px rgba(37,211,102,.2);
	}
}

/* Player Profile Success Message */
.profile-success-message{
	text-align:center;
	padding:40px 30px;
}

.profile-success-message h4{
	color:#fff;
	margin:15px 0 10px;
}

.profile-success-message p{
	color:#b9c7d8;
	margin-bottom:25px;
}

.success-icon{
	font-size:50px;
	color:#00ff88;
}

.success-cta{
	display:inline-flex;
	align-items:center;
	gap:10px;
}

/* Tournament Registration Success Message */
.registration-message{
	margin-bottom:20px;
}

.registration-success{
	text-align:center;
	padding:20px;
	border-radius:12px;
	background:rgba(0,200,255,.08);
	border:1px solid rgba(0,200,255,.3);
}

.registration-success i{
	font-size:40px;
	margin-bottom:10px;
	color:#00c8ff;
}

.registration-success h4{
	color:#fff;
	margin-bottom:10px;
}

.registration-success p{
	color:#bdbdbd;
	margin:0;
}

.registration-error{
	text-align:center;
	color:#ff5a5a;
}
a.register-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-decoration: none;
}

/* loading Scrren On registration Form */

#botbee-loader{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(10,10,10,.95);
	z-index:999999;
	display:flex;
	align-items:center;
	justify-content:center;
}

.botbee-loader-box{
	text-align:center;
	color:#fff;
}

.botbee-loader-box h3{
	margin-top:20px;
	font-size:24px;
}

.botbee-loader-box p{
	margin-top:8px;
	color:#bbb;
}

.botbee-spinner{
	width:60px;
	height:60px;
	border:4px solid rgba(255,255,255,.15);
	border-top:4px solid #00ff88;
	border-radius:50%;
	margin:auto;
	animation:spin .8s linear infinite;
}

@keyframes spin{
	100%{
		transform:rotate(360deg);
	}
}

/* Tournament Fixture */
.fixture-section{
	padding:100px 0;
	background:#070b14;
	position:relative;
}

.fixture-heading{
	max-width:800px;
	margin:auto;
	margin-bottom:70px;
}

.fixture-tag{
	display:inline-block;
	padding:8px 20px;
	border-radius:50px;
	background:rgba(0,255,255,.1);
	border:1px solid rgba(0,255,255,.3);
	color:#00ffff;
	font-size:13px;
	letter-spacing:2px;
	margin-bottom:15px;
}

.fixture-heading h2{
	font-size:48px;
	font-weight:800;
	color:#fff;
	margin-bottom:20px;
}

.fixture-heading h2 span{
	color:#00ffff;
}

.fixture-heading p{
	color:#b8c0d4;
	line-height:1.8;
}

.fixture-timeline{
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:20px;
	margin-bottom:70px;
}

.fixture-card{
	width:220px;
	padding:30px;
	border-radius:20px;
	text-align:center;
	background:rgba(255,255,255,.03);
	border:1px solid rgba(255,255,255,.08);
	transition:.4s;
}

.fixture-card:hover{
	transform:translateY(-8px);
	border-color:#00ffff;
}

.fixture-icon{
	width:70px;
	height:70px;
	border-radius:50%;
	background:linear-gradient(135deg,#00ffff,#0099ff);
	display:flex;
	align-items:center;
	justify-content:center;
	margin:auto;
	color:#000;
	font-size:28px;
	font-weight:800;
	margin-bottom:20px;
}

.fixture-card h3{
	color:#fff;
	margin-bottom:10px;
}

.fixture-card p{
	color:#00ffff;
	font-weight:700;
	margin-bottom:10px;
}

.fixture-card span{
	color:#c8d1e5;
	font-size:14px;
}

.fixture-arrow{
	color:#00ffff;
	font-size:40px;
	font-weight:700;
}

.mega-final-card{
	text-align:center;
	padding:50px;
	border-radius:24px;
	background:linear-gradient(
		135deg,
		rgba(0,255,255,.12),
		rgba(0,153,255,.12)
	);
	border:1px solid rgba(0,255,255,.2);
	margin-bottom:60px;
}

.mega-badge{
	display:inline-block;
	padding:10px 24px;
	background:#00ffff;
	color:#000;
	font-weight:700;
	border-radius:50px;
	margin-bottom:20px;
}

.mega-final-card h3{
	color:#fff;
	font-size:32px;
	margin-bottom:15px;
}

.mega-final-card p{
	max-width:700px;
	margin:auto;
	color:#d1d8e6;
	line-height:1.8;
}

.rules-grid{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:25px;
}

.rule-card{
	padding:30px;
	border-radius:18px;
	background:rgba(255,255,255,.03);
	border:1px solid rgba(255,255,255,.08);
}

.rule-card h4{
	color:#00ffff;
	margin-bottom:15px;
}

.rule-card p{
	color:#c5cede;
	line-height:1.7;
	margin:0;
}

@media(max-width:991px){

	.fixture-heading h2{
		font-size:34px;
	}

	.rules-grid{
		grid-template-columns:repeat(2,1fr);
	}

	.fixture-arrow{
		display:none;
	}
}

@media(max-width:576px){

	.rules-grid{
		grid-template-columns:1fr;
	}

	.fixture-card{
		width:100%;
	}

	.mega-final-card{
		padding:30px 20px;
	}

	.mega-final-card h3{
		font-size:24px;
	}
}

/* Registration Modal Form */
.success-close-btn{
	position:absolute;
	top:10px;
	right:10px;
	width:35px;
	height:35px;
	border:none;
	border-radius:50%;
	background:rgba(255,255,255,.1);
	color:#fff;
	cursor:pointer;
	transition:.3s;
}

.success-close-btn:hover{
	transform:rotate(90deg);
}

.registration-success{
	position:relative;
}

.community-message{
	margin:20px 0;
	padding:15px;
	border-radius:12px;
	background:rgba(37,211,102,.1);
	border:1px solid rgba(37,211,102,.3);
}

.community-message i{
	font-size:24px;
	color:#25D366;
	margin-bottom:10px;
}

.community-message p{
	margin:0;
	line-height:1.7;
}
.match-time-value{
	font-size:20px;
	font-weight:700;
	color:#fff;
}
.registration-complete .modal-title,
.registration-complete .registration-summary,
.registration-complete .registration-note,
.registration-complete .form-actions {
	display: none;
}
/* Announcement Bar */
.announcement-bar{
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #00C8FF;
    overflow: hidden;
    z-index: 999;
    display: flex;
    align-items: center;
}

.announcement-track{
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.announcement-track span{
    white-space: nowrap;
    padding-right: 100px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

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

.upcoming-badge{
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 10;
}