:root {
	--green: #16A34A;
	--dark: #111827;
	--text: #0B1220;
	--white: #FFFFFF;
	--muted: #6B7280;
	--bg: #F5F7FB;
	--card: #FFFFFF;
	--border: rgba(17,24,39,.12);
	--shadow: 0 8px 24px rgba(17,24,39,.08);
	--radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	font-size: 16px;
}
img { max-width: 100%; display: block; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.hidden { display: none !important; }

/* Preloader */
#preloader { position: fixed; inset: 0; background: var(--bg); display: grid; place-items: center; z-index: 1000; }
#preloader .ball { width: 48px; height: 48px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(22,163,74,.25) inset; animation: kick 1s infinite ease-in-out; }
@keyframes kick { 0%,100%{ transform: translateY(0) scale(1); } 50%{ transform: translateY(-14px) scale(1.06); } }

/* Navbar */
.navbar { 
	position: sticky; 
	top: 0; 
	background: rgba(255,255,255,.95); 
	backdrop-filter: blur(20px); 
	border-bottom: 1px solid var(--border); 
	z-index: 1000; 
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-inner { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	gap: 24px; 
	padding: 16px 0; 
}

.logo { 
	font-family: 'Poppins', sans-serif; 
	font-weight: 700; 
	color: var(--dark); 
	text-decoration: none; 
	font-size: 1.4rem; 
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-links { 
	display: flex; 
	align-items: center; 
	gap: 32px; 
	flex: 1;
	justify-content: center;
}

.nav-links a { 
	color: var(--dark); 
	text-decoration: none; 
	font-weight: 500;
	font-size: 1rem;
	transition: all .2s ease;
	position: relative;
	padding: 8px 0;
}

.nav-links a:hover { 
	color: var(--green); 
	transform: translateY(-1px);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--green);
	transition: width .3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-actions { 
	display: flex; 
	align-items: center; 
	gap: 16px; 
}

.search { 
	display: flex; 
	align-items: center; 
	background: #F1F5F9; 
	border: 1px solid var(--border); 
	border-radius: 999px; 
	padding: 6px; 
	transition: .3s; 
}

.search input { 
	width: 0; 
	border: 0; 
	outline: none; 
	background: transparent; 
	color: var(--dark); 
	padding: 6px 0; 
	transition: width .3s; 
	font-size: 0.95rem;
}

.search:focus-within input { 
	width: 180px; 
	padding: 6px 12px; 
}

.search button { 
	background: transparent; 
	border: 0; 
	color: var(--dark); 
	cursor: pointer; 
	padding: 6px 8px; 
	transition: color .2s ease;
}

.search button:hover {
	color: var(--green);
}

.cart { 
	display: inline-flex; 
	align-items: center; 
	gap: 6px; 
	color: var(--dark); 
	text-decoration: none; 
	position: relative; 
	padding: 8px;
	border-radius: 8px;
	transition: all .2s ease;
}

.cart:hover {
	background: rgba(22,163,74,0.1);
	color: var(--green);
}

.cart .badge { 
	position: absolute; 
	top: -2px; 
	right: -2px; 
	background: var(--green); 
	color: white; 
	border-radius: 999px; 
	padding: 2px 6px; 
	font-size: 11px; 
	font-weight: 700; 
	min-width: 18px;
	text-align: center;
}



	.hamburger { 
		display: none; 
		background: transparent; 
		border: 0; 
		cursor: pointer; 
		padding: 8px;
		border-radius: 8px;
		transition: all .2s ease;
		position: relative;
		z-index: 1001;
	}

.hamburger:hover {
	background: rgba(22,163,74,0.1);
}

.hamburger span { 
	display: block; 
	width: 24px; 
	height: 2px; 
	background: var(--dark); 
	margin: 5px 0; 
	transition: .3s; 
	border-radius: 1px;
}

.nav-close { 
	display: none; 
}

.btn { border-radius: var(--radius); padding: 10px 16px; border: 1px solid transparent; cursor: pointer; text-decoration: none; display: inline-block; font-weight: 600; font-size: 1rem; }
.btn-primary { background: var(--green); color: #06240f; box-shadow: var(--shadow); border-color: transparent; }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(22,163,74,0.9) 0%, rgba(0,0,0,0.8) 100%);
	z-index: 2;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	color: white;
}

.hero-text h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	margin: 0 0 24px;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	margin: 0 0 40px;
	line-height: 1.6;
	opacity: 0.95;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.hero-stats .stat-item {
	text-align: center;
	padding: 20px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 16px;
}

.hero-stats .stat-item i {
	font-size: 2rem;
	color: #22c55e;
	margin-bottom: 8px;
	display: block;
}

.hero-stats .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.hero-stats .stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
}

.hero-actions {
	display: flex;
	gap: 20px;
}

.btn-large {
	padding: 18px 36px;
	font-size: 1.1rem;
	font-weight: 600;
}

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

.hero-card {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.match-preview {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	text-align: center;
}

.team img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 12px;
	border: 3px solid rgba(255,255,255,0.3);
}

.team span {
	display: block;
	font-weight: 600;
	font-size: 1.1rem;
}

.match-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.match-time {
	font-size: 0.9rem;
	opacity: 0.8;
}

.vs {
	font-size: 1.5rem;
	font-weight: 700;
	color: #22c55e;
}

.match-venue {
	font-size: 0.8rem;
	opacity: 0.7;
}

/* Quick Links Section */
.quick-links-section {
	padding: 80px 0;
	background: var(--bg);
}

.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.quick-link-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
}

.quick-link-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
	border-color: var(--green);
}

.quick-link-card .card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: white;
	font-size: 2rem;
}

.quick-link-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 16px;
}

.quick-link-card p {
	color: #6b7280;
	margin: 0 0 24px;
	line-height: 1.6;
}

.card-preview {
	background: rgba(22,163,74,0.05);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 24px;
}

.preview-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(22,163,74,0.1);
}

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

.preview-item .time,
.preview-item .player-name,
.preview-item .product {
	font-weight: 600;
	color: var(--dark);
}

.preview-item .teams,
.preview-item .stats,
.preview-item .price {
	color: var(--green);
	font-weight: 500;
}

/* Featured Matches Section */
.featured-matches-section {
	padding: 80px 0;
	background: white;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.view-all-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	text-decoration: none;
	font-weight: 600;
	transition: all .2s ease;
}

.view-all-link:hover {
	color: #15803d;
	transform: translateX(4px);
}

.featured-matches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
}

.match-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 24px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
}

.match-card.featured {
	border-color: var(--green);
	box-shadow: 0 20px 40px rgba(22,163,74,0.15);
}

.match-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.match-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.competition {
	background: var(--green);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.match-date {
	color: #6b7280;
	font-size: 0.9rem;
}

.match-teams {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
	margin-bottom: 20px;
}

.team {
	text-align: center;
}

.team img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
	border: 2px solid var(--border);
}

.team span {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--dark);
}

.vs {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--green);
}

.match-venue {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.match-actions {
	display: flex;
	gap: 12px;
}

.btn-small {
	padding: 10px 16px;
	font-size: 0.9rem;
}

/* News Section */
.news-section {
	padding: 80px 0;
	background: var(--bg);
}

.news-filters {
	display: flex;
	gap: 12px;
}

.filter-btn {
	padding: 10px 20px;
	background: white;
	border: 1px solid var(--border);
	border-radius: 25px;
	color: #6b7280;
	font-weight: 500;
	cursor: pointer;
	transition: all .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--green);
	color: white;
	border-color: var(--green);
}

/* Statistics Overview Section */
.stats-overview-section {
	padding: 80px 0;
	background: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.stat-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 24px;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	flex-shrink: 0;
}

.stat-content {
	flex: 1;
}

.stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
}

.stat-label {
	color: #6b7280;
	font-size: 1rem;
	margin-bottom: 12px;
}

.stat-change {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 500;
}

.stat-change.positive {
	color: #16a34a;
}

.stat-change.negative {
	color: #dc2626;
}

.stat-change.neutral {
	color: #6b7280;
}

/* Call to Action Section */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--green), #22c55e);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 24px;
}

.cta-content p {
	font-size: 1.2rem;
	margin: 0 0 40px;
	opacity: 0.9;
}

.cta-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.cta-actions .btn-outline {
	border-color: white;
	color: white;
}

.cta-actions .btn-outline:hover {
	background: white;
	color: var(--green);
}

/* Responsive Design for Home Page */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.hero-text h1 {
		font-size: 3rem;
	}
	
	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.quick-links-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	.featured-matches-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	.stats-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (max-width: 768px) {
	.hero-text h1 {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.hero-actions .btn {
		width: 100%;
		max-width: 300px;
	}
	
	.section-header {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.news-filters {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.cta-content h2 {
		font-size: 2.2rem;
	}
	
	.cta-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-actions .btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.hero-card {
		padding: 24px;
	}
	
	.match-preview {
		gap: 16px;
	}
	
	.team img {
		width: 60px;
		height: 60px;
	}
	
	.quick-links-grid {
		grid-template-columns: 1fr;
	}
	
	.featured-matches-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-card {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.cta-content h2 {
		font-size: 1.8rem;
	}
}

/* Sections */
.section { padding: 56px 0; }
.section h2 { font-family: 'Poppins', sans-serif; font-size: 2.2rem; margin: 0 0 20px; color: var(--dark); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); }
.card h3, .card h4 { font-family: 'Poppins', sans-serif; font-size: 1.3rem; margin: 0 0 12px; }
.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 24px 0; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* Table */
.table-responsive { overflow-x: auto; background: #ffffff; border: 1px solid var(--border); border-radius: 12px; }
.table { width: 100%; border-collapse: collapse; min-width: 640px; }
.table th, .table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 1rem; }
.table th { color: #1f2937; font-weight: 600; background: #f8fafc; }
.leaderboard tbody tr:nth-child(1) td { background: linear-gradient(90deg, #fde68a 0, transparent 60%); }
.leaderboard tbody tr:nth-child(2) td { background: linear-gradient(90deg, #e5e7eb 0, transparent 60%); }
.leaderboard tbody tr:nth-child(3) td { background: linear-gradient(90deg, #fcd34d 0, transparent 60%); opacity: .7; }

/* Forms */
.form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.form label { display: grid; gap: 6px; font-size: 1rem; color: #1f2937; }
.form input, .form textarea, select { background: #ffffff; color: var(--dark); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; font-size: 1rem; }
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin: 10px 0 16px; }

/* Tabs */
.tabs { display: flex; gap: 10px; margin-bottom: 12px; }
.tabs button { background: #ffffff; color: var(--dark); border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px; cursor: pointer; }
.tabs button[aria-selected="true"] { background: var(--green); color: #06240f; border-color: transparent; }
.panel.hidden { display: none; }

/* Footer */
.footer { background: #ffffff; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px 0; }
.footer-links { display: grid; gap: 6px; }
.copy { text-align: center; color: #475569; padding: 10px 0 24px; margin: 0; }
.socials { display: flex; gap: 12px; }

/* Toast */
#toast { position: fixed; bottom: 20px; right: 20px; background: #111827; color: white; padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); transition: .3s; }
#toast.show { opacity: 1; transform: translateY(0); }

/* Animations */
[data-animate] { opacity: 0; transform: translateY(12px); transition: .6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1200px) {
	.container { width: 95%; }
	.hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
	.section h2 { font-size: 1.8rem; }
}

@media (max-width: 1024px) {
	.quick-links { grid-template-columns: 1fr 1fr; }
	.grid-2 { grid-template-columns: 1fr; }
	.shop-layout { grid-template-columns: 1fr; }
	.shop-sidebar { position: static; margin-bottom: 20px; }
	.footer-inner { grid-template-columns: 1fr; gap: 16px; }
	.section { padding: 48px 0; }
}

@media (max-width: 768px) {
	.nav-links { position: fixed; inset: 0 0 0 35%; background: #ffffff; flex-direction: column; padding: 24px; transform: translateX(100%); transition: .3s; border-left: 1px solid var(--border); }
	.nav-links.open { transform: translateX(0); }
	.nav-close { display: block; align-self: flex-end; background: transparent; border: 0; color: var(--dark); font-size: 2rem; }
	.hamburger { display: inline-block; }
	.search:focus-within input { width: 120px; }
	.quick-links { grid-template-columns: 1fr; }
	.hero { padding: 60px 0; }
	.hero h1 { font-size: 2rem; }
	.hero p { font-size: 1rem; }
	.section h2 { font-size: 1.6rem; }
	.grid-cards { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
	.card { padding: 16px; }
	.table-responsive { margin: 0 -16px; }
	.filters { flex-direction: column; }
	.filters select { width: 100%; }
	.shop-header { flex-direction: column; gap: 12px; align-items: flex-start; }
	.shop-sidebar { padding: 16px; }
	.filter-section { margin-bottom: 20px; }
	.price-range { gap: 8px; }
	.category-filters { gap: 6px; }
	.btn { padding: 8px 12px; font-size: 0.9rem; }
	.form { padding: 16px; }
	.form input, .form textarea, select { padding: 8px 10px; }
}

@media (max-width: 480px) {
	.container { width: 98%; }
	.hero { padding: 40px 0; }
	.hero h1 { font-size: 1.8rem; }
	.section { padding: 32px 0; }
	.section h2 { font-size: 1.4rem; margin-bottom: 12px; }
	.grid-cards { grid-template-columns: 1fr; gap: 12px; }
	.card { padding: 12px; }
	.nav-links { inset: 0 0 0 20%; }
	.search:focus-within input { width: 100px; }
	.shop-sidebar { padding: 12px; }
	.filter-section h3 { font-size: 1rem; }
	.filter-section select { padding: 8px 10px; font-size: 0.9rem; }
	.price-labels { font-size: 0.8rem; }
	.category-filters label { font-size: 0.9rem; }
	.btn { padding: 6px 10px; font-size: 0.85rem; }
	.form { padding: 12px; }
	.form input, .form textarea, select { padding: 6px 8px; font-size: 0.9rem; }
	.table th, .table td { padding: 8px 10px; font-size: 0.9rem; }
	.footer-inner { padding: 16px 0; }
	.copy { padding: 8px 0 16px; font-size: 0.9rem; }
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
	/* Improve touch targets */
	.nav-links a { padding: 12px 0; font-size: 1.1rem; }
	.btn { min-height: 44px; }
	.filter-section select { min-height: 44px; }
	.category-filters label { padding: 8px 0; }
	
	/* Better spacing for mobile */
	.section { padding: 40px 0; }
	.quick-links { padding: 16px 0; }
	.news-grid { gap: 16px; }
	
	/* Mobile-friendly tables */
	.table-responsive { border-radius: 8px; }
	.table { min-width: 500px; }
	.table th, .table td { padding: 10px 8px; }
	
	/* Mobile cart items */
	.cart-item { grid-template-columns: 1fr; gap: 12px; }
	.cart-item img { width: 100%; height: 120px; }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
	.grid-cards { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
	.shop-layout { gap: 20px; }
	.shop-sidebar { width: 240px; }
	.hero h1 { font-size: 2.2rem; }
	.section h2 { font-size: 1.9rem; }
}

#cart-list.grid-cards { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.cart-item { display: grid; grid-template-columns: 140px 1fr 120px; gap: 18px; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 16px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.cart-item:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,24,39,.12); }
.cart-item img { width: 140px; height: 140px; object-fit: cover; border-radius: 16px; box-shadow: 0 8px 18px rgba(0,0,0,.08); }
.cart-item .meta { display: grid; gap: 8px; }
.cart-item .meta strong { font-size: 1.1rem; }
.cart-item .price { font-weight: 800; color: #0b1220; font-size: 1rem; }
.cart-item .remove { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; border-radius: 12px; padding: 10px 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: .2s; }
.cart-item .remove:hover { background: #ef4444; color: #fff; border-color: #ef4444; transform: translateY(-1px); box-shadow: 0 10px 18px rgba(239,68,68,.35); }

.cart-item-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-end;
}

.qty-btn {
	width: 32px;
	height: 32px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	border-radius: 6px;
}

.qty-display {
	font-weight: 600;
	color: var(--text);
	text-align: center;
	min-width: 20px;
}



@media (max-width: 640px) {
	.cart-item { grid-template-columns: 1fr; }
	.cart-item img { width: 100%; height: 180px; }
	.cart-item-actions {
		flex-direction: row;
		justify-content: center;
		margin-top: 12px;
	}
}

.profile { position: relative; }
.profile-trigger { background: transparent; border: 1px solid var(--border); border-radius: 999px; padding: 6px 10px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.dropdown { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 8px; display: none; min-width: 160px; box-shadow: var(--shadow); }
.dropdown.open { display: block; }
.dropdown li { list-style: none; }
.dropdown a, .dropdown button { width: 100%; text-align: left; background: transparent; border: 0; padding: 8px 10px; cursor: pointer; color: var(--dark); text-decoration: none; } 

/* Typography and spacing */
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
p { font-size: 1.05rem; }
.section { padding: 68px 0; }

/* Navbar polish */
.navbar { 
	box-shadow: 0 8px 24px rgba(17,24,39,.04); 
	position: sticky; 
	top: 0; 
	z-index: 999; 
	background: rgba(255,255,255,.95); 
	backdrop-filter: blur(10px);
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
}
.nav-inner { padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.search { background: #F8FAFC; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(17,24,39,.06) inset; }
.search button { color: var(--dark); }
.search button i { font-size: 14px; }
.profile-trigger { background: #F8FAFC; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(17,24,39,.06) inset; }
.dropdown { border-radius: 14px; }
.dropdown a:hover, .dropdown button:hover { background: #F1F5F9; border-radius: 8px; }

/* Enhanced mobile navigation */
.hamburger { 
	display: none; 
	background: transparent; 
	border: 0; 
	cursor: pointer; 
	padding: 8px; 
	border-radius: 8px; 
	transition: background .2s ease;
	width: 40px;
	height: 40px;
	position: relative;
}
.hamburger:hover { background: rgba(0,0,0,.05); }
.hamburger span { 
	display: block; 
	width: 24px; 
	height: 2px; 
	background: var(--dark); 
	margin: 5px 0; 
	transition: .3s ease; 
	border-radius: 1px;
	position: absolute;
	left: 8px;
}
.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 24px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.nav-close { display: none; background: transparent; border: 0; color: var(--dark); font-size: 1.5rem; cursor: pointer; padding: 8px; border-radius: 8px; transition: background .2s ease; }
.nav-close:hover { background: rgba(0,0,0,.05); }

/* Mobile nav overlay */
@media (max-width: 768px) {
	.navbar { 
		position: fixed; 
		top: 0; 
		left: 0; 
		right: 0; 
		z-index: 1000; 
		background: rgba(255,255,255,.98);
	}
	.nav-links { 
		position: fixed; 
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255,255,255,.98); 
		backdrop-filter: blur(10px);
		flex-direction: column; 
		padding: 80px 24px 24px; 
		transform: translateX(100%); 
		transition: transform .3s ease; 
		z-index: 1001;
		overflow-y: auto;
		display: flex;
		visibility: hidden;
		justify-content: flex-start;
		align-items: stretch;
		height: 100vh;
		max-height: 100vh;
	}
	.nav-links.open { 
		transform: translateX(0); 
		visibility: visible;
	}
	.nav-links a { 
		padding: 16px 0; 
		font-size: 1.2rem; 
		font-weight: 500;
		border-bottom: 1px solid rgba(0,0,0,.08);
		transition: all .2s ease;
		display: block;
		text-decoration: none;
		color: var(--dark);
		text-align: left;
		width: 100%;
		margin: 0;
	}
	.nav-links a:hover { 
		color: var(--green); 
		background: rgba(22,163,74,.05);
		margin: 0 -24px;
		padding-left: 24px;
		padding-right: 24px;
		transform: translateX(8px);
	}
	.nav-close { 
		display: block; 
		position: absolute;
		top: 20px;
		right: 20px;
		z-index: 1002;
		background: transparent;
		border: none;
		font-size: 2rem;
		cursor: pointer;
		color: var(--dark);
		padding: 8px;
		border-radius: 8px;
		transition: background .2s ease;
	}
	.nav-close:hover {
		background: rgba(0,0,0,.05);
	}
	.hamburger { display: inline-block; }
	.nav-actions { gap: 12px; }
	.search { display: none; }
	.profile { display: inline-block; }
	main { margin-top: 80px; }
}

@media (max-width: 480px) {
	.nav-links { 
		padding: 90px 20px 30px; 
	}
	.nav-links a { 
		font-size: 1.2rem; 
		padding: 16px 0; 
	}
	.nav-close { 
		top: 16px; 
		right: 16px; 
		font-size: 1.8rem; 
	}
	.hamburger span { width: 22px; }
	.nav-inner { padding: 12px 0; }
	.logo { font-size: 1.1rem; }
	.hamburger { display: inline-block; }
	.nav-actions { gap: 12px; }
	.search { display: none; }
	main { margin-top: 80px; }
}

/* Footer polish */
.footer { background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FB 100%); border-top: 1px solid var(--border); }
.footer-inner { grid-template-columns: 2fr 1fr; align-items: start; }
.footer h4 { margin: 0 0 10px; color: var(--dark); }
.footer-links a { color: #1f2937; text-decoration: none; position: relative; }
.footer-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--green); transition: width .25s ease; }
.footer-links a:hover::after { width: 100%; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 10px; color: var(--dark); text-decoration: none; }

/* Summary bar (cart) */
.summary-bar { display:flex; justify-content:space-between; align-items:center; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow); }
.summary-bar strong { font-size: 1.05rem; }

/* Buttons micro-polish */
.btn { transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(22,163,74,.25); } 

/* Shop cards enhancement */
#shop-grid .card { padding: 16px; }
#shop-grid .card h4 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; margin: 0 0 8px; }
#shop-grid .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
#shop-grid .card .price { font-size: 1.1rem; font-weight: 700; color: var(--green); }
#shop-grid .card .category { font-size: 0.95rem; color: #475569; margin-bottom: 12px; }
#shop-grid .card .btn { font-size: 0.95rem; padding: 8px 12px; } 

/* Shop layout with sidebar */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.shop-sidebar { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; height: fit-content; position: sticky; top: 100px; }
.filter-section { margin-bottom: 24px; }
.filter-section h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; margin: 0 0 12px; color: var(--dark); }
.filter-section:last-child { margin-bottom: 0; }

/* Sort By section enhancement */
.filter-section select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: #ffffff; color: var(--dark); font-size: 0.95rem; cursor: pointer; transition: border-color .2s ease; }
.filter-section select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.1); }
.filter-section select:hover { border-color: #9ca3af; }

/* Price range sliders */
.price-range { display: grid; gap: 12px; }
.price-range input[type="range"] { width: 100%; height: 6px; border-radius: 3px; background: #e5e7eb; outline: none; }
.price-range input[type="range"]::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--green); cursor: pointer; }
.price-labels { display: flex; justify-content: space-between; font-size: 0.9rem; color: #6b7280; }

/* Category filters */
.category-filters { display: grid; gap: 8px; }
.category-filters label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.95rem; }
.category-filters input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); }

/* Quick Actions buttons */
.filter-section:last-child { display: grid; gap: 12px; }
.filter-section:last-child .btn { width: 100%; }

/* Shop main area */
.shop-main { display: grid; gap: 16px; }
.shop-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.results-count { font-size: 0.95rem; color: #6b7280; }
.view-toggle { display: flex; gap: 8px; }
.view-btn { background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; cursor: pointer; color: #6b7280; }
.view-btn.active { background: var(--green); color: white; border-color: var(--green); }

/* Responsive shop layout */
@media (max-width: 1024px) {
	.shop-layout { grid-template-columns: 1fr; }
	.shop-sidebar { position: static; }
}
@media (max-width: 768px) {
	.shop-header { flex-direction: column; gap: 12px; align-items: flex-start; }
} 

/* Profile dropdown mobile styles */
@media (max-width: 768px) {
	.profile { 
		position: relative; 
		display: inline-block; 
	}
	.profile-trigger { 
		padding: 8px 12px; 
		font-size: 0.9rem; 
		min-width: auto;
	}
	.dropdown { 
		position: absolute; 
		top: 100%; 
		right: 0; 
		background: white; 
		border: 1px solid var(--border); 
		border-radius: 12px; 
		box-shadow: 0 10px 25px rgba(0,0,0,.1); 
		padding: 8px; 
		min-width: 140px; 
		z-index: 1003;
		display: none;
	}
	.dropdown.open { 
		display: block; 
	}
	.dropdown a, .dropdown button { 
		display: block; 
		width: 100%; 
		padding: 10px 12px; 
		text-align: left; 
		background: none; 
		border: none; 
		color: var(--dark); 
		text-decoration: none; 
		font-size: 0.9rem; 
		cursor: pointer; 
		border-radius: 6px; 
		transition: background .2s ease; 
	}
	.dropdown a:hover, .dropdown button:hover { 
		background: #F1F5F9; 
	}
}

/* Cart Page Styles */
.cart-hero {
	background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
	color: white;
	padding: 60px 0;
	border-radius: 24px;
	margin-bottom: 40px;
	text-align: center;
}

.cart-hero-content {
	max-width: 600px;
	margin: 0 auto;
}

.cart-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 16px;
	font-family: 'Poppins', sans-serif;
}

.cart-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 32px;
}

.cart-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
}

.cart-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.cart-stat i {
	font-size: 2rem;
	opacity: 0.8;
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
}

.stat-label {
	font-size: 0.9rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cart-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 40px;
	align-items: start;
}

.cart-items-section {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}

.cart-header h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark);
}

.cart-items-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cart-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: #f8fafc;
	border-radius: 16px;
	border: 2px solid transparent;
	transition: all .3s ease;
}

.cart-item:hover {
	border-color: var(--green);
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.cart-item img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cart-item-details {
	flex: 1;
}

.cart-item-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.cart-item-category {
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cart-item-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--green);
}

.cart-item-remove {
	background: #ef4444;
	color: white;
	border: none;
	padding: 12px 16px;
	border-radius: 12px;
	cursor: pointer;
	transition: all .2s ease;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.cart-item-remove:hover {
	background: #dc2626;
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(239,68,68,0.3);
}

.empty-cart {
	text-align: center;
	padding: 60px 20px;
}

.empty-cart-icon {
	font-size: 4rem;
	color: #cbd5e1;
	margin-bottom: 24px;
}

.empty-cart h3 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 16px;
}

.empty-cart p {
	color: #64748b;
	margin-bottom: 32px;
	font-size: 1.1rem;
}

.cart-summary {
	position: sticky;
	top: 100px;
}

.summary-card {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
}

.summary-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 24px;
	text-align: center;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	font-size: 1.1rem;
}

.summary-row.total {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--green);
	border-top: 2px solid #f1f5f9;
	padding-top: 16px;
	margin-top: 16px;
}

.summary-divider {
	border: none;
	height: 1px;
	background: #e2e8f0;
	margin: 20px 0;
}

.summary-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 24px 0;
}

.payment-methods {
	text-align: center;
	padding-top: 24px;
	border-top: 2px solid #f1f5f9;
}

.payment-methods p {
	color: #64748b;
	margin-bottom: 16px;
	font-size: 0.9rem;
}

.payment-icons {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.payment-icons i {
	font-size: 2rem;
	color: #64748b;
	transition: color .2s ease;
}

.payment-icons i:hover {
	color: var(--green);
}

/* Responsive Cart */
@media (max-width: 1024px) {
	.cart-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.cart-summary {
		position: static;
	}
}

@media (max-width: 768px) {
	.cart-hero {
		padding: 40px 20px;
		border-radius: 16px;
		margin-bottom: 32px;
	}
	
	.cart-title {
		font-size: 2.5rem;
	}
	
	.cart-stats {
		gap: 32px;
	}
	
	.cart-items-section {
		padding: 24px 20px;
		border-radius: 16px;
	}
	
	.cart-header {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	
	.cart-item {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}
	
	.cart-item img {
		width: 120px;
		height: 120px;
	}
	
	.summary-card {
		padding: 24px 20px;
		border-radius: 16px;
	}
}

@media (max-width: 480px) {
	.cart-hero {
		padding: 32px 16px;
	}
	
	.cart-title {
		font-size: 2rem;
	}
	
	.cart-stats {
		flex-direction: column;
		gap: 24px;
	}
	
	.cart-items-section {
		padding: 20px 16px;
	}
	
	.summary-card {
		padding: 20px 16px;
	}
}

/* Profile Page Styles */
.profile-hero {
	background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
	color: white;
	padding: 60px 0;
	border-radius: 24px;
	margin-bottom: 40px;
	text-align: center;
}

.profile-hero-content {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 40px;
}

.profile-avatar {
	position: relative;
}

.avatar-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid rgba(255,255,255,0.3);
	object-fit: cover;
}

.avatar-edit-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	background: white;
	color: var(--green);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	transition: all .2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avatar-edit-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.profile-info {
	flex: 1;
	text-align: left;
}

.profile-name {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 8px;
	font-family: 'Poppins', sans-serif;
}

.profile-email {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 24px;
}

.profile-stats {
	display: flex;
	gap: 32px;
}

.profile-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.profile-stat i {
	font-size: 1.5rem;
	opacity: 0.8;
}

.profile-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 40px;
	align-items: start;
}

.profile-sidebar {
	background: white;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
	height: fit-content;
	position: sticky;
	top: 100px;
}

.profile-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.profile-nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--dark);
	transition: all .2s ease;
	cursor: pointer;
}

.profile-nav-item:hover {
	background: rgba(22,163,74,0.1);
	color: var(--green);
}

.profile-nav-item.active {
	background: var(--green);
	color: white;
}

.profile-nav-item i {
	font-size: 1.2rem;
}

.profile-main {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
}

.profile-section {
	display: block;
}

.section-header {
	margin-bottom: 32px;
	text-align: center;
}

.section-header h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
}

.section-header p {
	color: #64748b;
	font-size: 1.1rem;
}

.profile-form {
	max-width: 800px;
	margin: 0 auto;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	display: block;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
	font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all .2s ease;
	background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
}

/* Orders Section */
.orders-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.order-card {
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all .2s ease;
}

.order-card:hover {
	border-color: var(--green);
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.order-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.order-info h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.order-date {
	color: #64748b;
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.order-status {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.order-status.delivered {
	background: #dcfce7;
	color: #166534;
}

.order-status.processing {
	background: #fef3c7;
	color: #92400e;
}

.order-total {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--green);
}

.order-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.order-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: white;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.order-item img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
}

.item-details {
	flex: 1;
}

.item-details h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 4px;
}

.item-details p {
	color: #64748b;
	font-size: 0.9rem;
}

.item-price {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--green);
}

/* Favorites Section */
.favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.favorite-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	transition: all .2s ease;
}

.favorite-card:hover {
	border-color: var(--green);
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.favorite-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.favorite-content {
	padding: 20px;
}

.favorite-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.favorite-price {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 16px;
}

.favorite-actions {
	display: flex;
	gap: 12px;
}

/* Addresses Section */
.addresses-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.address-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all .2s ease;
}

.address-card:hover {
	border-color: var(--green);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.address-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.address-header h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
}

.address-type {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.address-type.primary {
	background: var(--green);
	color: white;
}

.address-type {
	background: #f1f5f9;
	color: #64748b;
}

.address-content p {
	color: #64748b;
	margin-bottom: 4px;
}

.address-actions {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.add-address-btn {
	width: 100%;
	text-align: center;
	margin-top: 16px;
}

/* Settings Section */
.settings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.setting-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all .2s ease;
}

.setting-card:hover {
	border-color: var(--green);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.setting-header {
	margin-bottom: 20px;
}

.setting-header h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.setting-header p {
	color: #64748b;
	font-size: 0.9rem;
}

/* Responsive Profile */
@media (max-width: 1024px) {
	.profile-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.profile-sidebar {
		position: static;
	}
}

@media (max-width: 768px) {
	.profile-hero {
		padding: 40px 20px;
		border-radius: 16px;
	}
	
	.profile-hero-content {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}
	
	.profile-name {
		font-size: 2rem;
	}
	
	.profile-stats {
		justify-content: center;
	}
	
	.profile-main {
		padding: 24px 20px;
	}
	
	.form-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.form-actions {
		flex-direction: column;
	}
	
	.favorites-grid {
		grid-template-columns: 1fr;
	}
	
	.settings-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.profile-hero {
		padding: 32px 16px;
	}
	
	.profile-name {
		font-size: 1.8rem;
	}
	
	.profile-stats {
		flex-direction: column;
		gap: 20px;
	}
	
	.profile-main {
		padding: 20px 16px;
	}
	
	.profile-sidebar {
		padding: 20px 16px;
	}
}

/* Settings Page Styles */
.settings-hero {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: white;
	padding: 60px 0;
	border-radius: 24px;
	margin-bottom: 40px;
	text-align: center;
}

.settings-hero-content {
	max-width: 600px;
	margin: 0 auto;
}

.settings-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 16px;
	font-family: 'Poppins', sans-serif;
}

.settings-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 32px;
}

.settings-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 40px;
	align-items: start;
}

.settings-sidebar {
	background: white;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
	height: fit-content;
	position: sticky;
	top: 100px;
}

.settings-nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.settings-nav-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--dark);
	transition: all .2s ease;
	cursor: pointer;
}

.settings-nav-item:hover {
	background: rgba(99,102,241,0.1);
	color: #6366f1;
}

.settings-nav-item.active {
	background: #6366f1;
	color: white;
}

.settings-nav-item i {
	font-size: 1.2rem;
}

.settings-main {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
}

.settings-section {
	display: block;
}

.settings-form {
	max-width: 800px;
	margin: 0 auto;
}

/* Security Settings */
.security-settings {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.security-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all .2s ease;
}

.security-card:hover {
	border-color: #6366f1;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.security-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.security-info h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.security-info p {
	color: #64748b;
	font-size: 0.9rem;
}

/* Notification Settings */
.notification-settings {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.notification-group h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 20px;
}

.notification-options {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.notification-option {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	cursor: pointer;
	padding: 16px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	transition: all .2s ease;
}

.notification-option:hover {
	border-color: #6366f1;
	background: rgba(99,102,241,0.05);
}

.notification-option input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: #6366f1;
	margin-top: 2px;
}

.option-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 4px;
}

.option-content p {
	color: #64748b;
	font-size: 0.9rem;
}

/* Privacy Settings */
.privacy-settings {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.privacy-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all .2s ease;
}

.privacy-card:hover {
	border-color: #6366f1;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.privacy-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.privacy-info h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.privacy-info p {
	color: #64748b;
	font-size: 0.9rem;
}

.privacy-select {
	padding: 8px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	background: white;
	color: var(--dark);
	font-size: 0.9rem;
}

/* Toggle Switch */
.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .slider {
	background-color: #6366f1;
}

input:checked + .slider:before {
	transform: translateX(26px);
}

/* Billing Settings */
.billing-settings {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.billing-card {
	background: white;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	transition: all .2s ease;
}

.billing-card:hover {
	border-color: #6366f1;
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.billing-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.billing-header h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
}

.payment-methods-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.payment-method {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

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

.payment-info i {
	font-size: 1.5rem;
	color: #6366f1;
}

.billing-address p {
	color: #64748b;
	margin-bottom: 4px;
}

/* Preferences Settings */
.preferences-settings {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.preference-group h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 20px;
}

.preference-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.preference-option label {
	display: block;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
	font-size: 1rem;
}

.preference-option select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 1rem;
	transition: all .2s ease;
	background: white;
}

.preference-option select:focus {
	outline: none;
	border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}

/* Responsive Settings */
@media (max-width: 1024px) {
	.settings-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.settings-sidebar {
		position: static;
	}
}

@media (max-width: 768px) {
	.settings-hero {
		padding: 40px 20px;
		border-radius: 16px;
	}
	
	.settings-title {
		font-size: 2.5rem;
	}
	
	.settings-main {
		padding: 24px 20px;
	}
	
	.preference-options {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.settings-hero {
		padding: 32px 16px;
	}
	
	.settings-title {
		font-size: 2rem;
	}
	
	.settings-main {
		padding: 20px 16px;
	}
	
	.settings-sidebar {
		padding: 20px 16px;
	}
}

/* Logout Page Styles */
.logout-hero {
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: white;
	padding: 60px 0;
	border-radius: 24px;
	margin-bottom: 40px;
	text-align: center;
}

.logout-hero-content {
	max-width: 600px;
	margin: 0 auto;
}

.logout-icon {
	font-size: 4rem;
	margin-bottom: 24px;
	opacity: 0.9;
}

.logout-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 16px;
	font-family: 'Poppins', sans-serif;
}

.logout-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 32px;
}

.logout-content {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.logout-card {
	background: white;
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
	text-align: center;
}

.logout-info {
	margin-bottom: 32px;
}

.logout-info h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 24px;
}

.session-details {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 400px;
	margin: 0 auto;
}

.session-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.session-item i {
	color: #6366f1;
	font-size: 1.2rem;
}

.session-item span {
	color: var(--dark);
	font-weight: 500;
}

.logout-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 24px;
}

.logout-note {
	padding: 16px;
	background: #fef3c7;
	border: 1px solid #f59e0b;
	border-radius: 12px;
	color: #92400e;
}

.logout-note i {
	margin-right: 8px;
}

.logout-benefits h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 24px;
	text-align: center;
}

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

.benefit-item {
	background: white;
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border: 2px solid #f1f5f9;
	transition: all .2s ease;
}

.benefit-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	border-color: var(--green);
}

.benefit-item i {
	font-size: 2.5rem;
	color: var(--green);
	margin-bottom: 16px;
}

.benefit-item h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 12px;
}

.benefit-item p {
	color: #64748b;
	line-height: 1.6;
}

/* Responsive Logout */
@media (max-width: 768px) {
	.logout-hero {
		padding: 40px 20px;
		border-radius: 16px;
	}
	
	.logout-title {
		font-size: 2.5rem;
	}
	
	.logout-card {
		padding: 24px 20px;
		border-radius: 16px;
	}
	
	.logout-actions {
		flex-direction: column;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.logout-hero {
		padding: 32px 16px;
	}
	
	.logout-title {
		font-size: 2rem;
	}
	
	.logout-card {
		padding: 20px 16px;
	}
	
	.session-details {
		max-width: 100%;
	}
} 

/* Info Page Styles */
.info-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/* Quick Navigation */
.info-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 16px;
	margin-bottom: 60px;
}

.nav-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 16px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	text-decoration: none;
	color: var(--dark);
	transition: all .3s ease;
	box-shadow: var(--shadow);
}

.nav-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
	border-color: var(--green);
}

.nav-card i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 12px;
}

.nav-card span {
	font-weight: 600;
	font-size: 0.95rem;
}

/* Section Styles */
.info-section {
	margin-bottom: 80px;
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-header h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
}

.section-header h2 i {
	color: var(--green);
	margin-right: 12px;
}

.section-header p {
	font-size: 1.1rem;
	color: #6b7280;
	margin: 0;
}

/* Timeline */
.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--green);
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
}

.timeline-item:nth-child(odd) {
	flex-direction: row;
}

.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-marker {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: var(--green);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.9rem;
	z-index: 2;
}

.timeline-content {
	width: 45%;
	padding: 24px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: 55%;
}

.timeline-content h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 12px;
}

.timeline-content p {
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* Rules Grid */
.rules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.rule-card {
	padding: 32px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.rule-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.rule-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.rule-icon i {
	font-size: 1.5rem;
	color: white;
}

.rule-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 12px;
}

.rule-card p {
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* Field Section */
.field-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.field-info {
	display: grid;
	gap: 32px;
}

.field-specs h3, .field-markings h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 20px;
}

.spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.spec-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.spec-label {
	font-weight: 500;
	color: var(--dark);
}

.spec-value {
	font-weight: 600;
	color: var(--green);
}

.field-markings ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.field-markings li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border);
	color: #6b7280;
}

.field-markings li:last-child {
	border-bottom: none;
}

.field-markings strong {
	color: var(--dark);
}

.field-diagram {
	display: flex;
	justify-content: center;
	align-items: center;
}

#field-canvas {
	border: 2px solid var(--green);
	border-radius: 12px;
	background: #f0fdf4;
	max-width: 100%;
	height: auto;
}

/* Tactics Grid */
.tactics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.formation-card {
	padding: 32px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.formation-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.formation-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 12px;
}

.formation-desc {
	color: #6b7280;
	margin-bottom: 20px;
	line-height: 1.6;
}

.formation-pros h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 12px;
}

.formation-pros ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.formation-pros li {
	padding: 6px 0;
	color: #6b7280;
	position: relative;
	padding-left: 20px;
}

.formation-pros li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: bold;
}

/* Skills Grid */
.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.skill-card {
	padding: 32px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.skill-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.skill-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.skill-icon i {
	font-size: 1.5rem;
	color: white;
}

.skill-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 12px;
}

.skill-card p {
	color: #6b7280;
	line-height: 1.6;
	margin: 0 0 20px;
}

.skill-tips h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 8px;
}

.skill-tips ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.skill-tips li {
	padding: 4px 0;
	color: #6b7280;
	position: relative;
	padding-left: 16px;
}

.skill-tips li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: bold;
}

/* Equipment Grid */
.equipment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}

.equipment-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.equipment-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.equipment-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.equipment-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0;
	padding: 20px 20px 12px;
}

.equipment-card p {
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
	padding: 0 20px 20px;
}

/* Call to Action */
.info-cta {
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
	margin: 60px 0;
}

.cta-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin: 0 0 16px;
}

.cta-content p {
	font-size: 1.1rem;
	color: rgba(255,255,255,.9);
	margin: 0 0 32px;
}

.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-buttons .btn {
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	transition: all .3s ease;
}

.cta-buttons .btn-primary {
	background: white;
	color: var(--green);
	border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
	background: transparent;
	color: white;
}

.cta-buttons .btn-outline {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
	background: white;
	color: var(--green);
}

/* Responsive Design for Info Page */
@media (max-width: 1024px) {
	.info-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.hero-content h1 {
		font-size: 2.8rem;
	}
	
	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.field-container {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.spec-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.2rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.info-nav {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
	
	.nav-card {
		padding: 16px 12px;
	}
	
	.nav-card i {
		font-size: 1.5rem;
	}
	
	.nav-card span {
		font-size: 0.85rem;
	}
	
	.section-header h2 {
		font-size: 2rem;
	}
	
	.timeline::before {
		left: 20px;
	}
	
	.timeline-item {
		flex-direction: row !important;
	}
	
	.timeline-marker {
		left: 20px;
		transform: translateX(-50%);
	}
	
	.timeline-content {
		width: calc(100% - 60px);
		margin-left: 60px !important;
		margin-right: 0 !important;
	}
	
	.rules-grid, .tactics-grid, .skills-grid, .equipment-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.rule-card, .formation-card, .skill-card {
		padding: 24px;
	}
	
	.info-cta {
		padding: 40px 24px;
		margin: 40px 0;
	}
	
	.cta-content h2 {
		font-size: 2rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-buttons .btn {
		width: 100%;
		max-width: 250px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 1.8rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.info-nav {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.section-header h2 {
		font-size: 1.6rem;
	}
	
	.section-header p {
		font-size: 1rem;
	}
	
	.timeline-content {
		padding: 16px;
	}
	
	.timeline-content h3 {
		font-size: 1.1rem;
	}
	
	.rule-card, .formation-card, .skill-card {
		padding: 20px;
	}
	
	.rule-icon, .skill-icon {
		width: 50px;
		height: 50px;
	}
	
	.rule-icon i, .skill-icon i {
		font-size: 1.2rem;
	}
	
	.formation-title {
		font-size: 1.5rem;
	}
	
	.equipment-card img {
		height: 150px;
	}
	
	.info-cta {
		padding: 32px 20px;
	}
	
	.cta-content h2 {
		font-size: 1.6rem;
	}
	
	.cta-content p {
		font-size: 1rem;
	}
} 

/* Skills Section */
.skills-section {
	margin-bottom: 60px;
}

.skills-section h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 32px;
	text-align: center;
}

/* Tactics Section */
.tactics-section {
	margin-bottom: 60px;
}

.tactics-section h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 32px;
	text-align: center;
}

.formation-cons {
	margin-top: 20px;
}

.formation-cons h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #dc2626;
	margin: 0 0 8px;
}

.formation-cons ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.formation-cons li {
	padding: 4px 0;
	color: #6b7280;
	position: relative;
	padding-left: 16px;
}

.formation-cons li::before {
	content: '✗';
	position: absolute;
	left: 0;
	color: #dc2626;
	font-weight: bold;
}

/* Techniques Section */
.techniques-section {
	margin-bottom: 60px;
}

.techniques-section h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 32px;
	text-align: center;
}

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

.technique-card {
	padding: 24px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
	transition: transform .3s ease, box-shadow .3s ease;
}

.technique-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.technique-card h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--green);
	margin: 0 0 12px;
}

.technique-card p {
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
	.skills-section h3, .tactics-section h3, .techniques-section h3 {
		font-size: 1.6rem;
	}
	
	.techniques-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.technique-card {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.skills-section h3, .tactics-section h3, .techniques-section h3 {
		font-size: 1.4rem;
	}
	
	.technique-card {
		padding: 16px;
	}
	
	.technique-card h4 {
		font-size: 1.1rem;
	}
} 

/* Players Page Styles */
.players-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.players-hero .hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.players-hero .hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.players-hero .stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.players-hero .stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.players-hero .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.players-hero .stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.players-hero .hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/* Players Filters */
.players-filters {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 40px;
	box-shadow: var(--shadow);
}

.filter-controls {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin-bottom: 20px;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.filter-group label {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
}

.filter-group select,
.filter-group input {
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: white;
	color: var(--dark);
	font-size: 0.95rem;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}

.filter-group select:hover,
.filter-group input:hover {
	border-color: #9ca3af;
}

.filter-results {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.filter-results span {
	color: #6b7280;
	font-size: 0.95rem;
}

/* Players Grid */
.players-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.player-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	position: relative;
}

.player-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,.15);
	border-color: var(--green);
}

.player-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}

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

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

.player-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,.8));
	padding: 20px;
	color: white;
}

.player-number {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--green);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.player-info {
	padding: 24px;
}

.player-name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 8px;
}

.player-team {
	color: var(--green);
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 12px;
}

.player-details {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.player-detail {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 0.9rem;
}

.player-detail i {
	color: var(--green);
	width: 16px;
}

.player-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}

.player-stat {
	text-align: center;
}

.stat-value {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--dark);
}

.stat-label {
	font-size: 0.8rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.player-actions {
	padding: 0 24px 24px;
	display: flex;
	gap: 12px;
}

.player-actions .btn {
	flex: 1;
	padding: 10px 16px;
	font-size: 0.9rem;
	text-align: center;
}

/* Load More Section */
.load-more-section {
	text-align: center;
	padding: 40px 0;
}

.load-more-section .btn {
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
}

.load-more-section .btn i {
	margin-right: 8px;
}

/* Responsive Design for Players Page */
@media (max-width: 1024px) {
	.players-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.players-hero .hero-content h1 {
		font-size: 2.8rem;
	}
	
	.players-hero .hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.filter-controls {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 768px) {
	.players-hero .hero-content h1 {
		font-size: 2.2rem;
	}
	
	.players-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	.players-hero .hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.players-filters {
		padding: 24px;
	}
	
	.filter-controls {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.players-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 20px;
	}
	
	.player-card {
		max-width: 400px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.players-hero .hero-content h1 {
		font-size: 1.8rem;
	}
	
	.players-hero .hero-subtitle {
		font-size: 1rem;
	}
	
	.players-hero .hero-image img {
		height: 250px;
	}
	
	.players-filters {
		padding: 20px;
	}
	
	.players-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.player-image {
		height: 220px;
	}
	
	.player-info {
		padding: 20px;
	}
	
	.player-name {
		font-size: 1.2rem;
	}
	
	.player-details {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	
	.player-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}
	
	.player-actions {
		padding: 0 20px 20px;
		flex-direction: column;
	}
	
	.load-more-section .btn {
		padding: 14px 24px;
		font-size: 1rem;
	}
} 

/* Matches Page Styles */
.matches-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.matches-hero .hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.matches-hero .hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.matches-hero .stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.matches-hero .stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.matches-hero .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.matches-hero .stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.matches-hero .hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/* Matches Filters */
.matches-filters {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 40px;
	box-shadow: var(--shadow);
}

.filter-controls {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin-bottom: 20px;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.filter-group label {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
}

.filter-group select,
.filter-group input {
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: white;
	color: var(--dark);
	font-size: 0.95rem;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}

.filter-group select:hover,
.filter-group input:hover {
	border-color: #9ca3af;
}

.filter-results {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.filter-results span {
	color: #6b7280;
	font-size: 0.95rem;
}

.filter-results .btn {
	padding: 8px 16px;
	font-size: 0.9rem;
}

/* View Toggle */
.view-toggle-section {
	text-align: center;
	margin-bottom: 32px;
}

.view-toggle {
	display: inline-flex;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 4px;
	box-shadow: var(--shadow);
}

.view-btn {
	background: transparent;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	color: #6b7280;
	font-weight: 500;
	transition: all .2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.view-btn.active {
	background: var(--green);
	color: white;
}

.view-btn:hover:not(.active) {
	background: rgba(0,0,0,.05);
}

.view-btn i {
	font-size: 0.9rem;
}

/* Matches Grid */
.matches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.match-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	position: relative;
}

.match-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,.15);
	border-color: var(--green);
}

.match-header {
	background: linear-gradient(135deg, var(--green), #22c55e);
	color: white;
	padding: 20px;
	text-align: center;
}

.match-date {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-bottom: 4px;
}

.match-time {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.match-competition {
	font-size: 0.85rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.match-teams {
	padding: 24px;
	text-align: center;
}

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

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

.team-name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 8px;
}

.team-logo {
	width: 60px;
	height: 60px;
	background: var(--green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 8px;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
}

.vs-divider {
	font-weight: 700;
	color: #6b7280;
	font-size: 1.1rem;
}

.match-venue {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #6b7280;
	font-size: 0.85rem;
	margin-top: 8px;
	text-align: center;
	line-height: 1.4;
	opacity: 0.8;
}

.match-venue i {
	color: #22c55e;
	font-size: 0.85rem;
	flex-shrink: 0;
}

.venue-text {
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

/* Responsive venue alignment */
@media (max-width: 768px) {
	.match-venue {
		font-size: 0.85rem;
		padding: 0 16px;
		gap: 6px;
	}
	
	.match-venue i {
		font-size: 0.8rem;
	}
	
	.venue-text {
		font-size: 0.85rem;
	}
}



/* Matches Table */
.matches-table-container {
	margin-bottom: 40px;
}

.matches-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--card);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.matches-table th {
	background: var(--green);
	color: white;
	padding: 16px 12px;
	text-align: left;
	font-weight: 600;
	font-size: 0.95rem;
}

.matches-table td {
	padding: 16px 12px;
	border-bottom: 1px solid var(--border);
	color: var(--dark);
}

.matches-table tr:hover {
	background: rgba(22,163,74,.05);
}

.match-row-actions {
	display: flex;
	gap: 8px;
}

.match-row-actions .btn {
	padding: 6px 12px;
	font-size: 0.85rem;
}

/* Load More Section */
.load-more-section {
	text-align: center;
	padding: 40px 0;
}

.load-more-section .btn {
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
}

.load-more-section .btn i {
	margin-right: 8px;
}

/* Utility Classes */
.hidden {
	display: none !important;
}

/* Responsive Design for Matches Page */
@media (max-width: 1024px) {
	.matches-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.matches-hero .hero-content h1 {
		font-size: 2.8rem;
	}
	
	.matches-hero .hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.filter-controls {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 768px) {
	.matches-hero .hero-content h1 {
		font-size: 2.2rem;
	}
	
	.matches-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	.matches-hero .hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.matches-filters {
		padding: 24px;
	}
	
	.filter-controls {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.filter-results {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	
	.matches-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.match-card {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.team-vs {
		flex-direction: column;
		gap: 16px;
	}
	
	.vs-divider {
		transform: rotate(90deg);
	}
}

@media (max-width: 480px) {
	.matches-hero .hero-content h1 {
		font-size: 1.8rem;
	}
	
	.matches-hero .hero-subtitle {
		font-size: 1rem;
	}
	
	.matches-hero .hero-image img {
		height: 250px;
	}
	
	.matches-filters {
		padding: 20px;
	}
	
	.match-header {
		padding: 16px;
	}
	
	.match-time {
		font-size: 1.3rem;
	}
	
	.match-teams {
		padding: 20px;
	}
	
	.team-name {
		font-size: 1.1rem;
	}
	
	.team-logo {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}
	
	.match-actions {
		padding: 0 20px 20px;
		flex-direction: column;
	}
	
	.load-more-section .btn {
		padding: 14px 24px;
		font-size: 1rem;
	}
} 

/* Statistics Page Styles */
.stats-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.stats-hero .hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.stats-hero .hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.stats-hero .stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.stats-hero .stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.stats-hero .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.stats-hero .stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.stats-hero .hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/* Quick Stats Overview */
.quick-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-bottom: 60px;
}

.stat-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 20px;
}

.stat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,.15);
	border-color: var(--green);
}

.stat-card .stat-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	flex-shrink: 0;
}

.stat-card .stat-content h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 8px;
}

.stat-card .stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 8px;
}

.stat-change {
	font-size: 0.85rem;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 20px;
	display: inline-block;
}

.stat-change.positive {
	background: #dcfce7;
	color: #166534;
}

.stat-change.negative {
	background: #fee2e2;
	color: #991b1b;
}

.stat-change.neutral {
	background: #f3f4f6;
	color: #374151;
}

/* Statistics Tabs Container */
.stats-tabs-container {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow);
	margin-top: 40px;
}

.stats-tabs-container .tabs {
	display: flex;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-bottom: 1px solid var(--border);
	padding: 8px;
	gap: 8px;
}

.tab-btn {
	background: transparent;
	border: none;
	padding: 18px 32px;
	cursor: pointer;
	color: #64748b;
	font-weight: 600;
	font-size: 1rem;
	transition: all .3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 16px;
	position: relative;
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tab-btn:hover {
	background: rgba(22,163,74,.08);
	color: var(--green);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(22,163,74,.15);
}

.tab-btn.active {
	background: white;
	color: var(--green);
	box-shadow: 0 8px 25px rgba(0,0,0,.1);
	border: 1px solid rgba(22,163,74,.2);
	transform: translateY(-2px);
}

.tab-btn.active::before {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid white;
	z-index: 1;
}

.tab-btn i {
	font-size: 1.2rem;
	flex-shrink: 0;
	transition: transform .3s ease;
}

.tab-btn:hover i {
	transform: scale(1.1);
}

.tab-btn.active i {
	transform: scale(1.1);
	color: var(--green);
}

.tab-btn span {
	font-weight: 600;
	letter-spacing: 0.3px;
}

/* Tab Panels */
.tab-panels {
	padding: 48px;
	background: white;
}

.panel {
	display: none;
	animation: fadeInUp 0.4s ease-out;
}

.panel.active {
	display: block;
}

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

/* Team Stats Grid */
.team-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 24px;
}

.team-stat-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 6px rgba(0,0,0,.05);
}

.card-header {
	margin-bottom: 20px;
}

.card-header h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 4px;
}

.card-subtitle {
	font-size: 0.9rem;
	color: #6b7280;
}

/* League Table */
.league-table {
	background: white;
	border-radius: 12px;
	overflow: hidden;
}

.table-header {
	display: grid;
	grid-template-columns: 40px 2fr 1fr 1fr 1fr 1fr 1fr;
	background: var(--green);
	color: white;
	padding: 12px 16px;
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
}

.table-header span:first-child,
.table-header span:nth-child(2) {
	text-align: left;
}

.table-body {
	max-height: 300px;
	overflow-y: auto;
}

.table-row {
	display: grid;
	grid-template-columns: 40px 2fr 1fr 1fr 1fr 1fr 1fr;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border);
	align-items: center;
	text-align: center;
	transition: background .2s ease;
}

.table-row:hover {
	background: rgba(22,163,74,.05);
}

.table-row span:first-child,
.table-row span:nth-child(2) {
	text-align: left;
}

.table-row .position {
	font-weight: 700;
	color: var(--green);
}

.table-row .team-name {
	font-weight: 600;
	color: var(--dark);
}

/* Chart Containers */
.chart-container {
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.bar-chart,
.pie-chart,
.radar-chart,
.line-chart,
.doughnut-chart,
.timeline-chart,
.area-chart {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	font-size: 0.9rem;
}

/* Player Stats Grid */
.player-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 24px;
}

.player-stat-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 6px rgba(0,0,0,.05);
}

/* Top Players List */
.top-players-list {
	max-height: 300px;
	overflow-y: auto;
}

.player-rank-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border-bottom: 1px solid var(--border);
	transition: background .2s ease;
}

.player-rank-item:hover {
	background: rgba(22,163,74,.05);
}

.player-rank-item:last-child {
	border-bottom: none;
}

.rank-number {
	width: 32px;
	height: 32px;
	background: var(--green);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.rank-number.top-3 {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.player-info {
	flex: 1;
}

.player-name {
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 4px;
}

.player-team {
	font-size: 0.85rem;
	color: #6b7280;
}

.player-stat {
	font-weight: 700;
	color: var(--green);
	font-size: 1.1rem;
}

/* Comparison Controls */
.comparison-controls {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}

.comparison-controls select {
	padding: 10px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: white;
	color: var(--dark);
	font-size: 0.95rem;
}

/* Match Stats Grid */
.match-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 24px;
}

.match-stat-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 4px 6px rgba(0,0,0,.05);
}

/* Referee Stats */
.referee-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.referee-stat-item {
	text-align: center;
	padding: 20px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.referee-stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
	display: block;
}

.referee-stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

/* Responsive Design for Statistics Page */
@media (max-width: 1024px) {
	.stats-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.stats-hero .hero-content h1 {
		font-size: 2.8rem;
	}
	
	.stats-hero .hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.quick-stats {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
	
	.team-stats-grid,
	.player-stats-grid,
	.match-stats-grid {
		grid-template-columns: 1fr;
	}
	
	.tab-panels {
		padding: 32px;
	}
}

@media (max-width: 768px) {
	.stats-hero .hero-content h1 {
		font-size: 2.2rem;
	}
	
	.stats-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	.stats-hero .hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.quick-stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.stat-card {
		padding: 24px;
	}
	
	.stats-tabs-container .tabs {
		flex-direction: column;
		padding: 12px;
		gap: 12px;
	}
	
	.tab-btn {
		padding: 20px 24px;
		justify-content: center;
		font-size: 1.1rem;
		border-radius: 20px;
	}
	
	.tab-btn i {
		font-size: 1.3rem;
	}
	
	.tab-btn.active::before {
		display: none;
	}
	
	.tab-panels {
		padding: 24px;
	}
	
	.panel-header {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
	
	.panel-controls {
		justify-content: center;
	}
	
	.league-table .table-header,
	.league-table .table-row {
		grid-template-columns: 30px 1.5fr 1fr 1fr 1fr 1fr 1fr;
		font-size: 0.8rem;
		padding: 8px 12px;
	}
	
	.comparison-controls {
		grid-template-columns: 1fr;
	}
	
	.referee-stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.stats-hero .hero-content h1 {
		font-size: 1.8rem;
	}
	
	.stats-hero .hero-subtitle {
		font-size: 1rem;
	}
	
	.stats-hero .hero-image img {
		height: 250px;
	}
	
	.stat-card {
		padding: 20px;
		flex-direction: column;
		text-align: center;
	}
	
	.stat-card .stat-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.stats-tabs-container .tabs {
		padding: 16px;
		gap: 16px;
	}
	
	.tab-btn {
		padding: 18px 20px;
		font-size: 1rem;
		border-radius: 16px;
	}
	
	.tab-btn i {
		font-size: 1.2rem;
	}
	
	.tab-panels {
		padding: 20px;
	}
	
	.team-stat-card,
	.player-stat-card,
	.match-stat-card {
		padding: 20px;
	}
	
	.league-table .table-header,
	.league-table .table-row {
		grid-template-columns: 25px 1fr 1fr 1fr 1fr 1fr 1fr;
		font-size: 0.75rem;
		padding: 6px 8px;
	}
	
	.chart-container {
		height: 200px;
	}
} 

/* Top Scores Page Styles */
.scores-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.scores-hero .hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.scores-hero .hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.scores-hero .stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.scores-hero .stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.scores-hero .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.scores-hero .stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.scores-hero .hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

/* Podium Section */
.podium-section {
	margin-bottom: 60px;
	text-align: center;
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 40px;
}

.podium {
	display: flex;
	align-items: end;
	justify-content: center;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.podium-place {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all .3s ease;
}

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

.podium-place.second {
	order: 1;
}

.podium-place.first {
	order: 2;
}

.podium-place.third {
	order: 3;
}

.medal {
	font-size: 3rem;
	margin-bottom: 16px;
	animation: bounce 2s infinite;
}

.medal:nth-child(1) {
	animation-delay: 0s;
}

.medal:nth-child(2) {
	animation-delay: 0.5s;
}

.medal:nth-child(3) {
	animation-delay: 1s;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

.player-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 16px;
	border: 4px solid white;
	box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.podium-place.first .player-avatar {
	width: 140px;
	height: 140px;
	border-color: #fbbf24;
	box-shadow: 0 15px 40px rgba(251,191,36,.3);
}

.podium-place.second .player-avatar {
	border-color: #9ca3af;
}

.podium-place.third .player-avatar {
	border-color: #d97706;
}

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

.player-info h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 8px;
}

.podium-place.first .player-info h3 {
	font-size: 1.5rem;
}

.player-info .team {
	font-size: 0.9rem;
	color: #6b7280;
	margin: 0 0 8px;
}

.player-info .goals {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--green);
	margin: 0;
}

/* Scores Filters */
.scores-filters {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	margin-bottom: 40px;
	box-shadow: var(--shadow);
}

.filter-controls {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin-bottom: 20px;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.filter-group label {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
}

.filter-group select,
.filter-group input {
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: white;
	color: var(--dark);
	font-size: 0.95rem;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}

.filter-group select:hover,
.filter-group input:hover {
	border-color: #9ca3af;
}

.filter-results {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--border);
}

.filter-results span {
	color: #6b7280;
	font-size: 0.95rem;
}

.filter-results .btn {
	padding: 8px 16px;
	font-size: 0.9rem;
}

/* View Toggle */
.view-toggle-section {
	text-align: center;
	margin-bottom: 32px;
}

.view-toggle {
	display: inline-flex;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 4px;
	box-shadow: var(--shadow);
}

.view-btn {
	background: transparent;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	cursor: pointer;
	color: #6b7280;
	font-weight: 500;
	transition: all .2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.view-btn.active {
	background: var(--green);
	color: white;
}

.view-btn:hover:not(.active) {
	background: rgba(0,0,0,.05);
}

.view-btn i {
	font-size: 0.9rem;
}

/* Scores Grid */
.scores-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.score-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	position: relative;
}

.score-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,.15);
	border-color: var(--green);
}

.score-card.top-3 {
	border-color: #fbbf24;
	background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.score-card.top-3::before {
	content: '🏆';
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 1.5rem;
	z-index: 1;
}

.score-header {
	background: linear-gradient(135deg, var(--green), #22c55e);
	color: white;
	padding: 20px;
	text-align: center;
	position: relative;
}

.score-rank {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.score-card.top-3 .score-header {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.score-header h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 8px;
}

.score-header .team {
	font-size: 0.9rem;
	opacity: 0.9;
	margin: 0;
}

.score-content {
	padding: 24px;
}

.score-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.stat-item-score {
	text-align: center;
	padding: 16px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px solid var(--border);
}

.stat-item-score .stat-label {
	font-size: 0.8rem;
	color: #6b7280;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-item-score .stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--dark);
}

.score-actions {
	display: flex;
	gap: 12px;
}

.score-actions .btn {
	flex: 1;
	padding: 12px 16px;
	font-size: 0.9rem;
	text-align: center;
}

/* Scores Table */
.scores-table-container {
	margin-bottom: 40px;
}

.scores-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--card);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.scores-table th {
	background: var(--green);
	color: white;
	padding: 16px 12px;
	text-align: left;
	font-weight: 600;
	font-size: 0.95rem;
}

.scores-table td {
	padding: 16px 12px;
	border-bottom: 1px solid var(--border);
	color: var(--dark);
}

.scores-table tr:hover {
	background: rgba(22,163,74,.05);
}

.scores-table .rank {
	font-weight: 700;
	color: var(--green);
	text-align: center;
}

.scores-table .top-3 {
	background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.scores-table .goals {
	font-weight: 700;
	color: var(--green);
	text-align: center;
}

.scores-table .goals-per-match {
	font-weight: 600;
	color: #3b82f6;
	text-align: center;
}

.score-row-actions {
	display: flex;
	gap: 8px;
}

.score-row-actions .btn {
	padding: 6px 12px;
	font-size: 0.85rem;
}

/* Load More Section */
.load-more-section {
	text-align: center;
	padding: 40px 0;
}

.load-more-section .btn {
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
}

.load-more-section .btn i {
	margin-right: 8px;
}

/* Responsive Design for Top Scores Page */
@media (max-width: 1024px) {
	.scores-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.scores-hero .hero-content h1 {
		font-size: 2.8rem;
	}
	
	.scores-hero .hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.podium {
		gap: 16px;
	}
	
	.player-avatar {
		width: 100px;
		height: 100px;
	}
	
	.podium-place.first .player-avatar {
		width: 120px;
		height: 120px;
	}
	
	.filter-controls {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
	
	.scores-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	.scores-hero .hero-content h1 {
		font-size: 2.2rem;
	}
	
	.scores-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	.scores-hero .hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.podium {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	
	.podium-place {
		order: unset !important;
	}
	
	.player-avatar {
		width: 120px;
		height: 120px;
	}
	
	.podium-place.first .player-avatar {
		width: 140px;
		height: 140px;
	}
	
	.scores-filters {
		padding: 24px;
	}
	
	.filter-controls {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.filter-results {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}
	
	.scores-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.score-card {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.score-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.score-actions {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.scores-hero .hero-content h1 {
		font-size: 1.8rem;
	}
	
	.scores-hero .hero-subtitle {
		font-size: 1rem;
	}
	
	.scores-hero .hero-image img {
		height: 250px;
	}
	
	.section-title {
		font-size: 1.6rem;
	}
	
	.medal {
		font-size: 2.5rem;
	}
	
	.player-avatar {
		width: 100px;
		height: 100px;
	}
	
	.podium-place.first .player-avatar {
		width: 120px;
		height: 120px;
	}
	
	.scores-filters {
		padding: 20px;
	}
	
	.score-header {
		padding: 16px;
	}
	
	.score-header h3 {
		font-size: 1.2rem;
	}
	
	.score-content {
		padding: 20px;
	}
	
	.load-more-section .btn {
		padding: 14px 24px;
		font-size: 1rem;
	}
}

/* Contact Page Styles */
.contact-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.contact-hero .hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.contact-hero .hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.contact-hero .stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.contact-hero .stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.contact-hero .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.contact-hero .stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.contact-hero .hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
	transition: transform .3s ease;
}

.contact-hero .hero-image img:hover {
	transform: scale(1.02);
}

.hero-image-placeholder {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.hero-image-placeholder i {
	font-size: 4rem;
	margin-bottom: 16px;
	opacity: 0.9;
}

.hero-image-placeholder p {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	opacity: 0.9;
}

/* Contact Information Section */
.contact-info-section {
	margin-bottom: 80px;
}

.section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 40px;
	text-align: center;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.contact-info-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all .3s ease;
}

.contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,.15);
	border-color: var(--green);
}

.contact-info-card .card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: white;
	font-size: 2rem;
}

.contact-info-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 16px;
}

.contact-info-card p {
	color: #6b7280;
	margin: 0 0 20px;
	line-height: 1.6;
}

.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all .2s ease;
	background: none;
	border: none;
	cursor: pointer;
}

.contact-link:hover {
	color: #15803d;
	transform: translateX(4px);
}

.contact-link i {
	font-size: 0.9rem;
	transition: transform .2s ease;
}

.contact-link:hover i {
	transform: translateX(4px);
}

/* Contact Form Section */
.contact-form-section {
	margin-bottom: 80px;
}

.form-container {
	max-width: 800px;
	margin: 0 auto;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 48px;
	box-shadow: var(--shadow);
}

.form-header {
	text-align: center;
	margin-bottom: 40px;
}

.form-header h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
}

.form-header p {
	color: #6b7280;
	font-size: 1.1rem;
	margin: 0;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-weight: 600;
	color: var(--dark);
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 16px 20px;
	border: 2px solid var(--border);
	border-radius: 12px;
	background: white;
	color: var(--dark);
	font-size: 1rem;
	transition: all .2s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--green);
	box-shadow: 0 0 0 4px rgba(22,163,74,.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
	border-color: #9ca3af;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Checkbox Styling */
.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border);
	border-radius: 4px;
	background: white;
	position: relative;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all .2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
	background: var(--green);
	border-color: var(--green);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: 12px;
	font-weight: bold;
}

.form-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-top: 16px;
}

.form-actions .btn {
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	min-width: 160px;
}

.form-actions .btn i {
	margin-right: 8px;
}

/* FAQ Section */
.faq-section {
	margin-bottom: 80px;
}

.faq-grid {
	display: grid;
	gap: 16px;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	cursor: pointer;
	transition: background .2s ease;
	user-select: none;
}

.faq-question:hover {
	background: rgba(22,163,74,.05);
}

.faq-question h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0;
}

.faq-question i {
	color: var(--green);
	font-size: 1.1rem;
	transition: transform .3s ease;
}

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

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

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	padding: 0 24px 24px;
	margin: 0;
	color: #6b7280;
	line-height: 1.6;
}

/* Office Hours Section */
.office-hours-section {
	margin-bottom: 60px;
}

.hours-container {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.hours-grid {
	display: grid;
	gap: 16px;
	margin-bottom: 24px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.hours-item .day {
	font-weight: 600;
	color: var(--dark);
}

.hours-item .time {
	color: var(--green);
	font-weight: 600;
}

.hours-note {
	color: #6b7280;
	font-size: 0.9rem;
	font-style: italic;
	margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
	.contact-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.contact-hero .hero-content h1 {
		font-size: 2.8rem;
	}
	
	.contact-hero .hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.contact-info-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	.form-container {
		padding: 32px;
	}
	
	.hero-image-placeholder {
		height: 300px;
	}
	
	.hero-image-placeholder i {
		font-size: 3rem;
	}
	
	.hero-image-placeholder p {
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.contact-hero .hero-content h1 {
		font-size: 2.2rem;
	}
	
	.contact-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	.contact-hero .hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.contact-info-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.form-container {
		padding: 24px;
		margin: 0 16px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.form-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.form-actions .btn {
		width: 100%;
		max-width: 300px;
	}
	
	.hours-item {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.contact-hero .hero-content h1 {
		font-size: 1.8rem;
	}
	
	.contact-hero .hero-subtitle {
		font-size: 1rem;
	}
	
	.contact-hero .hero-image img {
		height: 250px;
	}
	
	.hero-image-placeholder {
		height: 200px;
	}
	
	.hero-image-placeholder i {
		font-size: 2.5rem;
	}
	
	.hero-image-placeholder p {
		font-size: 1.1rem;
	}
	
	.section-title {
		font-size: 1.6rem;
	}
	
	.contact-info-card {
		padding: 24px;
	}
	
	.contact-info-card .card-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.form-container {
		padding: 20px;
	}
	
	.form-header h2 {
		font-size: 1.6rem;
	}
	
	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 14px 16px;
		font-size: 0.95rem;
	}
	
	.faq-question {
		padding: 20px;
	}
	
	.faq-question h3 {
		font-size: 1rem;
	}
}

/* Feedback Page Styles */
.feedback-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 60px;
	padding: 40px 0;
}

.feedback-hero .hero-content h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.1;
}

.feedback-hero .hero-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0 0 32px;
	line-height: 1.6;
}

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

.feedback-hero .stat-item {
	text-align: center;
	padding: 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: var(--shadow);
}

.feedback-hero .stat-item i {
	font-size: 2rem;
	color: var(--green);
	margin-bottom: 8px;
	display: block;
}

.feedback-hero .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 4px;
}

.feedback-hero .stat-label {
	font-size: 0.9rem;
	color: #6b7280;
}

.feedback-hero .hero-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0,0,0,.1);
	transition: transform .3s ease;
}

.feedback-hero .hero-image img:hover {
	transform: scale(1.02);
}

/* Feedback Categories Section */
.feedback-categories-section {
	margin-bottom: 80px;
}

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

.category-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	cursor: pointer;
}

.category-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,.15);
	border-color: var(--green);
}

.category-card .category-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: white;
	font-size: 2rem;
}

.category-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 16px;
}

.category-card p {
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}

/* Feedback Form Section */
.feedback-form-section {
	margin-bottom: 80px;
}

.feedback-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Feedback Type Options */
.feedback-type-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.radio-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: white;
	border: 2px solid var(--border);
	border-radius: 12px;
	cursor: pointer;
	transition: all .2s ease;
}

.radio-option:hover {
	border-color: var(--green);
	background: rgba(22,163,74,.05);
}

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

.radio-option input[type="radio"]:checked + .radio-custom {
	border-color: var(--green);
	background: var(--green);
}

.radio-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%;
}

.radio-custom {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border);
	border-radius: 50%;
	background: white;
	position: relative;
	flex-shrink: 0;
	transition: all .2s ease;
}

.radio-option i {
	color: var(--green);
	font-size: 1.2rem;
}

.radio-option span:last-child {
	font-weight: 600;
	color: var(--dark);
}

/* Rating System */
.rating-container {
	text-align: center;
}

.stars {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 12px;
}

.stars i {
	font-size: 2rem;
	color: #d1d5db;
	cursor: pointer;
	transition: all .2s ease;
}

.stars i:hover,
.stars i.active {
	color: #fbbf24;
	transform: scale(1.1);
}

.rating-text {
	color: #6b7280;
	font-size: 0.9rem;
}

/* Character Counter */
.char-counter {
	text-align: right;
	font-size: 0.85rem;
	color: #6b7280;
	margin-top: 4px;
}

.char-counter .current-count {
	color: var(--green);
	font-weight: 600;
}

/* Recent Feedback Section */
.recent-feedback-section {
	margin-bottom: 80px;
}

.feedback-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.feedback-preview-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
}

.feedback-preview-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.preview-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.preview-rating {
	display: flex;
	gap: 4px;
}

.preview-rating i {
	color: #fbbf24;
	font-size: 1rem;
}

.preview-category {
	background: rgba(22,163,74,.1);
	color: var(--green);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.feedback-preview-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 16px;
	line-height: 1.4;
}

.feedback-preview-card p {
	color: #6b7280;
	margin: 0 0 20px;
	line-height: 1.6;
}

.preview-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
}

.preview-author {
	color: var(--green);
	font-weight: 600;
}

.preview-date {
	color: #9ca3af;
}

/* Feedback Impact Section */
.feedback-impact-section {
	margin-bottom: 60px;
}

.impact-container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.impact-item {
	padding: 32px 24px;
}

.impact-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	color: white;
	font-size: 2rem;
}

.impact-item h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 16px;
}

.impact-item p {
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}

/* Responsive Design for Feedback Page */
@media (max-width: 1024px) {
	.feedback-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	
	.feedback-hero .hero-content h1 {
		font-size: 2.8rem;
	}
	
	.feedback-hero .hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.categories-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
	
	.feedback-type-options {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
	
	.feedback-preview-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.feedback-hero .hero-content h1 {
		font-size: 2.2rem;
	}
	
	.feedback-hero .hero-subtitle {
		font-size: 1.1rem;
	}
	
	.feedback-hero .hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.categories-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.feedback-type-options {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.form-container {
		padding: 24px;
		margin: 0 16px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.form-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.form-actions .btn {
		width: 100%;
		max-width: 300px;
	}
	
	.feedback-preview-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.impact-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 480px) {
	.feedback-hero .hero-content h1 {
		font-size: 1.8rem;
	}
	
	.feedback-hero .hero-subtitle {
		font-size: 1rem;
	}
	
	.feedback-hero .hero-image img {
		height: 250px;
	}
	
	.section-title {
		font-size: 1.6rem;
	}
	
	.category-card {
		padding: 24px;
	}
	
	.category-card .category-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.form-container {
		padding: 20px;
	}
	
	.form-header h2 {
		font-size: 1.6rem;
	}
	
	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 14px 16px;
		font-size: 0.95rem;
	}
	
	.stars i {
		font-size: 1.5rem;
	}
	
	.feedback-preview-card {
		padding: 24px;
	}
	
	.impact-item {
		padding: 24px 16px;
	}
	
	.impact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

/* Home Page Styles */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(22,163,74,0.9) 0%, rgba(0,0,0,0.8) 100%);
	z-index: 2;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	color: white;
}

.hero-text h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	margin: 0 0 24px;
	line-height: 1.1;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
	font-size: 1.3rem;
	margin: 0 0 40px;
	line-height: 1.6;
	opacity: 0.95;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.hero-stats .stat-item {
	text-align: center;
	padding: 20px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 16px;
}

.hero-stats .stat-item i {
	font-size: 2rem;
	color: #22c55e;
	margin-bottom: 8px;
	display: block;
}

.hero-stats .stat-number {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.hero-stats .stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
}

.hero-actions {
	display: flex;
	gap: 20px;
}

.btn-large {
	padding: 18px 36px;
	font-size: 1.1rem;
	font-weight: 600;
}

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

.hero-card {
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.match-preview {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
	text-align: center;
}

.team img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 12px;
	border: 3px solid rgba(255,255,255,0.3);
}

.team span {
	display: block;
	font-weight: 600;
	font-size: 1.1rem;
}

.match-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.match-time {
	font-size: 0.9rem;
	opacity: 0.8;
}

.vs {
	font-size: 1.5rem;
	font-weight: 700;
	color: #22c55e;
}

.match-venue {
	font-size: 0.8rem;
	opacity: 0.7;
}

/* Quick Links Section */
.quick-links-section {
	padding: 80px 0;
	background: var(--bg);
}

.quick-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.quick-link-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 32px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
}

.quick-link-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
	border-color: var(--green);
}

.quick-link-card .card-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: white;
	font-size: 2rem;
}

.quick-link-card h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 16px;
}

.quick-link-card p {
	color: #6b7280;
	margin: 0 0 24px;
	line-height: 1.6;
}

.card-preview {
	background: rgba(22,163,74,0.05);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 24px;
}

.preview-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(22,163,74,0.1);
}

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

.preview-item .time,
.preview-item .player-name,
.preview-item .product {
	font-weight: 600;
	color: var(--dark);
}

.preview-item .teams,
.preview-item .stats,
.preview-item .price {
	color: var(--green);
	font-weight: 500;
}

/* Featured Matches Section */
.featured-matches-section {
	padding: 80px 0;
	background: white;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.view-all-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	text-decoration: none;
	font-weight: 600;
	transition: all .2s ease;
}

.view-all-link:hover {
	color: #15803d;
	transform: translateX(4px);
}

.featured-matches-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
}

.match-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 24px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
}

.match-card.featured {
	border-color: var(--green);
	box-shadow: 0 20px 40px rgba(22,163,74,0.15);
}

.match-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.match-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.competition {
	background: var(--green);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.match-date {
	color: #6b7280;
	font-size: 0.9rem;
}

.match-teams {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 20px;
	align-items: center;
	margin-bottom: 20px;
}

.team {
	text-align: center;
}

.team img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
	border: 2px solid var(--border);
}

.team span {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--dark);
}

.vs {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--green);
}

.match-venue {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.match-actions {
	display: flex;
	gap: 12px;
}

.btn-small {
	padding: 10px 16px;
	font-size: 0.9rem;
}

/* News Section */
.news-section {
	padding: 80px 0;
	background: var(--bg);
}

.news-filters {
	display: flex;
	gap: 12px;
}

.filter-btn {
	padding: 10px 20px;
	background: white;
	border: 1px solid var(--border);
	border-radius: 25px;
	color: #6b7280;
	font-weight: 500;
	cursor: pointer;
	transition: all .2s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--green);
	color: white;
	border-color: var(--green);
}

/* Statistics Overview Section */
.stats-overview-section {
	padding: 80px 0;
	background: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.stat-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow);
	transition: all .3s ease;
	display: flex;
	align-items: center;
	gap: 24px;
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--green), #22c55e);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	flex-shrink: 0;
}

.stat-content {
	flex: 1;
}

.stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 8px;
}

.stat-label {
	color: #6b7280;
	font-size: 1rem;
	margin-bottom: 12px;
}

.stat-change {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 500;
}

.stat-change.positive {
	color: #16a34a;
}

.stat-change.negative {
	color: #dc2626;
}

.stat-change.neutral {
	color: #6b7280;
}

/* Call to Action Section */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--green), #22c55e);
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 24px;
}

.cta-content p {
	font-size: 1.2rem;
	margin: 0 0 40px;
	opacity: 0.9;
}

.cta-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.cta-actions .btn-outline {
	border-color: white;
	color: white;
}

.cta-actions .btn-outline:hover {
	background: white;
	color: var(--green);
}

/* Responsive Design for Home Page */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.hero-text h1 {
		font-size: 3rem;
	}
	
	.hero-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.quick-links-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	.featured-matches-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	
	.stats-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (max-width: 768px) {
	.hero-text h1 {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.hero-actions .btn {
		width: 100%;
		max-width: 300px;
	}
	
	.section-header {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.news-filters {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.cta-content h2 {
		font-size: 2.2rem;
	}
	
	.cta-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-actions .btn {
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.hero-card {
		padding: 24px;
	}
	
	.match-preview {
		gap: 16px;
	}
	
	.team img {
		width: 60px;
		height: 60px;
	}
	
	.quick-links-grid {
		grid-template-columns: 1fr;
	}
	
	.featured-matches-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.stat-card {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.cta-content h2 {
		font-size: 1.8rem;
	}
}

/* Login Button Styles */
.login-btn {
	padding: 10px 20px;
	font-size: 0.95rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .2s ease;
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(22,163,74,0.3);
}

/* Responsive Login Button */
@media (max-width: 768px) {
	.login-btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
	
	.login-btn span {
		display: none;
	}
}

@media (max-width: 480px) {
	.login-btn {
		padding: 6px 12px;
		font-size: 0.85rem;
	}
}

/* Responsive Navbar Styles */
@media (max-width: 1024px) {
	.nav-links {
		gap: 24px;
	}
	
	.nav-links a {
		font-size: 0.95rem;
	}
	
	.search:focus-within input {
		width: 150px;
	}
}

@media (max-width: 768px) {
	.navbar {
		position: fixed;
		width: 100%;
	}
	
	main {
		margin-top: 80px;
	}
	
	.nav-inner {
		padding: 12px 0;
		gap: 16px;
	}
	
	.logo {
		font-size: 1.2rem;
	}
	
	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255,255,255,0.98);
		backdrop-filter: blur(20px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 24px;
		transform: translateX(-100%);
		transition: transform .3s ease;
		z-index: 999;
	}
	
	.nav-links.open {
		transform: translateX(0);
	}
	
	.nav-links a {
		font-size: 1.2rem;
		font-weight: 600;
		padding: 16px 24px;
		border-radius: 12px;
		transition: all .2s ease;
		width: 80%;
		text-align: center;
	}
	
	.nav-links a:hover {
		background: rgba(22,163,74,0.1);
		color: var(--green);
		transform: none;
	}
	
	.nav-links a::after {
		display: none;
	}
	
	/* Mobile Login Button in Nav Items */
	.nav-links .mobile-login-btn {
		background: var(--green);
		color: white;
		border: none;
		padding: 16px 24px;
		border-radius: 12px;
		font-size: 1.2rem;
		font-weight: 600;
		cursor: pointer;
		transition: all .2s ease;
		width: 80%;
		text-align: center;
		margin-top: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}
	
	.nav-links .mobile-login-btn:hover {
		background: #15803d;
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(22,163,74,0.3);
	}
	
	.nav-close {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		font-size: 2rem;
		color: var(--dark);
		cursor: pointer;
		padding: 8px;
		border-radius: 50%;
		transition: all .2s ease;
	}
	
	.nav-close:hover {
		background: rgba(22,163,74,0.1);
		color: var(--green);
	}
	
	.hamburger {
		display: block;
		z-index: 1001;
	}
	
	.search {
		display: none;
	}
	
	.login-btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
	
	.login-btn span {
		display: none;
	}
	
	.cart {
		padding: 6px;
	}
	
	.cart .icon {
		font-size: 1.2rem;
	}
}

@media (max-width: 480px) {
	.nav-inner {
		padding: 10px 0;
		gap: 12px;
	}
	
	.logo {
		font-size: 1.1rem;
	}
	
	.nav-links {
		gap: 20px;
	}
	
	.nav-links a {
		font-size: 1.1rem;
		padding: 14px 20px;
		width: 90%;
	}
	
	.nav-actions {
		gap: 12px;
	}
	
	.login-btn {
		padding: 6px 12px;
		font-size: 0.85rem;
	}
	
	.cart {
		padding: 4px;
	}
	
	.cart .icon {
		font-size: 1.1rem;
	}
}

/* Sitemap Section Styles */
.sitemap-section {
	padding: 80px 0;
	background: var(--bg);
}

.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.sitemap-category h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--dark);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--green);
}

.sitemap-category ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sitemap-category li {
	margin-bottom: 12px;
}

.sitemap-category a {
	color: #6b7280;
	text-decoration: none;
	font-size: 1rem;
	transition: all .2s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sitemap-category a:hover {
	color: var(--green);
	transform: translateX(4px);
}

.sitemap-category a::before {
	content: '→';
	color: var(--green);
	font-weight: 600;
}

/* Responsive Sitemap */
@media (max-width: 768px) {
	.sitemap-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 30px;
	}
}

@media (max-width: 480px) {
	.sitemap-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.sitemap-category h3 {
		font-size: 1.2rem;
	}
}

/* Search Section Styles */
.search-section {
	padding: 80px 0;
	background: white;
}

.search-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.search-content .section-title {
	margin-bottom: 16px;
}

.search-content p {
	color: #6b7280;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.search-tools {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.search-box {
	display: flex;
	width: 100%;
	max-width: 500px;
	background: white;
	border: 2px solid var(--border);
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	transition: all .3s ease;
}

.search-box:focus-within {
	border-color: var(--green);
	box-shadow: 0 8px 30px rgba(22,163,74,0.2);
}

.search-box input {
	flex: 1;
	padding: 18px 24px;
	border: none;
	outline: none;
	font-size: 1.1rem;
}

.search-btn {
	background: var(--green);
	color: white;
	border: none;
	padding: 18px 24px;
	cursor: pointer;
	transition: all .2s ease;
}

.search-btn:hover {
	background: #15803d;
}

.quick-filters {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.filter-tag {
	padding: 10px 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 25px;
	color: #6b7280;
	font-weight: 500;
	cursor: pointer;
	transition: all .2s ease;
}

.filter-tag:hover,
.filter-tag.active {
	background: var(--green);
	color: white;
	border-color: var(--green);
	transform: translateY(-2px);
}

/* Responsive Search Section */
@media (max-width: 768px) {
	.search-box {
		max-width: 100%;
	}
	
	.search-box input {
		padding: 16px 20px;
		font-size: 1rem;
	}
	
	.search-btn {
		padding: 16px 20px;
	}
	
	.quick-filters {
		gap: 8px;
	}
	
	.filter-tag {
		padding: 8px 16px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.search-content p {
		font-size: 1rem;
	}
	
	.search-box input {
		padding: 14px 18px;
		font-size: 0.95rem;
	}
	
	.search-btn {
		padding: 14px 18px;
	}
}

/* User Registration Form Styles */
body.registration-page {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.registration-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 500px;
}

.registration-header {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: white;
	padding: 30px;
	text-align: center;
}

.registration-header h1 {
	font-size: 2rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.registration-header p {
	opacity: 0.9;
	font-size: 1rem;
}

.registration-form-container {
	padding: 40px;
}

.registration-form-group {
	margin-bottom: 25px;
}

.registration-form-group label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.registration-form-group input {
	width: 100%;
	padding: 15px 18px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #f9fafb;
}

.registration-form-group input:focus {
	outline: none;
	border-color: #22c55e;
	background: white;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.registration-form-group input.error {
	border-color: #ef4444;
	background: #fef2f2;
}

.registration-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 5px;
	display: none;
}

.registration-validation-summary-errors {
	background: #fee2e2;
	color: #991b1b;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #fecaca;
}

.registration-validation-summary-errors ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.registration-validation-summary-errors li {
	margin-bottom: 5px;
}

.registration-form-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.registration-btn {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	display: inline-block;
}

.registration-btn-primary {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: white;
}

.registration-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.registration-btn-outline {
	background: transparent;
	color: #6b7280;
	border: 2px solid #d1d5db;
}

.registration-btn-outline:hover {
	background: #f3f4f6;
	border-color: #9ca3af;
}

.registration-login-link {
	text-align: center;
	margin-top: 25px;
	color: #6b7280;
}

.registration-login-link a {
	color: #22c55e;
	text-decoration: none;
	font-weight: 600;
}

.registration-login-link a:hover {
	text-decoration: underline;
}

.registration-success-message {
	background: #d1fae5;
	color: #065f46;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
}

.registration-error-alert {
	background: #fee2e2;
	color: #991b1b;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
}

.registration-field-validation-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 5px;
	display: block;
}

.registration-input-validation-error {
	border-color: #ef4444 !important;
	background: #fef2f2 !important;
}

/* Responsive Registration Form */
@media (max-width: 768px) {
	.registration-container {
		margin: 10px;
		border-radius: 15px;
	}
	
	.registration-header {
		padding: 25px 20px;
	}
	
	.registration-form-container {
		padding: 30px 20px;
	}
	
	.registration-form-actions {
		flex-direction: column;
	}
}

/* Login Form Styles */
body.login-page {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.login-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
	max-width: 450px;
}

.login-header {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: white;
	padding: 30px;
	text-align: center;
}

.login-header h1 {
	font-size: 2rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.login-header p {
	opacity: 0.9;
	font-size: 1rem;
}

.login-form-container {
	padding: 40px;
}

.login-form-group {
	margin-bottom: 25px;
}

.login-form-group label {
	display: block;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.login-form-group input {
	width: 100%;
	padding: 15px 18px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #f9fafb;
}

.login-form-group input:focus {
	outline: none;
	border-color: #22c55e;
	background: white;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.login-form-group input.error {
	border-color: #ef4444;
	background: #fef2f2;
}

.login-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 5px;
	display: none;
}

.login-validation-summary-errors {
	background: #fee2e2;
	color: #991b1b;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #fecaca;
}

.login-validation-summary-errors ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.login-validation-summary-errors li {
	margin-bottom: 5px;
}

.login-form-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.login-btn {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	text-align: center;
	display: inline-block;
}

.login-btn-primary {
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
	color: white;
}

.login-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.login-btn-outline {
	background: transparent;
	color: #6b7280;
	border: 2px solid #d1d5db;
}

.login-btn-outline:hover {
	background: #f3f4f6;
	border-color: #9ca3af;
}

.login-register-link {
	text-align: center;
	margin-top: 25px;
	color: #6b7280;
}

.login-register-link a {
	color: #22c55e;
	text-decoration: none;
	font-weight: 600;
}

.login-register-link a:hover {
	text-decoration: underline;
}

.login-success-message {
	background: #d1fae5;
	color: #065f46;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
}

.login-error-alert {
	background: #fee2e2;
	color: #991b1b;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
}

.login-field-validation-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 5px;
	display: block;
}

.login-input-validation-error {
	border-color: #ef4444 !important;
	background: #fef2f2 !important;
}

/* Responsive Login Form */
@media (max-width: 768px) {
	.login-container {
		margin: 10px;
		border-radius: 15px;
	}
	
	.login-header {
		padding: 25px 20px;
	}
	
	.login-form-container {
		padding: 30px 20px;
	}
	
	.login-form-actions {
		flex-direction: column;
	}
}

.profile { 
    position: relative; 
    display: none !important; /* Force hidden by default */
}
.profile:not(:empty) {
    display: block !important; /* Force show when it contains content */
}

/* Additional rule to ensure profile is hidden when not logged in */
.nav-actions .profile {
    display: none !important;
}

/* Only show profile when it's actually rendered (logged in) */
.nav-actions .profile:not(:empty) {
    display: block !important;
}