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

body {
	font-family: "Poppins", sans-serif;
	background: linear-gradient(135deg, #1a1a2e, #16213e);
	color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow-x: hidden;
	padding: 2rem 0;
}

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

.carousel-container {
	position: relative;
	width: 100%;
	padding: 2rem 0;
}

.carousel {
	display: flex;
	gap: 2rem;
	transition: transform 0.5s ease-out;
	padding: 1.5rem 0;
}

.card {
	flex: 0 0 350px;
	height: 500px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	transform-origin: center;
}

.card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-img {
	width: 100%;
	height: 60%;
	overflow: hidden;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
	transform-origin: center;
}

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

.card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 40%;
}

.card-tag {
	font-size: 0.85rem;
	color: #4ecdc4;
	margin-bottom: 0.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.card-title {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.card-text {
	font-size: 0.95rem;
	color: #b3b3b3;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.card-button {
	align-self: flex-start;
	padding: 0.5rem 1rem;
	background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
	color: white;
	border: none;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.card-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.navigation {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	gap: 1rem;
}

.nav-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.nav-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
}

.nav-btn:active {
	transform: scale(0.95);
}

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

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: #4ecdc4;
	transform: scale(1.3);
}

.progress-bar {
	width: 100%;
	height: 5px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 5px;
	margin-top: 1rem;
	overflow: hidden;
}

.progress {
	height: 100%;
	background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
	width: 16.66%;
	transition: width 0.3s ease;
}

@media (max-width: 768px) {
	.card {
		flex: 0 0 300px;
		height: 450px;
	}
}

@media (max-width: 480px) {
	.card {
		flex: 0 0 250px;
		height: 400px;
	}
	.card-title {
		font-size: 1.2rem;
	}
}