.license-plate {
	background: white;
	border: 1px solid #000;
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	position: relative;
	width: 95px;
	height: 15px;
	display: flex;
}

.blue-band {
	background: #003399;
	width: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.stars {
	color: #FFD700;
	font-size: 3px;
	text-align: center;
	line-height: 0.8;
	margin: 0;
}

.country-code {
	color: white;
	font-weight: bold;
	font-size: 4px;
	margin: 0;
}

.numbers-area {
	flex: 1;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.05), transparent 50%), white;
}

.plate-text {
	font-family: 'Courier New', monospace;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	letter-spacing: 1px;
	text-align: center;
}

/* Reflective plastic effect */
.license-plate::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

/* Decorative screws */
.screw {
	position: absolute;
	width: 2px;
	height: 2px;
	background: #666;
	border-radius: 50%;
	box-shadow: inset 0 0.5px 1px rgba(0, 0, 0, 0.3);
}

.screw-tl {
	top: 1px;
	left: 1px;
}

.screw-tr {
	top: 1px;
	right: 1px;
}

.screw-bl {
	bottom: 1px;
	left: 1px;
}

.screw-br {
	bottom: 1px;
	right: 1px;
}