@media screen and (max-width: 768px) {
	#mobile-menu-container {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		background: rgb(19, 55, 51);
		z-index: 1000;
	}

	/* Style du bouton toggle */
	#mobile-menu-toggle {
		position: fixed;
		top: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
		background: transparent;
		border: none;
		cursor: pointer;
		z-index: 1002;
		color: rgb(146, 221, 58);
		font-size: 24px;
	}

	#mobile-menu-toggle::before {
		content: '☰';
	}

	/* Styles du menu mobile */
	.mobile-menu {
		position: fixed !important;
		top: 60px !important;
		left: -100%;
		width: 100% !important;
		height: calc(100vh - 60px) !important;
		background: rgb(19, 55, 51) !important;
		transition: left 0.3s ease !important;
		overflow-y: auto !important;
		z-index: 1001 !important;
		padding: 20px !important;
		box-sizing: border-box !important;
		display: block !important;
		transition: all 0.3s ease !important;
		will-change: left !important;
		transform: translateZ(0) !important;
	}
	
	.mobile-menu.active {
		left: 0;
		display: block !important;
	}

	/* Style des sections du menu */
	.mobile-menu-section {
		margin-bottom: 30px;
	}

	.mobile-menu-section h3 {
		color: rgb(146, 221, 58);
		font-size: 20px;
		margin-bottom: 15px;
		font-family: 'FinalSix', sans-serif;
		text-transform: uppercase;
	}

	.mobile-menu-section ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.mobile-menu-section ul li {
		margin-bottom: 10px;
	}

	.mobile-menu-section ul li a {
		color: white;
		text-decoration: none;
		font-family: 'Poppins', sans-serif;
		font-size: 16px;
		display: block;
		padding: 8px 0;
	}

	/* Styles pour les liens sociaux */
	.mobile-social-links {
		display: flex;
		justify-content: center;
		gap: 20px;
		padding: 20px 0;
		margin-top: 30px;
		border-top: 1px solid rgba(146, 221, 58, 0.3);
	}

	.mobile-social-links img {
		height: 24px;
		width: auto;
	}

	/* Ajustement du contenu principal */
	#content {
		padding-top: 60px;
	}

	/* Logo dans le menu mobile */
	.logo {
		position: fixed;
		top: 10px;
		left: 15px;
		z-index: 1002;
	}

	.logo img {
		height: 40px;
		width: auto;
	}
}