    .license-plate {
      width: 320px;
      height: 160px;
      border: 5px solid #222;
      border-radius: 12px;
      background: linear-gradient(135deg, #fdfdfd, #dfe4ea);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      position: relative;
      margin: 50px auto;
      overflow: hidden;
      color: #111;
    }

    .license-plate::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
      background-size: 15px 15px;
      pointer-events: none;
    }

    .state-name {
      position: relative;
      width: 100%;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #0044cc;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .plate-number {
      position: relative;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
      font-family: 'Arial Black', sans-serif;
      font-size: 40px;
      letter-spacing: 6px;
      color: #111;
      text-shadow: 1px 1px 0 #999;
    }

    .registration-tag {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: #0044cc;
      color: white;
      font-size: 14px;
      padding: 4px 6px;
      border-radius: 3px;
      font-weight: bold;
    }

    .country-code {
      position: absolute;
      bottom: 10px;
      left: 10px;
      font-size: 14px;
      font-weight: bold;
      color: #333;
    }

    @media (max-width: 768px) {
        .mw-50-md {
            max-width: 50%;
        }
    }