* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	font-family: Arial, sans-serif;
	color: #000000 !important;
	color-scheme: dark;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.background-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url(../image/background.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	pointer-events: none;
}

body::-webkit-scrollbar,
.main-content::-webkit-scrollbar {
	display: none;
}

header {
	width: 100%;
	height: 60px;
	z-index: 5;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background: rgba(80, 80, 80, 0.2);
}

header img {
	height: 50px;
	border-radius: 10px;
	z-index: 5;
}

.main-content {
	flex: 1;
	padding-top: 60px;
	overflow-y: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.main-content::-webkit-scrollbar {
	display: none;
}

a:not(.button) {
    color: #FFFFFF;
	text-decoration: underline;
	text-decoration-color: #7c2bce;
}

.classic-container {
	max-width: 1000px;
	margin: 20px auto;
	padding: 20px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background: rgba(80, 80, 80, 0.2);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.classic-container.lowperf {
	background: rgba(10, 10, 10, 1);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.menu-btn {
	width: 35px;
	height: 26px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	z-index: 5;
}

.menu-btn span {
	display: block;
	height: 4px;
	background: #7c2bce;
	transition: 0.2s;
}

.menu-btn.open span:nth-child(1) {
	transform: translateY(11px) rotate(45deg);
	background: #9b48ee;
}

.menu-btn.open span:nth-child(2) {
	opacity: 0;
	visibility: hidden;
	transition-delay: 0.03s;
}

.menu-btn.open span:nth-child(3) {
	transform: translateY(-11px) rotate(-45deg);
	background: #9b48ee;
}

.menu {
	padding-top: 80px;
	height: 100%;
	width: 100%;
	z-index: 4;
	transition: 0.4s;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	pointer-events: none;
	padding-left: 20px;
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: center;
}
/* basse perf */
.menu.lowperf {
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.menu.open {
	opacity: 1;
	pointer-events: auto;
}

.menu a {
	font-size: 28px;
	text-decoration: underline;
	text-decoration-color: #7c2bce;
	color: #fff;
	text-align: center;
	transition: 0.3s;
}

.menu a:hover {
	transform: translateY(-3px);
}

.classic-block {
	background: rgba(30, 30, 30, 0.4);
	padding: 20px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	transition: 0.3s;
	justify-content: space-between;
}

.classic-block:hover {
	transform: translateY(-3px);
	box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.4);
}

.classic-block.clickable:hover {
	transform: translateY(-3px);
	box-shadow:
		0px 7px 10px rgba(0, 0, 0, 0.4),
		inset 0 0 0 2px #7c2bce;
	cursor: pointer;
}

.classic-block a {
	text-decoration: none !important;
	width: fit-content;
	height: fit-content;
}

.classic-block.collumn {
	display: flex;
	flex-direction: row;
	gap: 8px;
}

.classic-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.classic-row img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 5px;
}

.classic-row.creation img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 5px;
}

.classic-container p {
	margin: 0;
	font-weight: normal;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}

.classic-container h3 {
	margin: 0;
	font-weight: normal;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}

.classic-container h2 {
	margin: 0;
	font-weight: normal;
	font-size: 22px;
	color: #fff;
	text-decoration: none;
}

.classic-container h1 {
	margin: 0;
	font-weight: bold;
	font-size: 28px;
	color: #fff;
	text-decoration: none;
}

.btn {
	padding: 10px 22px;
	width: auto;
	height: auto;
	background: rgba(90, 90, 90, 0.2);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-radius: 50px;
	border: 2px solid rgba(150, 150, 150, 0.2);
	transition: 0.3s;
	cursor: pointer;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
	text-align: center;
}

.btn:hover {
	border: 2px solid #7c2bce;
	transform: translateY(-3px);
	box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.4);
}

.btn.on {
	border: 2px solid #9b48ee;
	background: rgba(100, 62, 139, 0.2);
}

.iframepage {
	width: 100%;
	height: 100%;
	border: 0;
	overflow: hidden;
}

.horizontal-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
}

.img-icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	border-radius: 5px;
}

.S10 {
	padding-bottom: 10px;
}

footer {
	flex-shrink: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background: rgba(80, 80, 80, 0.2);
}

footer p {
	font-style: normal;
	color: #FFFFFF;
	font-size: 16px;
}

@media (max-width: 768px) {
	.classic-container {
		width: 90%;
		padding: 15px;
	}

	.img-icon {
		width: 35px;
		height: 35px;
	}
}

@media (max-width: 480px) {
	.classic-container {
		width: 95%;
		padding: 10px;
	}

	.img-icon {
		flex-direction: column;
		align-items: flex-start;
	}
}