/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 30 2026 | 23:07:30 */
/* Navigation Dots */
.home .navigation-dots {
	position: fixed; 
	display: flex; 
	flex-direction: column; 
	gap: 15px;
	top: 50%;
	margin-top: -20px;
	left: 25px;
}

.home .navigation-dots .dot-container {
	cursor: pointer;
	position: relative;
}

.home .navigation-dots .dot-container .dot {
	width: 5px;
	height: 5px; 
	border-radius: 100%;
	background-color: #ccc;
	transition: 0.15s;
}
.home .navigation-dots .dot-container:hover .dot {
	transform: scale(1.75);
	transition: 0.15s;
}
.home .navigation-dots .dot-container.active .dot {
	background-color: #D4AF37;
	transform: scale(2.25);
}

.home .navigation-dots .dot-container .caption {
	background: #43306A;
	color: #fff;
	border: 1px solid rgba(240, 240, 240, 0.3);
	padding: 4px 6px; 
	text-transform: uppercase; 
	font-size: 12px; 
	font-weight: 600;
	position: absolute; 
	top: -10px;
	left: 20px;
	width: max-content;
	opacity: 0;
}
.home .navigation-dots .dot-container:hover .caption {
	opacity: 1;
}
/* End Navigation Dots */

.home main {
	height: 400px;
	background-size: cover;
	background-image: url('https://amarazendara.com/wp-content/uploads/2026/07/cropped-Amari-and-undead-king-scaled-1-1.png');
}