.game-page {
	padding: 6rem 0 4rem;
	min-height: 100vh;
}
.game-content.single-column {
	grid-template-columns: 1fr;
}
.delivery-info__list {
    padding-left: 1.2em;
    margin: 0;
    list-style-position: inside;
}

.delivery-info__list li {
    margin-bottom: 0.5em;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
.section-title {
	color: var(--text-primary);
	font-family: 'Orbitron', monospace;
	font-size: 1.2rem;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.section-subtitle {
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.summary-title {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	font-size: 1.1rem;
	font-weight: 600;
}
.alert-title {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}
.alert-list {
	padding-left: 1.2rem;
	color: var(--text-secondary);
	margin: 0;
}
.alert-list li {
	margin-bottom: 0.3rem;
	line-height: 1.4;
}
[data-lucide] {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
}
.form-label [data-lucide] {
	margin-right: 0.5rem;
	color: var(--primary-color);
}
.btn [data-lucide] {
	margin-right: 0.5rem;
	vertical-align: middle;
}
.btn-sm [data-lucide] {
	margin-right: 0;
	vertical-align: middle;
}
.remove-player {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	min-width: 2rem;
	min-height: 2rem;
}
.remove-player [data-lucide] {
	margin: 0;
	width: 1rem;
	height: 1rem;
}
.alert [data-lucide],.summary-title [data-lucide] {
	margin-right: 0.5rem;
	flex-shrink: 0;
}
.summary-title [data-lucide] {
	color: var(--primary-color);
}
.alert-icon {
	color: var(--primary-color);
	font-size: 1.2rem;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.5rem;
}
.col-12 {
	flex: 0 0 100%;
	padding: 0 0.5rem;
}
.col-md-3 {
	flex: 0 0 25%;
	padding: 0 0.5rem;
}
.col-md-6 {
	flex: 0 0 50%;
	padding: 0 0.5rem;
}
.g-3 > * {
	margin-bottom: 1rem;
}
.g-4 > * {
	margin-bottom: 1.5rem;
}
.game-hero {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 3rem;
	margin-bottom: 3rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 15px 40px var(--shadow-dark);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}
.game-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
	animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
	0% {
		transform: rotate(0deg) scale(1);
		opacity: 0.3;
	}
	100% {
		transform: rotate(180deg) scale(1.1);
		opacity: 0.6;
	}
}
.game-hero__content {
	position: relative;
	z-index: 1;
}
.game-hero__title {
	font-family: 'Orbitron', monospace;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.game-hero__title h1 {
	margin: 0;
	font-size: 2.2rem;
	line-height: 1.2;
	word-break: break-word;
	flex: 1;
	font-family: 'Orbitron', monospace;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.game-hero__subtitle {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}
.game-breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
}
.game-breadcrumb a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}
.game-breadcrumb a:hover {
	color: var(--primary-dark);
}
.game-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}
.game-description {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 2.5rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 30px var(--shadow-dark);
	transition: all 0.3s ease;
}
.game-description h2 {
	color: var(--text-primary);
	font-family: 'Orbitron', monospace;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.game-description p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	text-align: justify;
}
.game-description p:last-child {
	margin-bottom: 0;
}
.game-order {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 20px;
	padding: 1rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 30px var(--shadow-dark);
	height: fit-content;
	position: sticky;
	top: 100px;
	transition: all 0.3s ease;
}
.game-order__title {
	color: var(--text-primary);
	font-family: 'Orbitron', monospace;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.game-hero:hover,.game-description:hover,.game-order:hover {
	transform: translateY(-3px);
	border-color: var(--primary-color);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}
.trust-indicators {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}
.trust-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 15px;
	padding: 1.5rem;
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 30px var(--shadow-dark);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.trust-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-color);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}
.trust-card__icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.trust-card__content h3 {
	color: var(--text-primary);
	font-family: 'Orbitron', monospace;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}
.trust-card__content p {
	color: var(--text-secondary);
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
}
.delivery-info {
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 0.5rem;
	margin: 2rem 0;
	border-left: 4px solid var(--primary-color);
}
.delivery-info__title {
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.delivery-info__text {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}
.feature-highlight {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 15px;
	padding: 1.5rem;
	margin: 2rem 0;
	position: relative;
	overflow: hidden;
}
.feature-highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
	animation: shimmer 3s infinite;
}
@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}
.feature-highlight__content {
	position: relative;
	z-index: 1;
}
.payment-methods {
	margin-top: 2rem;
}
.payment-methods h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.payment-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem;
}
.payment-item {
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 0.75rem;
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.payment-item:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-1px);
}
.currency-symbol {
	color: var(--accent-color);
	font-weight: 700;
	font-family: 'Orbitron', monospace;
}
.serveurs-grid {
	display: grid;
	gap: 1.5rem;
	margin: 1.5rem 0;
}
.serveur-region {
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 1.5rem;
}
.region-title {
	color: var(--text-primary);
	font-family: 'Orbitron', monospace;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.serveurs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.serveur-tag {
	background: rgba(255, 107, 53, 0.1);
	color: var(--primary-color);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 20px;
	padding: 0.4rem 0.8rem;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
}
.serveur-tag:hover {
	background: rgba(255, 107, 53, 0.2);
	transform: translateY(-1px);
}
.serveurs-section {
	background: var(--bg-card);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--shadow-glow);
	margin-bottom: 2rem;
}
.serveurs-title {
	font-size: 1.5rem;
	font-weight: bold;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 1rem;
	text-shadow: 0 0 10px var(--shadow-light);
}
.serveur-badge {
	background: var(--gradient-primary);
	color: var(--text-primary);
	padding: 0.4rem 1rem;
	border-radius: 20px;
	font-size: 0.95rem;
	box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: transform 0.2s ease;
}
.serveur-badge:hover {
	transform: scale(1.05);
	box-shadow: 0 0 15px rgba(78, 205, 196, 0.6);
}
.formulaire-form {
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: 15px;
	padding: 0.6rem;
	margin-bottom: 1rem;
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}
.form-select,.form-control {
	width: 100%;
	padding: 0.75rem;
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 10px;
	color: var(--text-primary);
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
select.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	padding-right: 2.5rem;
}
.form-select:focus,.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.price-display {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	padding: 1rem;
	text-align: center;
	margin: 1rem 0;
}
.price-amount {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--accent-color);
	font-family: 'Orbitron', monospace;
}
.price-label {
	color: var(--text-secondary);
	font-size: 0.8rem;
	margin-top: 0.25rem;
}
.submit-btn,.btn {
	padding: 1rem;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-decoration: none;
	box-sizing: border-box;
}
.submit-btn,.btn-success {
	background: var(--gradient-primary);
	color: white;
}
.btn-outline-primary {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}
.btn-outline-secondary {
	background: transparent;
	border: 2px solid var(--text-muted);
	color: var(--text-muted);
}
.btn-sm {
	padding: 0.5rem;
	font-size: 0.9rem;
}
.submit-btn:hover:not(:disabled),.btn:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.submit-btn:disabled,.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
.order-summary-section {
	margin-bottom: 2rem;
}
.modern-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 15px;
	padding: 2rem;
	transition: all 0.3s ease;
}
.modern-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-color);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}
.summary-item {
	text-align: center;
	padding: 1rem;
	background: var(--bg-tertiary);
	border-radius: 10px;
	transition: all 0.3s ease;
}
.summary-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.summary-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}
.summary-value {
	color: var(--text-primary);
	font-weight: bold;
}
.summary-value.accent {
	color: var(--accent-color);
}
.summary-value.primary {
	color: var(--primary-color);
	font-size: 1.2rem;
}
.alert-modern {
	background: rgba(255, 107, 53, 0.1);
	border: 1px solid rgba(255, 107, 53, 0.3);
	border-radius: 10px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.alert-modern .alert-icon {
	color: var(--primary-color);
	font-size: 1.2rem;
}
.mt-progress-container {
	background: var(--bg-tertiary);
	border: 2px solid var(--border-color);
	border-radius: 15px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	position: sticky;
	top: 80px;
	z-index: 100;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
}
.mt-progress-container:hover {
	border-color: var(--primary-color);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}
.mt-progress-container.compact {
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 10px;
	top: 70px;
}
.mt-progress-container.compact .progress-header {
	margin-bottom: 0.5rem;
}
.mt-progress-container.compact .progress-alerts {
	margin-top: 0.5rem;
}
.mt-progress-container.compact .alert {
	padding: 0.5rem;
	font-size: 0.85rem;
}
.scroll-indicator {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--gradient-primary);
	color: white;
	padding: 0.75rem;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 200;
	display: none;
}
.scroll-indicator:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}
.scroll-indicator.show {
	display: flex;
	align-items: center;
	justify-content: center;
}
.mt-progress-bar {
	background: var(--bg-card);
	border-radius: 10px;
	height: 10px;
	overflow: hidden;
}
.mt-progress-bar .progress-bar {
	background: var(--gradient-primary);
	border-radius: 10px;
	height: 100%;
	width: 0%;
	transition: width 0.5s ease;
	position: relative;
	overflow: hidden;
}
.mt-progress-bar .progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shimmer 2s infinite;
}
.mt-progress-container.ultra-compact {
	padding: 0.75rem 1rem;
	border-radius: 8px;
	top: 60px;
}
.mt-progress-container.ultra-compact .progress-header {
	margin-bottom: 0.3rem;
}
.mt-progress-container.ultra-compact .progress-info {
	font-size: 0.85rem;
}
.mt-progress-container.ultra-compact .progress-percentage {
	font-size: 0.9rem;
}
.mt-progress-container.ultra-compact .progress-alerts {
	margin-top: 0.3rem;
}
.mt-progress-container.ultra-compact .alert {
	padding: 0.4rem;
	font-size: 0.8rem;
}
.progress-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}
.progress-info {
	color: var(--text-secondary);
	font-size: 1rem;
}
.progress-current {
	color: var(--accent-color);
	font-weight: bold;
}
.progress-target {
	color: var(--primary-color);
	font-weight: bold;
}
.progress-percentage {
	color: var(--text-primary);
	font-weight: bold;
	font-size: 1.1rem;
}
.progress-alerts {
	margin-top: 1rem;
}
.alert {
	padding: 1rem;
	border-radius: 10px;
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.alert-info {
	background: rgba(78, 205, 196, 0.1);
	border: 1px solid rgba(78, 205, 196, 0.3);
	color: var(--secondary-color);
}
.alert-warning {
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #ffc107;
}
.alert-success {
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #22c55e;
}
.player-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 15px;
	padding: 2rem;
	margin-bottom: 2rem;
	transition: all 0.3s ease;
	position: relative;
}
.player-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-color);
	box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}
.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}
.card-title {
	color: var(--text-primary);
	font-weight: bold;
	font-size: 1.1rem;
}
.remove-player {
	background: rgba(239, 68, 68, 0.2);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #ef4444;
	cursor: pointer;
	transition: all 0.3s ease;
}
.remove-player:hover {
	background: rgba(239, 68, 68, 0.3);
	transform: scale(1.05);
}
.form-label {
	color: var(--text-primary);
	font-weight: 600;
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.form-label i {
	margin-right: 0.5rem;
	color: var(--primary-color);
}
.input-group {
	display: flex;
	border-radius: 10px;
	overflow: hidden;
}
.input-group .form-control {
	border-radius: 0;
	border-right: none;
}
.input-group-text {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	color: var(--text-primary);
	padding: 1rem;
	border-left: none;
	display: flex;
	align-items: center;
}
.form-text {
	color: var(--text-muted);
	margin-top: 0.5rem;
	font-size: 0.85rem;
	line-height: 1.4;
}
.error-message {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #ef4444;
	padding: 0.75rem;
	border-radius: 8px;
	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: none;
}
.loading {
	opacity: 0.7;
	pointer-events: none;
}
.text-center {
	text-align: center;
}
.d-flex {
	display: flex;
}
.justify-content-center {
	justify-content: center;
}
.justify-content-between {
	justify-content: space-between;
}
.align-items-center {
	align-items: center;
}
.gap-3 {
	gap: 1rem;
}
.mb-3 {
	margin-bottom: 1rem;
}
.mb-4 {
	margin-bottom: 1.5rem;
}
.me-2 {
	margin-right: 0.5rem;
}
.me-3 {
	margin-right: 1rem;
}
.mt-1 {
	margin-top: 0.25rem;
}
@media (max-width: 1024px) {
	.mt-progress-container {
		top: 70px;
	}
	.mt-progress-container.compact {
		top: 60px;
	}
	.mt-progress-container.ultra-compact {
		top: 55px;
	}
}
@media (max-width: 768px) {
	.game-page {
		padding: 5rem 0 2rem;
	}
	.game-hero {
		padding: 1.5rem;
		margin: 0 0.5rem 2rem;
	}
	.game-hero__title {
		font-size: 1.2rem;
		flex-direction: column;
		gap: 0.75rem;
		text-align: center;
		align-items: center;
	}
	.game-hero__title img {
		width: 40px;
		height: 40px;
	}
	.game-hero__title h1 {
		font-size: 1.3rem;
		line-height: 1.3;
		text-align: center;
		word-wrap: break-word;
		overflow-wrap: break-word;
		hyphens: auto;
		max-width: 100%;
	}
	.game-hero__subtitle {
		font-size: 1rem;
		text-align: center;
		line-height: 1.5;
		margin-bottom: 1.5rem;
	}
	.game-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin: 0 0.5rem 2rem;
	}
	.game-description,.game-order {
		padding: 1.5rem;
	}
	.game-order {
		position: static;
	}
	.trust-indicators {
		grid-template-columns: 1fr;
		margin: 0 0.5rem 2rem;
		gap: 1rem;
	}
	.trust-card {
		flex-direction: column;
		text-align: center;
		padding: 1.25rem;
	}
	.trust-card__icon {
		margin-bottom: 1rem;
	}
	.serveurs-section {
		margin: 0 0.5rem 2rem;
		padding: 1.5rem;
	}
	.formulaire-form {
		margin: 0 0.5rem 1rem;
	}
	.modern-card {
		padding: 1.5rem;
	}
	.player-card {
		padding: 1.25rem;
		margin: 0 0.5rem 1.5rem;
		border-radius: 12px;
	}
	.progress-header {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
	.mt-progress-container {
		top: 60px;
		margin: 0 0.5rem 1rem;
		padding: 1rem;
	}
	.mt-progress-container.compact {
		padding: 0.75rem;
		top: 50px;
	}
	.progress-info {
		font-size: 0.9rem;
	}
	.progress-percentage {
		font-size: 1rem;
	}
	.scroll-indicator {
		bottom: 15px;
		right: 15px;
		padding: 0.6rem;
	}
	.row.g-3 {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
		margin: 0;
	}
	.col-md-3 {
		padding: 0;
	}
	.summary-item {
		padding: 0.75rem;
		border-radius: 8px;
	}
	.summary-label {
		font-size: 0.8rem;
		margin-bottom: 0.3rem;
	}
	.summary-value {
		font-size: 0.95rem;
	}
	.summary-value.accent {
		font-size: 1rem;
	}
	.summary-value.primary {
		font-size: 1.1rem;
	}
	.card-header {
		margin-bottom: 1rem;
		gap: 0.5rem;
	}
	.card-title {
		font-size: 1rem;
		flex: 1;
	}
	.remove-player {
		padding: 0.4rem;
		min-width: 2rem;
		min-height: 2rem;
		border-radius: 6px;
	}
	.row.g-4 {
		display: flex;
		flex-direction: column;
		margin: 0;
	}
	.col-md-6 {
		padding: 0;
		width: 100%;
	}
	.form-label {
		font-size: 0.9rem;
		margin-bottom: 0.4rem;
	}
	.input-group-text {
		padding: 0.75rem 0.5rem;
		font-size: 0.8rem;
		min-width: 3rem;
	}
	.form-text {
		font-size: 0.75rem;
		margin-top: 0.3rem;
		line-height: 1.3;
	}
}
@media (max-width: 480px) {
	.game-hero {
		padding: 1rem;
		margin: 0 0.25rem 1.5rem;
	}
	.game-hero__title h1 {
		font-size: 1.1rem;
		line-height: 1.2;
	}
	.game-hero__subtitle {
		font-size: 0.9rem;
	}
	.game-content {
		margin: 0 0.25rem 1.5rem;
	}
	.trust-indicators {
		margin: 0 0.25rem 1.5rem;
	}
	.serveurs-section {
		margin: 0 0.25rem 1.5rem;
		padding: 1rem;
	}
	.modern-card,.player-card {
		padding: 1rem;
		margin: 0 0.25rem 1rem;
	}
	.summary-item {
		padding: 0.6rem;
	}
	.mt-progress-container {
		top: 50px;
	}
	.mt-progress-container.compact {
		top: 45px;
	}
	.mt-progress-container.ultra-compact {
		top: 40px;
	}
	.row.g-3 {
		grid-template-columns: 1fr !important;
		gap: 0.5rem;
	}
	.card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
	.remove-player {
		align-self: flex-end;
	}
	.form-control {
		padding: 0.6rem;
	}
	.input-group-text {
		padding: 0.6rem 0.4rem;
	}
}
