/* Reset and Base Styles */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	line-height: 1.6;
	color: #333;
	background-color: #0a1628;
}

.header {
	background-color: #0a1628;
}

body.dashboard {
	background-color: #f5f7fa;
}

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

.logo-small {
	width: 32px;
	height: 32px;
}

.logo-2 {
	filter: invert(1);
	width: 50px;
	margin-bottom: -13px;
}

.logout-icon {
	color: #DAA520;
}

.logo-font {
	font-family: 'Segoe UI', Arial, sans-serif !important;
}

.logo-3 {
	filter: invert(1);
	width: 30px;
	margin-bottom: -7px;
}

.nav-logo a {
	text-decoration: none;
	text-wrap-mode: nowrap;
}

.shotlist-main {
	position: relative;
}

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

/* Video Background Section */
.video-background-section {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 400px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
}

.video-background-container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-logout {
	color: #DAA520;
}

.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: contain;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 22, 40, 0.3);
	z-index: 2;
}

@media (max-width: 768px) {
	.video-background-section {
		height: 40vh;
		min-height: 300px;
	}
}

/* Dashboard Video Background Section - Letterbox Style */
.video-background-section-dashboard {
	position: relative;
	width: 100%;
	height: 60vh;
	min-height: 400px;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
}

.video-background-container-dashboard {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.background-video-dashboard {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	z-index: 1;
}

.video-overlay-dashboard {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 22, 40, 0.2);
	z-index: 2;
	pointer-events: none;
}

@media (max-width: 768px) {
	.video-background-section-dashboard {
		height: 40vh;
		min-height: 250px;
		margin: 20px 0;
	}
}

/* Header Styles */
.header {
	position: static;
}

.navbar {
	padding: 1rem 0;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo h2 {
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	text-decoration: none;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-links {
	display: flex;
	gap: 1rem;
}

.nav-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
}

.nav-link:hover {
	color: #DAA520;
}

.nav-auth {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* Language Selector Styles */
.language-selector {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-right: 1rem;
}

.lang-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
}

.lang-link:hover,
.lang-link.active {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.lang-divider {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
}

/* Mobile Language Selector Styles */
.mobile-language-selector {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	padding: 1rem;
}

.mobile-lang-options {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.mobile-lang-link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-weight: 600;
	font-size: 1.3rem;
	transition: color 0.3s ease;
}

.mobile-lang-link:hover {
	color: #DAA520;
}

.mobile-lang-link.active {
	color: #DAA520;
}

.mobile-lang-bullet {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.2rem;
	font-weight: bold;
}

.btn-search {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.btn-search:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #DAA520;
}

.btn-signin {
	background: transparent;
	border: 2px solid #DAA520;
	color: #DAA520;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-signin:hover {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	color: #0a1628;
}

.btn-login {
	background: #DAA520;
	border: 2px solid #DAA520;
	color: black;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-left: 0.5rem;
	text-decoration: none;
}

.btn-login:hover {
	background: #B8860B;
	border-color: #B8860B;

}

/* Mobile Menu Styles */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
	background: rgba(218, 165, 32, 0.1);
}

.mobile-menu-btn span {
	width: 28px;
	height: 6px;
	background: #DAA520;
	transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(9px, -8px);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(10, 22, 40, 0.95);
	backdrop-filter: blur(10px);
	z-index: 999;
}

.mobile-menu.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-menu-content {
	display: flex;
	flex-direction: column;
	gap: 0rem;
	text-align: center;
}

.mobile-nav-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 2.6rem;
	font-weight: 500;
	padding: 0rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-family: 'Dela Gothic One', sans-serif;
}

.mobile-nav-link:hover {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	color: #0a1628;
	border-color: #DAA520;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: middle;
	background-image: url('../svgbac.svg');
	position: relative;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 22, 40, 0.60);
	/* dark overlay */
	z-index: 1;
}

.hero>* {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 24px;
}

.hero-text h1 {
	font-size: 4rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: 1px;
}

.hero-text p {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 1);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: #DAA520;
	color: #0a1628;
	border: none;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #B8860B;
}

.btn-secondary {
	background: transparent;
	color: #DAA520;
	border: 2px solid #DAA520;
	padding: 1rem 2rem;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-text .second-p {
	margin-top: 0;
	padding-top: 0;
}

.btn-secondary:hover {
	background: #DAA520;
	border-color: #DAA520;
	color: #0a1628;
}

.email-input {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 1rem 1.5rem;
	border-radius: 25px;
	font-size: 1.1rem;
	width: 300px;
	margin-right: 1rem;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.email-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
	outline: none;
	border-color: #DAA520;
	background: rgba(255, 255, 255, 0.15);
}

.position {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.player-photo {
	width: 350px;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 4px solid #DAA520;
	border-radius: 12px;
	margin-left: 20%;
	margin-top: 24px;
}

.player-stats {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 1rem 0;
}

.player-stats span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.player-stats i {
	color: #DAA520;
	width: 16px;
}

.player-sport {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

.player-sport i {
	color: #DAA520;
}

/* --- HERO ICONS ANIMATION --- */
.athletic-icons-animation {
	display: flex;
	gap: 1.2rem;
	font-size: 2.7rem;
	animation: icons-float 3.5s infinite ease-in-out;
}

.athletic-icons-animation i {
	color: #fff;
	background: rgba(26, 34, 54, 0.15);
	border-radius: 50%;
	padding: 0.5rem;
	transition: transform 0.3s, color 0.3s;
}

.athletic-icons-animation i:nth-child(1) {
	color: #DAA520;
}

.athletic-icons-animation i:nth-child(2) {
	color: #B8860B;
}

.athletic-icons-animation i:nth-child(3) {
	color: #29b6f6;
}

.athletic-icons-animation i:nth-child(4) {
	color: #66bb6a;
}

.athletic-icons-animation i:nth-child(5) {
	color: #ab47bc;
}

.athletic-icons-animation i:nth-child(6) {
	color: #DAA520;
}

.athletic-icons-animation i:hover {
	transform: scale(1.2) rotate(-8deg);
	color: #fff;
	background: #DAA520;
}

@keyframes icons-float {
	0% {
		transform: translateY(0);
	}

	20% {
		transform: translateY(-10px);
	}

	40% {
		transform: translateY(0);
	}

	60% {
		transform: translateY(10px);
	}

	80% {
		transform: translateY(0);
	}

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

/* Features Section */
.features {
	padding: 2rem 0;
	background: #fff;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	background: #f8f9fa;
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 320px;
	height: 100%;
}

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

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #DAA520, #B8860B);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #0a1628;
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #0a1628;
}

.feature-card p {
	color: #666;
	line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
	padding: 5rem 0;
	background: #f8f9fa;
}

.how-it-works h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #0a1628;
	margin-bottom: 3rem;
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.step {
	text-align: center;
	padding: 2rem;
}

.step-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #DAA520, #B8860B);
	color: #0a1628;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

.step h3 {
	font-size: 1.3rem;
	color: #0a1628;
	margin-bottom: 1rem;
}

.step p {
	color: #666;
	line-height: 1.6;
}

/* Stats Section */
.stats {
	padding: 4rem 0;
	background: #0a1628;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.stat-item h3 {
	font-size: 2.5rem;
	background: linear-gradient(135deg, #DAA520, #B8860B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
}

/* Footer */
.footer {
	background: #0a1628;
	color: #fff;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-content .footer-section:first-child {
	text-align: center;
}

.footer-content .footer-section:first-child .logo-eraon {
	justify-content: center;
}

.footer-content .footer-section:first-child .social-links {
	justify-content: center;
}

.footer-section h3 {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.footer-section h4 {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 1rem;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.footer-section ul {
	list-style: none;
	padding: 0;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-links a:hover {
	background: linear-gradient(135deg, #DAA520, #B8860B);
	color: #0a1628;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

/* Era-On Logo styling */
.logo-eraon {
	font-family: 'Segoe UI', Arial, sans-serif;
	font-weight: 800;
	font-size: 2rem;
	letter-spacing: 1px;
	margin: 0;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.2em;
}

.logo-eraon .logo-on {
	color: #DAA520;
	font-family: 'Segoe UI', Arial, sans-serif;
	font-weight: 900;
	margin-left: 0.1em;
	display: inline-flex;
	align-items: center;
	gap: 0.2em;
}

.logo-eraon .fa-bolt {
	color: #DAA520;
	margin-right: 0.1em;
	font-size: 1.1em;
	vertical-align: middle;
	filter: drop-shadow(0 1px 2px #fff6);
}

/* Footer Era-On logo styling */
.footer .logo-eraon {
	font-family: 'Segoe UI', Arial, sans-serif;
	font-weight: 800;
	font-size: 1.8rem;
	letter-spacing: 1px;
	margin: 0 0 1rem 0;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.2em;
}

.footer .logo-eraon .logo-on {
	color: #DAA520;
	font-family: 'Segoe UI', Arial, sans-serif;
	font-weight: 900;
	margin-left: 0.1em;
	display: inline-flex;
	align-items: center;
	gap: 0.2em;
}

.footer .logo-eraon .fa-bolt {
	color: #DAA520;
	margin-right: 0.1em;
	font-size: 1.1em;
	vertical-align: middle;
	filter: drop-shadow(0 1px 2px #fff6);
}

/* Process List Section */
.process-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 2rem;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.process-item {
	display: flex;
	align-items: flex-start;
	width: 100%;
	color: #1a2236;
	font-size: 1.1rem;
	font-weight: 500;
}

.process-item i {
	color: #DAA520;
	font-size: 1rem;
	width: 20px;
	text-align: left;
	display: inline-block;
	margin-right: 0.75rem;
}

.process-item span {
	color: #1a2236;
}

@keyframes arrow-pulse {

	0%,
	100% {
		transform: translateX(0);
		opacity: 0.7;
	}

	50% {
		transform: translateX(5px);
		opacity: 1;
	}
}

/* Features section heading */
.features h2 {
	text-align: center;
	font-size: 2.2rem;
	color: #1a2236;
	margin-bottom: 1rem;
	font-weight: 700;
}

/* FAQ Section */
.faq {
	background: #1a2236;
	padding: 5rem 0;
}

.faq h2 {
	text-align: left;
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 300;
	text-align: center;

}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-question>span {
	text-align: left;
}

.faq-item {
	margin-bottom: 0;
	border-radius: 0;
	overflow: hidden;
}

.faq-question {
	background: #4a5568;
	color: #ffffff;
	padding: 1.2rem 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 1rem;
	border: none;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: #5a6578;
}

.faq-question i {
	color: #ffffff;
	transition: transform 0.3s ease;
	font-size: 1rem;
}

.faq-item.active .faq-question i {
	transform: rotate(45deg);
}

.faq-answer {
	background: #4a5568;
	color: #e2e8f0;
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 100%;
	padding: 1.5rem;
}

.faq-answer p {
	margin: 0;
	line-height: 1.6;
	color: #e2e8f0;
	text-align: left;
}

/* Support Section */
.support {
	background: linear-gradient(135deg, #1a2236 0%, #2c3e50 100%);
	padding: 5rem 0;
	position: relative;
}

.support-divider {
	height: 4px;
	background: linear-gradient(90deg, #DAA520, #B8860B, #DAA520);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.support-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
}

.support-text {
	margin-bottom: 3rem;
	width: 100%;
	text-align: center;
}

.support-text h2 {
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 1.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.support-text p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.support-text p.support-item {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.8rem;
}

.support-text p.support-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #DAA520, #B8860B);
	border-radius: 50%;
}

.support-cta {
	margin-top: 2rem;
	text-align: center;
	display: block;
	text-decoration: none;
}

.btn-support {
	background: linear-gradient(135deg, #DAA520, #B8860B);

	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 auto;
}

.support-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.support-box {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #DAA520, #B8860B);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.support-box i {
	font-size: 3rem;
	color: #fff;
}

.author-info h4 {
	margin: 0;
	color: #1a2236;
	font-weight: 600;
	font-size: 1.1rem;
}

.author-info span {
	color: #666;
	font-size: 0.9rem;
}

/* CTA Section */
.cta {
	background: linear-gradient(135deg, #1a2236 0%, #2c3e50 100%);
	color: #fff;
	padding: 5rem 0;
	text-align: center;
}

.cta-content h2 {
	margin-bottom: 1rem;
	font-size: 3.7rem;
	font-weight: 300;
	color: white;
	text-align: left;
	text-transform: uppercase;
}

.cta-content h3 {
	font-weight: 300;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	color: #e8e8e8;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: left;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	text-decoration: none;
}

.cta-buttons>a {
	text-decoration: none;
}

.btn-cta-primary,
.btn-cta-secondary {
	padding: 1rem 2rem;
	border: none;
	border-radius: 81px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 200px;
	FONT-SIZE: 43pt;
	text-align: left;
}

.btn-cta-primary {
	background: #DAA520;
	color: black;
	text-decoration: none;
}

.btn-cta-primary:hover {
	background: #B8860B;
}

.btn-cta-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid #DAA520;
}

.btn-cta-secondary:hover {
	background: #DAA520;
	color: #1a2236;
}

.cta-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #e8e8e8;
}

.cta-feature i {
	color: #DAA520;
	font-size: 1.2rem;
}

/* Sport Tags */
.sport-tags {
	margin-bottom: 2rem;
}

.sport-tags h3 {
	color: #1a2236;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.tags-container {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.tag-btn {
	background: #fff;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	padding: 0.6rem 1.2rem;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.tag-btn:hover,
.tag-btn.active {
	background: #DAA520;
	color: #1a2236;
	border-color: #DAA520;
}

/* Browse Content Layout */
.browse-content {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2rem;
}

/* Filters Sidebar */
.filters-sidebar {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem;
	height: fit-content;
	position: sticky;
	top: 2rem;
}

.filters-sidebar h3 {
	color: #1a2236;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.filter-group {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
	border-bottom: none;
}

.filter-group h4 {
	color: #1a2236;
	margin-bottom: 0.8rem;
	font-size: 1rem;
}

.filter-range {
	position: relative;
}

.filter-range input[type="range"] {
	width: 100%;
	margin: 0.5rem 0;
	appearance: none;
	height: 4px;
	border-radius: 2px;
	background: #e0e0e0;
	outline: none;
}

.filter-range input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #DAA520;
	cursor: pointer;
}

.range-labels {
	display: flex;
	justify-content: space-between;
	color: #666;
	font-size: 0.85rem;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.checkbox-group label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #666;
	font-size: 0.9rem;
	cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
	accent-color: #DAA520;
}

.filter-select {
	width: 100%;
	padding: 0.6rem;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	background: #fff;
	color: #666;
	font-size: 0.9rem;
}

.filter-reset {
	width: 100%;
	background: #e0e0e0;
	border: none;
	border-radius: 6px;
	padding: 0.8rem;
	color: #666;
	cursor: pointer;
	transition: background 0.3s ease;
	margin-top: 1rem;
}

.filter-reset:hover {
	background: #DAA520;
	color: #1a2236;
}

/* Enhanced Range Sliders */
.dual-range {
	position: relative;
	height: 20px;
	margin: 0.5rem 0;
	background: whitesmoke;
	border-radius: 12px;
}

.dual-range input[type="range"] {
	position: absolute;
	width: 100%;
	height: 4px;
	appearance: none;
	border-radius: 2px;
	background: transparent;
	outline: none;
	pointer-events: none;
}

.dual-range input[type="range"]::-webkit-slider-track {
	background: #e0e0e0;
	height: 4px;
	border-radius: 2px;
}

.dual-range input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #DAA520;
	cursor: pointer;
	pointer-events: all;
	position: relative;
	z-index: 2;
}

.dual-range .range-min::-webkit-slider-thumb {
	background: #ff6b35;
}

.dual-range .range-max::-webkit-slider-thumb {
	background: #4ecdc4;
}

.range-values {
	text-align: center;
	color: #666;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 0.5rem;
}

/* Athletic Attributes */
.attributes-grid {
	display: grid;
	gap: 1rem;
}

.attribute-item {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.attribute-item label {
	font-size: 0.9rem;
	color: #333;
	font-weight: 500;
}

.rating-stars {
	display: flex;
	gap: 0.2rem;
	cursor: pointer;
}

.rating-stars .star {
	color: #ddd;
	font-size: 0.9rem;
	transition: color 0.2s ease;
}

.rating-stars .star.fas {
	color: #DAA520;
}

.rating-stars .star:hover {
	color: #DAA520;
}

.filter-note {
	color: #666;
	font-size: 0.75rem;
	margin-top: 0.5rem;
	font-style: italic;
}

/* Athletes Grid */
.athletes-grid {
	background: #1f2937;
	border-radius: 12px;
	padding: 1.5rem;
}

.results-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.results-header h3 {
	color: #1a2236;
	font-size: 1.3rem;
}

.sort-options select {
	padding: 0.6rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	background: #fff;
	color: #666;
}

/* Athletes List */
.athletes-list {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.athlete-card {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 1rem;
	padding: 1.5rem;
	border: 1px solid #f0f0f0;
	border-radius: 12px;
	transition: all 0.3s ease;
	min-height: 150px;
	align-items: start;
}

.athlete-card:hover {
	border-color: #DAA520;
}

.athlete-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #DAA520, #B8860B);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	color: #fff;
	font-size: 2.5rem;
}

.athlete-info h4 {
	color: #1a2236;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.athlete-info .sport {
	color: #DAA520;
	font-weight: 600;
	margin-bottom: 0.3rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.athlete-info .position {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 0.8rem;
}

.athlete-stats {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
}

.athlete-stats span {
	color: #666;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.athlete-location {
	color: #666;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.athlete-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
}

.btn-interest {
	background: none;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-interest:hover {
	border-color: #ff4757;
	color: #ff4757;
}

.btn-view {
	background: #DAA520;
	border: none;
	border-radius: 20px;
	padding: 0.5rem 1rem;
	color: #1a2236;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-view:hover {
	background: #B8860B;
	color: #fff;
	transform: translateY(-1px);
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.page-btn {
	background: #fff;
	border: 0;
	border-radius: 6px;
	padding: 0.6rem 0.8rem;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 40px;
}

.page-btn:hover,
.page-btn.active {
	background: #DAA520;
	color: #1a2236;

}

.page-btn:disabled {
	background: #f5f5f5;
	color: #ccc;
	cursor: not-allowed;
}

/* Active nav link */
.nav-link.active {
	color: #DAA520 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.browse-content {
		grid-template-columns: 250px 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.hero-text .second-p {
		text-align: center;
	}

	.nav-menu {
		flex-direction: column;
		gap: 1rem;
	}

	.player-photo {
		margin-left: 0px;
	}

	.nav-links {
		display: none;
	}

	.nav-auth {
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	/* Hide desktop language selector on mobile */
	.language-selector {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.btn-signin,
	.btn-login {
		padding: 0.4rem 1rem;
		font-size: 0.9rem;
	}

	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
		margin-top: 50px;
	}

	.hero-text h1 {
		font-size: 2.5rem;
	}

	.hero-buttons {
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}

	.email-input {
		width: 100%;
		max-width: 300px;
		margin-right: 0;
		margin-bottom: 1rem;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 250px;
	}

	.features-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.athletic-icons-animation {
		justify-content: center;
	}

	.process-list {
		max-width: 67%;
		align-items: center;
	}

	@keyframes arrow-pulse-vertical {

		0%,
		100% {
			transform: translateY(0);
			opacity: 0.7;
		}

		50% {
			transform: translateY(5px);
			opacity: 1;
		}
	}

	.support {
		padding: 3rem 0;
	}

	.support-content {
		gap: 2rem;
		max-width: 90%;
	}

	.support-text h2 {
		font-size: 1.7rem;
	}

	.support-text p {
		font-size: 1rem;
	}

	.support-box {
		width: 100px;
		height: 100px;
	}

	.support-box i {
		font-size: 2.5rem;
	}

	.cta {
		padding: 4rem 0;
	}

	.cta-content h2 {
		font-size: 10vw;
		color: white;
		font-weight: 300;
		line-height: 58px;
		text-transform: uppercase;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: baseline;
	}

	.btn-cta-primary,
	.btn-cta-secondary {
		font-size: 20pt;
	}

	.cta-features {
		gap: 1.5rem;
	}

	.social-links {
		justify-content: center !important;
		text-align: center;
	}

	.footer .logo-eraon {
		justify-content: center;
		text-align: center;
	}

	/* Κρύβουμε τα αθλητικά εικονίδια στο mobile */
	.athletic-icons-animation {
		display: none !important;
	}

	.browse-content {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.filters-sidebar {
		position: static;
		margin-bottom: 1rem;
	}

	.athlete-card {
		grid-template-columns: 60px 1fr;
		gap: 1rem;
	}

	.athlete-photo {
		width: 60px;
		height: 60px;
		font-size: 2rem;
	}

	.athlete-actions {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: center;
		margin-top: 1rem;
	}

	.athlete-stats {
		flex-direction: column;
		gap: 0.3rem;
	}

	.tags-container {
		gap: 0.5rem;
	}

	.tag-btn {
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
	}
}

/* Athlete Cards Mini Attributes */
.athlete-attributes {
	margin: 0.8rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.attribute-mini {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.attribute-mini span {
	font-size: 0.8rem;
	color: #666;
	font-weight: 500;
}

.stars-mini {
	display: flex;
	gap: 0.1rem;
}

.stars-mini i {
	font-size: 0.7rem;
	color: #ddd;
}

.stars-mini .fas {
	color: #DAA520;
}

@media (max-width: 768px) {
	.athlete-attributes {
		margin: 0.6rem 0;
		gap: 0.3rem;
	}

	.attribute-mini span {
		font-size: 0.75rem;
	}

	.stars-mini i {
		font-size: 0.65rem;
	}
}

/* ERA-ON News Carousel Styles */
.news-section {
	background: transparent;
	margin-bottom: 2rem;
}

.news-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.news-header {
	text-align: center;
	margin-bottom: 2rem;
}

.news-header h2 {
	color: #333;
	font-size: 2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.news-header h2 i {
	color: #3b82f6;
}

.news-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(10px);
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-track {
	display: flex;
	transition: transform 0.5s ease;
	gap: 1.5rem;
	width: fit-content;
}

.news-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease;
	width: 350px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 400px;
}

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

.news-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
	transform: scale(1.05);
}

.news-category {
	display: none;
}

.news-content {
	padding: 1.5rem;
}

.news-content h3 {
	color: #1e293b;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.news-content p {
	color: #64748b;
	font-size: 1.0rem;
	line-height: 1.6;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-date {
	color: #94a3b8;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.news-date i {
	color: #60a5fa;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(59, 130, 246, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #ffffff;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-btn:hover {
	background: #3b82f6;
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.prev-btn {
	left: 1rem;
}

.next-btn {
	right: 1rem;
}

.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(59, 130, 246, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: #3b82f6;
	transform: scale(1.2);
}

/* Responsive Design for News Carousel */
@media (max-width: 768px) {
	.news-section {

		border-radius: 0;
	}

	.news-header h2 {
		font-size: 1.5rem;
	}

	.news-card {
		width: 280px;
	}

	.news-image {
		height: 160px;
	}

	.news-content {
		padding: 1rem;
	}

	.news-content h3 {
		font-size: 1.1rem;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.prev-btn {
		left: 0.5rem;
	}

	.next-btn {
		right: 0.5rem;
	}
}

/* Shotlist Section Styles */
.shotlist-container {
	max-width: 1200px;
	margin: 3rem auto;
	padding: 0 20px;
}

.shotlist-header {
	text-align: center;
	margin-bottom: 2rem;
}

.shotlist-header h1 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.shotlist-header h1 i {
	color: #ff6b35;
}

.shotlist-header p {
	color: #b0bec5;
	font-size: 1.1rem;
}

.btn-browse {
	background: linear-gradient(135deg, #ff6b35, #ff8a5b);
	color: white;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-browse:hover {
	background: linear-gradient(135deg, #ff8a5b, #ff6b35);
}

.shotlist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.shotlist-player-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	height: 100%;
}

.shotlist-player-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 107, 53, 0.3);
	background: rgba(255, 255, 255, 0.08);
}

/* Sortlist Table Styles */
.sortlist-table-container {
	background: rgba(255, 255, 255, 0.02);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(218, 165, 32, 0.2);
	margin-top: 2rem;
}

.sortlist-table {
	background: #0a1628;
	width: 100%;
	border-collapse: collapse;
}

.sortlist-table thead {
	background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(184, 134, 11, 0.15));
	border-bottom: 2px solid rgba(218, 165, 32, 0.3);
	font-size: 13pt;
}

.sortlist-table th {
	padding: 16px 20px;
	text-align: left;
	color: #DAA520;
	font-weight: 700;
	font-size: 13pt;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sortlist-table tbody tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.sortlist-table tbody tr:hover {
	background: rgba(218, 165, 32, 0.08);
	transform: translateX(5px);
}

.sortlist-table td {
	padding: 16px 20px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.player-name-cell {
	font-weight: 600;
}

.player-name-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.player-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(218, 165, 32, 0.3);
}

/* Most Visited Players Section */
/* MVP Leaderboard Styles */
.mvp-leaderboard-container {
	max-width: 1200px;
	margin: 3rem auto;
	padding: 0 20px;
}

.mvp-leaderboard-header {
	background: #0a1628;
	position: relative;
	padding: 1rem;
	text-align: center;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	color: white;
}

.mvp-corner-accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #ff6b35, #ffd700);
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.mvp-leaderboard-header h2 {
	color: white;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.mvp-leaderboard-header h3 {
	color: #daa520;
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.empty-mvp-leaderboard {
	background: #0a1628;
	text-align: center;
	padding: 3rem 2rem;
	border-radius: 0 0 12px 12px;
}

.empty-mvp-leaderboard i {
	font-size: 4rem;
	color: #ffd700;
	margin-bottom: 1rem;
}

.empty-mvp-leaderboard h3 {
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.empty-mvp-leaderboard p {
	color: #b0bec5;
	font-size: 1.1rem;
}

.mvp-leaderboard-list {
	background: #0a1628;
	border-radius: 0 0 12px 12px;
	padding: 0;
}

.mvp-leaderboard-item {
	display: flex;
	align-items: center;
	padding: 0.8rem 2rem;
	border-bottom: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	position: relative;
}

.mvp-leaderboard-item-link {
	text-decoration: none;
	color: inherit;
	display: block;
	border-bottom: 1px solid #e2e8f0;
}

.mvp-leaderboard-item-link:hover .mvp-leaderboard-item {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(5px);
}

.mvp-leaderboard-item:last-child {
	border-bottom: none;
}

.mvp-position-wrapper {
	position: relative;
	margin-right: 1.5rem;
}

.mvp-position-number {
	background: #4a5568;
	color: white;
	width: 25px;
	height: 25px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
	position: absolute;
	top: -8px;
	left: -8px;
	z-index: 2;
}

.mvp-player-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #e2e8f0;
}

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

.mvp-player-info {
	flex: 1;
}

.mvp-player-name {
	color: #fff;
	font-size: 1.0rem;
	font-weight: 600;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mvp-player-position {
	background: rgba(255, 255, 255, 0.9);
	color: #0f1b2d;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	min-width: 50px;
	text-align: center;
}

.image-after-pool-section {
	max-width: 100%;
	height: auto;
	display: inline-block;
	object-fit: cover;
}

.poll-image-container {
	margin-top: -1rem;
	text-align: center;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 1rem;
}

/* Responsive Design for MVP Leaderboard */
@media (max-width: 768px) {
	.mvp-leaderboard-container {
		max-width: 100%;
		margin: 2rem auto;
		padding: 0 10px;
	}

	.mvp-leaderboard-header {
		padding: 1.5rem;
	}

	.mvp-leaderboard-header h2 {
		font-size: 1rem;
	}

	.mvp-leaderboard-header h3 {
		font-size: 1.5rem;
	}

	.mvp-leaderboard-item {
		padding: 1rem 1.5rem;
	}

	.mvp-position-wrapper {
		margin-right: 1rem;
	}

	.mvp-position-number {
		width: 22px;
		height: 22px;
		font-size: 0.8rem;
		top: -6px;
		left: -6px;
	}

	.mvp-player-image {
		width: 45px;
		height: 45px;
		border-width: 2px;
	}

	.mvp-player-name {
		font-size: 1rem;
	}

	.mvp-player-position {
		padding: 0.4rem 0.8rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.mvp-leaderboard-header h2 {
		font-size: 0.9rem;
	}

	.mvp-leaderboard-header h3 {
		font-size: 1.3rem;
		letter-spacing: 1px;
	}

	.mvp-leaderboard-item {
		padding: 0.8rem 1rem;
	}

	.mvp-position-wrapper {
		margin-right: 0.8rem;
	}

	.mvp-position-number {
		width: 20px;
		height: 20px;
		font-size: 0.7rem;
		top: -5px;
		left: -5px;
	}

	.mvp-player-image {
		width: 40px;
		height: 40px;
	}

	.mvp-player-name {
		font-size: 0.9rem;
	}
}

/* Legacy MVP styles for backward compatibility */



/* Responsive Design for Shotlist Section */
@media (max-width: 768px) {
	.shotlist-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 1rem;
	}

	.shotlist-player-card {
		padding: 1rem;
	}

	.shotlist-header h1 {
		font-size: 1.5rem;
	}

	.shotlist-header p {
		font-size: 1rem;
	}


}

@media (max-width: 480px) {
	.shotlist-grid {
		grid-template-columns: 1fr;
	}

	.shotlist-container {
		padding: 0 10px;
	}



	.player-name-wrapper {
		gap: 8px;
	}

	.player-avatar {
		width: 28px;
		height: 28px;
	}
}

/* Dashboard Main Layout */
.shotlist-main {
	min-height: 100vh;
	padding-bottom: 2rem;
}

/* Ensure proper spacing between sections */
.shotlist-container+.mvp-leaderboard-container {
	margin-top: 4rem;
}

/* Poll Section Styles */
.poll-container {
	max-width: 1200px;
	margin: 3rem auto;
	padding: 0 20px;
}

.poll-header {
	background: #0a1628;
	padding: 1rem;
	text-align: center;
	border-radius: 12px 12px 0 0;
	color: white;
}

.poll-header h2 {
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}

.poll-header p {
	font-size: 1.1rem;
	margin: 0;
	font-weight: 300;
	line-height: 1.4;
}

.poll-content {
	background: #0a1628;
	padding: 2rem;
	border-radius: 0 0 12px 12px;
}

.poll-message {
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	text-align: center;
}

.poll-message p {
	color: white;
	font-size: 1.1rem;
	margin: 0;
	font-weight: 500;
}

.poll-options {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.poll-option {
	display: flex;
	align-items: center;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: white;
	font-size: 1rem;
	border: 2px solid transparent;
}

.poll-option:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
}

.poll-option input[type="radio"] {
	display: none;
}

.radio-custom {
	width: 20px;
	height: 20px;
	border: 2px solid white;
	border-radius: 50%;
	margin-right: 1rem;
	position: relative;
	flex-shrink: 0;
}

.poll-option input[type="radio"]:checked+.radio-custom {
	border-color: #00bcd4;
	background: #00bcd4;
}

.poll-option input[type="radio"]:checked+.radio-custom::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	background: white;
	border-radius: 50%;
}

.poll-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.btn-poll-submit,
.btn-poll-results,
.btn-poll-back {
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	text-align: center;
	display: inline-block;
}

.btn-poll-submit {
	background: #daa520;

}

.btn-poll-submit:hover {
	background: #00acc1;
}

.btn-poll-results,
.btn-poll-back {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-poll-results:hover,
.btn-poll-back:hover {
	background: white;
	color: #4a6fa5;
}

/* Poll Results Styles */
.poll-results {
	color: white;
}

.poll-results h3 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	text-align: center;
	font-weight: 600;
}

.results-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.result-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.result-label {
	flex: 0 0 150px;
	font-size: 0.95rem;
	font-weight: 500;
}

.result-bar {
	flex: 1;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.result-fill {
	height: 100%;
	background: linear-gradient(90deg, #00bcd4, #26c6da);
	border-radius: 10px;
	transition: width 0.8s ease;
}

.result-percentage {
	flex: 0 0 50px;
	text-align: right;
	font-weight: 600;
	font-size: 0.9rem;
}

/* Responsive Design for Poll */
@media (max-width: 768px) {
	.poll-container {
		margin: 2rem auto;
		padding: 0 15px;
	}

	.poll-header {
		padding: 1.5rem;
	}

	.poll-header h2 {
		font-size: 1.5rem;
	}

	.poll-content {
		padding: 1.5rem;
	}

	.poll-option {
		padding: 0.8rem 1rem;
		font-size: 0.95rem;
	}

	.result-item {
		flex-direction: column;
		gap: 0.5rem;
		align-items: stretch;
	}

	.result-label {
		flex: none;
		text-align: center;
	}

	.result-percentage {
		flex: none;
		text-align: center;
	}
}

/* Scout's Insights Section */
.scouts-insights-container {
	margin-top: 2rem;
	width: 100%;
	/* min-width: 1200px; */
	max-width: 1166px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scouts-insights-background {
	background-image: url('/laptop.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 12px;
	position: relative;
	min-height: 300px;
	width: 100%;
	overflow: hidden;
	margin-bottom: 24px;
}

.scouts-insights-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
	border-radius: 12px;
}

.scouts-insights-content {
	position: relative;
	z-index: 2;
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.scouts-insights-header {
	margin-bottom: 1.5rem;
}

.scouts-insights-header h2 {
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 0.2rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scouts-insights-header h3 {
	color: #DAA520;
	font-size: 1.4rem;
	font-weight: 400;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.insights-header-inside {
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 1rem;
	border-radius: 8px 8px 0 0;
	margin: -1.5rem -1.5rem -0.5rem -1.5rem;
}

.insights-header-inside h2 {
	color: black;
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 0.2rem;
	font-family: inherit;
}

.insights-header-inside h3 {
	color: #daa520;
	font-size: 1.1rem;
	font-weight: 400;
	margin: 0;
}

.insights-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 1.5rem;
	max-width: 400px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	min-height: 250px;
	height: 100%;
}

.insights-card .card-content h4 {
	background: #daa520;
	color: black;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 1rem;
	display: inline-block;
	font-family: inherit;
}

.insights-card .card-content p {
	color: #333;
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 0.75rem;
}

.insights-card .card-content p:last-child {
	margin-bottom: 0;
}

.insights-tick {
	text-align: center;
	margin: 0.75rem 0 1rem 0;
}

.insights-tick i {
	color: white;
	font-size: 1.2rem;
	background: limegreen;
	padding: 0.5rem;
	border-radius: 50%;
}

/* News Card Link */
.news-card-link {
	text-decoration: none;
	color: inherit;
}

/* ============================================
   SUBSCRIPTION WALL STYLES
   ============================================ */

.subscription-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 999;
	pointer-events: none;
	padding-top: 1rem;
}

.subscription-blur-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	background-color: rgba(0, 0, 0, 0.6);
	pointer-events: auto;
	z-index: 1;
}

.subscription-wall-container {
	position: relative;
	z-index: 2;
	pointer-events: auto;
	max-width: 500px;
	width: 90%;
	margin: 0 auto;
}

.subscription-wall {
	background: linear-gradient(135deg, #1a2c4a 0%, #0f1f35 100%);
	border-radius: 20px;
	padding: 1.5rem;
	border: 1px solid rgba(218, 165, 32, 0.3);
	text-align: center;
	animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.subscription-icon {
	font-size: 3rem;
	color: #DAA520;
	margin-bottom: 0;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.subscription-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.4rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	letter-spacing: -0.5px;
}

.subscription-subtitle {
	font-size: 1rem;
	color: #b0bcc4;
	margin-bottom: 1rem;
	font-weight: 300;
	line-height: 1.5;
}

.card-badge {
	display: inline-block;
	background: linear-gradient(135deg, #DAA520, #FFD700);
	color: #0a1628;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.8rem;
}

.package-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.6rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.package-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 0.8rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.currency {
	font-size: 1.5rem;
	color: #DAA520;
	font-weight: 600;
}

.amount {
	font-size: 3.5rem;
	font-weight: 700;
	color: #FFD700;
	line-height: 1;
}

.period {
	font-size: 1rem;
	color: #b0bcc4;
	font-weight: 400;
}

.features-list {
	list-style: none;
	margin-bottom: 1.2rem;
	text-align: left;
}

.features-list li {
	padding: 0.6rem 0;
	color: #ffffff;
	font-size: 0.95rem;
	border-bottom: 1px solid rgba(218, 165, 32, 0.1);
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.features-list li:last-child {
	border-bottom: none;
}

.features-list li i {
	color: #DAA520;
	font-size: 1rem;
	flex-shrink: 0;
}

.features-list li:hover {
	color: #FFD700;
	padding-left: 0.5rem;
}

.btn-subscribe {
	width: 100%;
	padding: 0.85rem 2rem;
	background: linear-gradient(135deg, #DAA520, #FFD700);
	color: #0a1628;
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 0.6rem;
	text-decoration: none;
}

.btn-subscribe:hover {
	transform: translateY(-3px);

	background: linear-gradient(135deg, #FFD700, #FFF000);
}

.btn-subscribe:active {
	transform: translateY(-1px);
}

.btn-subscribe i {
	font-size: 1.2rem;
}

.subscription-note {
	font-size: 0.85rem;
	color: #b0bcc4;
	font-weight: 300;
	margin-bottom: 0.8rem;
}

.subscription-footer {
	padding-top: 0.8rem;
	/* border-top: 1px solid rgba(218, 165, 32, 0.2); */
}

.subscription-footer p {
	color: #b0bcc4;
	font-size: 0.9rem;
}

.help-link {
	color: #DAA520;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.help-link:hover {
	color: #FFD700;
	text-decoration: underline;
}

/* ============================================
   VIDEO SUBSCRIPTION WALL STYLES (SMALLER)
   ============================================ */

.video-subscription-wall-wrapper {
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 2rem;
}

.video-subscription-blur-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.video-subscription-center {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.video-subscription-content {
	background: linear-gradient(135deg, #1a2c4a 0%, #0f1f35 100%);
	border: 1px solid rgba(218, 165, 32, 0.3);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;

	max-width: 400px;
	width: 90%;
	animation: slideUp 0.5s ease-out;
}

.video-subscription-icon {
	font-size: 3rem;
	color: #DAA520;
	margin-bottom: 1rem;
	animation: float 3s ease-in-out infinite;
}

.video-subscription-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.video-subscription-content p {
	font-size: 0.95rem;
	color: #b0bcc4;
	margin-bottom: 1rem;
	font-weight: 300;
	line-height: 1.4;
}

.video-price-tag {
	font-size: 2.2rem;
	font-weight: 700;
	color: #FFD700;
	margin-bottom: 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.video-price-tag span {
	font-size: 1rem;
	color: #DAA520;
	font-weight: 400;
}

.video-features {
	list-style: none;
	margin-bottom: 1.5rem;
	text-align: left;
}

.video-features li {
	padding: 0.6rem 0;
	color: #ffffff;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 500;
}

.video-features li i {
	color: #DAA520;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.btn-subscribe-video {
	width: 100%;
	padding: 0.8rem 1.5rem;
	background: linear-gradient(135deg, #DAA520, #FFD700);
	color: #0a1628;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;

	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	text-decoration: none;
}

.btn-subscribe-video:hover {

	background: linear-gradient(135deg, #FFD700, #FFF000);
}

.btn-subscribe-video:active {
	transform: translateY(0);
}

.full {
	display: block;
	width: 100%;
}

.footer-stripe-branding {
	text-align: center;
	color: #f5f6f6;
	font-size: 0.9em;
	margin-bottom: 12px;
}

.footer-stripe-branding .payment-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 8px;
}

.footer-stripe-branding .payment-icons i {
	transition: all 0.3s ease;
	cursor: default;
	/* Removed white background for seamless dark mode look */
	padding: 2px 4px;
	/* Optional: subtle text shadow for glow */
	/* text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); */
}

.footer-stripe-branding .payment-icons i:hover {
	/* transform: scale(1.2); */
	/* text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); */
}

.footer-stripe-branding .fa-cc-visa {
	color: #ffffff;
	/* Bright White */
}

.footer-stripe-branding .fa-cc-mastercard {
	color: #ffb74d;
	/* Light Orange */
}

.footer-stripe-branding .fa-cc-amex {
	color: #4fc3f7;
	/* Light Cyan */
}

.footer-stripe-branding .stripe-logo-icon {
	color: #6772e5;
	vertical-align: middle;
	/* transition: transform 0.2s ease; */
}

.footer-stripe-branding .stripe-logo-icon:hover {
	/* transform: scale(1.05); */
}