.error-page-wrapper {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary);
	overflow: hidden;
	font-family: 'Arial', sans-serif;
}

.error-bg-pattern {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.05'%3E%3Ccircle cx='300' cy='300' r='250'/%3E%3Ccircle cx='0' cy='300' r='250'/%3E%3Ccircle cx='600' cy='300' r='250'/%3E%3Cline x1='0' y1='300' x2='600' y2='300'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 600px 600px;
	background-position: center;
	background-repeat: repeat;
	z-index: 1;
	transition: transform 0.1s ease-out;
}

.error-content-container {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	padding: 40px 20px;
}

.error-title {
	color: #ffffff;
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 25px;
	line-height: 1.2;
}

.error-description {
	color: #d1d1d1;
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 40px;
}

.btn-back-home {
	display: inline-block;
	background-color: #A3DB7F;
	color: #000000;
	padding: 16px 35px;
	border-radius: 50px;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

	/* PERUBAHAN PENTING UNTUK RIPPLE INTERNAL */
	position: relative;
	overflow: hidden; /* Mencegah ripple keluar dari batas bulat tombol */
	z-index: 1; /* Memastikan teks tetap berada di atas efek */
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Membuat elemen ripple buatan */
.btn-back-home::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: rgba(255, 255, 255, 0.4); /* Warna gelombang (putih transparan) */
	border-radius: 50%;
	transform: translate(-50%, -50%); /* Memusatkan elemen di tengah */
	transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
	z-index: -1; /* Meletakkan gelombang di bawah teks */
	opacity: 0;
}

/* Saat di-hover */
.btn-back-home:hover {
	/* Transform dihapus sesuai permintaan */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-back-home:hover::after {
	width: 300px; /* Ukuran akhir gelombang (harus lebih besar dari tombol) */
	height: 300px;
	opacity: 1;
}

@media (max-width: 768px) {
	.error-title {
		font-size: 2.5rem;
	}
	.error-description {
		font-size: 1rem;
	}
}
