.home-body {
	color: #fff;
	background-image: linear-gradient(to left, #121111, #515151);
	background-attachment: fixed; 
}

.btn-purple {
	background-color: #6f09ca;
	color: #fff;
}

.btn-purple:hover {
	background-color: #8700ff;
}

.navbar-link {
	color: #c1c1c1;
	width: 100px;
	text-decoration: none;
	margin-left: 10px;
	font-size: 1.4rem;
	transition: 1s;
}

.navbar-link:hover {
	color: #ffffff;
	text-decoration: underline;
	transform: scale(1.2);
}

.navbar-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 50px;
	margin-right: 50px;
	margin-top: 10px;
	user-select: none;
}

.info-text {
	font-size: 3rem;
	font-weight: lighter;
	color: #fff;
}

.info-text:hover {
	text-decoration: underline;
}

.info-block {
	background-image: linear-gradient(to left, #302c2c, #686868);
	border-radius: 5px;
	width: 600px;
	height: 400px;
	padding: 10px;
	font-size: 1.2rem;
}

.text-link {
	color: #ffffff;
	text-decoration: none;
}

.text-link:hover {
	color: #c1c1c1;
	text-decoration: underline;
}

.accordion-button {
	background-color: #808080 !important;
	color: #fff !important;
}

.user-avatar {
	border-radius: 150px;
	border: 2px solid #fff;
}

.vertical-align {
	justify-content: center;
	display: flex;
	align-items: center;
}

.vertical-align img {
	margin-right: 10px;
}

.button {
	padding: 10px;
	border: 1px solid;
	text-decoration: none;
	user-select: none;
}

.button:hover {
	padding: 10px;
	border: 1px solid;
	text-decoration: underline;
}

.blocks-group {
	margin-left: 20px;
	margin-right: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.block {
	display: inline-block;
	margin-right: 50px;
	margin-bottom: 10px;
	padding: 15px;
	flex: 0 1 auto;
}

.block:hover {
	border-radius: 10px;
	background-color: #686868;
}

.text-gray {
	color: #7f7979;
}

.hidden {
	display: none;
}

.visible {
	display: revert;
}

.footer {
	padding: 20px;
	text-align: center;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 35px;
	height: 25px;
	background: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	padding: 5px;
	position: fixed;
	z-index: 1002;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.menu-toggle span {
	display: block;
	height: 3px;
	width: 100%;
	background-color: #333;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
	background-color: #e74c3c;
}

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
	background-color: #e74c3c;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
		position: fixed;
		top: 20px;
		right: 20px;
	}

	.navbar-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		max-width: 300px;
		height: 100vh;
		background: #171717;
		margin: 0;
		padding: 80px 25px 25px;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		transition: left 0.3s ease;
		box-shadow: 2px 0 15px rgba(0,0,0,0.3);
		z-index: 1001;
		overflow-y: auto;
	}

	.navbar-menu.active {
		left: 0;
	}

	.navbar-left,
	.navbar-center,
	.navbar-right {
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.navbar-center {
		order: -1;
	}

	.navbar-link {
		width: 100%;
		margin: 10px 0;
		font-size: 1.2rem;
		text-align: center;
		padding: 12px 0;
		border-bottom: 1px solid #333;
	}

	.navbar-link:hover {
		transform: scale(1.05);
	}

	.navbar-brand img {
		max-width: 100%;
		height: auto;
	}

	.navbar-left .navbar-brand img {
		width: 140px;
	}

	.navbar-center .navbar-brand img {
		width: 70px;
	}

	.blocks-group {
		margin-left: 10px;
		margin-right: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.block {
		display: block;
		width: 100%;
		max-width: 400px;
		margin: 0 0 15px 0;
		padding: 20px;
		text-align: center;
	}

	.info-block {
		width: 90%;
		max-width: 100%;
		height: auto;
		min-height: 300px;
		margin: 10px;
	}

	.info-text {
		font-size: 2rem;
		text-align: center;
	}

	.vertical-align {
		flex-direction: column;
		text-align: center;
	}

	.vertical-align img {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

@media (max-width: 480px) {
	.blocks-group {
		margin-left: 5px;
		margin-right: 5px;
	}

	.block {
		padding: 15px 10px;
		margin: 0 0 10px 0;
	}

	.info-text {
		font-size: 1.8rem;
	}

	.info-block {
		min-height: 250px;
		padding: 15px;
	}
}

body.menu-open {
	overflow: hidden;
}

.trophy-image {
	user-select: none;
	width: 70%;
}

@media (max-width: 768px) {
	.dropdown-content {
		position: fixed;
		top: auto;
		left: 50%;
		transform: translateX(-50%) translateY(-10px);
		min-width: 200px;
	}
		
	.dropdown-content.show {
		transform: translateX(-50%) translateY(0);
	}
}

@media (max-width: 768px) {
	.alert {
		width: 98% !important;
	}
}

.nom-img {
	user-select: none;
	width: 20%;
	border-radius: 999px;
}

@media (max-width: 768px) {
	.nom-img {
		width: 30%;
	}
}

.surprise {
    position: fixed;
	bottom: 0;
	right: 0;
	padding: 10px;
}

.surprise img {
    transition: 1s; 
    display: block;
	width: 70px;
}

.surprise img:hover {
    transform: scale(1.2); 
}