* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	background-color: #0d0d0f;
	color: #eaeaea;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
.mc-heading-primary {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
	font-size: 2.5rem;
	color: #eaeaea;
	margin-bottom: 1.5rem;
	text-shadow: 0 0 20px rgba(241, 250, 140, 0.3);
}

.mc-heading-secondary {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
	font-size: 2.5rem;
	color: #f1fa8c;
	margin-bottom: 1rem;
	margin-top: 1rem;
	text-align: center;
}

.mc-heading-tertiary {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
	font-size: 1.8rem;
	color: #eaeaea;
	margin-bottom: 0.8rem;
}

.mc-text-primary {
	color: #eaeaea;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.mc-text-accent {
	color: #f1fa8c;
	font-weight: 500;
}

.mc-text-green {
	color: #50fa7b;
	font-weight: 500;
}

.mc-text-red {
	color: #e63946;
	font-weight: 500;
}

/* Container et layout */
.mc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-section {
	padding: 80px 0;
	position: relative;
}

.mc-section-dark {
	background-color: #1c1c21;
}

.mc-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 2rem;
}

.mc-col {
	height: 100%;
}

.mc-col-half {
	height: 100%;
}

.mc-col-third {
	height: 100%;
}

.mc-col-quarter {
	height: 100%;
}

.mc-col-quarter img {
	width: 100%;
	height: 100%;
	max-height: 300px;
	object-fit: cover;
}

/* Header */
.mc-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1200px;
	background: rgba(28, 28, 33, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(241, 250, 140, 0.2);
	border-radius: 50px;
	padding: 15px 30px;
	z-index: 1000;
	transition: all 0.3s ease;
}

.mc-header.mc-scrolled {
	background: rgba(13, 13, 15, 0.98);
	box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.mc-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mc-logo {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
	font-size: 1.5rem;
	color: #f1fa8c;
	text-decoration: none;
	text-shadow: 0 0 10px rgba(241, 250, 140, 0.5);
}

.mc-nav {
	display: flex;
	list-style: none;
	gap: 30px;
}

.mc-nav-link {
	color: #eaeaea;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 16px;
	border-radius: 20px;
}

.mc-nav-link:hover {
	color: #f1fa8c;
	background: rgba(241, 250, 140, 0.1);
	text-shadow: 0 0 10px rgba(241, 250, 140, 0.5);
}

.mc-nav-link.mc-active {
	color: #e63946;
	background: rgba(230, 57, 70, 0.1);
}

/* Mobile menu */
.mc-burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	width: 30px;
	height: 30px;
	justify-content: space-around;
}

.mc-burger-line {
	width: 100%;
	height: 3px;
	background: #f1fa8c;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mc-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(13, 13, 15, 0.98);
	backdrop-filter: blur(10px);
	z-index: 999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.mc-mobile-nav.mc-active {
	display: flex;
}

.mc-mobile-nav-link {
	color: #eaeaea;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.mc-mobile-nav-link:hover {
	color: #f1fa8c;
	text-shadow: 0 0 15px rgba(241, 250, 140, 0.7);
}

/* Buttons */
.mc-btn {
	display: inline-block;
	padding: 15px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.mc-btn-primary {
	background: linear-gradient(135deg, #e63946, #c73037);
	color: #eaeaea;
	box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.mc-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
	background: linear-gradient(135deg, #f14754, #e63946);
}

.mc-btn-secondary {
	background: transparent;
	color: #f1fa8c;
	border: 2px solid #f1fa8c;
}

.mc-btn-secondary:hover {
	background: #f1fa8c;
	color: #0d0d0f;
	box-shadow: 0 10px 30px rgba(241, 250, 140, 0.3);
	transform: translateY(-3px);
}

.mc-btn-outline {
	background: transparent;
	color: #eaeaea;
	border: 2px solid #eaeaea;
}

.mc-btn-outline:hover {
	background: #eaeaea;
	color: #0d0d0f;
	transform: translateY(-2px);
}

.mc-btn-green {
	background: linear-gradient(135deg, #50fa7b, #3cd85c);
	color: #0d0d0f;
	font-weight: bold;
}

.mc-btn-green:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(80, 250, 123, 0.4);
}

/* Hero Section */
.mc-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
			135deg,
			rgba(13, 13, 15, 0.9),
			rgba(28, 28, 33, 0.8)
		),
		url('../assets/mc-hero.webp');
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.mc-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(230, 57, 70, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(241, 250, 140, 0.1) 0%,
			transparent 50%
		);
	pointer-events: none;
}

.mc-hero-content {
	position: relative;
	z-index: 2;
}

.mc-hero-subtitle {
	font-size: 1.3rem;
	color: #f1fa8c;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.mc-hero-cta {
	margin-top: 3rem;
}

.mc-hero-cta .mc-btn {
	margin-right: 20px;
	margin-bottom: 20px;
}

.mc-hero-image {
	height: 100%;
	text-align: center;
	position: relative;
}

.mc-hero-card {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1c1c21, #2a2a30);
	border-radius: 15px;

	position: relative;
	border: 2px solid rgba(241, 250, 140, 0.3);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	animation: mc-float 3s ease-in-out infinite;
}

.mc-hero-card img {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	object-fit: cover;
}

@keyframes mc-float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(2deg);
	}
}

/* Cards et composants */
.mc-card {
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(241, 250, 140, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.mc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #e63946, #f1fa8c, #50fa7b);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mc-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px rgba(230, 57, 70, 0.2);
	border-color: rgba(230, 57, 70, 0.5);
}

.mc-card:hover::before {
	opacity: 1;
}

.mc-casino-card {
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 15px;
	padding: 25px;
	border: 1px solid rgba(241, 250, 140, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mc-casino-header {
	display: flex;
	gap: 2rem;
	align-items: center;
	margin-bottom: 20px;
}

.mc-casino-logo {
	width: 120px;
	height: 80px;
	object-fit: contain;
	background: #2a2a30;
	border-radius: 10px;
	margin-right: 15px;
	border: 2px solid rgba(80, 250, 123, 0.3);
}

.mc-casino-info h3 {
	color: #f1fa8c;
	font-size: 1.4rem;
	margin-bottom: 5px;
}

.mc-casino-rating {
	display: flex;
	align-items: center;
	gap: 5px;
}

.mc-star {
	color: #f1fa8c;
	font-size: 1.2rem;
}

.mc-casino-features {
	list-style: none;
	margin: 15px 0;
}

.mc-casino-features li {
	padding: 5px 0;
	color: #eaeaea;
	position: relative;
	padding-left: 20px;
}

.mc-casino-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #50fa7b;
	font-weight: bold;
}

/* Table styles */
.mc-table-container {
	overflow-x: auto;
}
.mc-table {
	width: 100%;
	border-collapse: collapse;
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 15px;
	overflow: hidden;
	margin: 30px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mc-table th {
	background: linear-gradient(135deg, #e63946, #c73037);
	color: #eaeaea;
	padding: 20px 15px;
	text-align: left;
	font-weight: 600;
	font-size: 1.1rem;
}

.mc-table td {
	padding: 15px;
	border-bottom: 1px solid rgba(234, 234, 234, 0.1);
	color: #eaeaea;
}

.mc-table tr:hover {
	background: rgba(241, 250, 140, 0.05);
}

.mc-table-logo {
	width: 100px;
	height: 60px;
	object-fit: cover;
	background: #2a2a30;
	border-radius: 8px;
	margin-right: 15px;
	border: 2px solid rgba(80, 250, 123, 0.3);
}

/* Forms */
.mc-form {
	background: linear-gradient(135deg, #1c1c21, #252530);
	padding: 40px;
	border-radius: 20px;
	border: 1px solid rgba(241, 250, 140, 0.2);
}

.mc-form-group {
	margin-bottom: 25px;
}

.mc-label {
	display: block;
	color: #f1fa8c;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 1.1rem;
}

.mc-input,
.mc-textarea {
	width: 100%;
	padding: 15px 20px;
	background: rgba(13, 13, 15, 0.8);
	border: 2px solid rgba(234, 234, 234, 0.2);
	border-radius: 10px;
	color: #eaeaea;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.mc-input:focus,
.mc-textarea:focus {
	outline: none;
	border-color: #f1fa8c;
	box-shadow: 0 0 20px rgba(241, 250, 140, 0.2);
	background: rgba(13, 13, 15, 0.9);
}

.mc-input.mc-error,
.mc-textarea.mc-error {
	border-color: #e63946;
	box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

.mc-textarea {
	min-height: 120px;
	resize: vertical;
}

.mc-error-message {
	color: #e63946;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.mc-error-message.mc-show {
	display: block;
}

/* News et articles */
.mc-news-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.mc-news-card {
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(241, 250, 140, 0.2);
	transition: all 0.3s ease;
}

.mc-news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.mc-news-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #2a2a30, #3a3a40);
	border-bottom: 3px solid #f1fa8c;
}

.mc-news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-news-content {
	padding: 25px;
}

.mc-news-title {
	color: #f1fa8c;
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.mc-news-excerpt {
	color: #eaeaea;
	line-height: 1.6;
	margin-bottom: 15px;
}

.mc-news-date {
	color: #50fa7b;
	font-size: 0.9rem;
	font-weight: 500;
}

/* Team cards */
.mc-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.mc-team-card {
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	border: 1px solid rgba(241, 250, 140, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mc-team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #e63946, #f1fa8c, #50fa7b);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.mc-team-card:hover::before {
	transform: scaleX(1);
}

.mc-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
}

.mc-team-avatar {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #2a2a30, #3a3a40);
	border-radius: 50%;
	margin: 0 auto 20px;
	border: 4px solid #f1fa8c;
	position: relative;
}

.mc-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.mc-team-name {
	color: #f1fa8c;
	font-size: 1.4rem;
	margin-bottom: 10px;
}

.mc-team-role {
	color: #50fa7b;
	font-weight: 500;
	margin-bottom: 15px;
}

.mc-team-bio {
	color: #eaeaea;
	line-height: 1.6;
}

/* Testimonials slider */
.mc-testimonials {
	position: relative;
	overflow: hidden;
	margin-top: 40px;
}

.mc-testimonials-container {
	display: flex;
	transition: transform 0.5s ease;
}

.mc-testimonial {
	flex: 0 0 100%;
	text-align: center;
	padding: 40px;
}

.mc-testimonial-content {
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(241, 250, 140, 0.2);
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.mc-testimonial-content::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 30px;
	font-size: 4rem;
	color: #f1fa8c;
	font-family: serif;
}

.mc-testimonial-text {
	font-size: 1.2rem;
	color: #eaeaea;
	line-height: 1.8;
	margin-bottom: 30px;
	font-style: italic;
}

.mc-testimonial-author {
	color: #f1fa8c;
	font-weight: 600;
	font-size: 1.1rem;
}

.mc-testimonial-role {
	color: #50fa7b;
	font-size: 0.9rem;
	margin-top: 5px;
}

.mc-testimonials-nav {
	text-align: center;
	margin-top: 30px;
}

.mc-testimonials-dots {
	display: inline-flex;
	gap: 10px;
}

.mc-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(234, 234, 234, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.mc-dot.mc-active {
	background: #f1fa8c;
	box-shadow: 0 0 15px rgba(241, 250, 140, 0.5);
}

/* Footer */
.mc-footer {
	background: #0d0d0f;
	padding: 60px 0 30px;
	border-top: 1px solid rgba(241, 250, 140, 0.2);
}

.mc-footer-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.mc-footer-section h3 {
	color: #f1fa8c;
	font-size: 1.3rem;
	margin-bottom: 20px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
}

.mc-footer-logo {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
	font-size: 1.8rem;
	color: #f1fa8c;
	margin-bottom: 15px;
	text-shadow: 0 0 10px rgba(241, 250, 140, 0.3);
}

.mc-footer-slogan {
	color: #eaeaea;
	line-height: 1.6;
	opacity: 0.9;
}

.mc-footer-links {
	list-style: none;
}

.mc-footer-links li {
	margin-bottom: 12px;
}

.mc-footer-links a {
	color: #eaeaea;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 5px 0;
	display: inline-block;
}

.mc-footer-links a:hover {
	color: #f1fa8c;
	text-shadow: 0 0 10px rgba(241, 250, 140, 0.3);
	padding-left: 10px;
}

.mc-footer-contact p {
	color: #eaeaea;
	margin-bottom: 10px;
	line-height: 1.6;
}

.mc-footer-contact strong {
	color: #50fa7b;
}

.mc-footer-help {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.mc-footer-help img {
	width: 100px;
	height: 60px;
	object-fit: contain;
	background: #2a2a30;
	border-radius: 8px;
	border: 2px solid rgba(80, 250, 123, 0.3);
	transition: all 0.3s ease;
}

.mc-footer-help img:hover {
	border-color: #50fa7b;
	box-shadow: 0 5px 15px rgba(80, 250, 123, 0.3);
}

.mc-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(234, 234, 234, 0.1);
	color: #eaeaea;
	opacity: 0.8;
}

/* Popups */
.mc-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mc-popup.mc-active {
	opacity: 1;
	visibility: visible;
}

.mc-popup-content {
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 20px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	border: 2px solid #e63946;
	box-shadow: 0 20px 60px rgba(230, 57, 70, 0.4);
	position: relative;
	animation: mc-popup-in 0.5s ease;
}

@keyframes mc-popup-in {
	from {
		transform: scale(0.8) translateY(50px);
		opacity: 0;
	}
	to {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

.mc-popup-title {
	color: #e63946;
	font-size: 2rem;
	margin-bottom: 20px;
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: bold;
}

.mc-popup-text {
	color: #eaeaea;
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

.mc-popup-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.mc-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: linear-gradient(135deg, #1c1c21, #252530);
	border-radius: 15px;
	padding: 25px;
	border: 2px solid #f1fa8c;
	z-index: 9999;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.5s ease;
	max-width: 600px;
	margin: 0 auto;
}

.mc-cookie-popup.mc-active {
	transform: translateY(0);
	opacity: 1;
}

.mc-cookie-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.mc-cookie-text {
	flex: 1;
	color: #eaeaea;
	line-height: 1.5;
}

.mc-cookie-buttons {
	display: flex;
	gap: 15px;
}

/* Animations et transitions */
.mc-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.mc-fade-in.mc-visible {
	opacity: 1;
	transform: translateY(0);
}

.mc-slide-left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease;
}

.mc-slide-left.mc-visible {
	opacity: 1;
	transform: translateX(0);
}

.mc-slide-right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease;
}

.mc-slide-right.mc-visible {
	opacity: 1;
	transform: translateX(0);
}

.mc-scale-in {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.8s ease;
}

.mc-scale-in.mc-visible {
	opacity: 1;
	transform: scale(1);
}

/* Responsive design */
@media (max-width: 1024px) {
	.mc-col-half {
		flex: 0 0 100%;
	}

	.mc-hero {
		text-align: center;
	}

	.mc-hero-cta .mc-btn {
		display: block;
		margin: 10px auto;
		max-width: 300px;
	}
}

@media (max-width: 940px) {
	.mc-nav {
		display: none;
	}

	.mc-burger {
		display: flex;
	}

	.mc-hero-card {
		max-height: 400px;
	}

	.mc-hero {
		min-height: 135vh;
	}
}

@media (max-width: 768px) {
	.mc-heading-primary {
		font-size: 2.2rem;
	}

	.mc-heading-secondary {
		font-size: 2rem;
	}

	.mc-hero {
		padding: 120px 0 40px;
	}

	.mc-section {
		padding: 60px 0;
	}

	.mc-header {
		top: 10px;
		width: calc(100% - 20px);
		padding: 12px 20px;
	}

	.mc-popup-content {
		padding: 30px 20px;
		width: 95%;
	}

	.mc-popup-buttons {
		flex-direction: column;
	}

	.mc-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.mc-footer-main {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.mc-casino-header {
		flex-direction: column;
		text-align: center !important;
	}

	.mc-casino-header div {
		text-align: center !important;
	}
}

@media (max-width: 480px) {
	.mc-heading-primary {
		font-size: 1.5rem;
	}

	.mc-footer-logo {
		font-size: 1.2rem;
	}
	.mc-testimonial {
		padding: 1rem;
	}
	.mc-logo {
		font-size: 1rem;
	}

	.mc-row {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.mc-container,
	.mc-container-wide {
		padding: 0 15px;
	}

	.mc-btn {
		padding: 12px 25px;
		font-size: 1rem;
	}

	.mc-card,
	.mc-form {
		padding: 25px 20px;
	}

	.mc-news-grid,
	.mc-team-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.mc-table {
		font-size: 0.9rem;
	}

	.mc-table th,
	.mc-table td {
		padding: 10px 8px;
	}

	.mc-col-quarter h3 {
		margin: 0;
	}

	.mc-col-quarter img {
		max-height: none;
		height: auto;
	}
}

/* Utility classes */
.mc-text-center {
	text-align: center;
}
.mc-text-left {
	text-align: left;
}
.mc-text-right {
	text-align: right;
}

.mc-mb-0 {
	margin-bottom: 0;
}
.mc-mb-1 {
	margin-bottom: 1rem;
}
.mc-mb-2 {
	margin-bottom: 2rem;
}
.mc-mb-3 {
	margin-bottom: 3rem;
}

.mc-mt-0 {
	margin-top: 0;
}
.mc-mt-1 {
	margin-top: 1rem;
}
.mc-mt-2 {
	margin-top: 2rem;
}
.mc-mt-3 {
	margin-top: 3rem;
}

.mc-hidden {
	display: none;
}
.mc-visible {
	display: block;
}

/* Loading states */
.mc-loading {
	position: relative;
	pointer-events: none;
}

.mc-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid transparent;
	border-top: 2px solid #f1fa8c;
	border-radius: 50%;
	animation: mc-spin 1s linear infinite;
}

@keyframes mc-spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

:root {
	--mc-legal-bg-primary: #0d0d0f;
	--mc-legal-bg-secondary: #1c1c21;
	--mc-legal-accent-red: #e63946;
	--mc-legal-accent-yellow: #f1fa8c;
	--mc-legal-accent-green: #50fa7b;
	--mc-legal-text-primary: #eaeaea;
	--mc-legal-text-secondary: #b8b8b8;
	--mc-legal-border: #2a2a2f;
}

.mc-legal-container {
	min-height: 100vh;
	padding: 120px 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.mc-legal-content {
	max-width: 1000px;
	width: 100%;
	background-color: var(--mc-legal-bg-secondary);
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid var(--mc-legal-border);
	position: relative;
	overflow: hidden;
}

.mc-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--mc-legal-accent-red),
		var(--mc-legal-accent-yellow),
		var(--mc-legal-accent-green)
	);
}

/* Titres */
.mc-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	text-align: center;
	background: linear-gradient(
		135deg,
		var(--mc-legal-accent-yellow),
		var(--mc-legal-accent-green)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 0 20px rgba(241, 250, 140, 0.3);
}

.mc-legal-subtitle {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--mc-legal-accent-red);
	position: relative;
	padding-left: 20px;
}

.mc-legal-subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 20px;
	background-color: var(--mc-legal-accent-red);
	border-radius: 2px;
}

/* Sections */
.mc-legal-intro {
	background-color: rgba(241, 250, 140, 0.1);
	border-left: 4px solid var(--mc-legal-accent-yellow);
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 6px;
}

.mc-legal-section {
	margin-bottom: 30px;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--mc-legal-border);
	transition: all 0.3s ease;
}

.mc-legal-section:hover {
	border-color: var(--mc-legal-accent-red);
	box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
}

.mc-legal-section p {
	margin-bottom: 10px;

	color: var(--mc-legal-text-secondary);
}

/* Footer des pages légales */
.mc-legal-footer {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid var(--mc-legal-border);
	text-align: center;
}

.mc-legal-footer p {
	margin-bottom: 10px;
	color: var(--mc-legal-text-secondary);
}

.mc-legal-date {
	font-size: 0.9rem;
	color: var(--mc-legal-accent-green);
	font-weight: 600;
}

/* Banner de cookies */
.mc-legal-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--mc-legal-bg-secondary);
	border-top: 3px solid var(--mc-legal-accent-red);
	padding: 20px;
	z-index: 1000;
	display: none;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.mc-legal-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.mc-legal-cookie-content h3 {
	color: var(--mc-legal-accent-yellow);
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.mc-legal-cookie-buttons {
	margin-top: 15px;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.mc-legal-cookie-buttons button {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.mc-legal-btn-accept {
	background-color: var(--mc-legal-accent-green);
	color: #000;
}

.mc-legal-btn-refuse {
	background-color: var(--mc-legal-accent-red);
	color: white;
}

.mc-legal-btn-customize {
	background-color: transparent;
	color: var(--mc-legal-text-primary);
	border: 2px solid var(--mc-legal-accent-yellow);
}

.mc-legal-cookie-buttons button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mc-legal-btn-accept:hover {
	background-color: var(--mc-legal-accent-green);
	box-shadow: 0 5px 15px rgba(80, 250, 123, 0.3);
}

.mc-legal-btn-refuse:hover {
	background-color: var(--mc-legal-accent-red);
	box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.mc-legal-btn-customize:hover {
	background-color: var(--mc-legal-accent-yellow);
	color: #000;
}

/* Page 404 - Styles spéciaux */
.mc-legal-404-container {
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: relative;
	overflow: hidden;
}

.mc-legal-404-content {
	text-align: center;
	z-index: 2;
	max-width: 600px;
}

.mc-legal-404-number {
	font-size: 8rem;
	font-weight: 900;
	background: linear-gradient(
		135deg,
		var(--mc-legal-accent-red),
		var(--mc-legal-accent-yellow)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	text-shadow: 0 0 50px rgba(230, 57, 70, 0.5);
	animation: mc-legal-pulse 2s ease-in-out infinite alternate;
}

.mc-legal-404-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--mc-legal-text-primary);
}

.mc-legal-404-description {
	font-size: 1.1rem;
	color: var(--mc-legal-text-secondary);
	margin-bottom: 40px;
	line-height: 1.8;
}

.mc-legal-404-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.mc-legal-404-btn-home,
.mc-legal-404-btn-contact {
	display: inline-block;
	padding: 15px 30px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.mc-legal-404-btn-home {
	background-color: var(--mc-legal-accent-red);
	color: white;
}

.mc-legal-404-btn-contact {
	background-color: transparent;
	color: var(--mc-legal-accent-green);
	border-color: var(--mc-legal-accent-green);
}

.mc-legal-404-btn-home:hover {
	background-color: var(--mc-legal-accent-red);
	box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
	transform: translateY(-3px);
}

.mc-legal-404-btn-contact:hover {
	background-color: var(--mc-legal-accent-green);
	color: #000;
	transform: translateY(-3px);
}

/* Animation des jetons de casino pour la page 404 */
.mc-legal-404-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

.mc-legal-404-chip {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 4px solid var(--mc-legal-accent-yellow);
	background-color: var(--mc-legal-bg-secondary);
	animation: mc-legal-float 6s ease-in-out infinite;
}

.mc-legal-404-chip:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
	border-color: var(--mc-legal-accent-red);
}

.mc-legal-404-chip:nth-child(2) {
	top: 60%;
	right: 15%;
	animation-delay: 2s;
	border-color: var(--mc-legal-accent-green);
}

.mc-legal-404-chip:nth-child(3) {
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
	border-color: var(--mc-legal-accent-yellow);
}

/* Animations */
@keyframes mc-legal-pulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.05);
		opacity: 1;
	}
}

@keyframes mc-legal-float {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) rotate(90deg);
	}
	50% {
		transform: translateY(0) rotate(180deg);
	}
	75% {
		transform: translateY(-10px) rotate(270deg);
	}
}

/* Effets de brillance sur les éléments importants */
.mc-legal-title,
.mc-legal-subtitle {
	position: relative;
}

.mc-legal-title::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(241, 250, 140, 0.1),
		transparent
	);
	transform: translateX(-100%);
	animation: mc-legal-shine 3s infinite;
}

@keyframes mc-legal-shine {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.mc-legal-content {
		padding: 20px;
		margin: 10px;
	}

	.mc-legal-title {
		font-size: 2rem;
	}

	.mc-legal-subtitle {
		font-size: 1.1rem;
	}

	.mc-legal-404-number {
		font-size: 6rem;
	}

	.mc-legal-404-title {
		font-size: 2rem;
	}

	.mc-legal-404-buttons {
		flex-direction: column;
		align-items: center;
	}

	.mc-legal-cookie-buttons {
		flex-direction: column;
	}

	.mc-legal-cookie-buttons button {
		width: 100%;
		max-width: 200px;
	}
}

@media (max-width: 480px) {
	.mc-legal-content {
		padding: 15px;
	}

	.mc-legal-title {
		font-size: 1.5rem;
	}

	.mc-legal-404-number {
		font-size: 4rem;
	}

	.mc-legal-404-description {
		font-size: 1rem;
	}

	.mc-cookie-buttons {
		flex-direction: column;
	}
}
