/* Skill Draft - Dark Supermodern Theme */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
	--primary-color: ##f9502c;
	--secondary-color: #ff6b35;
	--dark-bg: #0a0a0a;
	--card-bg: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--border-color: #333;
	--gradient-primary: linear-gradient(135deg, #f9502c 0%, #ff6b35 100%);
	--gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #cc5529 100%);
	--shadow-primary: 0 10px 40px rgba(255, 103, 43, 0.216);
	--shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

body {
	font-family: "Inter", sans-serif;
	background: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-bg);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 3px solid var(--border-color);
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

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

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

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

.nav-logo img {
	height: 40px;
	transition: transform 0.3s ease;
}

.nav-logo img:hover {
	transform: scale(1.05);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 212, 255, 0.1) 0%,
		transparent 70%
	);
	position: relative;
	overflow: hidden;
}

/* Video Hero */
.video-hero {
	background: none;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, 0.7);
	z-index: -1;
}

/* Page Hero Sections */
.page-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: calc(9rem) 2rem 4rem 2rem;
	background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(249, 80, 44, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(249, 80, 44, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(249, 80, 44, 0.05) 0%,
			transparent 50%
		);
	z-index: -1;
}

.hero-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(249, 80, 44, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 25px;
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.hero-stats {
	display: flex;
	gap: 3rem;
	justify-content: center;
	align-items: center;
}

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

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero-features,
.hero-contact-info {
	display: flex;
	gap: 2rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.feature-item,
.contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 25px;
	border: 1px solid rgba(249, 80, 44, 0.2);
	color: var(--text-secondary);
	transition: all 0.3s ease;
}

.feature-item:hover,
.contact-item:hover {
	background: rgba(249, 80, 44, 0.1);
	border-color: var(--primary-color);
	color: var(--text-primary);
	transform: translateY(-2px);
}

.feature-item i,
.contact-item i {
	color: var(--primary-color);
	font-size: 1.1rem;
}

.hero-topics {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.topic-tag {
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	color: var(--text-secondary);
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.topic-tag:hover {
	background: rgba(249, 80, 44, 0.1);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 50px rgba(255, 110, 21, 0.3);
}

.btn-secondary {
	background: transparent;
	color: var(--text-primary);
	border: 2px solid var(--border-color);
}

.btn-secondary:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/* Cards */
.card {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: var(--shadow-card);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Sections */
.section {
	padding: 5rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 3rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.grid {
	display: grid;
	gap: 2rem;
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Footer */
.footer {
	background: var(--card-bg);
	border-top: 1px solid var(--border-color);
	padding: 3rem 0 1rem;
	margin-top: 5rem;
}

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

.footer-section h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

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

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

.footer-links a {
	color: var(--text-secondary);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 1.5rem;
	max-width: 400px;
	box-shadow: var(--shadow-card);
	z-index: 1001;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.cookie-buttons .btn {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

/* Go to Top */
.go-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
}

.go-to-top.show {
	opacity: 1;
	visibility: visible;
}

.go-to-top:hover {
	transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.8s ease;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 1rem;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

/* Notification */
.notification {
	position: fixed;
	top: 2rem;
	right: 2rem;
	background: var(--gradient-primary);
	color: white;
	padding: 1rem 1.5rem;
	border-radius: 10px;
	box-shadow: var(--shadow-card);
	z-index: 1002;
	transform: translateX(400px);
	transition: transform 0.3s ease;
}

.notification.show {
	transform: translateX(0);
}

/* Modal Styles */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.modal-content {
	background: var(--card-bg);
	border-radius: 20px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: hidden;
	position: relative;
	border: 1px solid var(--border-color);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
	position: relative;
	height: 200px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.modal-header-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(3px);
	z-index: 1;
}

.modal-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 2;
}

.modal-header-content {
	position: relative;
	z-index: 3;
	color: white;
	padding: 2rem;
}

.modal-game-name {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.modal-coach-name {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.modal-coach-info {
	font-size: 1rem;
	opacity: 0.9;
}

.modal-body {
	padding: 2rem;
}

.modal-section {
	margin-bottom: 2rem;
}

.modal-section h3 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.modal-specialties {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.specialty-tag {
	padding: 0.5rem 1rem;
	background: rgba(249, 80, 44, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 20px;
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 500;
}

.modal-stats {
	display: flex;
	justify-content: space-around;
	text-align: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	margin-bottom: 2rem;
}

.modal-stat {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.modal-stat-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.modal-stat-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: white;
	font-size: 1.5rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.close:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.1);
}

/* Coaches Grid */
.coaches-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.coach-card {
	background: var(--card-bg);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
}

.coach-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.coach-card-header {
	position: relative;
	height: 150px;
	overflow: hidden;
}

.coach-card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.coach-card:hover .coach-card-bg {
	transform: scale(1.1);
}

.coach-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.8) 100%
	);
}

.coach-card-game {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.5rem 1rem;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.coach-card-content {
	padding: 1.5rem;
}

.coach-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.coach-rank {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.coach-experience {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.coach-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.stars {
	color: #ffd700;
}

.rating-text {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.coach-price {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-color);
}

/* Filter Buttons */
.filter-btn {
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.filter-btn.active {
	background: var(--gradient-primary);
	color: white;
	border-color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(10, 10, 10, 0.98);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.hamburger {
		display: flex;
	}

	.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);
	}

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

	.hero-video {
		height: 120%;
		top: -10%;
	}

	.page-hero {
		padding: calc(8rem) 1rem 4rem 1rem;
	}

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

	.hero-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-features,
	.hero-contact-info {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.hero-topics {
		justify-content: center;
	}

	.section-title {
		font-size: 2rem;
	}

	.container {
		padding: 0 1rem;
	}

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

	.cookie-popup {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		max-width: none;
	}

	.go-to-top {
		bottom: 1rem;
		right: 1rem;
	}

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

	.modal {
		padding: 1rem;
	}

	.modal-content {
		max-height: 95vh;
	}

	.modal-header {
		height: 150px;
	}

	.modal-coach-name {
		font-size: 1.5rem;
	}

	.modal-stats {
		flex-direction: column;
		gap: 1rem;
	}

	.modal-body {
		padding: 1.5rem;
	}
}

/* Coach/Program Cards */
.coach-card {
	background: var(--card-bg);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	cursor: pointer;
}

.coach-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

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

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

.coach-card:hover .game-image img {
	transform: scale(1.1);
}

.game-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.8) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
}

.game-title {
	color: white;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0;
}

.coach-info {
	padding: 1.5rem;
}

.coach-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.coach-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}

.coach-rank {
	font-size: 0.9rem;
	font-weight: 600;
}

.coach-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.stat {
	text-align: center;
}

.stat-value {
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.stat-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.coach-btn {
	width: 100%;
	padding: 1rem;
	border: none;
	border-radius: 50px;
	color: white;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.coach-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.coach-btn:hover i {
	transform: translateX(5px);
}

.coach-btn i {
	transition: transform 0.3s ease;
}

/* Slick Slider Overrides */
.slick-dots {
	bottom: -50px;
}

.slick-dots li button:before {
	color: var(--primary-color);
	font-size: 12px;
}

.slick-prev,
.slick-next {
	z-index: 1;
}

.slick-prev:before,
.slick-next:before {
	color: var(--primary-color);
	font-size: 20px;
}

/* Blog Cards */
.blog-card {
	background: var(--card-bg);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	position: relative;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

.blog-card:hover .blog-image img {
	transform: scale(1.1);
}

.blog-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.8) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}

.blog-meta {
	display: flex;
	gap: 1rem;
	color: white;
	font-size: 0.8rem;
	font-weight: 500;
}

.blog-meta i {
	margin-right: 0.25rem;
}

.blog-content {
	padding: 1.5rem;
}

.blog-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-title a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-title a:hover {
	color: var(--primary-color);
}

.blog-excerpt {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-tags {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.blog-tag {
	padding: 0.25rem 0.75rem;
	background: rgba(249, 80, 44, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 15px;
	color: var(--primary-color);
	font-size: 0.8rem;
	font-weight: 500;
}

.blog-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: var(--gradient-primary);
	color: white;
	border: none;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.blog-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 80, 44, 0.3);
}

.blog-btn i {
	transition: transform 0.3s ease;
}

.blog-btn:hover i {
	transform: translateX(3px);
}
