/* ============================================
   POLICE PIXEL ART
   ============================================ */
   * {
	font-family: 'Press Start 2P', monospace;
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}

/* ============================================
   FOND PIXEL ART ET EFFETS VISUELS
   ============================================ */
body {
	background: #000000;
	color: #ffffff;
	overflow-x: hidden;
	position: relative;
}

.server-status-banner {
	display: none;
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	padding: 12px 16px;
	background: #001b0f;
	border-bottom: 4px solid #00ff41;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
	text-align: center;
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #00ffb4;
}

.server-status-banner--visible {
	display: flex;
	justify-content: center;
	align-items: center;
}

.server-status-banner--offline {
	background: #2b0008;
	border-color: #ff0040;
	color: #ffd5e0;
	box-shadow: 0 0 25px rgba(255, 0, 64, 0.4);
}

.server-status-banner__icon {
	margin-right: 8px;
}

.server-status-banner__text {
	flex: 1;
}

.server-status-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.server-status-modal--visible {
	display: flex;
}

.server-status-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(4px);
}

.server-status-modal__panel {
	position: relative;
	width: min(420px, 90%);
	border: 4px solid #ff0040;
	box-shadow: 0 0 25px rgba(255, 0, 64, 0.6);
	background: #1a0007;
	padding: 32px;
	text-align: center;
}

.server-status-modal__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.server-status-modal__message {
	color: #ffd5e0;
	font-size: 12px;
	line-height: 1.6;
	text-transform: uppercase;
}

.server-status-modal__hint {
	color: #ff8ca8;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pixel-bg {
	position: relative;
	min-height: 100vh;
}

.pixel-bg::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px),
		linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
		url('/client/assets/img/Background.gif') center center / cover no-repeat,
		#000000;
	background-size: 20px 20px, 20px 20px, cover, auto;
	background-attachment: fixed;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	z-index: -1;
}

.pixel-bg::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	pointer-events: none;
	z-index: 0;
}

.scanlines {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1000;
	background: linear-gradient(
		transparent 50%,
		rgba(0, 0, 0, 0.15) 50%
	);
	background-size: 100% 4px;
	animation: scanline 8s linear infinite;
	opacity: 0.3;
}

@keyframes scanline {
	0% { transform: translateY(0); }
	100% { transform: translateY(4px); }
}

.pixel-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 999;
	background: 
		radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
}

/* ============================================
   TITRE PIXEL ART
   ============================================ */
.pixel-title {
	font-size: 1.5rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	animation: pixel-glow 2s ease-in-out infinite alternate;
	position: relative;
	display: inline-block;
	padding: 10px 20px;
}

@keyframes pixel-glow {
	0% {
		text-shadow: 
			0 0 5px #00ff41,
			0 0 10px #00ff41,
			0 0 15px #00ff41;
	}
	100% {
		text-shadow: 
			0 0 10px #00ff41,
			0 0 20px #00ff41,
			0 0 30px #00ff41,
			0 0 40px #00ff41;
	}
}

.pixel-text-shadow {
	text-shadow: 
		2px 2px 0px #000000,
		4px 4px 0px rgba(0, 255, 65, 0.3);
}

.pixel-border-top {
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, 
		transparent 0%,
		#00ff41 20%,
		#00ff41 80%,
		transparent 100%
	);
	margin: 10px auto;
	max-width: 400px;
}

/* ============================================
   PANNEAUX PIXEL ART
   ============================================ */
.pixel-panel {
	background: #1a1a2e;
	border: 4px solid #00ff41;
	box-shadow: 
		0 0 0 2px #000000,
		0 0 20px rgba(0, 255, 65, 0.3),
		inset 0 0 20px rgba(0, 255, 65, 0.1);
	position: relative;
	padding: 20px;
}

.pixel-border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #000000;
	pointer-events: none;
	z-index: 1;
}

.pixel-border::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	border: 2px solid #00ff41;
	box-shadow: 
		inset 0 0 10px rgba(0, 255, 65, 0.5),
		0 0 15px rgba(0, 255, 65, 0.3);
}

.pixel-border-bottom {
	border-bottom: 4px solid #00ff41;
	box-shadow: 0 4px 0 rgba(0, 255, 65, 0.3);
}

/* ============================================
   BOUTONS PIXEL ART
   ============================================ */
.pixel-button {
	padding: 12px 24px;
	border: 4px solid;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	position: relative;
	background: #000000;
	color: #ffffff;
	transition: all 0.1s;
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5);
	text-align: center;
	font-family: 'Press Start 2P', monospace;
}

.pixel-button:active {
	transform: translateY(2px);
	box-shadow: 
		0 0 0 2px #000000,
		0 2px 0 rgba(0, 0, 0, 0.5);
}

.pixel-button-primary {
	border-color: #00ff41;
	color: #00ff41;
	background: #000000;
}

.pixel-button-primary:hover {
	background: rgba(0, 255, 65, 0.1);
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 255, 65, 0.5);
}

.pixel-button-blue {
	border-color: #00d9ff;
	color: #00d9ff;
}

.pixel-button-blue:hover {
	background: rgba(0, 217, 255, 0.1);
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 217, 255, 0.5);
}

.pixel-button-purple {
	border-color: #b535f6;
	color: #b535f6;
}

.pixel-button-purple:hover {
	background: rgba(181, 53, 246, 0.1);
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(181, 53, 246, 0.5);
}

.pixel-button-red {
	border-color: #ff0040;
	color: #ff0040;
}

.pixel-button-red:hover {
	background: rgba(255, 0, 64, 0.1);
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(255, 0, 64, 0.5);
}

.pixel-button-secondary {
	border-color: #888888;
	color: #888888;
}

.pixel-button-secondary:hover {
	background: rgba(136, 136, 136, 0.1);
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(136, 136, 136, 0.5);
}

.pixel-button-close {
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
	padding: 5px 10px;
	transition: all 0.2s;
}

.pixel-button-close:hover {
	color: #00ff41;
	text-shadow: 0 0 10px #00ff41;
}

/* ============================================
   INPUTS PIXEL ART
   ============================================ */
.pixel-input {
	width: 100%;
	padding: 12px 16px;
	background: #000000;
	border: 3px solid #00ff41;
	color: #00ff41;
	font-family: 'Press Start 2P', monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 
		inset 0 0 10px rgba(0, 255, 65, 0.2),
		0 0 0 2px #000000;
	outline: none;
	transition: all 0.2s;
}

.pixel-input::placeholder {
	color: #444444;
	opacity: 0.7;
}

.pixel-input:focus {
	border-color: #00d9ff;
	color: #00d9ff;
	box-shadow: 
		inset 0 0 10px rgba(0, 217, 255, 0.3),
		0 0 0 2px #000000,
		0 0 20px rgba(0, 217, 255, 0.5);
}

.pixel-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff41' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
	cursor: pointer;
}

.pixel-select:focus {
	border-color: #00d9ff;
	color: #00d9ff;
}

/* ============================================
   BOXES D'INFORMATION PIXEL ART
   ============================================ */
.pixel-info-box {
	background: #000000;
	border: 3px solid #00ff41;
	border-left: 6px solid #00ff41;
	padding: 12px;
	box-shadow: 
		inset 0 0 10px rgba(0, 255, 65, 0.1),
		0 0 0 2px #000000;
}

/* ============================================
   CANVAS PIXEL ART
   ============================================ */
.pixel-canvas-container {
	border: 4px solid #00ff41;
	box-shadow: 
		0 0 0 2px #000000,
		0 0 30px rgba(0, 255, 65, 0.4),
		inset 0 0 20px rgba(0, 255, 65, 0.1);
	padding: 4px;
	background: #000000;
}

.pixel-canvas {
	display: block;
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
	background: #000000;
}

/* ============================================
   JOYSTICK PIXEL ART
   ============================================ */
.pixel-joystick-base {
	width: 100px;
	height: 100px;
	border: 4px solid #00ff41;
	background: #000000;
	box-shadow: 
		0 0 0 2px #000000,
		0 0 20px rgba(0, 255, 65, 0.3),
		inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.pixel-joystick-stick {
	width: 40px;
	height: 40px;
	background: #00ff41;
	border: 3px solid #000000;
	box-shadow: 
		0 0 10px rgba(0, 255, 65, 0.5),
		inset 0 0 10px rgba(0, 255, 65, 0.3);
}

.pixel-joystick-button {
	width: 80px;
	height: 80px;
	border: 4px solid #00ff41;
	background: #000000;
	color: #00ff41;
	box-shadow: 
		0 0 0 2px #000000,
		0 4px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 255, 65, 0.3);
	transition: all 0.1s;
}

.pixel-joystick-button:active {
	transform: translateY(2px);
	box-shadow: 
		0 0 0 2px #000000,
		0 2px 0 rgba(0, 0, 0, 0.5),
		0 0 20px rgba(0, 255, 65, 0.5);
	background: rgba(0, 255, 65, 0.2);
}

@media (min-width: 768px) {
	.pixel-joystick-base {
		width: 120px;
		height: 120px;
	}
	
	.pixel-joystick-stick {
		width: 50px;
		height: 50px;
	}
	
	.pixel-joystick-button {
		width: 100px;
		height: 100px;
	}
}

/* ============================================
   CHAT PIXEL ART
   ============================================ */
.chat-modal {
	position: absolute;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
}

.chat-modal.hidden {
	display: none !important;
}

.chat-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
}

.chat-modal-panel {
	position: relative;
	width: 95%;
	max-width: 520px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 20px;
	z-index: 1001;
	overflow-y: auto;
}

.section-modal-panel {
	max-width: 640px;
}

.section-modal-content {
	display: none; /* Masqué par défaut, affiché uniquement pour les admins via JavaScript */
	flex-direction: column;
	gap: 1.5rem;
	overflow-y: auto;
}

.section-modal-content[data-section="true"] {
	display: flex;
}

.section-section {
	padding: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(0, 0, 0, 0.35);
}

.section-section-title {
	font-size: 0.9rem;
	font-family: 'Press Start 2P', monospace;
	margin-bottom: 0.5rem;
	color: #00ff41;
}

.section-section-caption {
	font-size: 0.7rem;
	color: #bbbbbb;
	margin-bottom: 0.75rem;
}

.section-label {
	display: block;
	font-size: 0.7rem;
	margin: 0.5rem 0 0.25rem 0;
	color: #f8fafc;
}

.section-status-message {
	min-height: 1rem;
	color: #ff0040;
}

.chat-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-bottom: 4px solid #00ff41;
	padding-bottom: 10px;
}

.chat-modal-title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pixel-chat-messages {
	max-height: 320px;
	overflow-y: auto;
	background: #000000;
	border: 3px solid #00ff41;
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 
		inset 0 0 20px rgba(0, 255, 65, 0.1),
		0 0 0 2px #000000;
}

.chat-message {
	padding: 10px;
	background: rgba(0, 255, 65, 0.05);
	border: 2px solid #00ff41;
	border-left: 4px solid #00ff41;
}

.chat-message-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem;
	font-size: 8px;
	color: #00d9ff;
	margin-bottom: 5px;
}

.chat-message-author {
	font-weight: normal;
	color: #00ff41;
}

.chat-message-time {
	font-size: 7px;
	opacity: 0.8;
}

.chat-message-actions {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-left: auto;
}

.chat-message-delete {
	background: transparent;
	border: 2px solid #ff0040;
	color: #ff0040;
	font-family: 'Press Start 2P', monospace;
	font-size: 7px;
	padding: 2px 6px;
	cursor: pointer;
	transition: all 0.15s;
}

.chat-message-delete:hover {
	background: rgba(255, 0, 64, 0.15);
}

.chat-message-text {
	color: #ffffff;
	font-size: 9px;
	word-break: break-word;
	line-height: 1.4;
}

.chat-form {
	display: flex;
	gap: 10px;
}

.chat-input {
	flex: 1;
}

.chat-send-button {
	flex-shrink: 0;
}

/* ============================================
   NAVIGATION PIXEL ART
   ============================================ */
.pixel-nav {
	position: relative;/*sticky;*/
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.92);
	border-bottom: 4px solid #00ff41;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
	/*z-index: 60;*/
}

.pixel-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.5rem;
}

.pixel-logo {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	text-decoration: none;
}

.pixel-logo-title {
	font-size: 0.85rem;
	color: #00ff41;
	text-shadow: 2px 2px 0 #000000;
}

.pixel-logo-subtitle {
	font-size: 0.6rem;
	color: #888888;
}

.pixel-nav-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 1000;
}

.pixel-nav-links a,
.pixel-nav-links .nav-link {
	font-size: 0.65rem;
	color: #f8fafc;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.2s ease;
	padding: 0.5rem 1rem;
	border: 2px solid transparent;
	cursor: pointer;
	display: inline-block;
}

.pixel-nav-links a:hover,
.pixel-nav-links .nav-link:hover {
	color: #00ff41;
	text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
	border-color: #00ff41;
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.pixel-nav-links a.hidden,
.pixel-nav-links .nav-link.hidden {
	display: none;
}

.pixel-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	background: transparent;
	border: none;
	cursor: pointer;
}

.pixel-nav-toggle-bar {
	width: 24px;
	height: 3px;
	background: #00ff41;
	box-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

section {
	scroll-margin-top: 120px;
}

/* ============================================
   PARAMETRES PERSONNAGE PIXEL ART
   ============================================ */
.character-settings-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.pixel-preview-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #000000;
	border: 3px solid #00ff41;
	box-shadow: 
		inset 0 0 20px rgba(0, 255, 65, 0.1),
		0 0 0 2px #000000;
}

.character-preview-canvas {
	border: 2px solid #00ff41;
	background: #000000;
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}

.character-setting-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.character-setting-label {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.character-color-picker-container {
	display: flex;
	gap: 10px;
	align-items: center;
}

.pixel-color-picker {
	width: 60px;
	height: 40px;
	border: 3px solid #00ff41;
	cursor: pointer;
	background: #000000;
	box-shadow: 0 0 0 2px #000000;
}

.pixel-color-picker::-webkit-color-swatch-wrapper {
	padding: 0;
}

.pixel-color-picker::-webkit-color-swatch {
	border: none;
}

.character-color-text {
	flex: 1;
}

.character-preset-colors {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.character-color-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
}

.pixel-color-preset {
	width: 100%;
	aspect-ratio: 1;
	border: 3px solid #00ff41;
	cursor: pointer;
	background: #000000;
	box-shadow: 0 0 0 2px #000000;
	transition: all 0.2s;
}

.pixel-color-preset:hover {
	border-color: #00d9ff;
	box-shadow: 
		0 0 0 2px #000000,
		0 0 15px rgba(0, 217, 255, 0.5);
	transform: scale(1.1);
}

.pixel-color-preset.active {
	border-color: #00d9ff;
	border-width: 4px;
	box-shadow: 
		0 0 0 2px #000000,
		0 0 20px rgba(0, 217, 255, 0.7);
}

.pixel-checkbox {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 3px solid #00ff41;
	background: #000000;
	box-shadow: 0 0 0 2px #000000;
	display: inline-block;
	position: relative;
	margin-right: 0.5rem;
}

.pixel-checkbox:checked {
	background: #00ff41;
	box-shadow: 0 0 0 2px #000000, 0 0 12px rgba(0, 255, 65, 0.6);
}

.character-toggle {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.75rem;
	border: 2px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.75rem;
	background: rgba(0, 0, 0, 0.25);
}

.character-toggle-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.7rem;
	font-family: 'Press Start 2P', monospace;
	color: #f8fafc;
}

.character-toggle-caption {
	font-size: 0.6rem;
	color: #bbbbbb;
	font-family: 'Press Start 2P', monospace;
	line-height: 1.3;
}

.character-modal-actions {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.character-reset-button,
.character-save-button {
	flex: 1;
}

/* ============================================
   UTILITAIRES
   ============================================ */
.hidden {
	display: none !important;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 640px) {
	.pixel-title {
		font-size: 1rem;
		padding: 8px 16px;
	}
	
	.pixel-button {
		font-size: 8px;
		padding: 10px 16px;
	}
	
	.pixel-input {
		font-size: 8px;
		padding: 10px 12px;
	}
	
	.chat-modal-panel {
		padding: 15px;
	}
	
	.chat-form {
		flex-direction: column;
	}
	
	.chat-send-button {
		width: 100%;
	}
	
	.character-color-grid {
		grid-template-columns: repeat(5, 1fr);
	}
	
	.character-modal-actions {
		flex-direction: column;
	}

	.pixel-nav-inner {
		flex-wrap: wrap;
	}

	.pixel-nav-toggle {
		display: flex;
	}

	.pixel-nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: rgba(10, 10, 10, 0.95);
		border-bottom: 4px solid #00ff41;
		padding: 1rem 1.5rem;
		display: none;
	}

	.pixel-nav-links.open {
		display: flex;
	}
}

@media (max-width: 900px) {
	#info-section {
		font-size: 0.85rem;
	}
	
	#info-section h2 {
		font-size: 1.2rem;
	}
	.pixel-nav-toggle {
		display: flex;
	}
	.pixel-nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: rgba(10, 10, 10, 0.95);
		border-bottom: 4px solid #00ff41;
		padding: 1rem 1.5rem;
		display: none;
	}
	.pixel-nav-links.open {
		display: flex;
	}
}

@media (hover: none) and (pointer: coarse) {
	#joystick-container {
		display: flex;
	}
}

/* ============================================
   SCROLLBAR PIXEL ART
   ============================================ */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #000000;
	border: 2px solid #00ff41;
}

::-webkit-scrollbar-thumb {
	background: #00ff41;
	border: 2px solid #000000;
	box-shadow: inset 0 0 10px rgba(0, 255, 65, 0.3);
}

::-webkit-scrollbar-thumb:hover {
	background: #00d9ff;
	box-shadow: inset 0 0 10px rgba(0, 217, 255, 0.5);
}
