.slider-container {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: all 1s ease-in-out;
	transform: translateX(100%);
	overflow: hidden;
}

.slide.active {
	position: relative;
	opacity: 1;
	transform: translateX(0);
}

.slide.prev {
	transform: translateX(-100%);
}

/* Full width images with gradient overlay */
.slide-image {
	display: block;
	width: 100%;
	height: auto;
}

.slide-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, 
		rgba(0,0,0,0) 0%, 
		rgba(0,0,0,0.1) 50%, 
		rgba(0,0,0,0.7) 100%);
}

/* Gradient fallbacks for each slide */
.slide:nth-child(1) .slide-image {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.slide:nth-child(2) .slide-image {
	background: linear-gradient(135deg, #f093fb, #f5576c);
}

.slide:nth-child(3) .slide-image {
	background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.slide:nth-child(4) .slide-image {
	background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.slide:nth-child(5) .slide-image {
	background: linear-gradient(135deg, #fa709a, #fee140);
}

.slide-visual {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	color: white;
	animation: pulse 2s ease-in-out infinite;
	text-shadow: 0 0 30px rgba(0,0,0,0.5);
	z-index: 5;
}

@keyframes pulse {
	0% { transform: translate(-50%, -50%) scale(1); }
	50% { transform: translate(-50%, -50%) scale(1.1); }
	100% { transform: translate(-50%, -50%) scale(1); }
}

.slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.7) 30%, transparent 70%);
	color: white;
	padding: 80px 60px 60px;
	transform: translateY(100%);
	transition: transform 0.5s ease-in-out 0.3s;
	z-index: 6;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.slide.active .slide-content {
	transform: translateY(0);
}

.slide-title {
	font-size: 3.5em;
	margin-bottom: 20px;
	animation: slideInLeft 0.8s ease-out;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slide-description {
	font-size: 1.4em;
	line-height: 1.6;
	animation: slideInLeft 0.8s ease-out 0.2s;
	animation-fill-mode: both;
	max-width: 800px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Navigation Buttons */
.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	font-size: 30px;
	width: 70px;
	height: 70px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-button:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: white;
	transform: translateY(-50%) scale(1.1);
}

.prev-btn {
	left: 40px;
}

.next-btn {
	right: 40px;
}

/* Indicators */
.indicators {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 10;
	padding: 15px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border-radius: 30px;
}

.indicator {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid white;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	width: 40px;
	border-radius: 20px;
	background: white;
}

.indicator:hover {
	background: white;
	transform: scale(1.2);
}

/* Progress Bar */
.progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	width: 0;
	z-index: 11;
}

.progress-bar.animating {
	animation: progress 5s linear infinite;
}

@keyframes progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

/* Pause Button */
.pause-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 12px 20px;
	cursor: pointer;
	border-radius: 30px;
	transition: all 0.3s ease;
	z-index: 10;
	font-size: 16px;
}

.pause-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: white;
}

/* Responsive */
@media (max-width: 768px) {
	.slide-title {
		font-size: 2.2em;
	}

	.slide-description {
		font-size: 1.1em;
	}

	.slide-content {
		padding: 60px 30px 40px;
	}

	.nav-button {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}

	.prev-btn {
		left: 20px;
	}

	.next-btn {
		right: 20px;
	}

	.pause-btn {
		top: 20px;
		right: 20px;
		padding: 10px 15px;
		font-size: 14px;
		visibility: hidden;
	}

	.thumbnails {
		bottom: 80px;
		padding: 10px;
		gap: 8px;
		max-width: 90%;
	}

	.thumbnail {
		min-width: 60px;
		height: 45px;
	}

	.slide-visual {
		width: 150px;
		height: 150px;
		font-size: 60px;
	}

	.indicators {
		bottom: 20px;
		gap: 10px;
		padding: 10px;
		visibility: hidden;
	}
}

@media (max-width: 480px) {
	.slide-title {
		font-size: 1.8em;
	}

	.slide-description {
		font-size: 1em;
	}

	.thumbnails {
		display: none;
	}

	.nav-button {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.prev-btn {
		left: 15px;
	}

	.next-btn {
		right: 15px;
	}
}

/* Thumbnail navigation */
.thumbnails {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	padding: 15px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	z-index: 10;
	max-width: 600px;
	visibility: hidden;
}

.thumbnail {
	min-width: 100px;
	height: 70px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
	position: relative;
}

.thumbnail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: all 0.3s ease;
}

.thumbnail:nth-child(1) .thumbnail-image {
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.thumbnail:nth-child(2) .thumbnail-image {
	background: linear-gradient(135deg, #f093fb, #f5576c);
}

.thumbnail:nth-child(3) .thumbnail-image {
	background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.thumbnail:nth-child(4) .thumbnail-image {
	background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.thumbnail:nth-child(5) .thumbnail-image {
	background: linear-gradient(135deg, #fa709a, #fee140);
}

.thumbnail.active {
	border-color: #667eea;
	transform: scale(1.1);
}

.thumbnail.active .thumbnail-overlay {
	background: rgba(102, 126, 234, 0.5);
}

.thumbnail:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.thumbnail:hover .thumbnail-overlay {
	background: rgba(0,0,0,0.1);
}

/* Animated shapes in slides */
.shape {
	position: absolute;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	animation: float 15s ease-in-out infinite;
	z-index: 4;
}

.shape-1 {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape-2 {
	width: 150px;
	height: 150px;
	border-radius: 30%;
	top: 60%;
	right: 10%;
	animation-delay: 5s;
	transform: rotate(45deg);
}

.shape-3 {
	width: 80px;
	height: 80px;
	top: 40%;
	right: 30%;
	animation-delay: 10s;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	33% {
		transform: translateY(-30px) rotate(120deg);
	}
	66% {
		transform: translateY(30px) rotate(240deg);
	}
}
