* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	display: flex;
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
	flex-direction: column;
}
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

    .torna-sito {
      margin-top: 40px;
      text-align: center;
    }

    .torna-sito a {
      font-family: 'Cinzel', serif;
      font-size: 36px;
      font-weight: bold;
      text-transform: uppercase;
      color: gold;
      text-decoration: none;
      text-shadow: 1px 1px 2px #000, 0 0 10px gold;
      transition: all 0.3s ease;
    }

    .torna-sito a:hover {
      color: #fff8dc;
      text-shadow: 0 0 5px #ffd700, 0 0 15px #ffa500;
      transform: scale(1.05);
    }

.background-video-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.background-video-container video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translateX(-50%) translateY(-50%);
	object-fit: cover;
	margin: 0;
	padding: 0;
}

.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

#images {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 0 auto;
	margin-top: 75px;
}

.sidebar-navigation {
	position: fixed;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	z-index: 5;
}

.pager {
	height: 15px;
	text-align: left;
	cursor: pointer;
	margin-bottom: 2px;
	display: flex;
	align-items: center;
}

.pager .dot {
	margin-top: 2px;
	height: 15px;
	width: 15px;
	display: inline-block;
	margin-right: 5px;
	opacity: 0.3;
	transition: opacity 0.2s ease;
	background-size: cover;
	background-image: url('../images/dot.png');
	order: 1;
}

.pager.active .dot,
.pager:hover .dot {
	height: 15px;
	width: 15px;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.pager label {
	margin-bottom: 2px;
	display: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transform: translateY(2px);
	color: transparent;
	font-family: 'Arvo', sans-serif;
	order: 2;
}

.pager.active label,
.pager:hover label {
	font-size: 12px;
	line-height: 14px;
	display: inline-block;
	text-transform: uppercase;
	margin-left: 5px;
	cursor: pointer;
	background-image: linear-gradient(to bottom, #f1a876, #8c463a);
	-webkit-background-clip: text;
	background-clip: text;
}

.sidebar-navigation .chevron {
	display: block;
	width: 16px;
	height: 16px;
	margin-bottom: 15px;
	margin-top: 15px;
	transition: transform 0.3s ease, color 0.3s ease;
	cursor: pointer;
	position: relative;
}

.sidebar-navigation .chevron:after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 8px;
	width: 0;
	height: 0;
	left: 0;
	transition: border-color 0.3s ease;
}

.sidebar-navigation .chevron.up:after {
	border-color: transparent transparent #ffffff transparent;
	bottom: 0;
}

.sidebar-navigation .chevron.down:after {
	border-color: #ffffff transparent transparent transparent;
	top: 0;
}

.sidebar-navigation .chevron:hover:after {
	border-color: transparent transparent #4a90e2 transparent;
}

.sidebar-navigation .chevron.down:hover:after {
	border-color: #4a90e2 transparent transparent transparent;
}

.top-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 94px;
	height: 94px;
	background-color: transparent;
	background-image: url('../images/top.png');
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 100;
	transition: opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
}

.top-button:hover {
	background-image: url('../images/top_hover.png');
}

.top-button:active {
	background-image: url('../images/top_active.png');
}

.top-button.visible {
	opacity: 1;
	pointer-events: auto;
}

.language-selector {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10;
}

.language-selector .language {
	position: relative;
}

.language-selector button {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	font-family: inherit;
}

.language-selector button img {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

.language-selector>.language>button::after {
	content: '';
	display: block;
	width: 22px;
	height: 17px;
	background-image: url('../images/language_arrow.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.language-selector>.language>button:hover::after {
	background-image: url('../images/language_arrow_hover.png');
}

.language-selector>.language>button:active::after {
	background-image: url('../images/language_arrow_active.png');
}

.language-selector .flagContainer {
	border-radius: 4px;
	padding: 5px;
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 80px;
	display: grid;
}

.language-selector .flagContainer button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	width: 100%;
	transition: background-color 0.2s;
}

.language-selector .flagContainer button:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.language-selector .flagContainer button img {
	width: 16px;
	height: 16px;
	margin-right: 8px;
}

.language-selector .flagContainer button span {
	padding: 0 4px;
	text-transform: uppercase;
}

.discord-widget {
	z-index: 9;
	position: fixed;
	right: -200px;
	opacity: 0.5;
	transition: 0.8s ease;
	top: 50%;
	transform: translateY(-50%);
}

.discord-widget:hover {
	opacity: 1;
	right: 0px;
}

@media (max-width: 959px) {
	.discord-widget {
		right: -190px;
	}

	.discord-widget img {
		width: 250px;
	}

	#images {
		width: 100%;
	}
}


.header {
	background-color: #1c1815;
	border-bottom: 2px solid #aa5e2b;
	position: fixed;
	width: 100%;
	z-index: 9999;
}

.header .container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
	width: 1400px;
}

.header nav {
	display: flex;
	align-items: center;
	height: 73px;
}

.header .logo-container {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.header .logo {
	height: 2rem;
}

@media (min-width: 768px) {
	.header .logo {
		height: 3rem;
	}
}

.header .mobile-menu-button {
	margin-left: auto;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	.header .mobile-menu-button {
		display: none;
	}
}

.header .mobile-menu-icon {
	width: 1.5rem;
	height: 1.5rem;
	color: #a38963;
}

.header .navigation {
	display: none;
	position: absolute;
	top: 73px;
	left: 0;
	right: 0;
	background-color: #1c1815;
	border-bottom: 2px solid #aa5e2b;
	flex-direction: column;
	align-items: center;
	padding: 1rem 0;
	z-index: 999;
}

.header .navigation.active {
	display: flex;
}

@media (min-width: 768px) {
	.header .navigation {
		display: flex;
		position: static;
		flex-direction: row;
		align-items: center;
		margin-left: 5rem;
		background-color: transparent;
		border-bottom: none;
		padding: 0;
	}

	.header .navigation>* {
		margin-right: 5rem;
		margin-bottom: 0;
	}
}

.header .navigation>*:last-child {
	margin-bottom: 0;
}

.header .nav-button {
	color: #a38963;
	text-transform: uppercase;
	font-size: 21px;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.3s;
}

.header .nav-button:hover {
	color: white;
}

.header .nav-link {
	color: #a38963;
	text-transform: uppercase;
	font-size: 21px;
	text-decoration: none;
	transition: color 0.3s;
}

.header .nav-link:hover {
	color: white;
}

.header .countdown-container {
	display: none;
	margin-left: auto;
	margin-right: 1rem;
}

@media (min-width: 768px) {
	.header .countdown-container {
		display: block;
	}
}

.header .navigation.active .countdown-container {
	display: block;
	margin: 1rem 0;
}

.header .countdown-timer {
	padding-top: 0;
	display: flex;
	align-items: center;
	color: #a38963;
	text-transform: uppercase;
}

.header .countdown-values {
	display: flex;
	font-size: 21px;
}

.header .countdown-values>* {
	margin-right: 0.5rem;
}

.header .countdown-value {
	font-weight: bold;
}

.header .countdown-label {
	margin-left: 0.25rem;
}

.language-picker {
	display: none;
	position: fixed;
	top: 100px;
	left: 0;
	z-index: 10000;
}

@media (min-width: 768px) {
	.language-picker {
		display: inline-block;
	}
}

.language-picker .picker-container {
	display: inline-block;
	height: 38px;
	background-color: #1c1815;
	overflow: hidden;
	transition: all 0.3s;
	width: 40px;
	margin: 0;
	margin-bottom: 10px;
	vertical-align: top;
	border: 2px solid #aa5e2b;
	border-left: 0;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.language-picker .picker-container:hover {
	width: 525px;
}

.language-picker ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	height: 100%;
}

.language-picker li {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.language-picker li:first-child {
	width: 40px;
	min-width: 40px;
}

.language-picker li:not(:first-child) {
	width: 35px;
	transition: background-color 0.3s;
}

.language-picker li:not(:first-child):hover {
	background-color: #2a2320;
}

.language-picker .flag-img {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	object-fit: cover;
}

.countdown-container.mobile-countdown {
	display: none;
}

@media (max-width: 767px) {
	.header .navigation.active .countdown-container.mobile-countdown {
		display: block;
		margin: 1rem 0;
	}

	.countdown-container.mobile-countdown .countdown-timer {
		justify-content: center;
	}

	.countdown-container.mobile-countdown .countdown-values {
		font-size: 18px;
	}
}

.mobile-language-selector {
	display: none;
	margin: 1rem 0;
	width: 100%;
}

@media (max-width: 767px) {
	.header .navigation.active .mobile-language-selector {
		display: block;
	}
}

.mobile-languages-title {
	color: #a38963;
	text-transform: uppercase;
	font-size: 18px;
	text-align: center;
	margin-bottom: 1rem;
}

.mobile-languages-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 10px;
	justify-content: center;
	padding: 0 15px;
}

.lang-item {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 5px;
	transition: background-color 0.3s;
}

.lang-item:hover {
	background-color: #2a2320;
}

.lang-item.active {
	background-color: #2a2320;
}

.mobile-flag-img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}

.language-picker {
	z-index: 10000;
}

@media (max-width: 994px) {
	.container {
		width: 100% !important;
	}

	.header .navigation>* {
		margin-bottom: 1rem;
	}
}

.footer {
	padding: 2rem 0;
	margin-top: auto;
	position: relative;
	z-index: 1;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.footer-logo {
	height: 3rem;
}

.footer-copyright {
	color: #6b6664;
	font-size: 0.875rem;
	text-align: center;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	transition: transform 0.2s;
}

.social-icon:hover {
	transform: scale(1.1);
}

.footer-description {
	color: #6b6664;
	font-size: 0.875rem;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.footer-logo {
		height: 4rem;
	}

	.social-icon {
		width: 50px;
		height: 50px;
	}

	.footer-copyright,
	.footer-description {
		font-size: 1rem;
	}
}

.site-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10001;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-popup.active {
	visibility: visible;
	opacity: 1;
}

.popup-content {
	position: relative;
	background-color: #1c1815;
	border: 2px solid #aa5e2b;
	max-width: 90%;
	width: 1000px;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.popup-close {
	position: absolute;
	top: 0px;
	right: 10px;
	background: none;
	border: none;
	font-size: 36px;
	color: #a38963;
	cursor: pointer;
	transition: color 0.3s;
}

.popup-close:hover {
	color: #fff;
}

.popup-image-container {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}

.popup-image {
	max-width: 100%;
	max-height: 400px;
	object-fit: contain;
}

.popup-text {
	color: #a38963;
	font-size: 16px;
}

.popup-text h1 {
	margin-bottom: 10px;
}

.popup-text p {
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.popup-content {
		width: 95%;
		padding: 15px;
		max-height: 80vh;
	}

	.popup-text {
		font-size: 14px;
	}

	.popup-image {
		max-height: 300px;
	}
}
/*# sourceMappingURL=style.min.css.map */
/* Contenitore del widget */
#discord-widget-container {
    position: fixed;
    top: 100px;
    right: -400px; /* Nasconde inizialmente il widget */
    z-index: 1000;
    width: 400px;
    opacity: 1;
    transition: 0.3s ease-in-out;
}

/* Trigger con immagine */
#discord {
    position: absolute;
    top: 0;
    left: -150px; /* Posizione relativa al widget */
    opacity: 1;
    transition: 0.3s;
}

#discord img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* Mostra il widget al passaggio del mouse */
#discord-widget-container:hover {
    right: -230px;
    opacity: 1;
}
.widget-2vZvsN {
    border-radius: 0px!important;
}
