@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Montserrat:wght@400;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color Palette */
	--cf-bg-primary: #0a0c10;
	--cf-bg-secondary: #151820;
	--cf-accent-orange: #ff4500;
	--cf-accent-green: #00c896;
	--cf-accent-yellow: #ffd60a;
	--cf-text-primary: #f5f5f5;
	--cf-text-secondary: #b0b7c3;
	--cf-text-muted: #8a92a5;

	/* Gradients */
	--cf-gradient-hero: linear-gradient(
		135deg,
		#0a0c10 0%,
		#151820 50%,
		#1a1f2e 100%
	);
	--cf-gradient-card: linear-gradient(145deg, #151820 0%, #1a1f2e 100%);
	--cf-gradient-orange: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
	--cf-gradient-green: linear-gradient(135deg, #00c896 0%, #05d9a7 100%);

	/* Shadows */
	--cf-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
	--cf-shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.4);
	--cf-shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.5);
	--cf-shadow-orange: 0 8px 32px rgba(255, 69, 0, 0.3);
	--cf-shadow-green: 0 8px 32px rgba(0, 200, 150, 0.3);

	/* Transitions */
	--cf-transition-fast: all 0.2s ease;
	--cf-transition-smooth: all 0.3s ease;
	--cf-transition-slow: all 0.5s ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	background: var(--cf-bg-primary);
	color: var(--cf-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

.cf-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.cf-wide-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* === TYPOGRAPHY === */
.cf-heading-xl {
	font-family: 'Montserrat', sans-serif;
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.cf-heading-lg {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1.2rem;
}

.cf-heading-md {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.cf-heading-sm {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.8rem;
}

.cf-text-lg {
	font-size: 1.2rem;
	color: var(--cf-text-secondary);
	line-height: 1.7;
}

.cf-text-base {
	font-size: 1rem;
	color: var(--cf-text-secondary);
	line-height: 1.6;
}

.cf-text-sm {
	font-size: 0.9rem;
	color: var(--cf-text-muted);
	line-height: 1.5;
}

/* === HEADER === */
.cf-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(21, 24, 32, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 69, 0, 0.1);
	z-index: 1000;
	transition: var(--cf-transition-smooth);
}

.cf-header.cf-scrolled {
	background: rgba(21, 24, 32, 0.98);
	box-shadow: var(--cf-shadow-medium);
}

.cf-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.cf-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--cf-text-primary);
	text-decoration: none;
	background: var(--cf-gradient-orange);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: var(--cf-transition-fast);
}

.cf-logo:hover {
	transform: scale(1.05);
}

.cf-nav {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.cf-nav-link {
	color: var(--cf-text-primary);
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: var(--cf-transition-fast);
}

.cf-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--cf-gradient-orange);
	transition: var(--cf-transition-fast);
}

.cf-nav-link:hover::after,
.cf-nav-link.cf-active::after {
	width: 100%;
}

.cf-nav-link:hover {
	color: var(--cf-accent-orange);
	transform: translateY(-2px);
}

.cf-cta-btn {
	background: var(--cf-gradient-orange);
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--cf-transition-fast);
	box-shadow: var(--cf-shadow-orange);
}

.cf-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(255, 69, 0, 0.4);
}

/* Mobile Menu */
.cf-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 8px;
}

.cf-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: var(--cf-text-primary);
	transition: var(--cf-transition-fast);
}

.cf-mobile-menu {
	display: none;
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	background: var(--cf-bg-secondary);
	box-shadow: var(--cf-shadow-medium);
	z-index: 999;
}

.cf-mobile-menu.cf-active {
	display: block;
	animation: cf-fadeInDown 0.3s ease;
}

.cf-mobile-nav {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* === BUTTONS === */
.cf-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: var(--cf-transition-fast);
	font-size: 1rem;
}

.cf-btn-primary {
	background: var(--cf-gradient-orange);
	color: white;
	box-shadow: var(--cf-shadow-orange);
}

.cf-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(255, 69, 0, 0.4);
}

.cf-btn-secondary {
	background: var(--cf-gradient-green);
	color: white;
	box-shadow: var(--cf-shadow-green);
}

.cf-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 200, 150, 0.4);
}

.cf-btn-outline {
	background: transparent;
	color: var(--cf-text-primary);
	border: 2px solid var(--cf-accent-orange);
}

.cf-btn-outline:hover {
	background: var(--cf-accent-orange);
	color: white;
	transform: translateY(-3px);
}

/* === HERO SECTION === */
.cf-hero {
	min-height: 100vh;
	background: var(--cf-gradient-hero);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.cf-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FF4500" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%2300C896" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23FFD60A" opacity="0.1"/></svg>')
		repeat;
	animation: cf-float 20s linear infinite;
}

.cf-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.cf-hero-text h1 {
	background: linear-gradient(
		135deg,
		var(--cf-text-primary) 0%,
		var(--cf-accent-orange) 50%,
		var(--cf-accent-green) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.cf-hero-text p {
	font-size: 1.3rem;
	color: var(--cf-text-secondary);
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.cf-hero-actions {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.cf-hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: relative;
}

.cf-hero-image {
	width: 100%;
	max-width: 500px;
	height: 100%;
	border-radius: 20px;
	box-shadow: var(--cf-shadow-strong);
	transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
	transition: var(--cf-transition-slow);
}

.cf-hero-image:hover {
	transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.02);
}

/* === SECTIONS === */
.cf-section {
	padding: 6rem 0;
	position: relative;
}

.cf-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.cf-section-title {
	background: linear-gradient(
		135deg,
		var(--cf-text-primary) 0%,
		var(--cf-accent-orange) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.cf-section-subtitle {
	font-size: 1.2rem;
	color: var(--cf-text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* === CARDS === */
.cf-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.cf-card {
	background: var(--cf-gradient-card);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: var(--cf-shadow-soft);
	transition: var(--cf-transition-smooth);
	border: 1px solid rgba(255, 69, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.cf-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: var(--cf-gradient-orange);
	transition: var(--cf-transition-smooth);
}

.cf-card:hover::before {
	left: 0;
}

.cf-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cf-shadow-medium);
	border-color: var(--cf-accent-orange);
}

.cf-card-image {
	width: 100%;
	height: 200px;
	background: var(--cf-bg-secondary);
	border-radius: 12px;
	margin-bottom: 1.5rem;
	overflow: hidden;
	position: relative;
}

.cf-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--cf-transition-smooth);
}

.cf-card:hover .cf-card-image img {
	transform: scale(1.1);
}

.cf-card-title {
	color: var(--cf-text-primary);
	margin-bottom: 0.8rem;
	font-size: 1.4rem;
}

.cf-card-text {
	color: var(--cf-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.cf-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--cf-text-muted);
}

.cf-card-date {
	background: var(--cf-accent-orange);
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
}

/* === TEAMS GRID === */
.cf-teams-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.cf-team-card {
	background: var(--cf-gradient-card);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: var(--cf-transition-smooth);
	border: 1px solid rgba(0, 200, 150, 0.1);
	position: relative;
	overflow: hidden;
}

.cf-team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: var(--cf-gradient-green);
	transition: var(--cf-transition-smooth);
}

.cf-team-card:hover::before {
	left: 0;
}

.cf-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cf-shadow-green);
	border-color: var(--cf-accent-green);
}

.cf-team-logo {
	width: 80px;
	height: 80px;
	background: var(--cf-bg-primary);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--cf-accent-green);
	border: 3px solid var(--cf-accent-green);
}

.cf-team-name {
	color: var(--cf-text-primary);
	margin-bottom: 0.8rem;
	font-size: 1.3rem;
}

.cf-team-info {
	color: var(--cf-text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.cf-team-stats {
	display: flex;
	justify-content: space-around;
	margin: 1.5rem 0;
	padding: 1rem;
	background: rgba(0, 200, 150, 0.1);
	border-radius: 8px;
}

.cf-stat {
	text-align: center;
}

.cf-stat-number {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--cf-accent-green);
	display: block;
}

.cf-stat-label {
	font-size: 0.7rem;
	color: var(--cf-text-muted);
}

/* === PLAYERS GRID === */
.cf-players-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.cf-player-card {
	background: var(--cf-gradient-card);
	border-radius: 16px;
	overflow: hidden;
	transition: var(--cf-transition-smooth);
	border: 1px solid rgba(255, 214, 10, 0.1);
	position: relative;
}

.cf-player-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 3px;
	background: var(--cf-accent-yellow);
	transition: var(--cf-transition-smooth);
	z-index: 2;
}

.cf-player-card:hover::before {
	left: 0;
}

.cf-player-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(255, 214, 10, 0.3);
	border-color: var(--cf-accent-yellow);
}

.cf-player-image {
	width: 100%;
	height: 250px;
	background: var(--cf-bg-primary);
	position: relative;
	overflow: hidden;
}

.cf-player-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--cf-transition-smooth);
}

.cf-player-card:hover .cf-player-image img {
	transform: scale(1.1);
}

.cf-player-info {
	padding: 2rem;
}

.cf-player-name {
	color: var(--cf-text-primary);
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.cf-player-position {
	color: var(--cf-accent-yellow);
	font-weight: 600;
	margin-bottom: 1rem;
}

.cf-player-club {
	color: var(--cf-text-secondary);
	margin-bottom: 1rem;
}

.cf-player-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}

.cf-player-stat {
	background: rgba(255, 214, 10, 0.1);
	padding: 0.8rem;
	border-radius: 8px;
	text-align: center;
}

.cf-player-stat-value {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--cf-accent-yellow);
	display: block;
}

.cf-player-stat-label {
	font-size: 0.8rem;
	color: var(--cf-text-muted);
}

/* === TESTIMONIALS SLIDER === */
.cf-testimonials {
	background: var(--cf-bg-secondary);
	border-radius: 20px;
	padding: 4rem 2rem;
	margin: 4rem 0;
	position: relative;
	overflow: hidden;
}

.cf-testimonials::before {
	content: '"';
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 8rem;
	color: var(--cf-accent-orange);
	opacity: 0.3;
	font-family: serif;
}

.cf-testimonials-slider {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.cf-testimonial {
	text-align: center;
	opacity: 0;
	display: none;
	transform: translateX(50px);
	transition: var(--cf-transition-smooth);
	position: absolute;
	width: 100%;
}

.cf-testimonial.cf-active {
	opacity: 1;
	display: block;
	transform: translateX(0);
	position: relative;
}

.cf-testimonial-text {
	font-size: 1.3rem;
	color: var(--cf-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
	font-style: italic;
}

.cf-testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.cf-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--cf-gradient-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
}

.cf-testimonial-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.cf-testimonial-info {
	text-align: left;
}

.cf-testimonial-info h4 {
	color: var(--cf-text-primary);
	margin-bottom: 0.3rem;
}

.cf-testimonial-info p {
	color: var(--cf-text-muted);
	font-size: 0.9rem;
}

.cf-testimonials-nav {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.cf-testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--cf-text-muted);
	cursor: pointer;
	transition: var(--cf-transition-fast);
}

.cf-testimonial-dot.cf-active {
	background: var(--cf-accent-orange);
	transform: scale(1.2);
}

/* === CONTACT FORM === */
.cf-contact {
	background: var(--cf-bg-secondary);
	border-radius: 20px;
	padding: 4rem;
	margin: 4rem 0;
}

.cf-contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.cf-contact-info h3 {
	color: var(--cf-text-primary);
	margin-bottom: 1.5rem;
}

.cf-contact-info p {
	color: var(--cf-text-secondary);
	margin-bottom: 2rem;
	line-height: 1.7;
}

.cf-contact-details {
	space-y: 1.5rem;
}

.cf-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.cf-contact-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background: var(--cf-gradient-orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.cf-contact-text {
	color: var(--cf-text-secondary);
}

.cf-form {
	display: grid;
	gap: 1.5rem;
}

.cf-form-group {
	display: flex;
	flex-direction: column;
}

.cf-label {
	color: var(--cf-text-primary);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.cf-input,
.cf-textarea {
	background: var(--cf-bg-primary);
	border: 2px solid rgba(255, 69, 0, 0.2);
	border-radius: 8px;
	padding: 12px 16px;
	color: var(--cf-text-primary);
	font-size: 1rem;
	transition: var(--cf-transition-fast);
}

.cf-input:focus,
.cf-textarea:focus {
	outline: none;
	border-color: var(--cf-accent-orange);
	box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.cf-textarea {
	resize: vertical;
	min-height: 120px;
}

.cf-form-submit {
	background: var(--cf-gradient-orange);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--cf-transition-fast);
}

.cf-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: var(--cf-shadow-orange);
}

/* === MAP === */
.cf-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.cf-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.cf-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.cf-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* === FOOTER === */
.cf-footer {
	background: var(--cf-bg-primary);
	border-top: 1px solid rgba(255, 69, 0, 0.1);
	padding: 4rem 0 2rem;
}

.cf-footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.cf-footer-brand h3 {
	color: var(--cf-text-primary);
	margin-bottom: 1rem;
	background: var(--cf-gradient-orange);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cf-footer-brand p {
	color: var(--cf-text-secondary);
	line-height: 1.6;
}

.cf-footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.cf-footer-section h4 {
	color: var(--cf-text-primary);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.cf-footer-section ul {
	list-style: none;
}

.cf-footer-section li {
	margin-bottom: 0.5rem;
}

.cf-footer-section a {
	color: var(--cf-text-secondary);
	text-decoration: none;
	transition: var(--cf-transition-fast);
}

.cf-footer-section a:hover {
	color: var(--cf-accent-orange);
}

.cf-footer-contact h4 {
	color: var(--cf-text-primary);
	margin-bottom: 1rem;
}

.cf-footer-contact p {
	color: var(--cf-text-secondary);
	margin-bottom: 0.8rem;
	line-height: 1.6;
}

.cf-footer-bottom {
	border-top: 1px solid rgba(255, 69, 0, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: var(--cf-text-muted);
}

/* === ANIMATIONS === */
@keyframes cf-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cf-fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cf-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cf-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cf-float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(180deg);
	}
}

@keyframes cf-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Animation Classes */
.cf-animate-fadeInUp {
	animation: cf-fadeInUp 0.6s ease forwards;
}

.cf-animate-fadeInDown {
	animation: cf-fadeInDown 0.6s ease forwards;
}

.cf-animate-fadeInLeft {
	animation: cf-fadeInLeft 0.6s ease forwards;
}

.cf-animate-fadeInRight {
	animation: cf-fadeInRight 0.6s ease forwards;
}

.cf-animate-float {
	animation: cf-float 6s ease-in-out infinite;
}

.cf-animate-pulse {
	animation: cf-pulse 2s ease-in-out infinite;
}

/* === UTILITY CLASSES === */
.cf-text-center {
	text-align: center;
}
.cf-text-left {
	text-align: left;
}
.cf-text-right {
	text-align: right;
}

.cf-mb-1 {
	margin-bottom: 0.5rem;
}
.cf-mb-2 {
	margin-bottom: 1rem;
}
.cf-mb-3 {
	margin-bottom: 1.5rem;
}
.cf-mb-4 {
	margin-bottom: 2rem;
}

.cf-mt-1 {
	margin-top: 0.5rem;
}
.cf-mt-2 {
	margin-top: 1rem;
}
.cf-mt-3 {
	margin-top: 1.5rem;
}
.cf-mt-4 {
	margin-top: 2rem;
}

.cf-p-1 {
	padding: 0.5rem;
}
.cf-p-2 {
	padding: 1rem;
}
.cf-p-3 {
	padding: 1.5rem;
}
.cf-p-4 {
	padding: 2rem;
}

.cf-hidden {
	display: none;
}
.cf-block {
	display: block;
}
.cf-flex {
	display: flex;
}
.cf-grid {
	display: grid;
}

.cf-w-full {
	width: 100%;
}
.cf-h-full {
	height: 100%;
}

.cf-opacity-50 {
	opacity: 0.5;
}
.cf-opacity-75 {
	opacity: 0.75;
}

/* === COOKIE POPUP === */
.cf-cookie-popup {
	position: fixed;
	display: none;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--cf-bg-secondary);
	border-top: 2px solid var(--cf-accent-orange);
	padding: 1.5rem;
	z-index: 10000;
	transform: translateY(100%);
	transition: var(--cf-transition-smooth);
}

.cf-cookie-popup.cf-show {
	transform: translateY(0);
	display: block;
}

.cf-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.cf-cookie-text {
	color: var(--cf-text-secondary);
	flex: 1;
}

.cf-cookie-actions {
	display: flex;
	gap: 1rem;
}

.cf-cookie-btn {
	padding: 8px 16px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	font-weight: 500;
	transition: var(--cf-transition-fast);
}

.cf-cookie-accept {
	background: var(--cf-gradient-orange);
	color: white;
}

.cf-cookie-accept:hover {
	transform: translateY(-2px);
}

.cf-cookie-learn {
	background: transparent;
	color: var(--cf-text-primary);
	text-decoration: underline;
	border: none;
}

/* === LOADING STATES === */
.cf-loading {
	opacity: 0.7;
	pointer-events: none;
}

.cf-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid var(--cf-text-muted);
	border-top: 2px solid var(--cf-accent-orange);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* === NEWS PAGE SPECIFIC === */
.cf-news-filter {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}

.cf-filter-btn {
	padding: 8px 16px;
	background: transparent;
	color: var(--cf-text-secondary);
	border: 1px solid var(--cf-text-muted);
	border-radius: 20px;
	cursor: pointer;
	transition: var(--cf-transition-fast);
}

.cf-filter-btn.cf-active,
.cf-filter-btn:hover {
	background: var(--cf-accent-orange);
	color: white;
	border-color: var(--cf-accent-orange);
}

/* === TEAMS PAGE SPECIFIC === */
.cf-team-comparison {
	background: var(--cf-bg-secondary);
	border-radius: 16px;
	padding: 2rem;
	margin: 3rem 0;
}

.cf-comparison-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: center;
}

.cf-vs-divider {
	font-size: 2rem;
	font-weight: 800;
	color: var(--cf-accent-orange);
	text-align: center;
}

/* === PLAYERS PAGE SPECIFIC === */
.cf-player-tabs {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	margin-bottom: 3rem;
	background: var(--cf-bg-secondary);
	border-radius: 10px;
	padding: 4px;
}

.cf-tab-btn {
	flex: 1;
	padding: 12px 20px;
	background: transparent;
	color: var(--cf-text-secondary);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--cf-transition-fast);
	font-weight: 500;
}

.cf-tab-btn.cf-active {
	background: var(--cf-gradient-orange);
	color: white;
}

.cf-tab-content {
	display: none;
}

.cf-tab-content.cf-active {
	display: block;
	animation: cf-fadeInUp 0.4s ease;
}

/* === BREADCRUMBS === */
.cf-breadcrumbs {
	padding: 1rem 0;
	margin-top: 80px;
	background: rgba(21, 24, 32, 0.5);
}

.cf-breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	font-size: 0.9rem;
}

.cf-breadcrumb-item {
	color: var(--cf-text-muted);
}

.cf-breadcrumb-item a {
	color: var(--cf-text-secondary);
	text-decoration: none;
	transition: var(--cf-transition-fast);
}

.cf-breadcrumb-item a:hover {
	color: var(--cf-accent-orange);
}

.cf-breadcrumb-separator {
	color: var(--cf-text-muted);
	margin: 0 0.5rem;
}

.cf-breadcrumb-current {
	color: var(--cf-accent-orange);
	font-weight: 500;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
	.cf-container {
		max-width: 960px;
	}
	.cf-wide-container {
		max-width: 1140px;
	}
}

@media (max-width: 992px) {
	.cf-container {
		max-width: 720px;
	}
	.cf-wide-container {
		max-width: 960px;
	}

	.cf-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.cf-contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cf-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.cf-nav {
		display: none;
	}

	.cf-mobile-toggle {
		display: flex;
	}

	.cf-hero-actions {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.cf-container {
		max-width: 540px;
	}
	.cf-wide-container {
		max-width: 720px;
	}

	.cf-heading-xl {
		font-size: 2.5rem;
	}
	.cf-heading-lg {
		font-size: 2rem;
	}
	.cf-heading-md {
		font-size: 1.8rem;
	}

	.cf-section {
		padding: 4rem 0;
	}

	.cf-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cf-teams-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.cf-players-grid {
		grid-template-columns: 1fr;
	}

	.cf-hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.cf-contact {
		padding: 2rem;
	}

	.cf-testimonials {
		padding: 2rem 1rem;
	}
}

@media (max-width: 576px) {
	.cf-container {
		max-width: 100%;
		padding: 0 15px;
	}

	.cf-header-content .cf-cta-btn {
		display: none;
	}
	.cf-wide-container {
		max-width: 100%;
		padding: 0 15px;
	}

	.cf-heading-xl {
		font-size: 2rem;
	}
	.cf-heading-lg {
		font-size: 1.7rem;
	}

	.cf-comparison-grid {
		grid-template-columns: 1fr;
	}

	.cf-hero-text p {
		font-size: 1.1rem;
	}

	.cf-card {
		padding: 1.5rem;
	}
	.cf-team-card {
		padding: 1.5rem;
	}
	.cf-player-info {
		padding: 1.5rem;
	}

	.cf-btn {
		padding: 12px 20px;
		font-size: 0.9rem;
	}

	.cf-contact {
		padding: 1.5rem;
	}

	.cf-footer-links {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cf-player-tabs {
		flex-direction: column;
	}
}

.cf-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 20px;
	min-height: 100vh;
	position: relative;
}

.cf-legal-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0a0c10 0%, #151820 50%, #0a0c10 100%);
	z-index: -2;
}

.cf-legal-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 20% 20%,
			rgba(255, 69, 0, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 80%,
			rgba(0, 200, 150, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 50% 50%,
			rgba(255, 214, 10, 0.05) 0%,
			transparent 70%
		);
	z-index: -1;
}

.cf-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.cf-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ff4500;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
	position: relative;
}

.cf-legal-subtitle {
	font-size: 1.2rem;
	color: #00c896;
	font-weight: 300;
	margin-bottom: 0.5rem;
}

.cf-legal-company {
	font-size: 1rem;
	color: #ffd60a;
	font-weight: 500;
}

.cf-legal-content {
	background: rgba(21, 24, 32, 0.8);
	border-radius: 15px;
	padding: 2.5rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 69, 0, 0.2);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
}

.cf-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #ff4500, #00c896, #ffd60a);
}

.cf-legal-section {
	margin-bottom: 2.5rem;
	padding: 1.5rem;
	background: rgba(10, 12, 16, 0.5);
	border-radius: 10px;
	border-left: 4px solid #00c896;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 200, 150, 0.1);
}

.cf-legal-section:nth-child(even) {
	border-left-color: #ff4500;
}

.cf-legal-section:nth-child(3n) {
	border-left-color: #ffd60a;
}

.cf-legal-section h2 {
	font-size: 1.5rem;
	color: #ff4500;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cf-legal-section h2::before {
	content: '⚽';
	font-size: 1.2rem;
}

.cf-legal-section p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #f5f5f5;
}

.cf-legal-section ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
}

.cf-legal-section li {
	margin-bottom: 0.5rem;
	color: #f5f5f5;
	position: relative;
}

.cf-legal-section li::marker {
	color: #00c896;
}

.cf-legal-highlight {
	background: linear-gradient(
		120deg,
		rgba(255, 69, 0, 0.2) 0%,
		rgba(0, 200, 150, 0.2) 100%
	);
	padding: 1.5rem;
	border-radius: 10px;
	margin: 1.5rem 0;
	border: 1px solid rgba(255, 214, 10, 0.3);
}

.cf-legal-contact {
	background: linear-gradient(
		135deg,
		rgba(255, 69, 0, 0.1) 0%,
		rgba(0, 200, 150, 0.1) 100%
	);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	margin-top: 3rem;
	border: 1px solid rgba(255, 214, 10, 0.3);
}

.cf-legal-contact h3 {
	color: #ffd60a;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.cf-legal-contact-info {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 1rem;
}

.cf-legal-contact-item {
	color: #f5f5f5;
	font-size: 0.95rem;
}

.cf-legal-contact-item strong {
	color: #00c896;
}

.cf-legal-last-updated {
	text-align: center;
	color: #ffd60a;
	font-style: italic;
	margin-top: 2rem;
	padding: 1rem;
	background: rgba(21, 24, 32, 0.5);
	border-radius: 10px;
}

/* 404 Page Specific Styles */
.cf-404-container {
	text-align: center;
	padding: 4rem 2rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.cf-404-number {
	font-size: 8rem;
	font-weight: 900;
	color: #ff4500;
	text-shadow: 0 0 30px rgba(255, 69, 0, 0.5);
	margin-bottom: 1rem;
	line-height: 1;
}

.cf-404-title {
	font-size: 2rem;
	color: #00c896;
	margin-bottom: 1rem;
}

.cf-404-description {
	font-size: 1.1rem;
	color: #f5f5f5;
	max-width: 500px;
	margin: 0 auto 2rem;
}

.cf-404-button {
	background: linear-gradient(135deg, #ff4500, #ff6b35);
	color: #f5f5f5;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.cf-404-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
	background: linear-gradient(135deg, #ff6b35, #ff4500);
}

/* Responsive Design */
@media (max-width: 768px) {
	.cf-legal-title {
		font-size: 2rem;
	}

	.cf-legal-content {
		padding: 1.5rem;
	}

	.cf-legal-section {
		padding: 1rem;
	}

	.cf-legal-contact-info {
		flex-direction: column;
		gap: 1rem;
	}

	.cf-404-number {
		font-size: 5rem;
	}

	.cf-404-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.cf-legal-title {
		font-size: 1.3rem;
	}

	.cf-cookie-content {
		flex-direction: column;
	}

	.cf-cookie-actions {
		flex-direction: column;
	}

	.cf-legal-section h2 {
		font-size: 1.3rem;
	}

	.cf-404-number {
		font-size: 4rem;
	}
}
