html, body {		  
	height: 100%;
	margin: 0;
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
}		

#wrapper {
	flex: 1 0 auto;
}		

footer {
	flex-shrink: 0;
}

.guide-sidebar {
	background: linear-gradient(180deg, rgba(30, 20, 60, 0.9) 0%, rgba(20, 15, 40, 0.95) 100%);
	padding: 1rem;
	border-right: 2px solid rgba(138, 43, 226, 0.3);
	box-shadow: 4px 0 20px rgba(138, 43, 226, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.guide-sidebar input {
	color: #e0e0ff;
	border: 2px solid rgba(138, 43, 226, 0.4);
	background: rgba(30, 20, 60, 0.6);
	transition: all 0.3s ease;
}

.guide-sidebar input:focus {
	border-color: rgba(138, 43, 226, 0.8);
	box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
	outline: none;
}

.guide-sidebar ul {
	list-style: none;
	padding-left: 0;
}

.guide-sidebar li {
	margin-bottom: 0.5rem;
	transition: transform 0.2s ease;
}

.guide-sidebar li:hover {
	transform: translateX(5px);
}

.guide-sidebar li a {
	color: #b8a9ff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

.guide-sidebar li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: linear-gradient(90deg, #ff6ec7, #7c3aed);
	transition: width 0.3s ease;
}

.guide-sidebar li a:hover {
	text-decoration: none;
	color: #ff6ec7;
	text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

.guide-sidebar li a:hover::after {
	width: 100%;
}

.guide-content {
	padding: 2rem;
	max-height: 90vh;
	overflow-y: auto;
	background: linear-gradient(180deg, rgba(20, 15, 40, 0.95) 0%, rgba(30, 20, 60, 0.9) 100%);
	backdrop-filter: blur(15px);
	box-shadow: inset 0 0 50px rgba(138, 43, 226, 0.05);
}

img.guide-img {
	max-width: 100%;
	border: 2px solid rgba(138, 43, 226, 0.4);
	border-radius: 8px;
	margin-bottom: 1rem;
	box-shadow: 0 8px 32px rgba(138, 43, 226, 0.2);
	transition: all 0.3s ease;
}

img.guide-img:hover {
	transform: scale(1.02);
	box-shadow: 0 12px 48px rgba(138, 43, 226, 0.3);
	border-color: rgba(138, 43, 226, 0.6);
}

.offcanvas-body {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, rgba(30, 20, 60, 0.95) 0%, rgba(20, 15, 40, 0.98) 100%);
}

#guideSearch {
	margin-bottom: 1rem;
	background: rgba(30, 20, 60, 0.8);
	color: #e0e0ff;
	border: 2px solid rgba(138, 43, 226, 0.4);
	border-radius: 8px;
	height: 38px;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	width: 100%;
	box-sizing: border-box;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(138, 43, 226, 0.1);
}

#guideSearch:focus {
	border-color: rgba(138, 43, 226, 0.8);
	box-shadow: 0 4px 25px rgba(138, 43, 226, 0.3);
	outline: none;
	background: rgba(30, 20, 60, 0.95);
}

#guideSearch::placeholder {
	color: rgba(184, 169, 255, 0.5);
}